/* ============================================================
   Lumière Szalon — UNIFIED VERSION — style.css
   Theme Toggle System: Premium & Normal versions in one
   ============================================================ */

/* ─── Theme Toggle Switch ─────────────────────────────────── */
.theme-toggle {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.theme-toggle:hover {
  transform: translateY(-50%) translateX(2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
}

.theme-toggle-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.theme-toggle-labels {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.theme-toggle-label {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.3s ease;
  min-width: 80px;
  text-align: center;
  white-space: nowrap;
}

.theme-toggle-label:hover {
  background: rgba(201, 168, 76, 0.2);
  border-color: rgba(201, 168, 76, 0.5);
  color: #D4AF37;
  transform: translateY(-1px);
}

.theme-toggle-label.active {
  background: linear-gradient(135deg, #C9A84C, #D4AF37);
  border: 1px solid #B8971F;
  color: #1a1a1a;
  font-weight: 700;
  box-shadow:
    0 3px 10px rgba(201, 168, 76, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.theme-toggle-label.active:hover {
  background: linear-gradient(135deg, #D4AF37, #E8C547);
  transform: translateY(-2px);
  box-shadow:
    0 4px 15px rgba(201, 168, 76, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .theme-toggle {
    left: 10px;
    padding: 6px;
    border-radius: 10px;
  }

  .theme-toggle-label {
    font-size: 0.7rem;
    padding: 6px 10px;
    min-width: 55px;
  }
}

@media (max-width: 768px) {
  .theme-toggle {
    left: 10px;
    padding: 12px 8px;
    border-radius: 14px;
  }

  .theme-toggle-label {
    font-size: 0.7rem;
    padding: 8px 10px;
    min-width: 50px;
  }
}

/* ─── Theme-specific Element Visibility ──────────────────── */
.theme-premium .normal-only,
.theme-premium .normal-gallery,
.theme-premium .normal-cta {
  display: none !important;
}

.theme-normal .premium-only,
.theme-normal .premium-gallery,
.theme-normal .premium-cta {
  display: none !important;
}

/* Ensure proper gallery display */
.theme-premium .premium- {
  display: block;
}

.theme-normal .normal-gallery {
  display: block;
}

/* ============================================================
   PREMIUM THEME STYLES
   ============================================================ */

.theme-premium {
  /* ─── CSS Custom Properties ──────────────────────────────── */
  --bg-primary:     #080808;
  --bg-secondary:   #101010;
  --bg-tertiary:    #161616;
  --bg-card:        rgba(255, 255, 255, 0.035);
  --bg-card-hover:  rgba(255, 255, 255, 0.065);
  --gold:           #C9A84C;
  --gold-light:     #D4AF37;
  --gold-dark:      #A0832A;
  --gold-muted:     rgba(201, 168, 76, 0.18);
  --rose:           #C87490;
  --rose-light:     #E8B4C0;
  --text-primary:   #F0EAD6;
  --text-secondary: #A09078;
  --text-muted:     #5A4E42;
  --border:         rgba(201, 168, 76, 0.18);
  --border-subtle:  rgba(255, 255, 255, 0.055);

  /* Spacing */
  --section-py: 7rem;
  --container-px: clamp(1.25rem, 5vw, 3rem);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --dur-fast:   150ms;
  --dur-med:    280ms;
  --dur-slow:   820ms;
}

/* ─── Reset & Base ───────────────────────────────────────── */
.theme-premium *,
.theme-premium *::before,
.theme-premium *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.theme-premium {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.theme-premium a {
  color: inherit;
  text-decoration: none;
  transition: all var(--dur-med) var(--ease-out);
}

.theme-premium button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
  transition: all var(--dur-med) var(--ease-out);
}

.theme-premium img {
  max-width: 100%;
  height: auto;
  display: block;
}

.theme-premium .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─── Custom Cursor ─────────────────────────────────────── */
.theme-premium #cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: transform var(--dur-fast) var(--ease-out);
}

.theme-premium #cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: transform var(--dur-med) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}

.theme-premium.cursor-hover #cursor-ring {
  border-color: var(--gold);
  transform: scale(1.5) !important;
}

.theme-premium.cursor-click #cursor-ring {
  transform: scale(0.8) !important;
}

@media (max-width: 768px) {
  .theme-premium #cursor-dot,
  .theme-premium #cursor-ring {
    display: none;
  }
}

/* ─── Navigation ─────────────────────────────────────────── */
.theme-premium #navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1rem 0;
  transition: all var(--dur-med) var(--ease-out);
}

.theme-premium #navbar.scrolled {
  background: rgba(8, 8, 8, 0.95);
  padding: 0.75rem 0;
  backdrop-filter: blur(25px);
}

.theme-premium .nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.theme-premium .nav-logo {
  font-family: 'Cormorant Garamond', serif;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  transition: transform var(--dur-med) var(--ease-out);
  will-change: transform;
  cursor: pointer;
}

.theme-premium .logo-lumi {
  color: var(--gold);
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: -2px;
}

.theme-premium .logo-szalon {
  color: var(--text-primary);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

.theme-premium .nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.theme-premium .nav-link {
  color: var(--text-secondary);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  position: relative;
  transition: all var(--dur-med) var(--ease-out);
}

.theme-premium .nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--dur-slow) var(--ease-out);
}

.theme-premium .nav-link:hover,
.theme-premium .nav-link.active {
  color: var(--gold);
}

.theme-premium .nav-link:hover::after,
.theme-premium .nav-link.active::after {
  width: 100%;
}

.theme-premium .nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.theme-premium .btn-gold-sm {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--dur-med) var(--ease-out);
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.2);
}

.theme-premium .btn-gold-sm:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
}

.theme-premium .nav-socials {
  display: flex;
  gap: 1rem;
}

.theme-premium .nav-social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: all var(--dur-med) var(--ease-out);
  will-change: transform, border-color, color;
}

.theme-premium .nav-social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.theme-premium .nav-social-link.magnetic {
  cursor: pointer;
}

