/* ============================================================
   SHANIEL BESPOKE TAILOR — ULTRA HDR PROFESSIONAL CSS
   Luxury Haute Couture Design System v3.0
   ============================================================ */

/* ── GOOGLE FONTS IMPORT ─────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Montserrat:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS CUSTOM PROPERTIES ───────────────────────────────── */
:root {
  /* Gold Palette */
  --gold-100: #fdf6e8;
  --gold-200: #f5e6c4;
  --gold-300: #e8cb8a;
  --gold-400: #dbbf87;
  --gold-500: #C9A96E;
  --gold-600: #b8904f;
  --gold-700: #a88a4f;
  --gold-800: #8a6a35;
  --gold-900: #5a4020;

  /* Navy / Dark Palette */
  --navy-50:  #f0f4f8;
  --navy-100: #e2eaf4;
  --navy-900: #0a0f1e;
  --navy-800: #0d1a2e;
  --navy-700: #122040;
  --navy-600: #1a2e52;

  /* Neutral Palette */
  --cream-50:  #fdfcfa;
  --cream-100: #F8F6F2;
  --cream-200: #f0ebe3;
  --cream-300: #e8e0d5;
  --cream-400: #d8cfc2;

  /* Main Theme */
  --primary:        var(--gold-500);
  --primary-light:  var(--gold-400);
  --primary-dark:   var(--gold-700);
  --primary-pale:   var(--gold-100);
  --accent:         var(--gold-500);

  /* Backgrounds */
  --bg-color:   var(--cream-100);
  --bg-white:   #ffffff;
  --bg-cream:   var(--gold-100);
  --bg-dark:    var(--navy-900);
  --bg-light:   var(--cream-50);

  /* Text */
  --text-dark:   #0f0c08;
  --text-body:   #2d2b26;
  --text-light:  #6b6560;
  --text-muted:  #9e9891;
  --text-white:  #ffffff;

  /* Borders */
  --border:       var(--cream-300);
  --border-light: var(--cream-200);
  --border-gold:  rgba(201, 169, 110, 0.3);

  /* Shadows — HDR depth */
  --shadow-xs:  0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.07);
  --shadow-xl:  0 16px 48px rgba(0,0,0,0.16), 0 8px 24px rgba(0,0,0,0.1);
  --shadow-2xl: 0 32px 64px rgba(0,0,0,0.2), 0 16px 32px rgba(0,0,0,0.12);
  --shadow-gold: 0 8px 32px rgba(201,169,110,0.25), 0 2px 8px rgba(201,169,110,0.15);
  --shadow-gold-lg: 0 16px 48px rgba(201,169,110,0.3), 0 4px 16px rgba(201,169,110,0.2);
  --glow-gold:  0 0 20px rgba(201,169,110,0.4), 0 0 40px rgba(201,169,110,0.15);

  /* Radii */
  --radius-xs: 4px;
  --radius:    8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl:24px;
  --radius-full: 9999px;

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', 'Inter', 'Helvetica Neue', sans-serif;
  --font-body:  'Inter', 'Montserrat', sans-serif;

  /* Transitions */
  --transition:      all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: clamp(16px, 5vw, 32px);
  --gold-dark: var(--gold-700);
}

/* ── DARK THEME ──────────────────────────────────────────── */
[data-theme="dark"] {
  --bg-color:   #0a0805;
  --bg-white:   #141209;
  --bg-cream:   #1e1a10;
  --bg-light:   #0f0d08;
  --text-dark:  #f5f0e8;
  --text-body:  #e0d8c8;
  --text-light: #b0a898;
  --text-muted: #7a7060;
  --border:       rgba(201,169,110,0.15);
  --border-light: rgba(201,169,110,0.08);
  --shadow-xs:  0 1px 3px rgba(0,0,0,0.3);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.4);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.6);
  --shadow-xl:  0 16px 48px rgba(0,0,0,0.7);
}

/* ── RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--bg-color);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--text-dark);
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.7rem); }
h4 { font-size: clamp(1rem, 2vw, 1.3rem); }
p  { margin-bottom: 1rem; color: var(--text-body); line-height: 1.8; }
a  { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
address { font-style: normal; }
button { font-family: var(--font-sans); cursor: pointer; border: none; background: none; }
::selection { background: rgba(201,169,110,0.2); color: var(--gold-900); }

/* ── UTILITIES ───────────────────────────────────────────── */
.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 var(--container);
}
.text-center  { text-align: center; }
.text-gold    { color: var(--primary) !important; }
.text-serif   { font-family: var(--font-serif) !important; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
@media (max-width: 640px) { .hide-sm { display: none !important; } }
@media (max-width: 900px) { .hide-md { display: none !important; } }

/* ── SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--cream-100); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-500), var(--gold-700));
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-600); }

/* ── SECTION HEADER ─────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}
.section-header::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  margin: 20px auto 0;
}
.section-header p {
  max-width: 560px;
  margin: 14px auto 0;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.85;
}
.section-header.light h2 { color: #fff; }
.section-header.light p  { color: rgba(255,255,255,0.72); }
.section-header.light .section-tag { color: var(--gold-300); }
.section-header.light::after {
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.6), transparent);
}
.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
  position: relative;
  padding: 0 16px;
}
.section-tag::before,
.section-tag::after {
  content: '—';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(201,169,110,0.4);
  font-size: 0.6em;
}
.section-tag::before { right: 100%; margin-right: 4px; }
.section-tag::after  { left: 100%; margin-left: 4px; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-700) 100%);
  color: #0f0c08;
  padding: 13px 34px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-600) 100%);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-lg);
  color: #0f0c08;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 13px 34px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.7);
  border-radius: var(--radius);
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  padding: 12px 30px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid var(--gold-500);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  opacity: 0;
  transition: var(--transition);
  z-index: 0;
}
.btn-outline span { position: relative; z-index: 1; }
.btn-outline:hover {
  color: #0f0c08;
  border-color: var(--gold-500);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline:hover::before { opacity: 1; }

.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1208, #0f0c08);
  color: var(--gold-400);
  padding: 13px 34px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid rgba(201,169,110,0.25);
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-dark:hover {
  background: linear-gradient(135deg, #2a2010, #1a1208);
  border-color: var(--gold-500);
  color: var(--gold-300);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

/* ── FORMS ───────────────────────────────────────────────── */
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  background: var(--bg-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-body);
  border-radius: var(--radius);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-500);
  background: var(--gold-100);
  box-shadow: 0 0 0 4px rgba(201,169,110,0.12);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }

/* ── NOTICE BAR ──────────────────────────────────────────── */
.notice-bar {
  background: linear-gradient(135deg, var(--gold-700) 0%, var(--gold-500) 50%, var(--gold-700) 100%);
  background-size: 200% auto;
  animation: shimmer 4s linear infinite;
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.notice-bar a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
@keyframes shimmer { to { background-position: 200% center; } }

/* ── TOPBAR ──────────────────────────────────────────────── */
.topbar {
  background: #050505;
  padding: 9px 0;
  font-size: 0.72rem;
  border-bottom: 1px solid rgba(201,169,110,0.12);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.topbar-left { display: flex; align-items: center; gap: 0; }
.topbar-left span { color: rgba(255,255,255,0.5); margin-right: 18px; }
.topbar-left span a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.topbar-left span a:hover { color: var(--gold-400); }
.topbar-badge { color: rgba(255,255,255,0.2) !important; font-size: 0.6rem; letter-spacing: 0.18em; }
.topbar-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.btn-topbar {
  padding: 5px 14px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(201,169,110,0.35);
  color: var(--gold-400);
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-topbar:hover {
  border-color: var(--gold-500);
  background: rgba(201,169,110,0.12);
  color: var(--gold-300);
}
.btn-topbar.btn-gold {
  border-color: var(--gold-500);
  background: linear-gradient(135deg, var(--gold-600), var(--gold-800));
  color: #fff;
}
.btn-topbar.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
}
@media (max-width: 768px) {
  .topbar-badge,
  .topbar-left span:not(:first-child) { display: none; }
}

/* ── SITE HEADER ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.96);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(201,169,110,0.18);
  transition: var(--transition-slow);
}
.site-header.scrolled {
  background: rgba(3, 3, 3, 0.98);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5), 0 1px 0 rgba(201,169,110,0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 16px;
}

/* ── LOGO ────────────────────────────────────────────────── */
.logo a { display: flex; align-items: center; gap: 14px; }
.logo img {
  height: 52px;
  width: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold-600);
  box-shadow: 0 0 0 4px rgba(201,169,110,0.1), var(--shadow-gold);
  transition: var(--transition);
}
.logo a:hover img {
  border-color: var(--gold-400);
  box-shadow: 0 0 0 6px rgba(201,169,110,0.15), var(--glow-gold);
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: #fff;
  line-height: 1.1;
  display: block;
}
.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-500);
  display: block;
  margin-top: 2px;
}

