/* === Variables === */
:root {
  --bg-main: #F8ECE8;
  --color-primary: #000000;
  --color-gold: #c9a96e;
  --color-gold-dark: #b8944f;
  --color-gold-light: #d4b87a;
  --bg-main-end: #d6af95;
  --bg-menu: #f2e0da;
  --color-menu-text: #000000;
  --color-text-muted: #666;
  --menu-logo-width: 150px;
}

/* === Base === */
html {
  overflow-x: hidden;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, var(--bg-main) 0%, var(--bg-main-end) 100%);
  background-attachment: fixed;
  color: var(--color-primary);
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

/* === Navbar Desktop === */
.navbar-desktop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: var(--bg-menu);
  border-bottom: none;
  background-image: linear-gradient(to right, transparent, var(--color-gold));
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: bottom;
  padding: 10px 0;
  transition: box-shadow 0.3s;
  overflow: visible;
}

.navbar-desktop .nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-desktop .nav-logo {
  position: relative;
  z-index: 200;
  width: var(--menu-logo-width);
  flex-shrink: 0;
  margin-left: -40px;
}

.navbar-desktop .nav-logo img {
  height: var(--menu-logo-width);
  position: absolute;
  top: 50%;
  transform: translateY(-25%);
}

.navbar-desktop .nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0 0 0 60px;
  padding: 0;
}

.navbar-desktop .nav-links li {
  position: relative;
}

.navbar-desktop .nav-links a {
  color: var(--color-menu-text);
  font-family: 'Times New Roman', Times, serif;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 14px;
  transition: color 0.3s;
  display: block;
}

.navbar-desktop .nav-links a:hover {
  color: var(--color-gold);
}

/* Heart separator between desktop nav items */
.navbar-desktop .nav-links li::before {
  content: '\2661';
  color: var(--color-gold);
  font-size: 1.5rem;
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
}

/* Hamburger button */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-gold);
  font-size: 1.5rem;
}

/* === Mobile Menu Overlay === */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: var(--bg-main);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 30px 20px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--color-gold);
  cursor: pointer;
  line-height: 1;
}

/* Logo centered at top */
.mobile-menu-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.mobile-menu-header .menu-logo {
  width: 120px;
  height: auto;
  margin-bottom: 8px;
}

.mobile-menu-header .menu-slogan {
  font-size: 0.8rem;
  letter-spacing: 4px;
  color: var(--color-primary);
  text-transform: uppercase;
}

/* Menu items with icons */
.mobile-menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 320px;
}

.mobile-menu-items li {
  position: relative;
}

.mobile-menu-items a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 5px;
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.mobile-menu-items a:hover {
  color: var(--color-gold);
}

.mobile-menu-items .menu-icon-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Line with heart separator between menu items */
.mobile-menu-items li .menu-separator {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 5px;
}

.mobile-menu-items li .menu-separator .sep-line {
  flex: 1;
  height: 1px;
  background-color: var(--color-gold);
}

.mobile-menu-items li .menu-separator .sep-heart {
  color: var(--color-gold);
  font-size: 0.65rem;
  line-height: 1;
}

/* Heart flourish at bottom of menu */
.mobile-menu-flourish {
  width: 140px;
  height: auto;
  margin-top: auto;
  padding-top: 16px;
  opacity: 0.8;
}

/* === Sidebar Navbar Mode === */
body.nav-sidebar-mode {
  margin-left: 220px;
  transition: margin-left 0.3s;
}

body.nav-sidebar-mode .navbar-desktop {
  position: fixed;
  top: 0;
  left: 0;
  right: auto;
  bottom: 0;
  width: 220px;
  padding: 20px 0;
  flex-direction: column;
  background-image: linear-gradient(to bottom, transparent, var(--color-gold));
  background-size: 1px 100%;
  background-repeat: no-repeat;
  background-position: right;
  overflow-y: auto;
}