.theme-premium .nav-social-link svg {
  width: 18px;
  height: 18px;
}

.theme-premium .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  transition: transform var(--dur-med) var(--ease-out);
}

.theme-premium .hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--dur-med) var(--ease-out);
}

.theme-premium .hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}
.theme-premium .hamburger.open span:nth-child(2) {
  opacity: 0;
}
.theme-premium .hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

.theme-premium .mobile-menu {
  display: none;
  position: fixed;
  top: 78px;
  left: 0;
  width: 100%;
  height: calc(100vh - 78px);
  background: rgba(8, 8, 8, 0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 999;
}

.theme-premium .mobile-menu ul {
  list-style: none;
  text-align: center;
}

.theme-premium .mobile-link {
  display: block;
  padding: 1.2rem;
  font-size: 1.3rem;
  color: var(--text-primary);
  transition: color var(--dur-med) var(--ease-out);
}

.theme-premium .mobile-link:hover {
  color: var(--gold);
}

@media (max-width: 768px) {
  .theme-premium .nav-links,
  .theme-premium .nav-socials,
  .theme-premium .btn-gold-sm {
    display: none;
  }
  .theme-premium .hamburger {
    display: flex;
  }

  /* Keep hero buttons side by side on mobile like normal version */
  .theme-premium .hero-ctas {
    flex-direction: row;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0.8rem;
  }

  /* Adjust button sizes for mobile side-by-side layout */
  .theme-premium .hero-ctas .btn-gold,
  .theme-premium .hero-ctas .btn-ghost {
    padding: 0.7rem 1.2rem;
    font-size: 0.55rem;
    margin: 0 !important;
    flex: 1 1 auto;
    max-width: 45%;
    white-space: nowrap;
    text-align: center;
  }
}

/* ─── Hero Section ───────────────────────────────────────── */
.theme-premium .hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Prevents horizontal scrolling from parallax */
}

.theme-premium .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.theme-premium .hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  will-change: transform;
  transition: transform 0.1s linear;
  /* Enable GPU acceleration for smooth mobile performance */
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.theme-premium .hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(8, 8, 8, 0.7) 0%,
    rgba(16, 16, 16, 0.6) 50%,
    rgba(8, 8, 8, 0.8) 100%
  );
}

.theme-premium .hero-deco-line {
  position: absolute;
  top: 20%;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}

.theme-premium .hero-deco-line--left {
  left: 15%;
  transform: rotate(-45deg);
  animation: pulse 3s ease-in-out infinite;
}

.theme-premium .hero-deco-line--right {
  right: 15%;
  transform: rotate(45deg);
  animation: pulse 3s ease-in-out infinite 1.5s;
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

.theme-premium .hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  max-width: 900px;
  margin: 0 auto;
}

.theme-premium .hero-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--dur-slow) var(--ease-out);
}

.theme-premium .hero-tag-line {
  width: 50px;
  height: 1px;
  background: var(--gold);
}

.theme-premium .hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 0.8rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--dur-slow) var(--ease-out) 0.1s;
}

.theme-premium .hero-title-lumi {
  display: block;
  color: var(--gold);
  font-weight: 600;
  text-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
}

.theme-premium .hero-title-italic {
  font-style: italic;
  font-weight: 300;
}

.theme-premium .hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--dur-slow) var(--ease-out) 0.2s;
}

.theme-premium .hero-ctas {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--dur-slow) var(--ease-out) 0.3s;
}

.theme-premium .btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  padding: 0.9rem 2.2rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all var(--dur-med) var(--ease-out);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.theme-premium .btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}

.theme-premium .btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: white;
  padding: 0.9rem 2.2rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
  transition: all var(--dur-med) var(--ease-out);
}

.theme-premium .btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  transform: translateY(-2px);
}

.theme-premium .hero-glass-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--dur-slow) var(--ease-out) 0.4s;
}

.theme-premium .hero-glass-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-premium .hero-glass-icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
}

.theme-premium .hero-glass-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.theme-premium .hero-glass-value {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
}

.theme-premium .hero-glass-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.2);
}

.theme-premium .scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.7);
  animation: bounce 2s ease-in-out infinite;
}

.theme-premium .scroll-indicator-text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.theme-premium .scroll-indicator-line {
  width: 2px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1px;
  position: relative;
  overflow: hidden;
}

.theme-premium .scroll-indicator-dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: -1px;
  animation: scroll-dot 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes scroll-dot {
  0% { top: 0; opacity: 1; }
  100% { top: 36px; opacity: 0; }
}

/* ─── Scroll Reveal Animations ──────────────────────────── */
.theme-premium [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--dur-slow) var(--ease-out);
}

.theme-premium [data-reveal="fade-right"] {
  transform: translateX(-30px);
}

.theme-premium [data-reveal="fade-left"] {
  transform: translateX(30px);
}

.theme-premium [data-reveal="fade-down"] {
  transform: translateY(-30px);
}

.theme-premium [data-reveal].revealed,
.theme-premium .hero-tag.revealed,
.theme-premium .hero-title.revealed,
.theme-premium .hero-subtitle.revealed,
.theme-premium .hero-ctas.revealed,
.theme-premium .hero-glass-card.revealed {
  opacity: 1;
}

@media (max-width: 768px) {
  .theme-premium .hero-glass-card {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  .theme-premium .hero-glass-divider {
    display: none;
  }
  .theme-premium .hero-deco-line {
    display: none;
  }
  .theme-premium .scroll-indicator {
    display: none;
  }

  /* Gallery mobile responsive layout */
  .theme-premium .gallery-masonry {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 1rem;
    margin: 0 1rem;
  }
}

/* Gallery tablet layout */
@media (max-width: 1024px) and (min-width: 769px) {
  .theme-premium .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
    gap: 1.2rem;
  }
}

/* ─── Sections ───────────────────────────────────────────── */
.theme-premium .section {
  padding: var(--section-py) 0;
}

