/* ============================================================
   PERFECTION BEAUTY HOME — style.css
   Luxury Gold & Dark Theme
   ============================================================ */

/* --- Google Fonts are loaded in header.php --- */

:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C97B;
  --gold-dark:   #9A7B2E;
  --gold-pale:   #F5E6C0;
  --black:       #0A0A0A;
  --dark:        #111111;
  --card-bg:     #1A1A1A;
  --surface:     #161616;
  --border:      rgba(201,168,76,0.2);
  --border-hover:rgba(201,168,76,0.6);
  --text-light:  #F5F0E8;
  --text-muted:  #9A9080;
  --text-dim:    #6A6050;
  --white:       #FFFFFF;
  --radius:      4px;
  --radius-lg:   8px;
  --transition:  0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Josefin Sans', sans-serif;
  --shadow:      0 4px 30px rgba(0,0,0,0.5);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.15);
  --max-width:   1320px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; max-width: 100%; }
body {
  background: var(--black);
  color: var(--text-light);
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

/* ---- TOPBAR ---- */
.topbar {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 8px 20px;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}
.topbar-divider { margin: 0 12px; color: var(--gold-dark); }

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transition: all var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 40px rgba(0,0,0,0.6); }
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
  height: 80px;
}
.header-spacer { height: 117px; } /* topbar 37px + header 80px */

.logo-link { flex-shrink: 0; }
.logo-img { height: 54px; width: auto; }

/* ---- NAV ---- */
.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-link:hover, .nav-link.active { color: var(--gold-light); }
.nav-cta {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  padding: 10px 22px;
  border-radius: var(--radius);
  transition: all var(--transition);
  margin-left: 8px;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: var(--shadow-gold); color: var(--black); }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s;
  z-index: 100;
  overflow: hidden;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-item {
  display: block;
  padding: 12px 20px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(201,168,76,0.08);
  transition: all 0.2s;
}
.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover, .dropdown-item.active {
  background: rgba(201,168,76,0.08);
  color: var(--gold-light);
  padding-left: 28px;
}

.badge {
  background: var(--gold);
  color: var(--black);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 4px;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  order: -1;
}
.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
  border-radius: 2px;
}

/* ---- BUTTONS ---- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.3);
  color: var(--black);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border-hover);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline:hover {
  background: rgba(201,168,76,0.08);
  color: var(--gold-light);
}

/* ---- LAYOUT ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-label {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.2;
}
.section-title em {
  font-style: italic;
  color: var(--gold-light);
}
.section-subtitle {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 14px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.gold-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 20px auto;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.05) 0%, transparent 50%),
    linear-gradient(135deg, #0A0A0A 0%, #141008 50%, #0A0A0A 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
  animation: heroFadeIn 1.2s ease both;
}
@keyframes heroFadeIn {
  from { opacity:0; transform: translateY(30px); }
  to { opacity:1; transform: translateY(0); }
}
.hero-label {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
  animation: heroFadeIn 1.2s 0.2s ease both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--text-light);
  margin-bottom: 24px;
  animation: heroFadeIn 1.2s 0.4s ease both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 40px;
  animation: heroFadeIn 1.2s 0.6s ease both;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroFadeIn 1.2s 0.8s ease both;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  animation: heroFadeIn 1.2s 1s ease both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity:1; } 50% { opacity:0.3; }
}

/* ---- MARQUEE ---- */
.marquee-wrap {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-dark));
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 600;
  padding: 0 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.marquee-item::after {
  content: '✦';
  color: rgba(0,0,0,0.4);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- CATEGORY GRID ---- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
@media (max-width: 900px) {
  .category-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
}
.category-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  background: var(--card-bg);
  display: block;
}
.category-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.6) saturate(0.8);
}
.category-card:hover .category-card-img {
  transform: scale(1.08);
  filter: brightness(0.5) saturate(0.6);
}
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 28px 16px;
  text-align: center;
}
.category-card-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 4px;
}
.category-card-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
}
.category-card:hover .category-card-label {
  opacity: 1;
  transform: translateY(0);
}
/* Placeholder category card (no image) */
.category-card-placeholder {
  background: linear-gradient(135deg, #1a1a1a, #222);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.category-icon-placeholder {
  font-size: 3rem;
  margin-bottom: 12px;
}

/* ---- PRODUCT GRID ---- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 480px)  { .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}
.product-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), var(--shadow-gold);
}
.product-card-media {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--surface);
}
.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card-img { transform: scale(1.05); }
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.product-card-body {
  padding: 16px;
}
.product-card-cat {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
}
.product-card-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-card-price {
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 400;
}
.product-card-cta {
  display: block;
  text-align: center;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 9px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.25s;
}
.product-card-cta:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  border-color: transparent;
}

/* ---- PRODUCT DETAIL ---- */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 768px) { .product-detail { grid-template-columns: 1fr; gap: 30px; } }