body.nav-sidebar-mode .navbar-desktop .nav-container {
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 0 15px;
  justify-content: flex-start;
}

body.nav-sidebar-mode .navbar-desktop .nav-logo {
  position: relative;
  margin-left: 0;
  margin-bottom: 0px;
  width: 100px;
}

body.nav-sidebar-mode .navbar-desktop .nav-logo img {
  position: static;
  height: 80px;
  transform: none;
}

body.nav-sidebar-mode .navbar-desktop .nav-links {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin: 0;
  width: 100%;
}

body.nav-sidebar-mode .navbar-desktop .nav-links li::before {
  display: none;
}

body.nav-sidebar-mode .navbar-desktop .nav-links a {
  padding: 10px 8px;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  width: 100%;
}

body.nav-sidebar-mode .navbar-desktop .nav-links a:hover {
  background-color: rgba(201, 169, 110, 0.08);
}

/* Sidebar separator: ---- heart ---- */
body.nav-sidebar-mode .navbar-desktop .nav-links li+li::before {
  content: '';
  position: static;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  font-size: inherit;
  transform: none;
  color: inherit;
}

body.nav-sidebar-mode .navbar-desktop .nav-links li {
  width: 100%;
}

body.nav-sidebar-mode .navbar-desktop .nav-links li+li .nav-separator {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 8px;
}

body.nav-sidebar-mode .navbar-desktop .nav-links li+li .nav-separator .sep-line {
  flex: 1;
  height: 1px;
  background-color: var(--color-gold);
}

body.nav-sidebar-mode .navbar-desktop .nav-links li+li .nav-separator .sep-heart {
  color: var(--color-gold);
  font-size: 0.65rem;
  line-height: 1;
}

/* Nav flourish - hidden in top mode */
.nav-flourish {
  display: none;
}

body.nav-sidebar-mode .hero-section {
  padding-top: 0px;
}

body.nav-sidebar-mode .nav-flourish {
  display: block;
  width: 60%;
  margin-top: auto;
  /* padding: 20px 10px 10px; */
  object-fit: contain;
  opacity: 0.8;
}

/* Hide sidebar-only elements in top mode */
.nav-separator {
  display: none;
}

.nav-link-icon {
  display: none;
}

body.nav-sidebar-mode .navbar-desktop .nav-links .nav-link-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin-right: 8px;
  vertical-align: middle;
  flex-shrink: 0;
}

body.nav-sidebar-mode .navbar-desktop .nav-links a {
  display: flex;
  align-items: center;
}

/* Sidebar mode falls back to top navbar on mobile */
@media (max-width: 991px) {
  body.nav-sidebar-mode {
    margin-left: 0;
  }

  body.nav-sidebar-mode .navbar-desktop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    padding: 0;
    height: 56px;
    background-image: linear-gradient(to right, transparent, var(--color-gold));
    background-size: 100% 1px;
    background-position: bottom;
  }

  body.nav-sidebar-mode .navbar-desktop .nav-container {
    flex-direction: row;
    height: 56px;
    align-items: center;
  }

  body.nav-sidebar-mode .navbar-desktop .nav-logo {
    margin-bottom: 0;
    margin-left: 0;
    width: auto;
    height: 56px;
  }

  body.nav-sidebar-mode .navbar-desktop .nav-logo img {
    position: static;
    height: 56px;
    width: auto;
    transform: none;
    top: auto;
  }

  body.nav-sidebar-mode .navbar-desktop .nav-links {
    display: none;
  }

  body.nav-sidebar-mode .navbar-desktop .nav-flourish {
    display: none;
  }

  body.nav-sidebar-mode .hamburger-btn {
    display: block;
  }

  body.nav-sidebar-mode .hero-section {
    padding-top: 125px;
  }
}

/* === Hero === */
.hero-section {
  padding: 100px 0 50px;
  text-align: center;
}