.theme-premium .section--alt {
  background: var(--bg-secondary);
}

.theme-premium .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.theme-premium .section-header {
  margin-bottom: 4rem;
}

.theme-premium .section-header--centered {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem;
}

.theme-premium .section-eyebrow {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.theme-premium .section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--text-primary);
}

.theme-premium .section-title em {
  font-style: italic;
  color: var(--gold);
}

/* ─── About Section ──────────────────────────────────────── */
.theme-premium .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.theme-premium .about-img-frame {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  will-change: transform;
}

.theme-premium .about-img-frame.magnetic {
  transition: transform var(--dur-med) var(--ease-out);
  cursor: pointer;
}

.theme-premium .about-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--dur-slow) var(--ease-out);
}

.theme-premium .about-img-frame:hover .about-img {
  transform: scale(1.05);
}

.theme-premium .about-img-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 60px;
  height: 60px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  opacity: 0.6;
}

.theme-premium .about-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.theme-premium .about-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  flex: 1;
  text-align: center;
  transition: all var(--dur-med) var(--ease-out);
  will-change: transform;
}

.theme-premium .about-stat-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.theme-premium .about-stat-card.magnetic {
  will-change: transform;
  cursor: pointer;
}

.theme-premium .about-stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.theme-premium .about-stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.theme-premium .about-body {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.theme-premium .about-body em {
  color: var(--gold);
  font-style: italic;
}

.theme-premium .about-signature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}

.theme-premium .about-sig-line {
  width: 80px;
  height: 1px;
  background: var(--gold);
}

.theme-premium .about-sig-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1.1rem;
}

@media (max-width: 968px) {
  .theme-premium .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ─── Services Section ───────────────────────────────────── */
.theme-premium .services-accordion {
  max-width: 1000px;
  margin: 0 auto;
}

.theme-premium .service-category {
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  background: var(--bg-card);
  transition: all var(--dur-med) var(--ease-out);
  overflow: hidden;
}

.theme-premium .service-category:hover {
  border-color: var(--border);
  background: var(--bg-card-hover);
}

.theme-premium .service-cat-header {
  width: 100%;
  padding: 2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  text-align: left;
  transition: all var(--dur-med) var(--ease-out);
}

.theme-premium .service-cat-title {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 1.3rem;
  font-weight: 500;
}

.theme-premium .service-cat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 600;
}

.theme-premium .service-cat-arrow {
  width: 24px;
  height: 24px;
  color: var(--text-secondary);
  transition: all var(--dur-med) var(--ease-out);
}

.theme-premium .service-cat-header[aria-expanded="true"] .service-cat-arrow {
  transform: rotate(180deg);
  color: var(--gold);
}

.theme-premium .service-items {
  max-height: 0;
  overflow: hidden;
  transition: all var(--dur-med) var(--ease-out);
}

.theme-premium .service-items.open {
  max-height: 500px;
  padding: 0 2.5rem 2rem;
}

.theme-premium .service-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: padding var(--dur-med) var(--ease-out);
}

.theme-premium .service-item:last-child {
  border-bottom: none;
}

.theme-premium .service-item:hover {
  padding-left: 1rem;
}

.theme-premium .service-name {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-size: 1rem;
}

.theme-premium .service-desc {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.theme-premium .service-price {
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  margin-left: 2rem;
  font-size: 1.1rem;
}

.theme-premium .services-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 3rem;
  font-style: italic;
}

/* ─── Gallery Section ────────────────────────────────────── */
.theme-premium .gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.theme-premium .gallery-item {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  aspect-ratio: 3 / 4;
  transition: transform var(--dur-med) var(--ease-out);
}

/* Premium gallery: strict 3x2 layout with uniform image containers */
.theme-premium .gallery-masonry {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
}

/* Style the normal gallery wrapper and image in premium mode */
.theme-premium .gallery-item.normal-gallery .gallery-img-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.theme-premium .gallery-btn {
  width: 100%;
  height: 100%;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.theme-premium .gallery-item.normal-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-med) var(--ease-out);
}

.theme-premium .gallery-item.normal-gallery:hover img {
  transform: scale(1.05);
}

/* Normal gallery captions styling */
.theme-premium .gallery-item.normal-gallery .gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  padding: 1rem;
  font-weight: 500;
  font-size: 1rem;
}

.theme-premium .gallery-item:hover {
  transform: translateY(-4px);
}

.theme-premium .gallery-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.theme-premium .gallery-btn:hover img {
  transform: scale(1.1);
}

.theme-premium .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease-out);
}

.theme-premium .gallery-btn:hover .gallery-overlay {
  opacity: 1;
}

.theme-premium .gallery-overlay-text {
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* ─── Lightbox ───────────────────────────────────────────── */
.theme-premium .lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur-med) var(--ease-out);
}

.theme-premium .lightbox:not([hidden]) {
  opacity: 1;
  visibility: visible;
}

.theme-premium .lightbox-backdrop {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.theme-premium .lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-med) var(--ease-out);
  z-index: 1;
}

.theme-premium .lightbox-close:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.theme-premium .lightbox-close svg {
  width: 20px;
  height: 20px;
}

.theme-premium .lightbox-nav {
  position: absolute;
  top: 50%;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-med) var(--ease-out);
  z-index: 1;
}

.theme-premium .lightbox-prev {
  left: 2rem;
}

.theme-premium .lightbox-next {
  right: 2rem;
}

.theme-premium .lightbox-nav:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.theme-premium .lightbox-nav svg {
  width: 24px;
  height: 24px;
}

.theme-premium .lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}