.product-gallery { position: sticky; top: 120px; }
.gallery-main {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  margin-bottom: 12px;
  border: 1px solid var(--border);
}
.gallery-main img { width:100%; height:100%; object-fit:cover; }
.gallery-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.gallery-thumb {
  width: 70px;
  height: 90px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s;
}
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--gold); }

.product-info-cat {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.product-info-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.2;
}
.product-info-price {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 24px;
  font-family: var(--font-display);
}
.product-info-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 24px;
}
.product-info-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 32px;
}
.product-video {
  margin-top: 30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.product-video video { width:100%; display:block; }

/* ---- SERVICES GRID ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.service-card-img {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
  background: var(--surface);
}
.service-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-cat {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.service-card-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 10px;
}
.service-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 16px;
  line-height: 1.7;
}
.service-card-price {
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 16px;
}
.service-card-cta {
  display: block;
  text-align: center;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.25s;
}
.service-card-cta:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  border-color: transparent;
}

/* ---- PAGE BANNER ---- */
.page-banner {
  background: linear-gradient(135deg, #0A0A0A 0%, #1A1408 50%, #0A0A0A 100%);
  border-bottom: 1px solid var(--border);
  padding: 70px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.06) 0%, transparent 70%);
}
.page-banner-label {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  position: relative;
}
.page-banner-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--text-light);
  position: relative;
}
.page-banner-title em { font-style:italic; color: var(--gold-light); }
.page-banner-desc {
  color: var(--text-muted);
  margin-top: 14px;
  font-size: 14px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 16px;
  position: relative;
}
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--gold-dark); }

/* ---- FILTERS ---- */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s;
  font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  margin-top: 80px;
}
.footer-top {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 70px 24px 50px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; gap: 36px; } }

.footer-logo { height: 52px; width: auto; margin-bottom: 12px; }
.footer-tagline {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-desc { font-size: 13px; color: var(--text-dim); line-height: 1.8; max-width: 300px; margin-bottom: 24px; }
.social-icons { display: flex; gap: 12px; flex-wrap: wrap; }
.social-icon {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.25s;
}
.social-icon svg { width: 16px; height: 16px; }
.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a, .footer-links ul li {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.footer-links ul li a:hover { color: var(--gold); }

.footer-cta {
  margin-top: 20px;
  font-size: 10px;
  padding: 11px 24px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.5px;
}
.footer-admin-link a { color: var(--text-dim); opacity: 0.5; }
.footer-admin-link a:hover { opacity: 1; color: var(--gold); }

/* ---- TESTIMONIAL / QUOTE ---- */
.quote-section {
  text-align: center;
  padding: 80px 24px;
  background: linear-gradient(135deg, #0D0D0D, #1A1408, #0D0D0D);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.quote-icon { font-size: 3rem; color: var(--gold-dark); margin-bottom: 20px; opacity: 0.5; }
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.5;
}
.quote-author { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }

/* ---- EMPTY STATE ---- */
.empty-state {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-muted);
}
.empty-state-icon { font-size: 4rem; margin-bottom: 16px; opacity: 0.3; }
.empty-state p { font-size: 14px; }

/* ---- PLACEHOLDER SVG ---- */
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  color: var(--gold-dark);
  font-size: 3rem;
}

/* ---- ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ---- GOLD SHIMMER ---- */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.text-gold-shimmer {
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-light) 40%, var(--gold) 60%, var(--gold-dark) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* ---- UTILITY ---- */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .header-inner { padding: 0 16px; gap: 12px; }
  .header-spacer { height: 97px; }
  .logo-img { height: 42px; }
  .mobile-menu-toggle { display: flex; }
  .site-nav {
    display: none;
    position: fixed;
    top: 97px;
    left: 0; right: 0;
    background: var(--dark);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    z-index: 999;
    max-height: calc(100vh - 97px);
    overflow-y: auto;
  }
  .site-nav.open { display: flex; }
  .nav-link { font-size: 12px; padding: 12px 16px; }
  .nav-dropdown .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: all;
    display: none;
    background: rgba(201,168,76,0.04);
    border-left: 2px solid var(--gold-dark);
    margin: 4px 0 4px 16px;
    border-radius: 0;
  }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .nav-cta { text-align: center; padding: 14px; margin: 8px 0 4px; }
  .section { padding: 50px 0; }
  .topbar { display: none; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-card-body { padding: 12px; }
}