.hero-top {
  position: relative;
  display: grid;
  height: clamp(460px, 34vw, 620px);
  margin-bottom: 40px;
}

.hero-top > * {
  grid-area: 1 / 1;
}

.hero-photo-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%),
    linear-gradient(to bottom, black 88%, transparent 100%);
  -webkit-mask-composite: destination-in;
  mask-image:
    linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%),
    linear-gradient(to bottom, black 88%, transparent 100%);
  mask-composite: intersect;
}

.hero-headline {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 46%;
  text-align: left;
  padding-left: clamp(20px, 6vw, 100px);
}

.hero-headline::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: -18% -12%;
  background: radial-gradient(ellipse 62% 62% at 38% 50%, rgba(248, 236, 232, 0.95) 0%, rgba(248, 236, 232, 0.75) 40%, rgba(248, 236, 232, 0) 78%);
  filter: blur(10px);
  pointer-events: none;
}

.hero-headline-accent,
.hero-headline-main {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  margin: 0;
}

.hero-headline-accent {
  color: var(--color-gold-dark);
}

.hero-headline-main {
  color: var(--color-primary);
  margin-bottom: 14px;
}

.hero-headline-sep {
  max-width: 220px;
  margin-left: 0;
}

.hero-headline-sep .sep-heart {
  font-size: 2.8rem;
  line-height: 1;
}

.hero-services {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
  padding: 0 8px;
}

.hero-service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  max-width: 200px;
}

.hero-service-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 110, 0.08);
  margin-bottom: 14px;
  box-shadow: 0 0 14px rgba(201, 169, 110, 0.25);
  -webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 99%);
  mask-image: linear-gradient(to bottom, black 75%, transparent 99%);
}

.hero-service-circle img {
  width: 88%;
  height: 88%;
  object-fit: contain;
}

.hero-service-circle--photo {
  background: transparent;
  -webkit-mask-image: none;
  mask-image: none;
}

.hero-service-circle--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-service-title {
  font-family: 'Times New Roman', Times, serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 6px;
  line-height: 1.35;
  color: var(--color-primary);
}

.hero-service-sub {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 3px;
  display: block;
}

.hero-sep {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 4px 0 10px;
  gap: 6px;
}

.hero-sep .sep-line {
  flex: 1;
  height: 2px;
  background: var(--color-gold);
  opacity: 0.5;
  display: inline-block;
}

.hero-sep .sep-heart {
  color: var(--color-gold);
  font-size: 2.5rem;
  line-height: 1;
}

.hero-tovabb-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold-light) 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s;
}

.hero-tovabb-btn:hover {
  opacity: 0.88;
  color: #fff;
}

.hero-fedezd-wrap {
  max-width: 420px;
  margin: 0 auto;
  padding: 0 16px;
}

.hero-fedezd-btn {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  padding: 18px 24px;
  border-radius: 8px;
  text-decoration: none;
  margin-bottom: 16px;
  transition: opacity 0.3s;
  box-sizing: border-box;
}

.hero-fedezd-btn:hover {
  opacity: 0.88;
  color: #fff;
}

/* === Fülbelövés Intro === */
.fb-intro-img {
  max-width: 350px;
  width: 50%;
  height: auto;
  display: block;
  margin: 0 auto 20px;
}

.fb-intro-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-primary);
  padding-left: 10px;
}

.fb-intro-photo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}

.fb-intro-logo {
  display: none;
}

.fb-intro-photo {
  width: 50%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border-radius: 0;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-composite: destination-in;
  mask-image:
    linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  mask-composite: intersect;
}

.fb-event-photo {
  width: 80%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border-radius: 0;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, black 15%, black 95%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 15%, black 95%, transparent 100%);
  -webkit-mask-composite: destination-in;
  mask-image:
    linear-gradient(to right, transparent 0%, black 15%, black 95%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 15%, black 95%, transparent 100%);
  mask-composite: intersect;
}