.theme-premium .lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.theme-premium .lightbox-caption {
  color: white;
  margin-top: 1.5rem;
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Lightbox animations */
.theme-premium .lb-exit-left {
  animation: exitLeft 0.3s ease-in-out forwards;
}

.theme-premium .lb-exit-right {
  animation: exitRight 0.3s ease-in-out forwards;
}

.theme-premium .lb-enter-right {
  animation: enterRight 0.4s ease-in-out forwards;
}

.theme-premium .lb-enter-left {
  animation: enterLeft 0.4s ease-in-out forwards;
}

@keyframes exitLeft {
  to { transform: translateX(-100%); opacity: 0; }
}

@keyframes exitRight {
  to { transform: translateX(100%); opacity: 0; }
}

@keyframes enterRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes enterLeft {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ─── Booking Section ────────────────────────────────────── */
.theme-premium .booking-wizard {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.theme-premium .booking-progress {
  margin-bottom: 3rem;
}

.theme-premium .booking-progress-track {
  width: 100%;
  height: 4px;
  background: var(--border-subtle);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.theme-premium .booking-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  transition: width var(--dur-med) var(--ease-out);
}

.theme-premium .booking-steps-labels {
  display: flex;
  justify-content: space-between;
}

.theme-premium .booking-step-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--dur-med) var(--ease-out);
}

.theme-premium .booking-step-label.active {
  color: var(--gold);
}

.theme-premium .booking-step-label.done {
  color: var(--gold);
}

.theme-premium .step-circle {
  width: 40px;
  height: 40px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all var(--dur-med) var(--ease-out);
}

.theme-premium .booking-step-label.active .step-circle {
  background: var(--gold);
  color: #000;
}

.theme-premium .step-text {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: none;
}

.theme-premium .booking-step-panel {
  display: none;
}

.theme-premium .booking-step-panel.active {
  display: block;
  animation: fadeInUp 0.4s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.theme-premium .booking-step-title {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
  text-align: center;
}

.theme-premium .booking-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
  margin-right: 10px;
  margin-left: 10px;
}

.theme-premium .booking-service-card {
  background: var(--bg-secondary);
  border: 2px solid var(--border-subtle);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--dur-med) var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.theme-premium .booking-service-card:hover {
  border-color: var(--border);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.theme-premium .booking-service-card:has(input:checked) {
  border-color: var(--gold);
  background: var(--gold-muted);
}

.theme-premium .bsc-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.theme-premium .bsc-name {
  font-weight: 500;
  color: var(--text-primary);
}

.theme-premium .bsc-price {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
}

.theme-premium .booking-section-label {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.theme-premium .booking-stylists {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
  margin-left: 10px;
  margin-right: 10px;
}

.theme-premium .stylist-card {
  background: var(--bg-secondary);
  border: 2px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--dur-med) var(--ease-out);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.theme-premium .stylist-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}

.theme-premium .stylist-card:has(input:checked) {
  border-color: var(--gold);
  background: var(--gold-muted);
}

.theme-premium .stylist-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-subtle);
}

.theme-premium .stylist-name {
  font-weight: 500;
  color: var(--text-primary);
}

.theme-premium .stylist-spec {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.theme-premium .booking-dates {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding: 1.2rem 0.4rem;
  margin-bottom: 2rem;
  /* Hide scrollbar but keep functionality */
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 168, 76, 0.3) transparent;
}

.theme-premium .booking-dates::-webkit-scrollbar {
  height: 6px;
}

.theme-premium .booking-dates::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.theme-premium .booking-dates::-webkit-scrollbar-thumb {
  background: rgba(201, 168, 76, 0.3);
  border-radius: 10px;
}

.theme-premium .booking-dates::-webkit-scrollbar-thumb:hover {
  background: rgba(201, 168, 76, 0.5);
}

.theme-premium .date-btn {
  min-width: 70px;
  background: linear-gradient(135deg, rgba(22, 22, 22, 0.95), rgba(16, 16, 16, 0.95));
  border: 1.5px solid rgba(201, 168, 76, 0.2);
  border-radius: 10px;
  padding: 1rem 0.8rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.theme-premium .date-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.theme-premium .date-btn:hover {
  border-color: rgba(201, 168, 76, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(201, 168, 76, 0.15);
}

.theme-premium .date-btn:hover::before {
  opacity: 1;
}

.theme-premium .date-btn.selected {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.25), 0 0 0 1px rgba(201, 168, 76, 0.1) inset;
  transform: translateY(-2px);
}

.theme-premium .date-btn.selected::before {
  opacity: 1;
}

.theme-premium .date-btn-day {
  font-size: 0.65rem;
  color: rgba(201, 168, 76, 0.8);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

.theme-premium .date-btn.selected .date-btn-day {
  color: var(--gold-light);
}

.theme-premium .date-btn-num {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
}

.theme-premium .date-btn.selected .date-btn-num {
  color: var(--gold);
}

.theme-premium .booking-times {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.theme-premium .time-slot {
  background: var(--bg-secondary);
  border: 2px solid var(--border-subtle);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--dur-med) var(--ease-out);
}

.theme-premium .time-slot:hover {
  border-color: var(--border);
}

.theme-premium .time-slot:has(input:checked) {
  border-color: var(--gold);
  background: var(--gold-muted);
}

.theme-premium .booking-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
}

.theme-premium .booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.theme-premium .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.theme-premium .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.theme-premium .form-label {
  font-weight: 500;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.theme-premium .form-input {
  background: var(--bg-secondary);
  border: 2px solid var(--border-subtle);
  border-radius: 8px;
  padding: 1rem;
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all var(--dur-med) var(--ease-out);
}

.theme-premium .form-input:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg-tertiary);
}

.theme-premium .form-textarea {
  resize: vertical;
  min-height: 100px;
}

.theme-premium .form-error {
  display: none;
  color: #e05c6a;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  font-weight: 500;
  animation: shake 0.3s ease-in-out;
}

.theme-premium .form-error.show {
  display: block;
}