/* ============================================================
   NEW SECTIONS — Home of Luxury · Video Gallery · Service Cards
   ============================================================ */

/* ---- HOME OF LUXURY: 2-Column ---- */
.luxury-intro-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.luxury-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Tablet */
@media (max-width: 1024px) {
  .luxury-intro-grid { gap: 36px; }
}

/* Mobile — stack text above video */
@media (max-width: 768px) {
  .luxury-intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .luxury-intro-text  { order: 1; }
  .luxury-intro-video { order: 2; }
}

.luxury-intro-text { }
.luxury-intro-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.15;
}
.luxury-intro-heading em { font-style: italic; color: var(--gold-light); }
.luxury-intro-body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 0;              /* remove bottom margin — gap comes from features margin-top */
}
.luxury-intro-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;              /* clear space between body text and bullets */
  margin-bottom: 36px;           /* space between bullets and CTA */
  padding-top: 20px;             /* extra breathing room */
  border-top: 1px solid var(--border); /* subtle separator */
}
.luxury-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}
.luxury-feat-icon {
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
}
/* CTA button full-width on mobile for easier tapping */
@media (max-width: 768px) {
  .luxury-intro-text .btn-gold {
    width: 100%;
    justify-content: center;
    padding: 15px 28px;
  }
}

/* Video Column */
.luxury-intro-video {
  position: relative;
  padding-bottom: 24px;
  padding-right: 16px;
}
@media (max-width: 1024px) { .luxury-intro-video { padding-right: 0; padding-bottom: 16px; } }
@media (max-width: 768px)  { .luxury-intro-video { padding-right: 0; padding-bottom: 0; } }

.luxury-video-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.1);
}
.luxury-video-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(201,168,76,0.4), transparent, rgba(201,168,76,0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}
.luxury-video-frame video {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;        /* reduced height vs original 9/16 */
  object-fit: cover;
  background: var(--dark);
  max-height: 420px;        /* cap desktop height */
}

/* Mobile: landscape ratio so it's compact */
@media (max-width: 768px) {
  .luxury-video-frame video { aspect-ratio: 16/9; max-height: 240px; }
}
@media (max-width: 480px) {
  .luxury-video-frame video { aspect-ratio: 16/9; max-height: 200px; }
}

.luxury-video-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(10,10,10,0.85);
  border: 1px solid rgba(201,168,76,0.3);
  backdrop-filter: blur(8px);
  padding: 7px 13px;
  border-radius: 50px;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  z-index: 3;
}
.luxury-video-badge span:first-child { color: var(--gold-light); }

/* Mute / Unmute Toggle Button */
.video-sound-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(10,10,10,0.8);
  border: 1px solid rgba(201,168,76,0.4);
  backdrop-filter: blur(6px);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  font-size: 16px;
  line-height: 1;
}
.video-sound-btn:hover {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
}