/* ── NAV ─────────────────────────────────────────────────── */
.main-nav { flex: 1; overflow: hidden; }
.nav-list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  justify-content: center;
  gap: 2px;
}
.nav-list::-webkit-scrollbar { display: none; }
.nav-list > li { position: relative; flex-shrink: 0; }
.nav-list > li > a {
  display: block;
  padding: 26px 11px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  white-space: nowrap;
  transition: var(--transition);
  position: relative;
}
.nav-list > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  transition: var(--transition);
  border-radius: var(--radius-full);
}
.nav-list > li > a:hover,
.nav-list > li > a.active {
  color: var(--gold-400);
}
.nav-list > li > a:hover::after,
.nav-list > li > a.active::after {
  width: 70%;
}
.nav-list .arrow { font-size: 0.45rem; margin-left: 3px; vertical-align: middle; opacity: 0.6; }

/* ── DROPDOWN ────────────────────────────────────────────── */
.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: -8px;
  min-width: 230px;
  background: #0f0d0a;
  border: 1px solid rgba(201,169,110,0.2);
  border-top: 2px solid var(--gold-500);
  box-shadow: var(--shadow-2xl), 0 0 40px rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
  z-index: 200;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 11px 20px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(245,235,210,0.8);
  border-bottom: 1px solid rgba(201,169,110,0.07);
  white-space: nowrap;
  transition: var(--transition);
  letter-spacing: 0.03em;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover {
  color: var(--gold-400);
  background: rgba(201,169,110,0.08);
  padding-left: 26px;
}

/* ── HEADER ACTIONS ──────────────────────────────────────── */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.cart-icon {
  position: relative;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.cart-icon:hover { color: var(--gold-400); }
.cart-count {
  position: absolute;
  top: -8px; right: -8px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(201,169,110,0.5);
}
.btn-appointment {
  padding: 9px 20px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-800));
  color: #fff;
  border: 1.5px solid rgba(201,169,110,0.4);
  white-space: nowrap;
  transition: var(--transition);
  border-radius: var(--radius);
  box-shadow: var(--shadow-gold);
}
.btn-appointment:hover {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  border-color: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
}

/* ── HAMBURGER ───────────────────────────────────────────── */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gold-400); transition: var(--transition); border-radius: 2px; }

/* ── PAGE BANNER ─────────────────────────────────────────── */
.page-banner {
  background: linear-gradient(135deg, #030208 0%, #1a1208 60%, #0f0c08 100%);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,169,110,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 { color: #fff; margin-bottom: 12px; }
.page-banner p { color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto; font-size: 0.95rem; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 18px; font-size: 0.76rem; }
.breadcrumb a { color: var(--gold-400); }
.breadcrumb a:hover { color: var(--gold-300); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ── TWO COLUMN ──────────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.col-img { position: relative; }
.col-img img { width: 100%; object-fit: cover; border-radius: var(--radius-xl); }
.experience-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-800));
  color: #fff; width: 110px; height: 110px;
  border-radius: 50%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  box-shadow: var(--shadow-gold-lg);
  border: 3px solid rgba(201,169,110,0.3);
}
.experience-badge strong { font-size: 1.6rem; font-weight: 800; line-height: 1; color: var(--gold-300); }
.experience-badge span { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.8); }

/* ── PRODUCT CARD (global) ───────────────────────────────── */
.product-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.04) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
  z-index: 0;
  pointer-events: none;
}
.product-card:hover {
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(201,169,110,0.2);
  transform: translateY(-8px);
  border-color: rgba(201,169,110,0.25);
}
.product-card:hover::before { opacity: 1; }
.product-card:hover .product-img img {
  transform: scale(1.07);
  filter: brightness(1.04) contrast(1.03) saturate(1.05);
}
.product-img {
  overflow: hidden;
  height: 380px;
  background: linear-gradient(145deg, #f8f5f0 0%, #ede8e0 100%);
  position: relative;
  display: block;
}
.product-img img {
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-700) 100%);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  z-index: 2;
  box-shadow: 0 4px 14px rgba(201,169,110,0.4);
}
.product-badge[data-badge="Premium"] {
  background: linear-gradient(135deg, #1a2e52, #0d1a2e);
  box-shadow: 0 4px 14px rgba(13,26,46,0.4);
  border: 1px solid rgba(201,169,110,0.3);
  color: var(--gold-300);
}
.product-badge[data-badge="Luxury"] {
  background: linear-gradient(135deg, #2a1a0a, #1a0f05);
  color: var(--gold-300);
  border: 1px solid rgba(201,169,110,0.35);
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
}
.product-info {
  padding: 22px 24px 26px;
  position: relative;
  z-index: 1;
}
.product-info h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.35;
}
.product-info h3 a:hover { color: var(--primary); }
.product-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 18px;
}
.price-current {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--gold-700);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.price-from {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}
.product-actions { display: flex; gap: 10px; }
.product-actions .btn-primary,
.product-actions .btn-outline {
  flex: 1;
  text-align: center;
  padding: 10px 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: var(--radius);
}