.theme-premium .form-input.error {
  border-color: #e05c6a;
  background: rgba(224, 92, 106, 0.05);
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.theme-premium .booking-summary {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.theme-premium .booking-summary-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.theme-premium .booking-summary-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.theme-premium .summary-item {
  display: flex;
  justify-content: space-between;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.theme-premium .booking-confirm {
  text-align: center;
  padding: 4rem 2rem;
}

.theme-premium .confirm-icon {
  width: 80px;
  height: 80px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #000;
  margin: 0 auto 2rem;
}

.theme-premium .confirm-title {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.theme-premium .confirm-body {
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto 2rem;
}

/* ─── Footer ─────────────────────────────────────────────── */
.theme-premium .footer {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
}

.theme-premium .footer-top {
  padding: 5rem 0 3rem;
}

.theme-premium .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
}

.theme-premium .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.theme-premium .footer-logo .logo-lumi {
  font-size: 2rem;
  margin-bottom: -2px;
}

.theme-premium .footer-logo .logo-szalon {
  font-size: 0.8rem;
}

.theme-premium .footer-tagline {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-style: italic;
}

.theme-premium .footer-tagline-left {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-style: italic;
  display: block;
  width: 100%;
  text-align: left;
}

.theme-premium .footer-socials {
  display: flex;
  gap: 1rem;
}

.theme-premium .social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: all var(--dur-med) var(--ease-out);
  will-change: transform, border-color, color;
}

.theme-premium .social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.theme-premium .social-link.magnetic {
  cursor: pointer;
}

.theme-premium .social-link svg {
  width: 20px;
  height: 20px;
}

.theme-premium .footer-col-title {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.theme-premium .footer-links {
  list-style: none;
}

.theme-premium .footer-link {
  display: block;
  padding: 0.6rem 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: all var(--dur-med) var(--ease-out);
}

.theme-premium .footer-link:hover {
  color: var(--gold);
  padding-left: 0.5rem;
}

.theme-premium .footer-hours {
  list-style: none;
}

.theme-premium .hours-item {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  font-size: 0.95rem;
}

.theme-premium .hours-time {
  color: var(--text-primary);
}

.theme-premium .hours-closed {
  color: var(--text-muted);
}

.theme-premium .footer-contact {
  font-style: normal;
}

.theme-premium .footer-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: all var(--dur-med) var(--ease-out);
}

.theme-premium .footer-contact-item:hover {
  color: var(--gold);
}

.theme-premium .footer-contact-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.theme-premium .footer-map {
  margin: 3rem 0;
}

.theme-premium .footer-map-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.theme-premium .footer-map iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.theme-premium .footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 2.5rem 0;
}

.theme-premium .footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .theme-premium .footer-bottom-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ─── Utility ────────────────────────────────────────────── */
.theme-premium .mt-8 {
  margin-top: 2rem;
}

.theme-premium .inline-block {
  display: inline-block;
}

/* ─── Premium Typography Sync (from original lumiere-szalon) ─── */
.theme-premium .logo-lumi {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.theme-premium .logo-szalon {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.theme-premium .nav-link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.theme-premium .mobile-link {
  font-size: 0.77rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.theme-premium .btn-gold {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.theme-premium .btn-gold-sm {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.theme-premium .btn-ghost {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.theme-premium .hero-tag {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.theme-premium .hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4.5rem, 14vw, 11rem);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: -0.02em;
}

.theme-premium .hero-title-italic {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.45em;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.theme-premium .hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.08em;
}

.theme-premium .section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.theme-premium .section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.15;
}

.theme-premium .section-title em {
  font-style: italic;
  font-weight: 300;
}

.theme-premium .about-body {
  font-size: 0.92rem;
  line-height: 1.85;
}

.theme-premium .about-body em {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05em;
  font-style: italic;
}

.theme-premium .about-sig-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.97rem;
  font-style: italic;
}

.theme-premium .service-cat-title > span:last-child {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.theme-premium .service-name {
  font-size: 0.84rem;
  font-weight: 500;
}

.theme-premium .service-desc {
  font-size: 0.74rem;
  line-height: 1.5;
}

.theme-premium .service-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
}

.theme-premium .gallery-overlay-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.02rem;
  font-style: italic;
  letter-spacing: 0.05em;
}

.theme-premium .lightbox-caption {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.02rem;
  font-style: italic;
}

.theme-premium .footer-col-title {
  font-size: 0.745rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.theme-premium .footer-link,
.theme-premium .hours-item,
.theme-premium .footer-contact-item {
  font-size: 0.89rem;
}

.theme-premium .booking-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
}

.theme-premium .step-text,
.theme-premium .booking-section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.theme-premium .booking-section-label {
  color: var(--gold);
}

.theme-premium .bsc-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.4;
}

.theme-premium .bsc-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
}

/* ============================================================
   NORMAL THEME STYLES
   ============================================================ */

.theme-normal {
  /* ─── CSS Custom Properties ──────────────────────────────── */
  --bg-primary:     #111;
  --bg-secondary:   #181818;
  --bg-tertiary:    #222;
  --bg-card:        rgba(255, 255, 255, 0.03);
  --bg-card-hover:  rgba(255, 255, 255, 0.05);
  --gold:           #C9A84C;
  --gold-light:     #D4AF37;
  --gold-dark:      #A0832A;
  --rose:           #C87490;
  --text-primary:   #E0E0E0;
  --text-secondary: #999;
  --text-muted:     #666;
  --border:         rgba(201, 168, 76, 0.15);
  --border-subtle:  rgba(255, 255, 255, 0.08);

  /* Spacing */
  --section-py: 5rem;
  --container-px: clamp(1rem, 4vw, 2.5rem);
}

/* ─── Reset & Base ───────────────────────────────────────── */
.theme-normal *,
.theme-normal *::before,
.theme-normal *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.theme-normal {
  scroll-padding-top: 70px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.theme-normal a {
  color: inherit;
  text-decoration: none;
}

.theme-normal button {
  cursor: pointer;
  font-family: inherit;
}

.theme-normal img {
  max-width: 100%;
  display: block;
}

.theme-normal .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─── Navigation ─────────────────────────────────────────── */
.theme-normal #navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1rem 0;
}

.theme-normal #navbar.scrolled {
  background: rgba(17, 17, 17, 0.95);
}