/* Video loading shimmer */
.luxury-video-frame.loading::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 25%, rgba(201,168,76,0.05) 50%, transparent 75%);
  background-size: 200% 100%;
  animation: shimmerLoad 1.5s infinite;
  z-index: 4;
}
@keyframes shimmerLoad {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* Corner accent on video */
.luxury-video-frame::after {
  content: '';
  position: absolute;
  top: -1px; right: -1px;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--gold-light), transparent);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: 0.3;
  pointer-events: none;
}

/* ---- VIDEO GALLERY CAROUSEL ---- */
.gallery-section { background: var(--black); }

.video-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}
.video-carousel-viewport {
  overflow: hidden;
  flex: 1;
  border-radius: 10px;
}
.video-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.gallery-video-card {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 0;
}
@media (max-width: 900px) {
  .gallery-video-card { flex: 0 0 calc((100% - 20px) / 2); }
}
@media (max-width: 560px) {
  .gallery-video-card { flex: 0 0 100%; }
}

.gallery-video-inner {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.gallery-video-inner:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}
.gallery-video-el {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--surface);
}
.gallery-video-caption {
  padding: 14px 16px;
  border-top: 1px solid var(--border);
}
.gallery-video-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 4px;
}
.gallery-video-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Carousel Buttons */
.carousel-btn {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card-bg);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  z-index: 2;
}
.carousel-btn:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
}
.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
@media (max-width: 560px) {
  .carousel-btn { width: 36px; height: 36px; }
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.carousel-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ---- SERVICE HIGHLIGHT CARDS (Spa · Braiding · Hair Treatment) ---- */
.service-highlights-section { background: var(--dark); border-top: 1px solid var(--border); }

.service-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
/* Mobile handled inside the content block below */

.svc-highlight-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--border);
  transition: all var(--transition);
  background: var(--card-bg);
}
.svc-highlight-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 4px 20px rgba(201,168,76,0.1);
}

/* Background image layer */
.svc-highlight-img-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45) saturate(0.6);
  transition: filter 0.6s ease, transform 0.6s ease;
}
.svc-highlight-card:hover .svc-highlight-img-bg {
  filter: brightness(0.35) saturate(0.5);
  transform: scale(1.04);
}

/* No-image icon */
.svc-highlight-icon-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  opacity: 0.06;
  background: var(--card-bg);
}

/* Gradient overlay */
.svc-highlight-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.1) 100%);
}

/* Content */
.svc-highlight-content {
  position: relative;
  z-index: 2;
  padding: 36px 28px 32px;   /* more breathing room all round */
}

/* Hide icons on BOTH desktop and mobile */
.svc-highlight-icon { display: none; }

/* Also hide the background icon fallback */
.svc-highlight-icon-bg { display: none; }

.svc-highlight-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 16px;         /* more space below title */
  line-height: 1.2;
}
.svc-highlight-desc {
  font-size: 13px;
  color: rgba(245,240,232,0.7);
  line-height: 1.8;
  margin-bottom: 20px;         /* clear space before price/CTA */
}
.svc-highlight-price {
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 24px;         /* clear space before CTA */
  font-family: var(--font-display);
  font-size: 1rem;
}
.svc-highlight-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: 12px 26px;          /* generous tap target */
  border-radius: var(--radius);
  transition: all 0.25s;
  font-family: var(--font-body);
  font-weight: 600;
}
.svc-highlight-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.3);
  color: var(--black);
}

/* Mobile: center-align card content + ensure border always shows */
@media (max-width: 900px) {
  .service-highlights-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .svc-highlight-card {
    min-height: 320px;
    border: 1px solid rgba(201,168,76,0.3);   /* light border visible on mobile */
  }
  .svc-highlight-content {
    text-align: center;
    padding: 32px 24px 28px;
  }
  .svc-highlight-cta {
    display: inline-flex;
    width: auto;
  }
}

/* Top gold accent line per card */
.svc-highlight-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s;
}
.svc-highlight-card:hover::before { opacity: 1; }