/* ── ACCORDION ───────────────────────────────────────────── */
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; cursor: pointer;
  font-family: var(--font-serif); font-size: 1.1rem; color: var(--text-dark);
  transition: var(--transition);
}
.accordion-header:hover { color: var(--primary); }
.accordion-icon { font-size: 1.2rem; transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); color: var(--primary); flex-shrink: 0; }
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.45s ease, padding 0.3s ease; }
.accordion-item.open .accordion-body { max-height: 600px; padding-bottom: 20px; }
.accordion-body p { color: var(--text-body); margin: 0; line-height: 1.85; }

/* ── TABS ────────────────────────────────────────────────── */
.tabs-nav { display: flex; border-bottom: 2px solid var(--border); overflow-x: auto; gap: 4px; }
.tab-btn {
  padding: 13px 22px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  background: none; border: none; border-bottom: 2px solid transparent; margin-bottom: -2px;
  cursor: pointer; color: var(--text-muted); transition: var(--transition); white-space: nowrap;
}
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeInUp 0.4s ease; }

/* ── STARS ───────────────────────────────────────────────── */
.stars {
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1rem;
  letter-spacing: 2px;
}

/* ── TOAST ───────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 28px; right: 28px;
  background: linear-gradient(135deg, #0f0c08, #1a1208);
  color: #fff;
  padding: 14px 22px;
  font-size: 0.82rem;
  border-left: 4px solid var(--gold-500);
  box-shadow: var(--shadow-2xl), var(--shadow-gold);
  z-index: 9999;
  transform: translateX(120%);
  transition: var(--transition);
  border-radius: var(--radius-lg);
  max-width: 380px;
}
.toast.show { transform: translateX(0); }

/* ── PAGINATION ──────────────────────────────────────────── */
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 56px; }
.pagination a, .pagination span {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--border);
  font-size: 0.85rem; font-weight: 600;
  transition: var(--transition);
  border-radius: var(--radius);
  color: var(--text-body);
}
.pagination a:hover { background: var(--gold-100); border-color: var(--gold-500); color: var(--gold-700); }
.pagination .active { background: linear-gradient(135deg, var(--gold-500), var(--gold-700)); border-color: transparent; color: #fff; box-shadow: var(--shadow-gold); }

/* ── SCROLL TOP ──────────────────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 100px; right: 18px;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; transform: translateY(14px);
  transition: var(--transition); z-index: 500; border: none;
  font-size: 1.1rem;
  border-radius: 50%;
  box-shadow: var(--shadow-gold-lg);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-4px); box-shadow: var(--glow-gold); }

/* ── LIGHTBOX ────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(20px);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--radius-lg); box-shadow: var(--shadow-2xl); }
.lightbox-close {
  position: fixed; top: 24px; right: 28px;
  color: rgba(255,255,255,0.8); font-size: 1.8rem; cursor: pointer;
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%; transition: var(--transition);
}
.lightbox-close:hover { color: var(--gold-400); background: rgba(201,169,110,0.1); border-color: rgba(201,169,110,0.3); }

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeInUp   { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn     { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideDown  { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse-gold { 0%,100% { box-shadow: var(--shadow-gold); } 50% { box-shadow: var(--glow-gold); } }
.animate-in { animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards; }

/* ── EMPTY STATE ─────────────────────────────────────────── */
.empty-state { text-align: center; padding: 72px 24px; color: var(--text-light); }
.empty-state .icon { font-size: 3.5rem; margin-bottom: 18px; opacity: 0.35; }

/* ── NEWSLETTER ──────────────────────────────────────────── */
.newsletter {
  padding: 72px 0;
  background: linear-gradient(135deg, #0f0c08 0%, #1a1208 50%, #0f0c08 100%);
  border-top: 1px solid rgba(201,169,110,0.15);
  border-bottom: 1px solid rgba(201,169,110,0.15);
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,169,110,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
  position: relative; z-index: 1;
}
.newsletter-text h2 { font-size: 2.2rem; margin-bottom: 8px; color: #fff; }
.newsletter-text p { color: rgba(255,255,255,0.6); margin: 0; }
.newsletter-form { display: flex; flex: 1; max-width: 460px; }
.newsletter-form input {
  flex: 1; padding: 14px 18px;
  border: 1.5px solid rgba(201,169,110,0.25);
  background: rgba(255,255,255,0.05);
  font-family: var(--font-body); font-size: 0.9rem;
  outline: none; color: #fff;
  border-radius: var(--radius) 0 0 var(--radius);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { border-color: var(--gold-500); }
.newsletter-form .btn-primary { white-space: nowrap; border-radius: 0 var(--radius) var(--radius) 0; padding: 14px 24px; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: linear-gradient(180deg, #040608 0%, #020305 100%);
  color: rgba(255,255,255,0.65);
  border-top: 1px solid rgba(201,169,110,0.12);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 72px 0 52px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-logo { font-family: var(--font-serif); font-size: 1.65rem; color: #fff; letter-spacing: 0.22em; margin-bottom: 4px; }
.footer-logo-sub {
  font-family: var(--font-sans); font-size: 0.55rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-500); margin-bottom: 18px; display: block;
}
.footer-brand p { font-size: 0.83rem; line-height: 1.85; margin-bottom: 22px; color: rgba(255,255,255,0.6); }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-links a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 700; color: rgba(255,255,255,0.5);
  transition: var(--transition); border-radius: var(--radius);
}
.social-links a:hover {
  border-color: var(--gold-500); color: var(--gold-400);
  background: rgba(201,169,110,0.08);
  box-shadow: 0 0 12px rgba(201,169,110,0.2);
}
.footer-col h4 {
  color: rgba(255,255,255,0.9);
  font-family: var(--font-sans); font-size: 0.68rem;
  font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: 0.82rem; color: rgba(255,255,255,0.6);
  transition: var(--transition); font-weight: 400;
  position: relative; padding-left: 0;
}
.footer-col ul li a:hover { color: var(--gold-400); padding-left: 6px; }
.footer-col address p { font-size: 0.82rem; margin-bottom: 8px; color: rgba(255,255,255,0.6); }
.footer-col address a { color: rgba(255,255,255,0.6); }
.footer-col address a:hover { color: var(--gold-400); }
.footer-hours { margin-top: 14px; }
.footer-hours strong { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold-400); margin-bottom: 6px; font-family: var(--font-sans); font-weight: 700; }
.footer-hours span { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.7); font-weight: 400; line-height: 1.85; }
.seo-city-links { padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.seo-city-links h5 { font-family: var(--font-sans); font-size: 0.62rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.city-links-grid { display: flex; flex-wrap: wrap; gap: 7px; }
.city-links-grid a {
  font-size: 0.72rem; color: rgba(255,255,255,0.5);
  padding: 5px 12px; border: 1px solid rgba(255,255,255,0.12);
  transition: var(--transition); border-radius: 3px; font-weight: 500;
}
.city-links-grid a:hover { color: var(--gold-400); border-color: rgba(201,169,110,0.3); background: rgba(201,169,110,0.06); }
.footer-bottom {
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin: 0; }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.45); transition: var(--transition); }
.footer-legal a:hover { color: var(--gold-400); }

/* ── MOBILE NAV ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-inner { height: 66px; }
  .main-nav.open {
    display: block;
    position: fixed; top: 66px; left: 0; right: 0; bottom: 0;
    background: #0a0806;
    overflow-y: auto; z-index: 999;
    padding: 12px 0;
    border-top: 2px solid rgba(201,169,110,0.25);
    box-shadow: var(--shadow-2xl);
  }
  .nav-list { flex-direction: column; align-items: stretch; overflow: visible; }
  .nav-list > li > a {
    padding: 15px 24px;
    border-bottom: 1px solid rgba(201,169,110,0.08);
    display: flex; justify-content: space-between;
    color: rgba(245,235,210,0.85);
  }
  .nav-list > li > a::after { display: none; }
  .dropdown {
    position: static; box-shadow: none; border-top: none;
    border-left: 3px solid var(--gold-500); margin-left: 20px;
    opacity: 1; visibility: visible; transform: none; display: none;
    background: rgba(201,169,110,0.04); border-radius: 0;
  }
  .has-dropdown.open .dropdown { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .two-col.reverse { direction: ltr; }
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
  .newsletter-inner { flex-direction: column; align-items: stretch; }
  .newsletter-form { max-width: 100%; flex-direction: column; }
  .newsletter-form input { border-radius: var(--radius) var(--radius) 0 0; }
  .newsletter-form .btn-primary { border-radius: 0 0 var(--radius) var(--radius); text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 44px 0 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
  .section-header { margin-bottom: 40px; }
}
@media (max-width: 480px) {
  .btn-appointment { display: none; }
  .topbar-right .btn-topbar:first-child { display: none; }
}