.theme-normal .nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.theme-normal .nav-logo {
  font-family: 'Cormorant Garamond', serif;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.theme-normal .logo-lumi {
  color: var(--gold);
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: -2px;
}

.theme-normal .logo-szalon {
  color: var(--text-primary);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

.theme-normal .nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.theme-normal .nav-link {
  color: var(--text-secondary);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.theme-normal .nav-link:hover {
  color: var(--gold);
}

.theme-normal .nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.theme-normal .nav-socials {
  display: flex;
  gap: 1rem;
}

.theme-normal .nav-social-link {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

.theme-normal .nav-social-link:hover {
  color: var(--gold);
}

.theme-normal .nav-social-link svg {
  width: 18px;
  height: 18px;
}

.theme-normal .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}

.theme-normal .hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
}

.theme-normal .hamburger.open span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.theme-normal .hamburger.open span:nth-child(2) { opacity: 0; }
.theme-normal .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

.theme-normal .mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background: var(--bg-primary);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 999;
}

.theme-normal .mobile-menu ul {
  list-style: none;
  text-align: center;
}

.theme-normal .mobile-link {
  display: block;
  padding: 1rem;
  font-size: 1.2rem;
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .theme-normal .nav-links,
  .theme-normal .nav-socials { display: none; }
  .theme-normal .hamburger { display: flex; }
}

/* ─── Hero Section ───────────────────────────────────────── */
.theme-normal .hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.theme-normal .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.theme-normal .hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.theme-normal .hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

.theme-normal .hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.theme-normal .hero-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.theme-normal .hero-tag-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.theme-normal .hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 300;
  line-height: 1.2;
}

.theme-normal .hero-title-lumi {
  display: block;
  color: var(--gold);
  font-weight: 600;
}

.theme-normal .hero-title-italic {
  font-style: italic;
  font-weight: 300;
}

.theme-normal .hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
}

.theme-normal .hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.theme-normal .btn-gold {
  background: var(--gold);
  color: #000;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.95rem;
  border: none;
}

.theme-normal .btn-gold:hover {
  background: var(--gold-light);
}

.theme-normal .btn-ghost {
  background: transparent;
  color: white;
  padding: 0.9rem 2rem;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.95rem;
}

.theme-normal .btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.theme-normal .hero-glass-card {
  margin-top: 4rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.theme-normal .hero-glass-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-normal .hero-glass-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.theme-normal .hero-glass-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.theme-normal .hero-glass-value {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
}

.theme-normal .hero-glass-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
  .theme-normal .hero-glass-card { flex-direction: column; gap: 1rem; }
  .theme-normal .hero-glass-divider { display: none; }
}

/* ─── Sections ───────────────────────────────────────────── */
.theme-normal .section {
  padding: var(--section-py) 0;
}

.theme-normal .section--alt {
  background: var(--bg-secondary);
}

.theme-normal .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.theme-normal .section-header {
  margin-bottom: 3rem;
}

/* Center section headers on desktop */
@media (min-width: 768px) {
  .theme-normal .section-header--centered {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
  }
}

.theme-normal .section-eyebrow {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.theme-normal .section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--text-primary);
}

.theme-normal .section-title em {
  font-style: italic;
  color: var(--gold);
}

/* ─── About Section ──────────────────────────────────────── */
.theme-normal .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.theme-normal .about-img-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.theme-normal .about-img {
  width: 100%;
  height: auto;
  display: block;
}

.theme-normal .about-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.theme-normal .about-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 1.5rem;
  flex: 1;
  text-align: center;
}

.theme-normal .about-stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.theme-normal .about-stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.theme-normal .about-body {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.theme-normal .about-signature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}

.theme-normal .about-sig-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
}

.theme-normal .about-sig-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1.1rem;
}

@media (max-width: 968px) {
  .theme-normal .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ─── Services Section ───────────────────────────────────── */
.theme-normal .services-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.theme-normal .service-category {
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  margin-bottom: 1rem;
  background: var(--bg-card);
}

.theme-normal .service-cat-header {
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.theme-normal .service-cat-header:hover {
  background: var(--bg-card-hover);
}

.theme-normal .service-cat-title {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.2rem;
  font-weight: 500;
}

.theme-normal .service-cat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--gold);
}

.theme-normal .service-cat-arrow {
  width: 24px;
  height: 24px;
  color: var(--text-secondary);
}

.theme-normal .service-cat-header[aria-expanded="true"] .service-cat-arrow {
  transform: rotate(180deg);
}

.theme-normal .service-items {
  max-height: 0;
  overflow: hidden;
}

.theme-normal .service-items.open {
  max-height: none;
  padding: 0 2rem 2rem;
}

.theme-normal .service-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.theme-normal .service-item:last-child {
  border-bottom: none;
}

.theme-normal .service-name {
  display: block;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: var(--text-primary);
}

.theme-normal .service-desc {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.theme-normal .service-price {
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  margin-left: 1rem;
}

.theme-normal .services-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 2rem;
}

/* ─── Gallery Section ────────────────────────────────────── */
.theme-normal .gallery-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.theme-normal .gallery-item {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}

.theme-normal .gallery-img-wrapper {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.theme-normal .gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.theme-normal .gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  font-size: 0.9rem;
}

/* ─── Footer ─────────────────────────────────────────────── */
.theme-normal .footer {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
}

.theme-normal .footer-top {
  padding: 4rem 0 2rem;
}

.theme-normal .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
}

.theme-normal .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  margin-bottom: 1rem;
}

.theme-normal .footer-logo .logo-lumi {
  font-size: 1.8rem;
  margin-bottom: -2px;
}

.theme-normal .footer-logo .logo-szalon {
  font-size: 0.8rem;
}

.theme-normal .footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.theme-normal .footer-tagline-left {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  display: block;
  width: 100%;
  text-align: left;
}

.theme-normal .footer-socials {
  display: flex;
  gap: 1rem;
}