/* === Fülbelövés Section === */
.fulbeloves-section {
  font-family: 'Times New Roman', Times, serif;
}

.fb-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.fb-header-icon {
  height: 120px;
  width: auto;
  object-fit: contain;
}

.fb-header-center {
  text-align: center;
}

.fb-title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 6px;
  color: var(--color-primary);
  margin: 0;
}

.fb-subtitle {
  font-size: 1.1rem;
  letter-spacing: 3px;
  color: var(--color-primary);
  margin: 5px 0 0;
}

.fb-heart {
  color: var(--color-gold);
  font-size: 1.2rem;
}

/* Választék label */
.fb-valasztek-label {
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 400px;
  margin: 0 auto 25px;
}

.fb-label-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold));
}

.fb-label-line:last-child {
  background: linear-gradient(to left, transparent, var(--color-gold));
}

.fb-label-text {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--color-gold);
  text-transform: uppercase;
  border: 1px solid var(--color-gold);
  padding: 4px 20px;
  border-radius: 20px;
  white-space: nowrap;
}

/* Earring grid */
.fb-earring-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--color-gold);
  padding: 10px;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto 30px;
}

.fb-earring-item {
  text-align: center;
  cursor: pointer;
}

.fb-earring-num {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 4px;
}

.fb-earring-item img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  transition: transform 0.3s;
}

.fb-earring-item:hover img {
  transform: scale(1.15);
}

/* Feature badges */
.fb-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.fb-feature {
  display: flex;
  align-items: center;
  gap: 6px;
}

.fb-feature img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.fb-feature span {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--color-primary);
}

.fb-baby-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 10px 0 25px;
}

.fb-baby-badge img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.fb-baby-badge span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 1px;
}

/* Price box */
.fb-price-box {
  text-align: center;
  border: 2px solid var(--color-gold);
  border-radius: 12px;
  padding: 15px 30px;
  max-width: 320px;
  margin: 0 auto 25px;
  background-color: rgba(255, 255, 255, 0.5);
}

.fb-price-label {
  font-size: 1rem;
  color: var(--color-primary);
  margin: 0;
}

.fb-price {
  font-family: 'Times New Roman', Times, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gold);
  margin: 0;
}

/* Includes box */
.fb-includes {
  max-width: 550px;
  margin: 0 auto 10px;
}

.fb-includes-inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--color-gold);
  border-radius: 10px;
  padding: 15px 20px;
}

.fb-check-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
}

.fb-delivery-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
}

.fb-includes-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 4px;
  letter-spacing: 0.5px;
}

.fb-includes-text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5;
}

.fb-includes-list {
  list-style: disc;
  margin: 0;
  padding-left: 18px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Universal választék */
.fb-universal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 25px 0;
}

.fb-uv-box {
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--color-gold);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.fb-box-title {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.fb-box-title--gold-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f5d48a, #c8963e, #f5d48a);
  color: #000;
  border-radius: 30px;
  padding: 6px 24px;
  margin-bottom: 16px;
}

.fb-box-title-sub {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 1px;
}

.fb-color-gold {
  color: #c8963e;
}

.fb-color-silver {
  color: #6e7580;
}

.fb-stone-cat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--color-gold);
  text-transform: uppercase;
  margin: 0 0 6px;
}

.fb-stones-img {
  width: 100%;
  max-width: 200px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.fb-shapes-inline {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.fb-shape-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.fb-shape-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.fb-shape-item:hover img {
  transform: scale(1.12);
}

.fb-shape-item span {
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  color: var(--color-primary);
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
}

.fb-box-note {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin: 10px 0 0;
  line-height: 1.4;
}

/* Új kövek grid */
.fb-uj-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 12px;
}

.fb-uj-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.fb-uj-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.fb-uj-item:hover img {
  transform: scale(1.12);
}

.fb-uj-item span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--color-primary);
  text-transform: uppercase;
  text-align: center;
}