.theme-normal .social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  color: var(--text-secondary);
}

.theme-normal .social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.theme-normal .social-link svg {
  width: 18px;
  height: 18px;
}

.theme-normal .footer-col-title {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 500;
}

.theme-normal .footer-links {
  list-style: none;
}

.theme-normal .footer-link {
  display: block;
  padding: 0.5rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.theme-normal .footer-link:hover {
  color: var(--gold);
}

.theme-normal .footer-hours {
  list-style: none;
}

.theme-normal .hours-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

.theme-normal .hours-time {
  color: var(--text-primary);
}

.theme-normal .hours-closed {
  color: var(--text-muted);
}

.theme-normal .footer-contact {
  font-style: normal;
}

.theme-normal .footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.theme-normal .footer-contact-item:hover {
  color: var(--gold);
}

.theme-normal .footer-contact-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.theme-normal .footer-map {
  margin: 2rem 0;
}

.theme-normal .footer-map-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.theme-normal .footer-map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 8px;
}

.theme-normal .footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 2rem 0;
}

.theme-normal .footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .theme-normal .footer-bottom-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* ─── Utility ────────────────────────────────────────────── */
.theme-normal .mt-8 {
  margin-top: 2rem;
}

.theme-normal .inline-block {
  display: inline-block;
}

/* ─── Mobile Text Centering ──────────────────────────────── */
@media (max-width: 767px) {
  .theme-normal .hero-content,
  .theme-normal .section-header,
  .theme-normal .about-body,
  .theme-normal .about-signature,
  .theme-normal .service-category,
  .theme-normal .service-item,
  .theme-normal .services-note,
  .theme-normal .gallery-caption,
  .theme-normal .footer-brand,
  .theme-normal .footer-tagline,
  .theme-normal .footer-links,
  .theme-normal .footer-hours,
  .theme-normal .footer-contact,
  .theme-normal .footer-bottom-inner {
    text-align: center;
  }

  /* Center flex containers on mobile */
  .theme-normal .about-stats,
  .theme-normal .footer-socials,
  .theme-normal .about-signature {
    justify-content: center;
  }

  /* Fix about stats centering on mobile */
  .theme-normal .about-stats {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 2rem auto 0;
    width: 100%;
    padding: 0 10px;
  }

  .theme-normal .about-img-col {
    width: 100%;
    padding: 0 10px;
  }

  .theme-normal .about-img-frame {
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
  }

  .theme-normal .about-img {
    width: 100%;
    height: auto;
  }

  .theme-normal .about-stat-card {
    flex: none;
    width: 90%;
    max-width: 350px;
    min-width: 280px;
  }

  /* Ensure buttons are centered on mobile */
  .theme-normal .btn-gold,
  .theme-normal .btn-ghost {
    margin-left: auto;
    margin-right: auto;
  }

  /* Center service items properly */
  .theme-normal .service-item {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .theme-normal .service-price {
    margin-left: 0;
  }

  /* Compact footer grid on mobile */
  .theme-normal .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }

  /* First row: Brand | Contact */
  .theme-normal .footer-brand {
    grid-column: 1;
    grid-row: 1;
    text-align: center;
  }

  .theme-normal .footer-col:nth-child(4) {
    /* Contact section (4th child) */
    grid-column: 2;
    grid-row: 1;
  }

  /* Second row: Pages | Hours */
  .theme-normal .footer-col:nth-child(2) {
    /* Pages/Oldalak section (2nd child) */
    grid-column: 1;
    grid-row: 2;
  }

  .theme-normal .footer-col:nth-child(3) {
    /* Hours/Nyitvatartás section (3rd child) */
    grid-column: 2;
    grid-row: 2;
  }

  .theme-normal .footer-col {
    text-align: left;
  }

  /* Left-align Oldalak section specifically */
  .theme-normal .footer-col:nth-child(2) {
    text-align: left;
  }

  /* Left-align Hours column and Contact column */
  .theme-normal .footer-col:nth-child(3) {
    text-align: left;
  }

  .theme-normal .footer-col:nth-child(4) {
    text-align: left;
  }

  /* Ensure contact items are left-aligned */
  .theme-normal .footer-contact,
  .theme-normal .footer-contact-item {
    text-align: left;
  }

  /* Left-align footer links within Oldalak section */
  .theme-normal .footer-col:nth-child(2) .footer-links {
    text-align: left;
  }

  .theme-normal .footer-col:nth-child(2) .footer-link {
    text-align: left;
  }

  .theme-normal .footer-col-title {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }

  .theme-normal .footer-link,
  .theme-normal .hours-item,
  .theme-normal .footer-contact-item {
    font-size: 0.8rem;
    padding: 0.4rem 0;
  }

  .theme-normal .footer-contact-item svg {
    width: 16px;
    height: 16px;
  }
}