.fb-uj-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin: 0 0 10px;
}

/* Fülbelövés responsive */
@media (max-width: 770px) {
  .fb-universal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .fb-title {
    font-size: 1.3rem;
    letter-spacing: 1px;
  }

  .fb-header-icon {
    height: 50px;
  }

  .fb-header {
    gap: 10px;
  }

  .fb-earring-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .fb-earring-item img {
    width: 55px;
    height: 55px;
  }

  .fb-features {
    gap: 12px;
  }

  .fb-feature span {
    font-size: 0.75rem;
  }

  .fb-price {
    font-size: 2rem;
  }

  .fb-uj-item img {
    width: 65px;
    height: 65px;
  }
}

/* === Esemény promo doboz === */
.esemeny-promo {
  background: linear-gradient(135deg, var(--color-bg-alt, #fdf8f0) 0%, #fff8ec 100%);
  border-left: 4px solid var(--color-gold);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.esemeny-promo p {
  margin-bottom: 0.5rem;
}

.esemeny-promo-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem !important;
}

.esemeny-promo-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.esemeny-promo-text {
  flex: 1;
  padding-right: 1.5rem;
  min-width: 0;
}

.esemeny-promo-kep-wrap {
  flex: 0 0 33.333%;
  position: relative;
  border-radius: 0 8px 8px 0;
  overflow: hidden;
}

.esemeny-promo-kep {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, black 25%, black 75%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-composite: destination-in;
  mask-image:
    linear-gradient(to right, transparent 0%, black 25%, black 75%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  mask-composite: intersect;
}

@media (max-width: 576px) {
  .esemeny-promo-inner {
    flex-direction: column;
  }
  .esemeny-promo-text {
    padding-right: 0;
  }
  .esemeny-promo-kep-wrap {
    width: 100%;
    height: 200px;
    border-radius: 0 0 8px 8px;
  }
}

.esemeny-promo-slogan {
  font-weight: 700;
  color: var(--color-gold);
  margin-top: 0.25rem;
}

/* === Fülbelövés Rendezvényen kiemelések === */
.rendezv-ujdonsag,
.rendezv-miert {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 4px;
}

/* === Buttons === */
.btn-gold {
  background-color: var(--color-gold);
  color: #fff;
  border: none;
  padding: 10px 32px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background-color 0.3s;
  border-radius: 4px;
}

.btn-gold:hover {
  background-color: var(--color-gold-dark);
  color: #fff;
}

.btn-outline-gold {
  background-color: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  padding: 10px 32px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s;
  border-radius: 4px;
}

.btn-outline-gold:hover {
  background-color: var(--color-gold);
  color: #fff;
}

/* === Sections === */
.section-block {
  padding: 80px 0;
  font-family: 'Times New Roman', Times, serif;
}

.section-alt {
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(201, 169, 110, 0.26) 3%,
    rgba(201, 169, 110, 0.26) 97%,
    transparent 100%
  );
}

.section-title {
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 40px;
  text-align: center;
}

.section-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-muted);
}

/* Gold divider */
.gold-divider {
  width: 60px;
  height: 1px;
  background-color: var(--color-gold);
  margin: 0 auto 40px;
}

/* === Product Cards === */
.product-card {
  border: none;
  background-color: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
  border-radius: 8px;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.product-card .card-img-top {
  height: 220px;
  object-fit: cover;
}

.product-card .card-title {
  color: var(--color-primary);
  font-weight: 500;
}

.price {
  color: var(--color-gold);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0;
}

.product-kategoriak {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  margin-bottom: 6px;
}

.product-kategoria-badge {
  display: inline-block;
  background-color: rgba(201, 169, 110, 0.15);
  color: var(--color-gold-dark);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
}

.product-badge-elfogyott {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #c0392b;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}

/* === Webshop teaser (főoldal) === */
.webshop-teaser {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.webshop-teaser-kep-link {
  display: block;
  width: 100%;
  max-width: 420px;
  border-radius: 8px;
  overflow: hidden;
}

.webshop-teaser-kep {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.webshop-teaser-kep-link:hover .webshop-teaser-kep {
  transform: scale(1.03);
}

/* === Event Cards === */
.event-card {
  border: none;
  background-color: #fff;
  border-left: 3px solid var(--color-gold);
  border-radius: 0 8px 8px 0;
  transition: transform 0.3s;
}

.event-card:hover {
  transform: translateY(-3px);
}

.event-card .card-title {
  color: var(--color-primary);
}

.event-card .card-text {
  color: var(--color-text-muted);
}

.event-card-anchor {
  display: block;
  text-decoration: none;
  color: inherit;
}

.event-card--link {
  cursor: pointer;
}

.event-card--link:hover {
  border-left-color: var(--color-gold-dark);
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.2);
}

.event-card-ext {
  font-size: 0.75rem;
  opacity: 0.6;
  vertical-align: middle;
}

.event-card.korabbi {
  opacity: 0.5;
  filter: grayscale(60%);
  border-left-color: #aaa;
}

/* === Contact === */
.form-control,
.form-select {
  border: 1px solid #ddd;
  padding: 10px 14px;
  color: #333;
  background-color: #fff;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 0.2rem rgba(201, 169, 110, 0.25);
}

.form-label {
  color: var(--color-primary);
  font-weight: 500;
}

.contact-info {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid var(--color-gold);
}

.contact-info p {
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: var(--color-primary);
}

.contact-info i {
  color: var(--color-gold);
}

/* === Footer === */
.site-footer {
  background-color: var(--bg-main);
  border-top: 1px solid var(--color-gold);
  color: var(--color-text-muted);
  padding: 24px 0;
}

.footer-brand {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-gold);
}

.footer-company {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem 0.5rem;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}

.footer-links a {
  color: var(--color-text-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--color-gold);
  text-decoration: underline;
}

.footer-sep {
  color: #555;
}

.footer-copy {
  font-size: 0.78rem;
  color: #666;
}

/* === Responsive === */
@media (max-width: 991px) {
  .navbar-desktop .nav-links {
    display: none;
  }

  .hamburger-btn {
    display: block;
    margin-left: auto;
  }

  .navbar-desktop {
    padding: 0;
    height: 56px;
  }

  .navbar-desktop .nav-logo {
    width: auto;
    height: 56px;
    margin-left: 0;
    flex-shrink: 0;
  }

  .navbar-desktop .nav-logo img {
    position: static;
    height: 56px;
    width: auto;
    transform: none;
    top: auto;
  }

  .hero-top {
    height: 60vw;
    margin-top: -70px;
  }

  .hero-photo {
    object-position: left top;
  }

  .hero-headline {
    max-width: 55%;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 100px 0 40px;
  }

  .hero-top {
    height: 60vw;
  }

  .hero-headline {
    max-width: 62%;
    padding-left: 16px;
  }

  .hero-headline-sep {
    max-width: 160px;
  }

  .hero-headline-sep .sep-heart {
    font-size: 2rem;
  }

  .hero-service-circle {
    width: 26vw;
    height: 26vw;
  }

  .hero-service-title {
    font-size: 0.72rem;
    letter-spacing: 1px;
  }

  .hero-service-sub {
    font-size: 0.58rem;
    letter-spacing: 1.5px;
  }

  .hero-tovabb-btn {
    font-size: 0.6rem;
    padding: 6px 10px;
    letter-spacing: 1px;
  }

  .hero-fedezd-btn {
    font-size: 0.85rem;
    letter-spacing: 4px;
    padding: 15px 20px;
  }

  .section-block {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .fb-intro-logo {
    display: block;
    width: 42vw;
    height: auto;
  }

  .fb-intro-photo {
    width: 42vw;
    max-width: none;
    margin: 0;
  }

  .fb-intro-photo-wrapper {
    margin-bottom: 20px;
  }

  .fb-event-photo {
    width: 80vw;
    max-width: none;
    margin: 0 auto;
  }
}

/* === Product modal === */
.product-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.product-modal.active {
  display: flex;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.product-modal-content {
  position: relative;
  z-index: 1;
  width: 80vw;
  max-height: 80vh;
  overflow-y: auto;
}

.product-modal-content .product-card {
  margin: 0;
}

.product-modal-content .product-card .card-img-top {
  height: auto;
  max-height: calc(80vh - 120px);
  width: 100%;
  object-fit: contain;
}

.product-modal-close {
  position: absolute;
  top: -36px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  z-index: 2;
}

.product-modal-close:hover {
  color: var(--color-gold);
}

.product-modal-img-wrap {
  position: relative;
  touch-action: pan-y;
}

.product-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-modal-nav:hover {
  background: rgba(0, 0, 0, 0.75);
}

.product-modal-nav[hidden] {
  display: none;
}

.product-modal-prev {
  left: 10px;
}

.product-modal-next {
  right: 10px;
}

.product-modal-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 10px 0 0;
}

.product-modal-dots:empty {
  display: none;
}

.product-modal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  padding: 0;
  cursor: pointer;
}

.product-modal-dot.active {
  background: var(--color-gold);
}

/* === Earring lightbox modal === */
.earring-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.earring-modal.active {
  display: flex;
}

.earring-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.earring-modal-content {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--color-gold, #c9a96e);
  border-radius: 8px;
  padding: 32px 40px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 90vw;
  max-height: 90vh;
}

.earring-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  color: var(--color-gold, #c9a96e);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.earring-modal-close:hover {
  color: #fff;
}

.earring-modal-num {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary, #c9a96e);
  letter-spacing: 1px;
}

.earring-modal-img {
  width: min(340px, 80vw);
  height: min(340px, 80vw);
  object-fit: contain;
}

/* === Fülbelövés eszközök szekció === */
.fb-tools-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  max-width: 1040px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 12px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  padding: 40px 20px;
}

.fb-tool-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 30px;
  text-align: center;
}