/* ─── Premium Theme Mobile Centering ─────────────────────── */
@media (max-width: 767px) {
  .theme-premium .hero-content,
  .theme-premium .section-header,
  .theme-premium .about-body,
  .theme-premium .about-signature,
  .theme-premium .about-img-col,
  .theme-premium .service-category,
  .theme-premium .service-item,
  .theme-premium .services-note,
  .theme-premium .booking-step-title,
  .theme-premium .booking-section-label,
  .theme-premium .gallery-caption,
  .theme-premium .footer-brand,
  .theme-premium .footer-tagline,
  .theme-premium .footer-links,
  .theme-premium .footer-hours,
  .theme-premium .footer-contact,
  .theme-premium .footer-bottom-inner {
    text-align: center;
  }

  
  /* Center flex containers on mobile */
  .theme-premium .about-stats,
  .theme-premium .footer-socials,
  .theme-premium .about-signature,
  .theme-premium .booking-services-grid,
  .theme-premium .booking-stylists,
  .theme-premium .booking-dates,
  .theme-premium .booking-times {
    justify-content: center;
  }

  /* Ensure buttons are centered on mobile */
  .theme-premium .btn-gold,
  .theme-premium .btn-ghost,
  .theme-premium .btn-gold-sm {
    margin-left: auto;
    margin-right: auto;
  }

  /* Center service items properly */
  .theme-premium .service-item {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  /* Center about image and stats on mobile */
  .theme-premium .about-img-col {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 10px;
  }

  /* Override reveal animations on mobile for proper centering */
  .theme-premium .about-img-col[data-reveal="fade-right"],
  .theme-premium .about-img-col[data-reveal="fade-left"] {
    transform: none !important;
  }

  .theme-premium .about-img-frame {
    text-align: center;
    margin: 0 auto;
    width: 90%;
    max-width: 400px;
  }

  .theme-premium .about-img {
    margin: 0 auto;
    display: block;
    width: 100%;
    height: auto;
  }

  .theme-premium .about-stats {
    margin: 0 auto;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 0 10px;
  }

  .theme-premium .about-stat-card {
    flex: none;
    width: 90%;
    max-width: 350px;
    min-width: 280px;
  }

  .theme-premium .service-price {
    margin-left: 0;
  }

  /* Center booking form elements */
  .theme-premium .booking-wizard,
  .theme-premium .booking-step-panel,
  .theme-premium .booking-form,
  .theme-premium .form-group {
    text-align: center;
  }

  .theme-premium .form-label {
    text-align: left;
    display: block;
    margin-bottom: 0.5rem;
  }

  /* Center booking section header on mobile */
  .theme-premium #foglalas .section-header {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  /* Center all elements within booking section header on mobile */
  .theme-premium #foglalas .section-header .section-eyebrow,
  .theme-premium #foglalas .section-header .section-title {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  /* Ensure section title is properly centered */
  .theme-premium #foglalas .section-header .section-title {
    width: 100%;
    max-width: 100%;
    text-align: center !important;
  }

  /* Force center the section eyebrow (Időpontfoglalás) */
  .theme-premium #foglalas .section-header .section-eyebrow {
    display: block;
    width: 100%;
    text-align: center !important;
  }

  /* Override fade-up animation for booking section on mobile */
  .theme-premium #foglalas .section-header[data-reveal="fade-up"] {
    transform: none !important;
  }

  /* Compact footer grid on mobile - same as normal theme */
  .theme-premium .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }

  /* First row: Brand | Contact */
  .theme-premium .footer-brand {
    grid-column: 1;
    grid-row: 1;
    text-align: center;
  }

  .theme-premium .footer-col:nth-child(4) {
    /* Contact section (4th child) */
    grid-column: 2;
    grid-row: 1;
  }

  /* Second row: Pages | Hours */
  .theme-premium .footer-col:nth-child(2) {
    /* Pages/Oldalak section (2nd child) */
    grid-column: 1;
    grid-row: 2;
  }

  .theme-premium .footer-col:nth-child(3) {
    /* Hours/Nyitvatartás section (3rd child) */
    grid-column: 2;
    grid-row: 2;
  }

  .theme-premium .footer-col {
    text-align: left;
  }

  /* Left-align Oldalak section specifically */
  .theme-premium .footer-col:nth-child(2) {
    text-align: left;
  }

  /* Left-align Hours column and Contact column */
  .theme-premium .footer-col:nth-child(3) {
    text-align: left;
  }

  .theme-premium .footer-col:nth-child(4) {
    text-align: left;
  }

  /* Ensure contact items are left-aligned */
  .theme-premium .footer-contact,
  .theme-premium .footer-contact-item {
    text-align: left;
  }

  /* Left-align footer links within Oldalak section */
  .theme-premium .footer-col:nth-child(2) .footer-links {
    text-align: left;
  }

  .theme-premium .footer-col:nth-child(2) .footer-link {
    text-align: left;
  }

  .theme-premium .footer-col-title {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }

  .theme-premium .footer-link,
  .theme-premium .hours-item,
  .theme-premium .footer-contact-item {
    font-size: 0.8rem;
    padding: 0.4rem 0;
  }

  .theme-premium .footer-contact-item svg {
    width: 16px;
    height: 16px;
  }

  /* Make date picker more compact on mobile to reduce scrolling */
  .theme-premium .date-btn {
    min-width: 50px;
    padding: 0.7rem 0.5rem;
    border-radius: 8px;
  }

  .theme-premium .date-btn-day {
    font-size: 0.55rem;
    letter-spacing: 0.8px;
  }

  .theme-premium .date-btn-num {
    font-size: 1.1rem;
  }

  .theme-premium .booking-dates {
    gap: 0.4rem;
    padding: 0.8rem 0.3rem;
  }

  /* Make form single column on mobile to prevent phone field from going off-screen */
  .theme-premium .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Indent booking summary items on mobile to align with form elements */
  .theme-premium .booking-summary {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .theme-premium .booking-summary-content {
    text-align: left;
  }

  .theme-premium .summary-item {
    padding-left: 0.5rem;
  }

  /* Keep booking action buttons inside viewport on small screens */
  .theme-premium .booking-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    width: 100%;
    align-items: stretch;
  }

  .theme-premium .booking-nav .btn-gold,
  .theme-premium .booking-nav .btn-ghost {
    width: 100%;  
    max-width: 100%;
    margin: 0;
    padding: 0.85rem 0.8rem;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .theme-premium .booking-step-panel {
    overflow-x: hidden;
  }
}

/* ─── Desktop-only Booking Section Centering ──────────────── */
@media (min-width: 768px) {
  .theme-premium #foglalas .section-header {
    text-align: center !important;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  /* Center all elements within booking section header on desktop */
  .theme-premium #foglalas .section-header .section-eyebrow,
  .theme-premium #foglalas .section-header .section-title {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  /* Force center the section eyebrow (Időpontfoglalás) */
  .theme-premium #foglalas .section-header .section-eyebrow {
    display: block;
    width: 100%;
    text-align: center !important;
  }
}