.fb-tool-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 70px;
  margin-bottom: 16px;
}

.fb-tool-title {
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.fb-tool-subtitle {
  font-size: 0.72rem;
  letter-spacing: 2px;
  color: var(--color-text-muted);
  margin-bottom: 0;
  text-transform: uppercase;
}

.fb-tool-img {
  width: 280px;
  height: 280px;
  object-fit: contain;
  margin-bottom: 24px;
  transition: transform 0.2s ease;
}

.fb-tool-img:hover {
  transform: scale(1.15);
}

.fb-tool-prices {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.fb-tool-price-row {
  display: grid;
  grid-template-columns: 29px 1fr auto;
  align-items: center;
  gap: 15px;
  width: 100%;
}

.fb-tool-icon-img {
  width: 29px;
  height: 29px;
  object-fit: contain;
  flex-shrink: 0;
}

.fb-tool-qty {
  font-size: 1.38rem;
  letter-spacing: 1px;
  text-align: left;
}

.fb-tool-price {
  font-size: 1.38rem;
  font-weight: 700;
  color: var(--color-gold-dark);
  white-space: nowrap;
}

.fb-tools-divider {
  width: 1px;
  background: var(--color-gold);
  align-self: stretch;
  margin: 10px 0;
  opacity: 0.6;
}

@media (max-width: 640px) {
  .fb-tools-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding: 30px 16px;
  }

  .fb-tools-divider {
    width: 60%;
    height: 1px;
    margin: 10px auto;
    align-self: auto;
  }

  .fb-tool-panel {
    padding: 10px 10px;
  }

  .fb-tool-img {
    width: 220px;
    height: 220px;
  }
}