
@font-face {
  font-family: 'IRANSans';
  src: url('../fonts/iransans.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'IRANYekan';
  src: url('../fonts/iranyekan.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ═══════════════════════════════════════
   PREMIUM VARIABLES & RESET
═══════════════════════════════════════ */
:root {
  --ink:        #14100c;
  --deep:       #2a1c12;
  --carpet-red: #8c2b25;
  --carpet-deep:#5e1a18;
  --navy:       #1a2238;
  --gold-dark-text: #7a5200;
  --gold:       #c8a04e;
  --gold-light: #e8d49a;
  --gold-dark:  #805708;
  --plum:       #6b2d5c;

  --paper:      #faf6ef;
  --pale:       #f2ebdf;
  --cream:      #fcf9f3;
  --white:      #ffffff;

  --text-main:  #1c1712;
  --text-muted: #4a4a4a;

  --line:       #e3dac9;
  --shadow-sm:  0 4px 16px rgba(20, 16, 12, 0.06);
  --shadow-md:  0 16px 40px rgba(20, 16, 12, 0.10);
  --shadow-lg:  0 30px 70px rgba(20, 16, 12, 0.16);
  --shadow-gold:0 10px 30px rgba(200, 160, 78, 0.28);

  --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --font-fa:    'IRANSans', 'IRANYekan', 'Vazirmatn', sans-serif;
  --font-en:    'Jost', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

/* Focus styles for keyboard accessibility */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Accessibility Skip Link (Visually hidden offscreen until focused) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  padding: 10px 20px;
  z-index: 10000;
  font-weight: 700;
  font-size: 13px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: top 0.3s ease;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
  width: 1px;
}
.skip-link:focus {
  top: 0;
  clip: auto;
  clip-path: none;
  height: auto;
  width: auto;
  overflow: visible;
}

/* Support users with motion sensitivity */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-delay: 0s !important;
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }
}

/* Modern scroll margin behavior preventing fixed nav overlaps without updating browser history */
html { 
  scroll-behavior: smooth; 
  scroll-padding-top: 96px; 
}
body {
  font-family: var(--font-fa);
  background: var(--paper);
  color: var(--text-main);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  padding-top: 96px; /* Offset for fixed navigation menu always over the page */
}
body.en { font-family: var(--font-en); direction: ltr; line-height: 1.7; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--pale); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--gold), var(--gold-dark)); border-radius: 10px; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* Language Toggle Visibility */
.lang-fa { display: inline; }
.lang-en { display: none !important; }
body.en .lang-fa { display: none !important; }
body.en .lang-en { display: inline !important; }
.block-fa { display: block; }
.block-en { display: none !important; }
body.en .block-fa { display: none !important; }
body.en .block-en { display: block !important; }
.flex-fa { display: flex; }
.flex-en { display: none !important; }
body.en .flex-fa { display: none !important; }
body.en .flex-en { display: flex !important; }
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CLS PREVENTION: html.html-lang-en mirrors of body.en rules
   Applied from frame 1 via inline <head> script â€” no layout shift
   These duplicate body.en rules so English layout is immediate.
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
html.html-lang-en body { font-family: var(--font-en); direction: ltr; line-height: 1.7; }
html.html-lang-en body .lang-fa { display: none !important; }
html.html-lang-en body .lang-en { display: inline !important; }
html.html-lang-en body .block-fa { display: none !important; }
html.html-lang-en body .block-en { display: block !important; }
html.html-lang-en body .flex-fa { display: none !important; }
html.html-lang-en body .flex-en { display: flex !important; }
html.html-lang-en body h1,
html.html-lang-en body h2,
html.html-lang-en body h3 { font-family: var(--font-serif); font-weight: 500; letter-spacing: 1px; }
html.html-lang-en body .drawer-link { text-align: left; letter-spacing: 1px; text-transform: uppercase; font-size: 13.5px; }
html.html-lang-en body .drawer-link:hover { padding-right: 18px; padding-left: 24px; }
html.html-lang-en body h1.hero-h1 { font-family: var(--font-serif); font-weight: 700; }
html.html-lang-en body .hero-dots { right: auto; left: 50%; transform: translateX(-50%); }
html.html-lang-en body .col-tag { right: auto; left: 16px; }
html.html-lang-en body .col-body h3 { font-family: var(--font-serif); font-weight: 500; font-size: 24px; letter-spacing: 0.5px; }
html.html-lang-en body .col-card:hover .col-link svg { transform: translateX(5px); }
html.html-lang-en body .faq-question { text-align: left; }
html.html-lang-en body .rev-quote { right: auto; left: 28px; }
html.html-lang-en body .rev-text { font-family: var(--font-serif); font-size: 18px; }
html.html-lang-en body .form-box h3 { font-family: var(--font-serif); font-weight: 500; }
html.html-lang-en body .f-col h5::after { right: auto; left: 0; }
html.html-lang-en body .float-back-to-top { right: auto; left: 30px; }
html.html-lang-en body .float-wa { left: auto; right: 30px; }
html.html-lang-en body .gp-badge { right: auto; left: 20px; }
html.html-lang-en body .cp-card-badge { right: auto; left: 16px; }
html.html-lang-en body .stat-sparkle { right: auto; left: 16px; }
html.html-lang-en body .about-img-frame { top: 36px; bottom: 0; left: -18px; right: 18px; }
html.html-lang-en body .about-sign b { font-family: var(--font-serif); }
html.html-lang-en body .gal-caption-title { font-family: var(--font-serif); letter-spacing: 0.5px; }
html.html-lang-en body .delivery-card-title { text-align: left; }
html.html-lang-en body .ai-widget-trigger { right: auto; left: 30px; }

/* ═══════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 { color: var(--ink); font-weight: 800; line-height: 1.3; }
body.en h1, body.en h2, body.en h3 { font-family: var(--font-serif); font-weight: 500; letter-spacing: 1px; }

p { color: var(--text-main); font-weight: 400; font-size: 16px; }

.sec-tag { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.sec-line { 
  width: 0; 
  height: 1.5px; 
  background: linear-gradient(90deg, var(--gold), transparent); 
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}
.reveal.in .sec-line {
  width: 48px;
}
.sec-label { font-size: 13px; letter-spacing: 3px; font-weight: 700; color: var(--gold-dark-text); text-transform: uppercase; }
.sec-line-r {
  width: 0;
  height: 1.5px;
  background: linear-gradient(270deg, var(--gold), transparent);
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}
.reveal.in .sec-line-r {
  width: 48px;
}

#about h2.sec-h2,
h2.sec-h2 {
  font-size: clamp(20px, 2.6vw, 32px); margin-bottom: 22px; letter-spacing: -0.3px;
  line-height: 1.3; font-weight: 800;
  background: linear-gradient(135deg, #a62121 0%, #c45627 35%, #d4a339 70%, #e8c86b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  filter: drop-shadow(0 1px 1.5px rgba(0, 0, 0, 0.15));
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.center h2.sec-h2 {
  display: inline-block;
}
h2.sec-h2.on-dark {
  background: linear-gradient(135deg, #e8a87c 0%, #e5c158 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.sec-sub { max-width: 720px; margin-bottom: 44px; font-size: 17px; color: var(--text-muted); line-height: 2; }
.sec-sub.on-dark { color: rgba(255,255,255,0.78); }

.wrap { max-width: 1340px; margin: 0 auto; padding: 0 5%; }
section { padding: 90px 0; }

.center { text-align: center; }
.center .sec-tag { justify-content: center; }
.center .sec-sub { margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 38px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}
.btn-cta::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: 0.6s;
}
.btn-cta:hover::after { left: 100%; }
.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(200, 160, 78, 0.4); }

.btn-outline {
  border: 1.5px solid rgba(200, 160, 78, 0.5);
  color: var(--gold-light);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 34px;
  border-radius: 2px;
  display: inline-block;
  cursor: pointer;
  background: transparent;
  letter-spacing: 0.5px;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(200, 160, 78, 0.12); color: var(--white); }

/* ═══════════════════════════════════════
   ALWAYS FIXED NAVIGATION BAR
═══════════════════════════════════════ */
nav#main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(253, 251, 247, 0.94);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(200, 160, 78, 0.22);
  box-shadow: 0 4px 25px rgba(20, 16, 12, 0.05);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%; height: 96px;
  transition: var(--transition);
}
nav#main-nav.scrolled {
  height: 76px;
  background: rgba(255, 254, 251, 0.98);
  border-bottom: 1px solid rgba(200, 160, 78, 0.3);
  box-shadow: 0 8px 30px rgba(20, 16, 12, 0.08);
}
.nav-logo-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}
.nav-logo-link::before {
  content: '';
  position: absolute;
  width: 90px; height: 90px;
  background: radial-gradient(circle, rgba(200, 160, 78, 0.22) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
  transition: var(--transition);
}
.nav-logo-link:hover::before {
  background: radial-gradient(circle, rgba(200, 160, 78, 0.35) 0%, transparent 70%);
  width: 110px; height: 110px;
}
.nav-logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  transition: var(--transition);
}
.nav-logo-img:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 4px 15px rgba(200, 160, 78, 0.25));
}
nav.scrolled .nav-logo-img {
  height: 58px;
}

.nav-menu { display: flex; align-items: center; gap: 24px; }
.nav-menu li a {
  font-weight: 600; font-size: 14.5px;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  padding: 8px 12px;
  text-decoration: none;
  transition: color 0.35s ease, text-shadow 0.35s ease;
}

/* Light Mode nav links */
html:not([data-theme="dark"]) .nav-menu li a {
  color: #1c1712 !important;
  text-shadow: none !important;
}
html:not([data-theme="dark"]) .nav-menu li a:hover,
html:not([data-theme="dark"]) .nav-menu li a.active {
  color: #805708 !important;
  text-shadow: 0 1px 4px rgba(128, 87, 8, 0.15) !important;
}

/* Dark Mode nav links */
html[data-theme="dark"] .nav-menu li a {
  color: rgba(255, 255, 255, 0.9) !important;
}
html[data-theme="dark"] .nav-menu li a:hover,
html[data-theme="dark"] .nav-menu li a.active {
  color: #fbeecb !important;
  text-shadow: 0 0 10px rgba(251, 238, 203, 0.3) !important;
}

.nav-menu li a::after {
  content: ''; position: absolute; bottom: -2px; left: 50%;
  width: 5px; height: 5px; background: var(--gold);
  transform: translateX(-50%) rotate(45deg) scale(0);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
}
.nav-menu li a.active::after, .nav-menu li a:hover::after { transform: translateX(-50%) rotate(45deg) scale(1); opacity: 1; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-mobile-brand { display: none; }

.lang-switch {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(200, 160, 78, 0.35);
  color: var(--gold-light);
  font-family: inherit; font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.5px;
  padding: 9px 0; border-radius: 100px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 120px;
  transition: var(--transition);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.lang-switch:hover {
  background: rgba(200, 160, 78, 0.1);
  border-color: var(--gold);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 15px rgba(200, 160, 78, 0.22);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--ink);
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(200, 160, 78, 0.2);
  transition: var(--transition);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}
.nav-cta::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: 0.6s;
}
.nav-cta:hover::after { left: 100%; }
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 160, 78, 0.35);
}

.menu-btn {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(245, 215, 127, 0.4);
  border-radius: 12px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  position: relative;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), 0 0 12px rgba(245, 215, 127, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
  z-index: 1070;
}
.menu-btn span {
  display: block;
  height: 2.5px;
  background: linear-gradient(90deg, #ffe599 0%, #d4af37 100%);
  border-radius: 4px;
  position: absolute;
  right: 10px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.menu-btn span:nth-child(1) { top: 13px; width: 22px; }
.menu-btn span:nth-child(2) { top: 20px; width: 16px; background: #f5d77f; }
.menu-btn span:nth-child(3) { bottom: 13px; width: 22px; }

/* Mobile Drawer Luxury Design System */
.mobile-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: auto;
  width: 320px;
  max-width: 86vw;
  height: 100vh;
  height: 100dvh;
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  z-index: 1050;
  transform: translateX(-100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}
.mobile-drawer::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 215, 127, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Night / Dark Mode Drawer Theme */
html[data-theme="dark"] .mobile-drawer,
.mobile-drawer {
  background: linear-gradient(165deg, rgba(14, 11, 8, 0.98) 0%, rgba(28, 20, 14, 0.98) 50%, rgba(16, 12, 9, 0.99) 100%);
  border-right: 1.5px solid rgba(245, 215, 127, 0.35);
  border-left: none;
  box-shadow: 14px 0 48px rgba(0, 0, 0, 0.7), inset -1px 0 0 rgba(245, 215, 127, 0.15);
}
html[data-theme="dark"] body.en .mobile-drawer,
body.en .mobile-drawer {
  left: auto;
  right: 0;
  transform: translateX(100%);
  border-left: 1.5px solid rgba(245, 215, 127, 0.35);
  border-right: none;
  box-shadow: -14px 0 48px rgba(0, 0, 0, 0.7), inset 1px 0 0 rgba(245, 215, 127, 0.15);
}

/* Day / Light Mode Drawer Theme (High-Contrast & Clean) */
html:not([data-theme="dark"]) .mobile-drawer,
html[data-theme="light"] .mobile-drawer {
  background: linear-gradient(165deg, #FAF7F2 0%, #F5EFE6 50%, #FAF6F0 100%) !important;
  border-right: 1.5px solid rgba(139, 26, 26, 0.25) !important;
  border-left: none !important;
  box-shadow: 14px 0 48px rgba(0, 0, 0, 0.16), inset -1px 0 0 rgba(139, 26, 26, 0.08) !important;
}
html:not([data-theme="dark"]) body.en .mobile-drawer,
html[data-theme="light"] body.en .mobile-drawer {
  left: auto;
  right: 0;
  transform: translateX(100%);
  border-left: 1.5px solid rgba(139, 26, 26, 0.25) !important;
  border-right: none !important;
  box-shadow: -14px 0 48px rgba(0, 0, 0, 0.16), inset 1px 0 0 rgba(139, 26, 26, 0.08) !important;
}

body.en .mobile-drawer::before {
  left: auto;
  right: -60px;
}

.mobile-drawer.active {
  transform: translateX(0) !important;
}

/* Drawer top header */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid rgba(245, 215, 127, 0.18);
  background: rgba(255, 255, 255, 0.02);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.drawer-header-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}
.drawer-close {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(245, 215, 127, 0.35);
  color: #f5d77f;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}
.drawer-close:hover {
  background: rgba(245, 215, 127, 0.2);
  border-color: #f5d77f;
  color: #ffffff;
  transform: rotate(90deg) scale(1.06);
}

/* Quick Action Row inside Drawer */
/* Quick Action Row inside Drawer (Search, Mode, Language) */
.drawer-actions-row {
  display: flex;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(245, 215, 127, 0.06);
  border-bottom: 1px solid rgba(245, 215, 127, 0.18);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.drawer-act-btn {
  flex: 1;
  min-width: 0;
  height: 42px;
  min-height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(245, 215, 127, 0.35);
  color: #f5d77f;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 6px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.drawer-act-btn svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}
.drawer-act-btn:hover {
  background: rgba(245, 215, 127, 0.2);
  color: #ffffff;
  border-color: #f5d77f;
  transform: translateY(-1px);
}

/* Nav links area */
.drawer-menu {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 10px;
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  z-index: 1;
  -webkit-overflow-scrolling: touch;
}
.drawer-link {
  font-size: 14.5px;
  font-weight: 600;
  color: #ffffff !important;
  border-bottom: 1px solid rgba(245, 215, 127, 0.08);
  padding: 12px 16px;
  border-radius: 10px;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  letter-spacing: 0.2px;
  transition: all 0.25s ease;
}
body.en .drawer-link {
  font-family: var(--font-en, 'Jost', sans-serif) !important;
  text-align: left;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-size: 13px;
}
.drawer-link-content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.drawer-icon {
  width: 18px;
  height: 18px;
  stroke: #f5d77f;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.drawer-link .link-diamond {
  width: 6px;
  height: 6px;
  background: #f5d77f;
  transform: rotate(45deg) scale(0);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
  opacity: 0;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(245, 215, 127, 0.8);
}
.drawer-link:hover {
  color: #f5d77f !important;
  background: rgba(245, 215, 127, 0.12);
  padding-right: 22px;
}
body.en .drawer-link:hover {
  padding-right: 16px;
  padding-left: 22px;
}
.drawer-link:hover .drawer-icon {
  stroke: #ffffff;
  transform: scale(1.15) rotate(-5deg);
}
.drawer-link:hover .link-diamond {
  transform: rotate(45deg) scale(1);
  opacity: 1;
}

/* Drawer Footer */
.drawer-footer {
  padding: 16px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  border-top: 1px solid rgba(245, 215, 127, 0.16);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin-top: auto;
}
/* Segmented Dual-Language Selector in Drawer */
.drawer-lang-selector {
  width: 100%;
  height: 46px;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(245, 215, 127, 0.28);
  border-radius: 14px;
  padding: 4px;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 4px;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.3), 0 4px 14px rgba(0, 0, 0, 0.2);
}

.drawer-lang-btn {
  flex: 1;
  height: 100%;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px;
  white-space: nowrap !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 8px;
}
.drawer-lang-btn .lang-flag {
  font-size: 14px;
  line-height: 1;
  display: inline-flex;
}
.drawer-lang-btn .lang-name {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  display: inline-flex;
}
.drawer-lang-btn.opt-fa .lang-name {
  font-family: var(--font-fa, 'Vazirmatn', sans-serif);
}
.drawer-lang-btn.opt-en .lang-name {
  font-family: var(--font-en, 'Jost', sans-serif);
  letter-spacing: 0.5px;
}

.drawer-lang-btn:not(.active):hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.drawer-lang-btn.active {
  background: linear-gradient(135deg, rgba(245, 215, 127, 0.25) 0%, rgba(200, 160, 78, 0.35) 100%) !important;
  border: 1.5px solid #f5d77f !important;
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(200, 160, 78, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.4) !important;
  font-weight: 800 !important;
}

.drawer-socials {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
.drawer-socials a {
  color: #f5d77f;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(245, 215, 127, 0.3);
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.drawer-socials a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.drawer-socials a:hover {
  background: rgba(245, 215, 127, 0.25);
  border-color: #f5d77f;
  color: #ffffff;
  transform: translateY(-2px) scale(1.08);
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 6, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.drawer-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Staggered entry animation for drawer content when active */
body:not(.en) .mobile-drawer .drawer-header,
body:not(.en) .mobile-drawer .drawer-actions-row,
body:not(.en) .mobile-drawer .drawer-link,
body:not(.en) .mobile-drawer .drawer-footer {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
body:not(.en) .mobile-drawer.active .drawer-header,
body:not(.en) .mobile-drawer.active .drawer-actions-row,
body:not(.en) .mobile-drawer.active .drawer-link,
body:not(.en) .mobile-drawer.active .drawer-footer {
  opacity: 1;
  transform: translateX(0);
}

body.en .mobile-drawer .drawer-header,
body.en .mobile-drawer .drawer-actions-row,
body.en .mobile-drawer .drawer-link,
body.en .mobile-drawer .drawer-footer {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
body.en .mobile-drawer.active .drawer-header,
body.en .mobile-drawer.active .drawer-actions-row,
body.en .mobile-drawer.active .drawer-link,
body.en .mobile-drawer.active .drawer-footer {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger transition delays */
.mobile-drawer.active .drawer-header { transition-delay: 0.04s; }
.mobile-drawer.active .drawer-actions-row { transition-delay: 0.08s; }
.mobile-drawer.active .drawer-link:nth-of-type(1) { transition-delay: 0.12s; }
.mobile-drawer.active .drawer-link:nth-of-type(2) { transition-delay: 0.16s; }
.mobile-drawer.active .drawer-link:nth-of-type(3) { transition-delay: 0.20s; }
.mobile-drawer.active .drawer-link:nth-of-type(4) { transition-delay: 0.24s; }
.mobile-drawer.active .drawer-link:nth-of-type(5) { transition-delay: 0.28s; }
.mobile-drawer.active .drawer-link:nth-of-type(6) { transition-delay: 0.32s; }
.mobile-drawer.active .drawer-link:nth-of-type(7) { transition-delay: 0.36s; }
.mobile-drawer.active .drawer-link:nth-of-type(8) { transition-delay: 0.40s; }
.mobile-drawer.active .drawer-link:nth-of-type(9) { transition-delay: 0.44s; }
.mobile-drawer.active .drawer-footer { transition-delay: 0.48s; }

/* ═══════════════════════════════════════
   HERO — GALLERY SLIDESHOW
═══════════════════════════════════════ */
#hero {
  position: relative;
  height: 92vh; min-height: 640px;
  display: flex; align-items: center;
  justify-content: center;
  overflow: hidden; background: var(--ink);
}
#hero::after {
  content: '';
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(200, 160, 78, 0.25);
  outline: 1px solid rgba(200, 160, 78, 0.1);
  outline-offset: -8px;
  pointer-events: none;
  z-index: 4;
}
@media (max-width: 768px) {
  #hero::after {
    inset: 12px;
    outline-offset: -4px;
  }
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1);
  transition: opacity 1.4s ease, transform 6s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1.06) translate(-0.5%, -0.5%); }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(20, 16, 12, 0.7);
}
body.en .hero-overlay { background: rgba(20, 16, 12, 0.7); }
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 20%, rgba(10, 8, 6, 0.85) 100%);
  opacity: 0.7;
  pointer-events: none;
}
body.en .hero-overlay::after {
  background: radial-gradient(circle at center, transparent 20%, rgba(10, 8, 6, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-kicker {
  display: inline-flex; align-items: center;
  background: rgba(20, 16, 12, 0.7);
  border: 1px solid rgba(200, 160, 78, 0.35);
  padding: 6px 18px;
  border-radius: 2px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  animation: up 0.9s 0.1s ease both;
}
.hero-kicker span { font-size: 11px; font-weight: 600; color: var(--gold-light); letter-spacing: 2px; }

@keyframes textShine {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.hero-brand-intro {
  font-family: var(--font-en);
  font-size: clamp(13px, 2.5vw, 15.5px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffe599 !important;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

h1.hero-h1 {
  font-size: clamp(22px, 3.5vw, 44px); font-weight: 800;
  background: linear-gradient(to right, #ffffff 15%, #ffe599 50%, #ffffff 85%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.25; margin-bottom: 26px;
  animation: up 0.9s 0.2s ease both, textShine 12s linear infinite;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 10px rgba(255, 229, 153, 0.35));
  text-align: center;
}
h1.hero-h1 .lang-fa {
  font-size: clamp(22px, 3.4vw, 42px);
  display: block;
}
body.en h1.hero-h1 { font-family: var(--font-serif); font-weight: 700; }
h1.hero-h1 b {
  font-weight: inherit;
  color: #ffe599;
}
.hero-desc,
#hero .hero-desc,
html[data-theme="light"] #hero .hero-desc,
html[data-theme="dark"] #hero .hero-desc,
html:not([data-theme="dark"]) #hero .hero-desc {
  font-size: clamp(14.5px, 2vw, 17.5px); line-height: 1.9;
  color: #ffffff !important;
  font-weight: 500 !important; margin: 0 auto 36px auto; max-width: 960px;
  animation: up 0.9s 0.3s ease both;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 1), 0 0 24px rgba(0, 0, 0, 0.95), 0 1px 3px rgba(0, 0, 0, 1) !important;
  text-align: center;
  padding: 0;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}
.hero-btns {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  animation: up 0.9s 0.4s ease both;
}
.hero-btns .btn-cta, .hero-btns .btn-outline {
  width: 220px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
}
body.en .hero-btns .btn-cta, body.en .hero-btns .btn-outline {
  font-family: var(--font-en);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.hero-btns .btn-cta {
  background: linear-gradient(135deg, #ebd49b 0%, #c8a04e 50%, #9e7c34 100%);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 6px 20px rgba(200, 160, 78, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.hero-btns .btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(200, 160, 78, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  letter-spacing: 0.8px;
}
body.en .hero-btns .btn-cta:hover {
  letter-spacing: 1.8px;
}
.hero-btns .btn-outline {
  border: 1.5px solid rgba(200, 160, 78, 0.5);
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.hero-btns .btn-outline:hover {
  background: rgba(200, 160, 78, 0.12);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(200, 160, 78, 0.15), 0 6px 20px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.8px;
}
body.en .hero-btns .btn-outline:hover {
  letter-spacing: 1.8px;
}

.hero-dots {
  position: absolute; bottom: 36px;
  left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; gap: 12px;
}
body.en .hero-dots { right: auto; left: 50%; transform: translateX(-50%); }
.hero-img-lcp {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

.hero-dot {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0;
  transition: transform 0.3s ease;
}
.hero-dot::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-dot::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 4px; height: 4px;
  background: var(--gold-light);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s ease;
}
.hero-dot:hover::before {
  border-color: var(--gold-light);
  transform: scale(1.15);
}
.hero-dot.active::before {
  border-color: var(--gold);
  background: transparent;
  box-shadow: 0 0 8px rgba(200, 160, 78, 0.5);
}
.hero-dot.active::after {
  transform: translate(-50%, -50%) scale(1);
}

@keyframes up { from { opacity: 0; transform: translateY(36px); } to { opacity: 1; transform: translateY(0); } }

/* ═══════════════════════════════════════
   TRUST STRIP
═══════════════════════════════════════ */
#trust {
  background: linear-gradient(to right, #1f140e 0%, #150d09 50%, #1f140e 100%);
  padding: 38px 5%;
  border-top: 1px solid rgba(200, 160, 78, 0.16);
  border-bottom: 1px solid rgba(200, 160, 78, 0.16);
  box-shadow: inset 0 10px 30px rgba(0,0,0,0.3), 0 10px 30px rgba(0,0,0,0.2);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 36px 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--gold-light);
  transition: var(--transition);
  cursor: default;
}
.trust-icon-box {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 160, 78, 0.35);
  transform: rotate(45deg);
  background: rgba(200, 160, 78, 0.03);
  transition: var(--transition);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.trust-item:hover .trust-icon-box {
  background: rgba(200, 160, 78, 0.12);
  border-color: var(--gold);
  transform: rotate(45deg) scale(1.08);
  box-shadow: 0 0 15px rgba(200, 160, 78, 0.22);
}
.trust-icon-box svg {
  transform: rotate(-45deg);
  width: 20px;
  height: 20px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.5;
  transition: var(--transition);
}
.trust-item:hover svg {
  stroke: var(--white);
  filter: drop-shadow(0 0 5px rgba(200, 160, 78, 0.5));
}
.trust-item span {
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
}
body.en .trust-item span {
  font-family: var(--font-en);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.trust-item:hover span {
  color: var(--white);
  text-shadow: 0 0 10px rgba(232, 212, 154, 0.35);
}

/* ═══════════════════════════════════════
   ABOUT / INTRO
═══════════════════════════════════════ */
#about { background: var(--cream); }
#about .sec-line-r, #craft .sec-line-r { display: none; }
body.en #about h2.sec-h2 {
  font-size: clamp(20px, 2.4vw, 30px);
}
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: stretch; }
.about-img-stack { position: relative; display: flex; flex-direction: column; padding: 18px 0; box-sizing: border-box; }
.about-img-main { border-radius: 4px; box-shadow: var(--shadow-lg); width: 100%; height: 100%; object-fit: cover; }
.about-img-frame { position: absolute; top: 36px; bottom: 0; left: 18px; right: -18px; border: 2px solid var(--gold); border-radius: 4px; z-index: -1; }
body.en .about-img-frame { top: 36px; bottom: 0; left: -18px; right: 18px; }
.about-sign { margin-top: 30px; font-size: 15px; color: var(--text-muted); }
.about-sign b { color: var(--carpet-red); font-size: 20px; display: block; }
body.en .about-sign b { font-family: var(--font-serif); }

/* ═══════════════════════════════════════
   COLLECTIONS / PRODUCTS
═══════════════════════════════════════ */
#collections { background: var(--paper); }
.col-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.col-card {
  background: var(--white); border-radius: 4px; overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  border: 1px solid var(--line); cursor: pointer;
}
.col-card:hover { 
  transform: translateY(-10px); 
  box-shadow: 0 30px 60px rgba(20, 16, 12, 0.12);
}
.col-img-box { aspect-ratio: 4 / 3; width: 100%; height: auto; overflow: hidden; position: relative; background: var(--pale); border-radius: 14px 14px 0 0; }
.col-img-box img { display: block; width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1); }
.col-img-box img[loading="lazy"] { min-height: 120px; }
.col-card:hover .col-img-box img { transform: scale(1.08); }
.col-img-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,16,12,0.6) 0%, rgba(200,160,78,0.1) 40%, transparent 100%);
  opacity: 0.3;
  transition: opacity 0.5s ease;
  z-index: 2;
}
.col-card:hover .col-img-box::after { opacity: 0.85; }
.col-tag {
  position: absolute; top: 16px; right: 16px;
  background: rgba(20,16,12,0.85); color: var(--gold-light);
  font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 2px; letter-spacing: 1px;
  z-index: 3;
}
body.en .col-tag { right: auto; left: 16px; }
.col-body { padding: 30px 28px; }
.col-body h3 { font-size: 22px; margin-bottom: 12px; color: var(--ink); transition: color 0.3s; }
body.en .col-body h3 { font-family: var(--font-serif); font-weight: 500; font-size: 24px; letter-spacing: 0.5px; }
.col-card:hover .col-body h3 { color: var(--gold-dark); }
.col-body p { font-size: 15px; color: var(--text-muted); line-height: 1.9; }
.col-link { margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; color: var(--carpet-red); font-weight: 700; font-size: 14px; }
.col-link svg { width: 16px; transition: 0.3s; }
.col-card:hover .col-link svg { transform: translateX(-5px); }
body.en .col-card:hover .col-link svg { transform: translateX(5px); }

/* ═══════════════════════════════════════
   FEATURED GALLERY (masonry-ish)
═══════════════════════════════════════ */
#gallery { background: var(--deep); }
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; }
.gal-item { overflow: hidden; border-radius: 4px; position: relative; cursor: pointer; background: var(--ink); }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; will-change: transform; }
.gal-item:hover img { transform: scale(1.1); }
.gal-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,16,12,0.55), transparent 55%);
  opacity: 0; transition: 0.4s;
}
.gal-item:hover::after { opacity: 1; }
.gal-wide { grid-column: span 2; }
.gal-tall { grid-row: span 2; }
.gal-big { grid-column: span 2; grid-row: span 2; }

/* ═══════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════ */
#why { background: var(--cream); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 50px; }
.why-card {
  background: var(--white); padding: 44px 32px; border-radius: 4px;
  border: 1px solid var(--line); text-align: center; transition: var(--transition);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(200,160,78,0.4); }
.why-ico {
  width: 70px; height: 70px; margin: 0 auto 24px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pale), var(--cream));
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold-light);
}
.why-ico svg { width: 32px; height: 32px; stroke: var(--gold-dark); fill: none; stroke-width: 1.5; }
.why-card h3 { font-size: 20px; margin-bottom: 14px; color: var(--ink); }
.why-card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.85; }

/* ═══════════════════════════════════════
   PROCESS / CRAFT
═══════════════════════════════════════ */
#craft { background: var(--ink); color: var(--white); position: relative; overflow: hidden; }
.craft-pattern { position: absolute; inset: 0; opacity: 0.06; background-image: radial-gradient(var(--gold) 1px, transparent 1px); background-size: 28px 28px; }
.craft-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 70px; align-items: center; position: relative; z-index: 1; }
.craft-steps { 
  display: flex; flex-direction: column; gap: 28px; 
  position: relative;
}
.craft-steps::before {
  content: '';
  position: absolute;
  top: 26px;
  bottom: 26px;
  right: 26px;
  width: 0;
  border-right: 1.5px dashed rgba(200, 160, 78, 0.35);
  z-index: 0;
  pointer-events: none;
}
body.en .craft-steps::before {
  right: auto;
  left: 26px;
}
.craft-step { display: flex; gap: 22px; align-items: flex-start; cursor: default; }
.craft-step div { transition: transform 0.4s ease; z-index: 1; }
.craft-step:hover div { transform: translateX(-8px); }
body.en .craft-step:hover div { transform: translateX(8px); }
.craft-n {
  width: 52px; height: 52px; flex-shrink: 0; border-radius: 50%;
  border: 1.5px solid var(--gold); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; font-family: var(--font-serif);
  background: var(--ink);
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.craft-step:hover .craft-n {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 0 15px rgba(200, 160, 78, 0.5);
  transform: scale(1.08);
  border-color: var(--gold);
}
.craft-step h4 { font-size: 19px; color: var(--white); margin-bottom: 8px; transition: color 0.3s; }
.craft-step:hover h4 { color: var(--gold-light); }
.craft-step p { font-size: 14.5px; color: rgba(255,255,255,0.72); line-height: 1.85; }
.craft-img { border-radius: 4px; box-shadow: var(--shadow-lg); width: 100%; height: auto; transition: transform 0.5s ease; }
.craft-img:hover { transform: scale(1.01) translateY(-2px); }

/* ═══════════════════════════════════════
   LUXURY VIDEO PLAYER (4:6 Portrait Refinement)
═══════════════════════════════════════ */
.craft-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 6;
  max-height: 620px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.55), 0 0 35px rgba(200, 160, 78, 0.15);
  border: 1px solid rgba(200, 160, 78, 0.25);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  background: #0d0a07;
  display: flex;
  align-items: center;
  justify-content: center;
}
.craft-video-wrapper:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(200, 160, 78, 0.65);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.65), 0 0 45px rgba(200, 160, 78, 0.3);
}
.craft-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

/* Glassmorphic floating audio button */
.floating-audio-indicator {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 10;
  background: rgba(20, 16, 12, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(200, 160, 78, 0.35);
  color: var(--gold-light);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35), 0 0 10px rgba(200, 160, 78, 0.1);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.floating-audio-indicator:hover {
  background: rgba(200, 160, 78, 0.2);
  border-color: var(--gold);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(200, 160, 78, 0.2);
}
.floating-audio-indicator svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
  transition: transform 0.3s ease;
}
.floating-audio-indicator:hover svg {
  transform: scale(1.1);
}

/* ═══════════════════════════════════════
   LUXURY VIDEO PLAYER CUSTOM CONTROLS
   ═══════════════════════════════════════ */
.video-controls-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 8, 6, 0.85) 0%, rgba(10, 8, 6, 0.2) 30%, transparent 60%, rgba(10, 8, 6, 0.4) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 5;
}
.video-controls-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.video-center-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(200, 160, 78, 0.15);
  border: 1.5px solid rgba(200, 160, 78, 0.45);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 6;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.video-center-play-btn:hover {
  background: rgba(200, 160, 78, 0.3);
  border-color: var(--gold);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 15px 40px rgba(200, 160, 78, 0.2);
}
.video-center-play-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.video-bottom-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(to top, rgba(10, 8, 6, 0.95) 0%, rgba(10, 8, 6, 0.6) 80%, transparent 100%);
  z-index: 6;
}
.video-progress-container {
  width: 100%;
  height: 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.video-progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: height 0.2s ease;
}
.video-progress-container:hover .video-progress-bar {
  height: 6px;
}
.video-progress-filled {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  width: 0%;
  position: absolute;
  top: 0;
  left: 0;
  transition: width 0.1s linear;
}
.video-controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.video-controls-left, .video-controls-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.control-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.control-btn:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: scale(1.08);
}
.control-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.video-time {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-family: var(--font-en);
  font-weight: 500;
  user-select: none;
}
#faq-section { background: var(--cream); border-top: 1px solid var(--line); }
.faq-grid { display: flex; flex-direction: column; gap: 16px; max-width: 800px; margin: 40px auto 0; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; transition: var(--transition); }
.faq-question { width: 100%; padding: 22px 28px; background: none; border: none; text-align: right; font-size: 17px; font-weight: 700; color: var(--ink); display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: inherit; }
body.en .faq-question { text-align: left; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; padding: 0 28px; color: var(--text-muted); font-size: 15px; line-height: 1.8; border-top: 0 solid transparent; }
.faq-item.active .faq-answer { max-height: 200px; padding: 20px 28px 24px; border-top: 1px solid var(--line); }
.faq-icon { font-size: 18px; color: var(--gold-dark); transition: transform 0.4s ease; }
.faq-item.active .faq-icon { transform: rotate(45deg); }

/* ═══════════════════════════════════════
   TESTIMONIALS & CONTACT
═══════════════════════════════════════ */
#reviews { background: var(--paper); }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 50px; }
.rev-card { background: var(--white); padding: 40px 36px; border-radius: 4px; border: 1px solid var(--line); position: relative; }
.rev-quote { font-size: 60px; font-family: var(--font-serif); color: var(--gold-light); position: absolute; top: 14px; right: 28px; line-height: 1; }
body.en .rev-quote { right: auto; left: 28px; }
.rev-stars { color: var(--gold); font-size: 16px; margin-bottom: 22px; letter-spacing: 3px; }
.rev-text { font-size: 15.5px; color: var(--text-main); line-height: 2; font-style: italic; }
body.en .rev-text { font-family: var(--font-serif); font-size: 18px; }
.rev-foot { display: flex; align-items: center; gap: 16px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); }
.rev-avatar { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, var(--carpet-red), var(--carpet-deep)); color: var(--gold-light); display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; }
.rev-name { font-size: 16px; font-weight: 700; color: var(--ink); }
.rev-role { font-size: 13px; color: var(--text-muted); }

/* ═══════════════════════════════════════
   CTA BAND
═══════════════════════════════════════ */
#cta { padding: 90px 0; text-align: center; color: var(--white); position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(rgba(20,16,12,0.88), rgba(94,26,24,0.85)); }
#cta .wrap { position: relative; z-index: 1; }
#cta h2 {
  font-size: clamp(30px, 4vw, 46px); margin-bottom: 18px;
  background: linear-gradient(135deg, #e8a87c 0%, #e5c158 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
#cta p { color: rgba(255,255,255,0.82); font-size: 18px; margin-bottom: 38px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
#contact { background: var(--cream); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 70px; }
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.9s ease, transform 0.9s ease; will-change: transform, opacity; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ci-card base — legacy stub; real styles are in the contact-section block below */
.ci-val a:hover { color: var(--gold-dark); }

/* ═══════════════════════════════════════
   CONSULTATION FORM WITH CASCADING LOCATION SELECTOR
═══════════════════════════════════════ */
.form-box { background: var(--white); padding: 50px; border-radius: 4px; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.form-box h3 {
  font-size: 26px; margin-bottom: 30px;
  background: linear-gradient(135deg, #a62121 0%, #c45627 35%, #d4a339 70%, #e8c86b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
body.en .form-box h3 { font-family: var(--font-serif); font-weight: 500; }
.f2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.fg { margin-bottom: 22px; }
.fg label { display: block; font-weight: 600; color: var(--text-muted); margin-bottom: 10px; font-size: 14px; transition: color 0.3s ease; }
.fg input, .fg select, .fg textarea { 
  width: 100%; padding: 15px; 
  border: 1.5px solid var(--line); 
  border-radius: 3px; 
  font-family: inherit; font-size: 15px; 
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
  background: var(--cream); outline: none; 
  color: var(--text-main); 
}
.fg input:focus, .fg select:focus, .fg textarea:focus { 
  border-color: var(--gold); 
  background: var(--white); 
  box-shadow: 0 0 12px rgba(200, 160, 78, 0.25); 
}
.fg:focus-within label {
  color: var(--gold-dark);
}
.fg textarea { height: 130px; resize: none; }

/* ═══════════════════════════════════════
   DEDICATED FULL-SCREEN SHOWCASE PAGE (COLLECTIONS)
═══════════════════════════════════════ */
.collection-page-overlay {
  position: fixed; inset: 0; z-index: 1500;
  background: var(--paper);
  overflow-y: auto; overflow-x: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: none !important;
}
.collection-page-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none !important;
}
.cp-header {
  height: 80px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  position: sticky; top: 0; z-index: 1600;
  transition: all 0.3s ease;
}
.cp-back-btn {
  display: inline-flex; align-items: center; gap: 10px; background: none; border: none;
  cursor: pointer; color: #8b6318 !important; font-size: 15px; font-weight: 600; font-family: inherit;
  min-height: 44px; min-width: 44px; padding: 10px 14px;
  transition: all 0.3s ease;
}
.cp-back-btn span {
  color: #8b6318 !important; font-weight: 600 !important; transition: all 0.3s ease;
}
.cp-back-btn:hover, .cp-back-btn:hover span {
  color: #5e1a18 !important;
}
.cp-back-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2.5; transition: transform 0.3s ease; }
.cp-back-btn:hover svg { transform: translateX(4px); }
body.en .cp-back-btn:hover svg { transform: translateX(-4px); }

/* Day Mode Overlay Headers */
html:not([data-theme="dark"]) .cp-header,
html:not([data-theme="dark"]) .gp-header {
  background: rgba(253, 251, 247, 0.96) !important;
  backdrop-filter: blur(25px) !important;
  -webkit-backdrop-filter: blur(25px) !important;
  border-bottom: 1px solid rgba(200, 160, 78, 0.22) !important;
  box-shadow: 0 4px 25px rgba(20, 16, 12, 0.05) !important;
}
html:not([data-theme="dark"]) .cp-back-btn,
html:not([data-theme="dark"]) .cp-back-btn span,
html:not([data-theme="dark"]) .gp-back-btn,
html:not([data-theme="dark"]) .gp-back-btn span {
  color: #8b6318 !important;
}
html:not([data-theme="dark"]) .cp-back-btn:hover,
html:not([data-theme="dark"]) .cp-back-btn:hover span,
html:not([data-theme="dark"]) .gp-back-btn:hover,
html:not([data-theme="dark"]) .gp-back-btn:hover span {
  color: #5e1a18 !important; text-shadow: none !important;
}
html:not([data-theme="dark"]) .collection-page-overlay,
html:not([data-theme="dark"]) .gallery-page-overlay {
  background: #fbf9f4 !important;
  color: #1a140e !important;
}

/* Night Mode Overlay Headers */
html[data-theme="dark"] .cp-header,
html[data-theme="dark"] .gp-header {
  background: rgba(10, 8, 7, 0.88) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border-bottom: 1px solid rgba(229, 193, 88, 0.2) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6) !important;
}
html[data-theme="dark"] .cp-back-btn,
html[data-theme="dark"] .cp-back-btn span,
html[data-theme="dark"] .gp-back-btn,
html[data-theme="dark"] .gp-back-btn span {
  color: #e5c158 !important;
}
html[data-theme="dark"] .cp-back-btn:hover,
html[data-theme="dark"] .cp-back-btn:hover span,
html[data-theme="dark"] .gp-back-btn:hover,
html[data-theme="dark"] .gp-back-btn:hover span {
  color: #ffffff !important;
  text-shadow: 0 0 10px rgba(229, 193, 88, 0.4) !important;
}
html[data-theme="dark"] .collection-page-overlay,
html[data-theme="dark"] .gallery-page-overlay {
  background: #0b0907 !important;
  color: #f0e8dc !important;
}

.cp-hero {
  height: 50vh; min-height: 380px; position: relative;
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white);
}
.cp-hero-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,16,12,0.92) 0%, rgba(20,16,12,0.4) 100%); z-index: 1; }
.cp-hero-content { 
  position: relative; z-index: 2; max-width: 900px; padding: 24px 30px; 
  background: rgba(20, 16, 12, 0.45); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: 16px; border: 1px solid rgba(255, 255, 255, 0.1);
}
.cp-hero-title {
  font-size: clamp(20px, 2.8vw, 36px);
  margin-bottom: 14px;
  background: linear-gradient(135deg, #e8a87c 0%, #e5c158 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.cp-hero-desc { font-size: 18px; line-height: 1.8; color: rgba(255,255,255,0.85); }

.cp-specs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: -50px; position: relative; z-index: 10; padding: 0 5%; }
.cp-spec-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 30px 24px;
  border-radius: 12px;
  border: 1px solid rgba(200, 160, 78, 0.28);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
}
.cp-spec-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}
.cp-spec-card h4 { font-size: 11px; font-weight: 700; color: var(--gold-dark); text-transform: uppercase; margin-bottom: 8px; letter-spacing: 2px; }
.cp-spec-card p { font-size: 17px; font-weight: 800; color: var(--ink); }

.cp-grid-title { margin-top: 80px; margin-bottom: 40px; text-align: center; }
.cp-grid-title h3 {
  font-size: clamp(28px, 3.5vw, 42px);
  background: linear-gradient(135deg, #a62121 0%, #c45627 35%, #d4a339 70%, #e8c86b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.cp-items-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 100px; padding: 0 5%; }
.cp-item-card {
  background: var(--white); border-radius: 16px; overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.cp-item-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.cp-item-img { height: 320px; overflow: hidden; position: relative; background: var(--pale); }
.cp-item-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
.cp-item-hover-overlay {
  position: absolute; inset: 0;
  background: rgba(20, 16, 12, 0.45);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.4s ease;
  color: var(--gold-light); font-weight: 700; font-size: 15px;
}
.cp-item-hover-overlay span {
  border: 1px solid rgba(232, 212, 154, 0.4);
  padding: 8px 18px; border-radius: 30px;
  background: rgba(20, 16, 12, 0.7);
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  letter-spacing: 0.5px;
}
.cp-item-card:hover .cp-item-hover-overlay { opacity: 1; }
.cp-item-card:hover .cp-item-img img { transform: scale(1.08); }
.cp-item-body { padding: 30px; }
.cp-item-name { font-size: 22px; font-weight: 800; color: var(--ink); margin-bottom: 12px; }
.cp-item-tech { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; font-size: 14.5px; color: var(--text-muted); border-top: 1px solid var(--line); padding-top: 18px; }
.cp-item-tech li { display: flex; justify-content: space-between; }
.cp-item-tech li span:first-child { font-weight: 600; color: var(--ink); }

/* ═══════════════════════════════════════
   DEDICATED FULL-SCREEN GALLERY SHOWCASE PAGE
═══════════════════════════════════════ */
.gallery-page-overlay {
  position: fixed; inset: 0; z-index: 1510;
  background: var(--paper);
  overflow-y: auto; overflow-x: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: none !important;
}
.gallery-page-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none !important;
}
.gp-header {
  height: 80px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  position: sticky; top: 0; z-index: 1600;
  transition: all 0.3s ease;
}
.gp-back-btn {
  display: inline-flex; align-items: center; gap: 10px; background: none; border: none;
  cursor: pointer; font-size: 15px; font-weight: 600; font-family: inherit;
  min-height: 44px; min-width: 44px; padding: 10px 14px;
  transition: all 0.3s ease;
}
.gp-back-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2.5; transition: transform 0.3s ease; }
.gp-back-btn:hover svg { transform: translateX(4px); }
body.en .gp-back-btn:hover svg { transform: translateX(-4px); }

.gp-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; padding: 60px 5%; max-width: 1400px; margin: 0 auto; }
.gp-visual-panel { display: flex; flex-direction: column; gap: 20px; }
.gp-main-img-box { 
  position: relative; overflow: hidden; border-radius: 12px; 
  box-shadow: 0 20px 45px rgba(0,0,0,0.15); background: var(--pale); 
  border: 1px solid rgba(200, 160, 78, 0.2); cursor: zoom-in; 
}
.gp-main-img-box img { width: 100%; height: auto; max-height: 65vh; object-fit: contain; margin: 0 auto; display: block; transition: transform 0.5s ease; }
.gp-main-img-box:hover img { transform: scale(1.03); }

.gp-badge { 
  position: absolute; top: 20px; right: 20px; 
  background: linear-gradient(135deg, var(--gold-dark), var(--gold)); 
  color: var(--white); padding: 6px 14px; font-size: 12px; font-weight: 700; 
  border-radius: 30px; box-shadow: 0 4px 10px rgba(0,0,0,0.25); letter-spacing: 1px;
}
body.en .gp-badge { right: auto; left: 20px; }

.gp-details-panel { display: flex; flex-direction: column; justify-content: flex-start; }
.gp-tagline { font-size: 13px; font-weight: 700; color: var(--gold-dark); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.gp-title {
  font-size: clamp(28px, 4.5vw, 44px);
  margin-bottom: 24px;
  line-height: 1.2;
  background: linear-gradient(135deg, #a62121 0%, #c45627 35%, #d4a339 70%, #e8c86b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.gp-story { font-size: 16.5px; color: var(--text-muted); line-height: 1.95; margin-bottom: 36px; padding-bottom: 30px; border-bottom: 1px solid var(--line); }

.gp-tech-table { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 40px; }
.gp-tech-cell { 
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 20px 24px;
  border-radius: 12px;
  border: 1px solid rgba(200, 160, 78, 0.25);
  box-shadow: var(--shadow-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
}
.gp-tech-cell:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md), var(--shadow-gold);
}
.gp-tech-cell span:first-child { font-size: 11px; font-weight: 700; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 1px; }
.gp-tech-cell span:last-child { font-size: 16px; font-weight: 800; color: var(--ink); }

.gp-related-title {
  padding: 0 5% 20px; margin-top: 60px; font-size: 20px; border-bottom: 1px solid var(--line); max-width: 1400px; margin-left: auto; margin-right: auto;
  background: linear-gradient(135deg, #a62121 0%, #c45627 35%, #d4a339 70%, #e8c86b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.gp-related-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; padding: 30px 5% 80px; max-width: 1400px; margin: 0 auto; }
.gp-related-card { overflow: hidden; border-radius: 8px; cursor: pointer; position: relative; background: var(--pale); height: 110px; border: 1px solid var(--line); transition: var(--transition); }
.gp-related-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gp-related-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.gp-related-card:hover img { transform: scale(1.08); }
.gp-related-card.active { border-color: var(--gold); border-width: 2.5px; transform: scale(1.03); box-shadow: var(--shadow-gold); }

@media(max-width: 1024px) {
  .gp-layout { grid-template-columns: 1fr; gap: 36px; padding: 40px 4%; }
  .gp-related-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
}

@media(max-width: 768px) {
  /* ── Mobile Gallery & Item View Overlay Refinement ── */
  .gp-header {
    height: 64px;
    padding: 0 16px;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
  }
  .gp-back-btn {
    font-size: 13.5px;
    padding: 8px 14px;
    border-radius: 100px;
    background: rgba(200, 160, 78, 0.1) !important;
    border: 1px solid rgba(200, 160, 78, 0.3) !important;
    min-height: 38px;
  }
  .gp-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 18px 16px 40px;
  }
  .gp-visual-panel {
    gap: 12px;
  }
  .gp-main-img-box {
    border-radius: 16px;
    max-height: 50vh;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35), 0 0 20px rgba(200, 160, 78, 0.15);
  }
  .gp-main-img-box img {
    max-height: 48vh;
    border-radius: 14px;
  }
  .gp-badge {
    top: 14px;
    right: 14px;
    font-size: 11px;
    padding: 5px 12px;
    backdrop-filter: blur(10px);
  }
  body.en .gp-badge {
    right: auto;
    left: 14px;
  }
  .gp-title {
    font-size: clamp(22px, 5.5vw, 30px);
    margin-bottom: 16px;
  }
  .gp-tagline {
    font-size: 12px;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
  }
  .gp-story {
    font-size: 14.5px;
    line-height: 1.85;
    margin-bottom: 24px;
    padding-bottom: 20px;
  }
  .gp-tech-table {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 28px;
  }
  .gp-tech-cell {
    padding: 14px 12px;
    border-radius: 12px;
    gap: 4px;
  }
  .gp-tech-cell span:first-child {
    font-size: 10.5px;
    letter-spacing: 0.5px;
  }
  .gp-tech-cell span:last-child {
    font-size: 14px;
  }
  .gp-related-title {
    font-size: 17px;
    padding: 0 16px 14px;
    margin-top: 36px;
  }
  .gp-related-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding: 10px 16px 30px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .gp-related-grid::-webkit-scrollbar {
    display: none;
  }
  .gp-related-card {
    flex: 0 0 120px;
    height: 95px;
    border-radius: 10px;
    scroll-snap-align: start;
  }
  
  /* ── Mobile Collection Showcase Overlay Refinement ── */
  .cp-header {
    height: 64px;
    padding: 0 16px;
  }
  .cp-back-btn {
    font-size: 13.5px;
    padding: 8px 14px;
    border-radius: 100px;
    background: rgba(200, 160, 78, 0.1) !important;
    border: 1px solid rgba(200, 160, 78, 0.3) !important;
    min-height: 38px;
  }
  .cp-hero {
    height: 36vh;
    min-height: 260px;
  }
  .cp-hero-content {
    padding: 16px 20px;
    margin: 0 16px;
    border-radius: 14px;
  }
  .cp-hero-title {
    font-size: clamp(20px, 4.8vw, 28px);
    margin-bottom: 8px;
  }
  .cp-hero-desc {
    font-size: 14px;
    line-height: 1.65;
  }
  .cp-specs {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: -24px;
    padding: 0 16px;
  }
  .cp-spec-card {
    padding: 16px 12px;
    border-radius: 12px;
  }
  .cp-spec-card h4 {
    font-size: 10px;
    letter-spacing: 1px;
    margin-bottom: 4px;
  }
  .cp-spec-card p {
    font-size: 14px;
  }
  .cp-grid-title {
    margin-top: 40px;
    margin-bottom: 24px;
  }
  .cp-grid-title h3 {
    font-size: clamp(22px, 5vw, 30px);
  }
  .cp-items-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 16px;
    margin-bottom: 60px;
  }
  .cp-item-card {
    border-radius: 16px;
  }
  .cp-item-img {
    height: 240px;
  }
  .cp-item-body {
    padding: 20px;
  }
  .cp-item-name {
    font-size: 19px;
    margin-bottom: 8px;
  }
}

@media(max-width: 480px) {
  .gp-tech-table {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .gp-tech-cell {
    padding: 12px 10px;
  }
  .gp-related-card {
    flex: 0 0 105px;
    height: 85px;
  }
  .cp-specs {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
}

/* ═══════════════════════════════════════
   FOOTER (REFINED LUXURY & USER-FRIENDLY DESIGN)
═══════════════════════════════════════ */
.footer {
  background: linear-gradient(180deg, #14100c 0%, #0d0a07 100%);
  color: var(--white);
  padding: 70px 0 28px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(200, 160, 78, 0.22);
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(200, 160, 78, 0.6) 50%, transparent 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 45px;
  padding-bottom: 45px;
  border-bottom: 1px solid rgba(200, 160, 78, 0.15);
  align-items: start;
}

.f-logo {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.f-logo-link {
  display: inline-block;
  transition: transform 0.3s ease;
}
.f-logo-link:hover {
  transform: translateY(-2px);
}
.footer-logo-img {
  max-width: 160px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45));
}

.f-about {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82) !important;
  line-height: 1.95;
  margin: 0;
  max-width: 360px;
}

.f-socials {
  display: flex;
  gap: 10px;
  align-items: center;
}
.f-soc {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(200, 160, 78, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.f-soc svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  transition: transform 0.3s ease;
}
.f-soc:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #14100c;
  transform: translateY(-3px) scale(1.05);
  border-color: var(--gold-light);
  box-shadow: 0 8px 20px rgba(200, 160, 78, 0.35);
}
.f-soc:hover svg {
  transform: scale(1.1);
}

.f-col h3 {
  font-size: 16px;
  color: #ffffff !important;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.f-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}
body.en .f-col h3::after {
  right: auto;
  left: 0;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.f-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.f-col ul li {
  margin-bottom: 4px;
}
.f-col a {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 400;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 4px 0;
  text-decoration: none;
  transition: all 0.25s ease;
}
.f-col a:hover {
  color: var(--gold-light) !important;
  transform: translateX(-4px);
}
body.en .f-col a:hover {
  transform: translateX(4px);
}

/* Luxury Contact Items */
.f-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.f-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 40px;
}
.f-ic-badge {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(200, 160, 78, 0.12);
  border: 1px solid rgba(200, 160, 78, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.f-contact-val {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}
.f-contact-val a {
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: none;
  transition: color 0.2s ease;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
}
.f-contact-val a:hover {
  color: var(--gold-light) !important;
}

.f-shipping-item .f-contact-val {
  font-size: 13px;
  color: var(--gold-light);
  font-weight: 500;
}

/* Footer Bottom Bar */
.footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65) !important;
  flex-wrap: wrap;
  gap: 10px;
}
.f-love {
  color: rgba(200, 160, 78, 0.85);
  font-weight: 500;
}

/* ── Responsive Footer Layout ── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 44px 0 24px;
  }
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 20px 8px !important;
    padding-bottom: 30px;
    align-items: start !important;
  }
  .f-logo {
    grid-column: span 3 !important;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  .f-logo .f-about {
    max-width: 480px;
    font-size: 13.5px;
    line-height: 1.8;
  }
  .f-socials {
    justify-content: center;
    margin-top: 4px;
  }
  .f-col, .f-contact-col {
    grid-column: span 1 !important;
    display: flex !important;
    flex-direction: column !important;
    border-top: none !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
    text-align: start !important;
    gap: 0 !important;
  }
  .f-col h3 {
    font-size: 13.5px !important;
    margin: 0 0 12px 0 !important;
    padding: 0 0 8px 0 !important;
    height: 28px !important;
    display: flex !important;
    align-items: flex-end !important;
    white-space: nowrap !important;
    box-sizing: content-box !important;
  }
  .f-col h3::after {
    width: 22px !important;
    bottom: 0 !important;
  }
  .f-col ul, .f-contact-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
  }
  .f-col li, .f-contact-links li {
    margin: 0 !important;
    padding: 0 !important;
    height: 32px !important;
    min-height: 32px !important;
    display: flex !important;
    align-items: center !important;
  }
  .f-col a, .f-contact-links a {
    font-size: 12px !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
    overflow: hidden !important;
    max-width: 100% !important;
    display: inline-flex !important;
    align-items: center !important;
    color: rgba(255, 255, 255, 0.82) !important;
  }
  .footer-bar {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding-top: 20px;
  }
  .footer-logo-img {
    max-width: 140px;
  }
  .mobile-bottom-nav {
    display: flex;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 36px 0 calc(24px + env(safe-area-inset-bottom));
  }
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 16px 6px !important;
    align-items: start !important;
  }
  .f-logo .f-about {
    font-size: 13px;
  }
  .f-col h3 {
    font-size: 12.5px !important;
    height: 26px !important;
    margin-bottom: 10px !important;
    white-space: nowrap !important;
  }
  .f-col li, .f-contact-links li {
    height: 30px !important;
    min-height: 30px !important;
  }
  .f-col a, .f-contact-links a {
    font-size: 11px !important;
    line-height: 1.2 !important;
  }
  .f-soc {
    width: 38px;
    height: 38px;
    border-radius: 8px;
  }
}

/* Light / Day Mode Footer Theme Cohesion (Luxury Obsidian & Crisp White / Gold) */
html:not([data-theme="dark"]) .footer,
html[data-theme="light"] .footer {
  background: linear-gradient(180deg, #18130e 0%, #100d09 100%) !important;
  color: #ffffff !important;
  border-top: 1px solid rgba(200, 160, 78, 0.3) !important;
}

html:not([data-theme="dark"]) .footer h3,
html:not([data-theme="dark"]) .footer .f-col h3,
html:not([data-theme="dark"]) .footer .f-col h3 span,
html[data-theme="light"] .footer h3,
html[data-theme="light"] .footer .f-col h3,
html[data-theme="light"] .footer .f-col h3 span {
  color: #ffffff !important;
  font-weight: 700 !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

html:not([data-theme="dark"]) .footer .f-about,
html:not([data-theme="dark"]) .footer .f-about span,
html[data-theme="light"] .footer .f-about,
html[data-theme="light"] .footer .f-about span {
  color: rgba(255, 255, 255, 0.88) !important;
}

html:not([data-theme="dark"]) .footer .f-col a,
html[data-theme="light"] .footer .f-col a {
  color: rgba(255, 255, 255, 0.84) !important;
}

html:not([data-theme="dark"]) .footer .f-col a:hover,
html[data-theme="light"] .footer .f-col a:hover {
  color: #f5d77f !important;
}

html:not([data-theme="dark"]) .footer .f-contact-val,
html:not([data-theme="dark"]) .footer .f-contact-val *,
html[data-theme="light"] .footer .f-contact-val,
html[data-theme="light"] .footer .f-contact-val * {
  color: rgba(255, 255, 255, 0.9) !important;
}

html:not([data-theme="dark"]) .footer .f-contact-val a:hover,
html[data-theme="light"] .footer .f-contact-val a:hover {
  color: #f5d77f !important;
}

html:not([data-theme="dark"]) .footer .f-soc,
html[data-theme="light"] .footer .f-soc {
  background: rgba(255, 255, 255, 0.06) !important;
  color: #f5d77f !important;
  border: 1px solid rgba(200, 160, 78, 0.3) !important;
}

html:not([data-theme="dark"]) .footer .f-soc:hover,
html[data-theme="light"] .footer .f-soc:hover {
  background: linear-gradient(135deg, #e5c158 0%, #c8a04e 100%) !important;
  color: #14100c !important;
}

html:not([data-theme="dark"]) .footer .footer-bar,
html:not([data-theme="dark"]) .footer .footer-bar div,
html[data-theme="light"] .footer .footer-bar,
html[data-theme="light"] .footer .footer-bar div {
  color: rgba(255, 255, 255, 0.72) !important;
}

html[data-theme="dark"] .footer a:hover {
  color: #f5d77f !important;
}

/* ═══════════════════════════════════════
   FLOATING BACK TO TOP & WHATSAPP
═══════════════════════════════════════ */
.float-back-to-top {
  position: fixed; bottom: 30px; z-index: 998;
  right: 30px; width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(28, 23, 18, 0.92), rgba(18, 14, 10, 0.96));
  color: #f5d77f;
  border: 1.5px solid rgba(229, 193, 88, 0.6);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 16px rgba(229, 193, 88, 0.2);
  cursor: pointer;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0; pointer-events: none;
  transform: translateY(20px);
}
.float-back-to-top.visible {
  opacity: 1; pointer-events: all;
  transform: translateY(0);
}
body.en .float-back-to-top { right: auto; left: 30px; }
.float-back-to-top svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.3s ease; }
.float-back-to-top:hover {
  background: linear-gradient(135deg, #e5c158 0%, #b8860b 100%);
  color: #0f0c0a;
  border-color: #ffffff;
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 32px rgba(229, 193, 88, 0.45), 0 0 20px rgba(255, 255, 255, 0.3);
}
.float-back-to-top:hover svg {
  transform: translateY(-2px);
}

[data-theme="dark"] .float-back-to-top {
  background: linear-gradient(135deg, rgba(35, 28, 20, 0.95), rgba(15, 12, 10, 0.98)) !important;
  color: #f5d77f !important;
  border: 1.5px solid rgba(245, 215, 127, 0.7) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 20px rgba(245, 215, 127, 0.25) !important;
}
[data-theme="dark"] .float-back-to-top:hover {
  background: linear-gradient(135deg, #f5d77f 0%, #d4a339 100%) !important;
  color: #0f0c0a !important;
  border-color: #ffffff !important;
  box-shadow: 0 12px 35px rgba(245, 215, 127, 0.55), 0 0 25px rgba(255, 255, 255, 0.4) !important;
}

.float-wa {
  position: fixed; bottom: 30px; z-index: 998;
  left: 30px; width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: white; border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4); cursor: pointer; transition: var(--transition);
}
body.en .float-wa { left: auto; right: 30px; }
.float-wa svg { width: 30px; height: 30px; fill: currentColor; }
.float-wa:hover { transform: scale(1.1); }

.mobile-bottom-nav { display: none; }

/* ═══════════════════════════════════════
   LIGHTBOX & MODAL
═══════════════════════════════════════ */
.lightbox { position: fixed; inset: 0; background: rgba(10,8,6,0.94); z-index: 1100; display: none; align-items: center; justify-content: center; padding: 40px; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 88vh; border-radius: 4px; box-shadow: 0 20px 60px rgba(0,0,0,0.6); }
.lightbox-close { position: absolute; top: 30px; right: 40px; font-size: 36px; color: var(--gold-light); cursor: pointer; background: none; border: none; }

.security-modal {
  position: fixed; inset: 0; z-index: 1200;
  background: rgba(10, 8, 6, 0.8);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
  padding: 24px;
}
.security-modal.show { opacity: 1; pointer-events: all; }
.sec-modal-box {
  background: var(--white); max-width: 460px; width: 100%;
  padding: 40px; border-radius: 4px; border: 1.5px solid var(--gold);
  text-align: center; transform: translateY(20px); transition: transform 0.4s ease;
}
.security-modal.show .sec-modal-box { transform: translateY(0); }
.sec-modal-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(200, 160, 78, 0.15); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; color: var(--gold-dark); }
.sec-modal-icon svg { width: 32px; height: 32px; stroke: currentColor; fill: none; stroke-width: 2; }
.sec-modal-title {
  font-size: 22px; font-weight: 800; margin-bottom: 12px;
  background: linear-gradient(135deg, #a62121 0%, #c45627 35%, #d4a339 70%, #e8c86b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.sec-modal-desc { font-size: 15px; color: var(--text-muted); margin-bottom: 30px; line-height: 1.7; }

/* ═══════════════════════════════════════
   GALLERY FILTER TABS & COLLECTION SHOWCASE CARD EXTENSIONS
   ═══════════════════════════════════════ */
.gal-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 30px auto 40px auto;
  max-width: 900px;
}
.gal-tab {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(202, 160, 80, 0.3);
  color: var(--gold-light);
  padding: 12px 24px;
  min-height: 48px;
  border-radius: 30px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 4px;
}
.gal-tab:hover, .gal-tab.active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #ffffff;
  border-color: var(--gold-light);
  box-shadow: 0 4px 16px rgba(184, 134, 11, 0.4);
  transform: translateY(-2px);
}
html:not([data-theme="dark"]) .gal-tab,
[data-theme="light"] .gal-tab {
  background: #ffffff !important;
  color: #0d0b09 !important;
  border: 1.5px solid rgba(140, 43, 37, 0.28) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06) !important;
  font-weight: 700 !important;
}
html:not([data-theme="dark"]) .gal-tab:hover,
html:not([data-theme="dark"]) .gal-tab.active,
[data-theme="light"] .gal-tab:hover,
[data-theme="light"] .gal-tab.active {
  background: linear-gradient(135deg, #8c2b25 0%, #b8860b 100%) !important;
  color: #ffffff !important;
  border-color: #8c2b25 !important;
  box-shadow: 0 6px 20px rgba(140, 43, 37, 0.35) !important;
  transform: translateY(-2px) !important;
}

.cp-card-img-wrap {
  aspect-ratio: 4 / 3;
  width: 100%;
  height: auto !important;
  position: relative;
  overflow: hidden;
  background: var(--pale);
  border-radius: 14px 14px 0 0;
}
.cp-card-img-wrap img {
  width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.cp-item-card:hover .cp-card-img-wrap img {
  transform: scale(1.08);
}
.cp-card-badge {
  position: absolute; top: 16px; right: 16px;
  background: rgba(20, 16, 12, 0.85); color: var(--gold-light);
  padding: 5px 14px; border-radius: 20px;
  font-size: 12px; font-weight: 700;
  border: 1px solid rgba(202, 160, 80, 0.4);
  backdrop-filter: blur(6px);
}
body.en .cp-card-badge { right: auto; left: 16px; }

.cp-card-content {
  padding: 24px; display: flex; flex-direction: column; gap: 14px;
}
.cp-card-content h4 {
  font-size: 20px; font-weight: 800; color: var(--ink); line-height: 1.4;
}
.cp-card-desc {
  font-size: 14.5px; color: var(--text-muted); line-height: 1.7;
}
.cp-card-meta {
  display: flex; flex-wrap: wrap; gap: 10px 18px;
  padding: 12px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  font-size: 13.5px; font-weight: 600; color: var(--gold-dark);
}
.cp-card-actions {
  display: flex; align-items: center; gap: 12px; margin-top: 6px;
}
.btn-wa-icon {
  width: 48px; height: 48px; min-width: 48px; min-height: 48px; border-radius: 50%;
  background: #25D366; color: white;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.btn-wa-icon:hover {
  transform: scale(1.1); box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}
.btn-cta.text-sm {
  padding: 12px 18px; min-height: 48px; font-size: 13.5px; border-radius: 8px; flex: 1; text-align: center;
  display: inline-flex; align-items: center; justify-content: center;
}
.btn-cta.outline {
  background: transparent; border: 1.5px solid var(--gold); color: var(--gold-dark);
}
.btn-cta.outline:hover {
  background: var(--gold); color: #ffffff;
}

/* ═══════════════════════════════════════
   RESPONSIVE
/* GLOBAL DAY MODE HIGH CONTRAST & SHARPNESS FOR ALL MAIN BODY TEXT */
html:not([data-theme="dark"]) p,
html:not([data-theme="dark"]) .sec-sub,
html:not([data-theme="dark"]) .sec-lead,
html:not([data-theme="dark"]) .sec-desc,
html:not([data-theme="dark"]) #about p,
html:not([data-theme="dark"]) #about .sec-sub,
html:not([data-theme="dark"]) #about .block-en,
html:not([data-theme="dark"]) #about .block-fa,
html:not([data-theme="dark"]) #collections p,
html:not([data-theme="dark"]) .col-body p,
html:not([data-theme="dark"]) .col-card p,
html:not([data-theme="dark"]) #why p,
html:not([data-theme="dark"]) .why-card p,
html:not([data-theme="dark"]) #craft p,
html:not([data-theme="dark"]) .craft-step p,
html:not([data-theme="dark"]) .craft-desc,
html:not([data-theme="dark"]) .cp-item-desc,
html:not([data-theme="dark"]) #gallery p,
html:not([data-theme="dark"]) .gal-item p,
html:not([data-theme="dark"]) #faq-section .faq-answer,
html:not([data-theme="dark"]) #reviews p,
html:not([data-theme="dark"]) .rev-text,
html:not([data-theme="dark"]) #contact p,
html:not([data-theme="dark"]) .collection-page-overlay p,
html:not([data-theme="dark"]) .gallery-page-overlay p {
  color: #0d0b09 !important;
  font-weight: 500 !important;
  -webkit-font-smoothing: antialiased;
}

@media(max-width: 1024px) {
  .col-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-layout, .craft-layout, .contact-layout { grid-template-columns: 1fr; gap: 50px; }
  .about-img-main { height: auto; }
  .craft-layout { align-items: center; }
  .craft-video-wrapper {
    max-width: 45vh;
    aspect-ratio: 4 / 6;
    margin: 0 auto;
    height: auto;
  }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-big { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cp-specs { grid-template-columns: repeat(2, 1fr); margin-top: -30px; }
  .cp-items-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 768px) {
  body { padding-top: 64px !important; padding-bottom: 96px !important; }

  /* ═══════════════════════════════════════
     HIGH-CONTRAST TYPOGRAPHY ON MOBILE
  ═══════════════════════════════════════ */
  p, .sec-sub, .rev-text, .craft-step p, .why-card p, .faq-answer, .ci-val, .ci-label, .fg label, footer p, footer li, footer span:not(.lang-fa):not(.lang-en), #trust span {
    font-size: 15px !important;
    line-height: 1.75 !important;
  }
  
  /* Very slight decrease in size for CTA & Newsletter headings on mobile */
  #cta h2 {
    font-size: clamp(19.5px, 4.8vw, 24px) !important;
    line-height: 1.35 !important;
  }
  body.en #cta h2 {
    font-size: clamp(20.5px, 5vw, 25px) !important;
    letter-spacing: 0.3px !important;
  }

  #newsletter-heading,
  #newsletter h2.sec-h2 {
    font-size: clamp(16.5px, 4.2vw, 20.5px) !important;
    line-height: 1.35 !important;
  }
  body.en #newsletter-heading,
  body.en #newsletter h2.sec-h2 {
    font-size: clamp(17px, 4.4vw, 21px) !important;
    letter-spacing: 0.3px !important;
  }
  
  /* Light Background Sections (Day Mode Only) — High Contrast & Sharpness */
  html:not([data-theme="dark"]) #about p,
  html:not([data-theme="dark"]) #about .sec-sub,
  html:not([data-theme="dark"]) #about .block-en,
  html:not([data-theme="dark"]) #about .block-fa,
  html:not([data-theme="dark"]) #about .about-sign,
  html:not([data-theme="dark"]) #collections p, html:not([data-theme="dark"]) .col-body p,
  html:not([data-theme="dark"]) #why p, html:not([data-theme="dark"]) .why-card p,
  html:not([data-theme="dark"]) #faq-section .faq-answer,
  html:not([data-theme="dark"]) #reviews p, html:not([data-theme="dark"]) .rev-text, html:not([data-theme="dark"]) .rev-role,
  html:not([data-theme="dark"]) #contact p, html:not([data-theme="dark"]) .ci-val, html:not([data-theme="dark"]) .ci-label, html:not([data-theme="dark"]) .fg label,
  html:not([data-theme="dark"]) .collection-page-overlay p, html:not([data-theme="dark"]) .collection-page-overlay li,
  html:not([data-theme="dark"]) .gallery-page-overlay p, html:not([data-theme="dark"]) .gallery-page-overlay li {
    color: #0d0b09 !important;
    font-weight: 500 !important;
    -webkit-font-smoothing: antialiased;
  }

  /* Dark Background Sections */
  #hero .hero-desc,
  #gallery .sec-sub,
  #craft p, .craft-step p,
  #cta p,
  footer p, footer li, footer span,
  html[data-theme="dark"] .mobile-drawer .drawer-link,
  html[data-theme="dark"] .mobile-drawer .drawer-link span,
  html[data-theme="dark"] .mobile-drawer .drawer-footer span,
  #trust span {
    color: #ffffff !important;
    font-weight: 400 !important;
  }

  /* Navigation Bar on Mobile */
  #main-nav {
    padding: 0 5%;
    height: 64px !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
  }
  #main-nav.scrolled { height: 64px !important; }
  .nav-logo-img { height: 42px !important; }
  #main-nav.scrolled .nav-logo-img { height: 42px !important; }
  
  /* Day Mode mobile nav: luminous cream glass theme matching desktop */
  html:not([data-theme="dark"]) #main-nav {
    background: rgba(253, 251, 247, 0.96) !important;
    border-bottom: 1px solid rgba(200, 160, 78, 0.22) !important;
    box-shadow: 0 4px 20px rgba(20, 16, 12, 0.05) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
  }
  html[data-theme="dark"] #main-nav {
    background: rgba(20, 16, 12, 0.95) !important;
    border-bottom: 1px solid rgba(200, 160, 78, 0.2) !important;
  }
  
  html:not([data-theme="dark"]) .drawer-menu {
    background: transparent !important;
  }
  
  .nav-menu { display: none; }
  .nav-right .lang-switch,
  .nav-right .search-toggle,
  .nav-right .theme-toggle { display: none !important; }
  .nav-right .btn-cta { display: none; }
  #nav-auth-buttons { display: none !important; }

  .nav-mobile-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 5;
  }
  /* Wrapper spans (lang-en / lang-fa) must stack vertically */
  .nav-mobile-brand .lang-en,
  .nav-mobile-brand .lang-fa {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  /* Each text piece takes its own line */
  .nav-mobile-brand .brand-title,
  .nav-mobile-brand .brand-subtitle {
    display: block;
    white-space: nowrap;
  }

  /* ── Title line: exact login-page gradient & animation ── */
  .nav-mobile-brand .brand-title {
    line-height: 1.2;
    font-weight: 800;
    font-size: 15px;
    background: linear-gradient(135deg, #114b40 0%, #2d7a6e 25%, #cfa240 50%, #62bcae 75%, #114b40 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: mobileBrandShimmer 6s linear infinite;
    transition: transform 0.3s ease;
  }
  @keyframes mobileBrandShimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
  }
  body:not(.en) .nav-mobile-brand .brand-title {
    font-family: var(--font-fa, 'Vazirmatn', sans-serif);
    font-weight: 900;
    font-size: 15px;
  }
  body.en .nav-mobile-brand .brand-title {
    font-family: var(--font-en, 'Jost', sans-serif);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.5px;
  }

  /* ── Subtitle line: exact login-page subtitle gradient & animation ── */
  .nav-mobile-brand .brand-subtitle {
    font-size: 8px;
    font-weight: 700;
    line-height: 1.1;
    margin-top: 2px;
    background: linear-gradient(135deg, #2d7a6e 0%, #114b40 25%, #cfa240 50%, #2d7a6e 75%, #2d7a6e 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: mobileBrandSubShimmer 8s linear infinite;
    transition: transform 0.3s ease;
  }
  @keyframes mobileBrandSubShimmer {
    0%   { background-position: 0% center; }
    100% { background-position: -200% center; }
  }
  body:not(.en) .nav-mobile-brand .brand-subtitle {
    font-family: var(--font-fa, 'Vazirmatn', sans-serif);
    letter-spacing: 0.3px;
    font-size: 8.5px;
  }
  body.en .nav-mobile-brand .brand-subtitle {
    font-family: var(--font-en, 'Jost', sans-serif);
    font-size: 7.5px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
  }
  .menu-btn { display: block !important; z-index: 1070; min-width: 44px; min-height: 44px; }

  /* ── RTL (FA) mode: hamburger on LEFT, logo on RIGHT ─────────────────────
     EN mode: hamburger stays on RIGHT (natural last-child position)         */
  body:not(.en) .menu-btn {
    order: -2;            /* push to far LEFT in FA/RTL nav flex row */
  }
  body:not(.en) .nav-logo-link {
    order: 10;            /* push logo to far RIGHT in FA/RTL nav flex row */
  }
  body:not(.en) .nav-mobile-brand {
    /* brand text stays absolutely centered regardless of order */
    left: 50%;
    transform: translateX(-50%);
  }


  /* Hamburger to ✕ animation state */
  .menu-btn.active {
    background: rgba(245, 215, 127, 0.18) !important;
    border-color: #f5d77f !important;
    box-shadow: 0 4px 20px rgba(245, 215, 127, 0.4) !important;
  }
  .menu-btn.active span:nth-child(1) { top: 20px !important; width: 22px !important; transform: rotate(45deg) !important; }
  .menu-btn.active span:nth-child(2) { opacity: 0 !important; transform: scaleX(0) !important; }
  .menu-btn.active span:nth-child(3) { bottom: 19px !important; width: 22px !important; transform: rotate(-45deg) !important; }

  /* ═══════════════════════════════════════════════════════════
     DAY MODE DRAWER — Night Mode Mirror (Inverted Colors)
     Night dark bg  → Day white/cream bg (#FAF7F2)
     Night white txt → Day deep charcoal (#1C1714)
     Night gold acc  → Day brand crimson (#8B1A1A)
     Night gold glow → Day crimson glow
     ═══════════════════════════════════════════════════════════ */

  /* 1. Panel — warm page-white (mirrors night's dark gradient) */
  html:not([data-theme="dark"]) .mobile-drawer {
    background: linear-gradient(165deg, #FAF7F2 0%, #F5EFE6 50%, #FAF6F0 100%) !important;
    backdrop-filter: blur(32px) !important;
    -webkit-backdrop-filter: blur(32px) !important;
    border-right: 1.5px solid rgba(139, 26, 26, 0.22) !important;
    box-shadow: 14px 0 48px rgba(0, 0, 0, 0.16), inset -1px 0 0 rgba(139, 26, 26, 0.08) !important;
    padding: 0 !important;
    z-index: 1050;
  }

  /* 2. Header — light warm tint (mirrors night's near-black rgba(255,255,255,0.02)) */
  html:not([data-theme="dark"]) .drawer-header {
    background: rgba(139, 26, 26, 0.04) !important;
    border-bottom: 1px solid rgba(139, 26, 26, 0.14) !important;
  }
  html:not([data-theme="dark"]) .drawer-header .brand-title { color: #1C1714 !important; text-shadow: none !important; }
  html:not([data-theme="dark"]) .drawer-header .brand-subtitle { color: rgba(28, 23, 20, 0.65) !important; }
  
  /* Mobile header brand: same shimmer gradient works in both day & dark mode — no override needed */

  /* 3. Hamburger button on header in Day Mode */
  html:not([data-theme="dark"]) .menu-btn {
    background: rgba(255, 255, 255, 0.88) !important;
    border: 1.5px solid rgba(139, 26, 26, 0.35) !important;
    box-shadow: 0 4px 16px rgba(139, 26, 26, 0.12), 0 0 8px rgba(200, 160, 78, 0.15) !important;
  }
  html:not([data-theme="dark"]) .menu-btn span {
    background: linear-gradient(90deg, #8B1A1A 0%, #c8a04e 100%) !important;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.15));
  }
  html:not([data-theme="dark"]) .menu-btn.active {
    background: rgba(139, 26, 26, 0.1) !important;
    border-color: #8B1A1A !important;
    box-shadow: 0 4px 20px rgba(139, 26, 26, 0.22) !important;
  }

  /* Close button inside drawer in Day Mode */
  html:not([data-theme="dark"]) .drawer-close {
    background: rgba(139, 26, 26, 0.08) !important;
    border: 1.5px solid rgba(139, 26, 26, 0.35) !important;
    color: #8B1A1A !important;
    box-shadow: 0 4px 12px rgba(139, 26, 26, 0.08) !important;
    font-weight: 900 !important;
  }
  html:not([data-theme="dark"]) .drawer-close:hover {
    background: rgba(139, 26, 26, 0.18) !important;
    border-color: #8B1A1A !important;
    color: #6B0F0F !important;
    transform: rotate(90deg) scale(1.08) !important;
  }

  /* 4. Action row & buttons inside drawer in Day Mode */
  html:not([data-theme="dark"]) .drawer-actions-row {
    background: rgba(139, 26, 26, 0.04) !important;
    border-bottom: 1px solid rgba(139, 26, 26, 0.14) !important;
  }
  html:not([data-theme="dark"]) .drawer-act-btn {
    background: #ffffff !important;
    color: #8B1A1A !important;
    border: 1.5px solid rgba(139, 26, 26, 0.28) !important;
    box-shadow: 0 3px 10px rgba(139, 26, 26, 0.07) !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
  }
  html:not([data-theme="dark"]) .drawer-act-btn span {
    background: transparent !important;
    background-color: transparent !important;
    color: #8B1A1A !important;
    text-shadow: none !important;
    box-shadow: none !important;
    white-space: nowrap !important;
  }
  html:not([data-theme="dark"]) .drawer-act-btn svg {
    stroke: #8B1A1A !important;
    color: #8B1A1A !important;
  }
  html:not([data-theme="dark"]) .drawer-act-btn:hover {
    background: rgba(139, 26, 26, 0.08) !important;
    color: #6B0F0F !important;
    border-color: #8B1A1A !important;
    transform: translateY(-1.5px) !important;
    box-shadow: 0 6px 16px rgba(139, 26, 26, 0.15) !important;
  }
  html:not([data-theme="dark"]) .drawer-act-btn:hover span {
    background: transparent !important;
    background-color: transparent !important;
    color: #6B0F0F !important;
    text-shadow: none !important;
  }

  /* 5. Nav links in Day Mode — CLEAN, CRISP, NO TEXT HIGHLIGHT */
  html:not([data-theme="dark"]) .drawer-link {
    color: #1C1714 !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    border-bottom: 1px solid rgba(139, 26, 26, 0.08) !important;
    background: transparent !important;
    padding: 14px 20px !important;
    transition: all 0.25s ease !important;
    text-shadow: none !important;
  }
  html:not([data-theme="dark"]) .drawer-link span,
  html:not([data-theme="dark"]) .drawer-link-content,
  html:not([data-theme="dark"]) .drawer-link-content span {
    color: #1C1714 !important;
    font-weight: 700 !important;
    background: transparent !important;
    background-color: transparent !important;
    text-shadow: none !important;
    box-shadow: none !important;
  }
  html:not([data-theme="dark"]) .drawer-link:hover {
    color: #8B1A1A !important;
    background: rgba(139, 26, 26, 0.06) !important;
  }
  html:not([data-theme="dark"]) .drawer-link:hover span,
  html:not([data-theme="dark"]) .drawer-link:hover .drawer-link-content span {
    color: #8B1A1A !important;
    background: transparent !important;
    background-color: transparent !important;
    text-shadow: none !important;
    box-shadow: none !important;
  }

  /* 6. Nav icons & diamonds in Day Mode */
  html:not([data-theme="dark"]) .drawer-icon {
    stroke: #8B1A1A !important;
    stroke-width: 2.2 !important;
    transition: stroke 0.2s ease, transform 0.25s ease !important;
  }
  html:not([data-theme="dark"]) .drawer-link:hover .drawer-icon {
    stroke: #C9A84C !important;
    transform: scale(1.18) rotate(-5deg) !important;
  }
  html:not([data-theme="dark"]) .drawer-link .link-diamond {
    background: #8B1A1A !important;
    box-shadow: 0 0 8px rgba(139, 26, 26, 0.6) !important;
  }

  /* 7. Footer in Day Mode — STRICT ONE-LINE LANGUAGE BUTTON & NO TEXT HIGHLIGHT */
  html:not([data-theme="dark"]) .drawer-footer {
    border-top: 1px solid rgba(139, 26, 26, 0.14) !important;
    margin-top: auto;
  }
  html:not([data-theme="dark"]) .lang-switch-btn-mobile {
    background: #ffffff !important;
    color: #8B1A1A !important;
    border: 1.5px solid rgba(139, 26, 26, 0.3) !important;
    box-shadow: 0 3px 10px rgba(139, 26, 26, 0.07) !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    padding: 0 12px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
  }
  html:not([data-theme="dark"]) .lang-switch-btn-mobile span {
    background: transparent !important;
    background-color: transparent !important;
    color: #8B1A1A !important;
    text-shadow: none !important;
    box-shadow: none !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
  }
  html:not([data-theme="dark"]) .lang-switch-btn-mobile:hover {
    background: rgba(139, 26, 26, 0.08) !important;
    color: #6B0F0F !important;
    border-color: #8B1A1A !important;
    transform: translateY(-1.5px) !important;
    box-shadow: 0 6px 16px rgba(139, 26, 26, 0.15) !important;
  }
  html:not([data-theme="dark"]) .lang-switch-btn-mobile:hover span {
    background: transparent !important;
    background-color: transparent !important;
    color: #6B0F0F !important;
    text-shadow: none !important;
  }

  /* Universal safety override: ensure no text in mobile drawer has background marker highlight */
  html:not([data-theme="dark"]) .mobile-drawer * {
    text-shadow: none !important;
  }
  html:not([data-theme="dark"]) .mobile-drawer a span,
  html:not([data-theme="dark"]) .mobile-drawer button span {
    background: transparent !important;
    background-color: transparent !important;
  }

  /* Social badges in Day Mode */
  html:not([data-theme="dark"]) .drawer-socials a {
    background: #ffffff !important;
    color: #8B1A1A !important;
    border: 1.5px solid rgba(139, 26, 26, 0.3) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
    transition: all 0.25s ease !important;
  }
  html:not([data-theme="dark"]) .drawer-socials a:hover {
    background: #8B1A1A !important;
    color: #ffffff !important;
    border-color: #8B1A1A !important;
    box-shadow: 0 6px 18px rgba(139, 26, 26, 0.3) !important;
    transform: translateY(-2px) scale(1.08) !important;
  }

  section { padding: 60px 0; }
  #hero { height: auto; min-height: 520px; padding: 40px 0; }

  /* Mobile Hero Buttons & Description Optimization */
  .hero-btns {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    gap: 8px !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;
  }
  .hero-btns .btn-cta, .hero-btns .btn-outline {
    flex: 1 1 0% !important;
    width: auto !important;
    max-width: 165px !important;
    min-width: 135px !important;
    height: 44px !important;
    min-height: 44px !important;
    font-size: 11.5px !important;
    padding: 0 8px !important;
    border-radius: 6px !important;
    white-space: nowrap !important;
    text-align: center !important;
  }
  body.en .hero-btns .btn-cta, body.en .hero-btns .btn-outline {
    font-size: 11px !important;
    letter-spacing: 0.5px !important;
  }
  .hero-desc {
    padding: 0 10px !important;
    margin-bottom: 28px !important;
    font-size: 14.5px !important;
    line-height: 1.85 !important;
    color: #ffffff !important;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 1), 0 0 20px rgba(0, 0, 0, 0.95) !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
  }

  /* Mobile EN: hero tagline — slightly reduced font size for mobile */
  body.en .hero-brand-intro {
    font-size: clamp(9.5px, 2.2vw, 11.5px) !important;
    letter-spacing: 0.4px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  
  /* Layout columns & mobile base text scale */
  .why-grid, .f2 { grid-template-columns: 1fr !important; }
  p { font-size: 16px; }
  .form-box { padding: 26px 18px; border-radius: 16px; }
  
  /* Form Inputs on iOS (Prevent auto-zoom) */
  .fg input, .fg textarea, .fg select {
    font-size: 16px !important;
    border-radius: 10px !important;
    padding: 14px 16px !important;
  }

  /* Gallery Filter Tabs horizontal touch scroll on mobile */
  .gal-filter-tabs {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    justify-content: flex-start !important;
    padding: 6px 5vw 12px 5vw !important;
    margin: 20px -5vw 30px -5vw !important;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .gal-filter-tabs::-webkit-scrollbar { display: none; }
  .gal-tab {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
    padding: 8px 18px !important;
    font-size: 13px !important;
  }

  /* Horizontal swipe cards (Collections, Gallery, Reviews, Showcase Items) */
  .rev-grid, .col-grid, .gal-grid, .cp-items-grid, .gp-related-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    scroll-snap-type: inline mandatory !important;
    scroll-padding: 0 8vw !important;
    scroll-padding-inline: 8vw !important;
    -webkit-overflow-scrolling: touch !important; /* Native hardware momentum on iOS & Android */
    overscroll-behavior-x: contain !important;
    overscroll-behavior-y: auto !important;
    gap: 16px !important;
    padding: 12px 8vw 28px !important;
    margin: 0 -5vw !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    touch-action: pan-x pan-y pinch-zoom !important;   /* Enables seamless horizontal finger swiping and vertical page scrolling */
    cursor: grab;
    -webkit-tap-highlight-color: transparent !important;
    scroll-behavior: smooth;
  }
  .rev-grid::-webkit-scrollbar, 
  .col-grid::-webkit-scrollbar, 
  .gal-grid::-webkit-scrollbar, 
  .cp-items-grid::-webkit-scrollbar,
  .gp-related-grid::-webkit-scrollbar { display: none !important; }

  .rev-card, .col-card, .cp-item-card, .gp-related-card {
    flex: 0 0 84vw !important;
    max-width: 330px !important;
    scroll-snap-align: center !important;
    scroll-snap-stop: normal !important;
    margin-bottom: 0 !important;
    border-radius: 18px !important;
    touch-action: pan-x pan-y pinch-zoom !important;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    transition: box-shadow 0.3s ease !important;
  }
  .gp-related-card {
    flex: 0 0 calc(62vw) !important;
    max-width: 250px !important;
    height: 180px !important;
  }
  @media (hover: hover) {
    .rev-card:active, .col-card:active, .cp-item-card:active, .gp-related-card:active, .gal-item:active {
      transform: scale(0.98) !important;
    }
  }

  /* Slider Prev/Next controls for touch devices */
  .slider-nav-btn {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 999px !important;
    background: rgba(20,16,12,0.68) !important;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 30 !important;
    box-shadow: 0 8px 18px rgba(0,0,0,0.28) !important;
    border: none !important;
  }
  .slider-nav-prev { left: 14px !important; }
  .slider-nav-next { right: 14px !important; }
  .slider-nav-btn:active { transform: translateY(-50%) scale(0.96) !important; }

  /* Strong overrides to prevent global button rules turning nav into full-width bars */
  .rev-grid .slider-nav-btn,
  .col-grid .slider-nav-btn,
  .gal-grid .slider-nav-btn {
    position: absolute !important;
    display: flex !important;
    width: 42px !important;
    max-width: 42px !important;
    height: 42px !important;
    padding: 0 !important;
    border: none !important;
    background: rgba(20,16,12,0.78) !important;
    color: #fff !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 40 !important;
    box-shadow: 0 8px 18px rgba(0,0,0,0.28) !important;
    border-radius: 999px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    cursor: pointer !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    box-sizing: content-box !important;
  }
  .rev-grid .slider-nav-prev { left: 12px !important; }
  .col-grid .slider-nav-prev { left: 12px !important; }
  .gal-grid .slider-nav-prev { left: 12px !important; }
  .rev-grid .slider-nav-next { right: 12px !important; }
  .col-grid .slider-nav-next { right: 12px !important; }
  .gal-grid .slider-nav-next { right: 12px !important; }
  .rev-grid .slider-nav-btn svg, .col-grid .slider-nav-btn svg, .gal-grid .slider-nav-btn svg { stroke: #fff !important; }

  /* Utility: hide all injected slider nav buttons (global override) */
  .slider-nav-btn { display: none !important; visibility: hidden !important; opacity: 0 !important; pointer-events: none !important; }
  
  .col-img-box { aspect-ratio: 4 / 3 !important; height: auto !important; border-radius: 18px 18px 0 0 !important; }
  .col-body { padding: 20px 18px !important; }
  .col-body h3 { font-size: 18px !important; }

  .gal-item {
    flex: 0 0 84vw !important;
    max-width: 330px !important;
    scroll-snap-align: center !important;
    scroll-snap-stop: normal !important;
    margin-bottom: 0 !important;
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    border-radius: 18px !important;
    border: 1px solid rgba(200, 160, 78, 0.28);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    height: 380px !important;
    touch-action: pan-x pan-y pinch-zoom !important;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    transition: box-shadow 0.3s ease !important;
  }
  .col-img-box img, .gal-item img {
    transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.3, 1) !important;
    will-change: transform;
  }
  .gal-item .gal-caption {
    transform: translateY(0) !important;
    opacity: 1 !important;
    background: linear-gradient(to top, rgba(20, 16, 12, 0.94) 0%, rgba(20, 16, 12, 0.45) 80%, transparent 100%) !important;
    padding: 14px 16px !important;
    font-size: 13.5px !important;
    font-weight: 700;
    border-radius: 0 0 18px 18px !important;
  }

  /* Unified luxury progress indicator bars */
  .rev-scroll-progress-bar,
  .col-scroll-progress-bar,
  .gal-scroll-progress-bar,
  .cp-scroll-progress-bar,
  .gp-scroll-progress-bar {
    width: 140px !important;
    height: 4px !important;
    background: rgba(200, 160, 78, 0.18) !important;
    border-radius: 10px !important;
    margin: 18px auto 0 !important;
    overflow: hidden !important;
    position: relative !important;
    display: block !important;
  }
  .rev-scroll-progress-fill,
  .col-scroll-progress-fill,
  .gal-scroll-progress-fill,
  .cp-scroll-progress-fill,
  .gp-scroll-progress-fill {
    height: 100% !important;
    width: 0% !important;
    background: linear-gradient(90deg, #c8a04e 0%, #f5d77f 50%, #d4a339 100%) !important;
    border-radius: 10px !important;
    box-shadow: 0 0 10px rgba(245, 215, 127, 0.6) !important;
    transition: width 0.1s ease-out !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
  }
  html[dir="ltr"] .rev-scroll-progress-fill,
  html[dir="ltr"] .col-scroll-progress-fill,
  html[dir="ltr"] .gal-scroll-progress-fill,
  html[dir="ltr"] .cp-scroll-progress-fill,
  html[dir="ltr"] .gp-scroll-progress-fill,
  body.en .rev-scroll-progress-fill,
  body.en .col-scroll-progress-fill,
  body.en .gal-scroll-progress-fill,
  body.en .cp-scroll-progress-fill,
  body.en .gp-scroll-progress-fill {
    right: auto !important;
    left: 0 !important;
  }
  html:not([data-theme="dark"]) .rev-scroll-progress-bar,
  html:not([data-theme="dark"]) .col-scroll-progress-bar,
  html:not([data-theme="dark"]) .gal-scroll-progress-bar,
  html:not([data-theme="dark"]) .cp-scroll-progress-bar,
  html:not([data-theme="dark"]) .gp-scroll-progress-bar {
    background: rgba(139, 26, 26, 0.12) !important;
  }
  html:not([data-theme="dark"]) .rev-scroll-progress-fill,
  html:not([data-theme="dark"]) .col-scroll-progress-fill,
  html:not([data-theme="dark"]) .gal-scroll-progress-fill,
  html:not([data-theme="dark"]) .cp-scroll-progress-fill,
  html:not([data-theme="dark"]) .gp-scroll-progress-fill {
    background: linear-gradient(90deg, #8B1A1A 0%, #c8a04e 100%) !important;
    box-shadow: 0 0 10px rgba(139, 26, 26, 0.35) !important;
  }

  /* Opening sub-views smooth entrance transitions */
  .collection-page-overlay,
  .gallery-page-overlay {
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease !important;
    transform: translateY(28px) scale(0.99) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    will-change: transform, opacity;
  }
  .collection-page-overlay.active,
  .gallery-page-overlay.active {
    transform: translateY(0) scale(1) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .collection-page-overlay.active .cp-hero-content,
  .gallery-page-overlay.active .gp-visual-panel {
    animation: modalContentMotion 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  .collection-page-overlay.active .cp-specs,
  .gallery-page-overlay.active .gp-details-panel {
    animation: modalContentMotion 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both;
  }
  .collection-page-overlay.active .cp-items-grid,
  .gallery-page-overlay.active .gp-related-grid {
    animation: modalContentMotion 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
  }
  @keyframes modalContentMotion {
    0% {
      opacity: 0;
      transform: translateY(18px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Mobile Swipe Chevrons */
  .swipe-arrow {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(20, 16, 12, 0.88) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid rgba(200, 160, 78, 0.45) !important;
    color: var(--gold-light) !important;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    padding: 0;
  }
  .swipe-arrow:active {
    background: var(--gold) !important;
    color: var(--ink) !important;
    transform: translateY(-50%) scale(0.92);
  }
  .swipe-prev { left: 8px; }
  .swipe-next { right: 8px; }

  /* Why Choose Us 2x2 grid */
  .why-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 14px !important; }
  .why-card { padding: 22px 14px !important; border-radius: 16px !important; }
  .why-ico { width: 46px !important; height: 46px !important; margin-bottom: 14px !important; }
  .why-ico svg { width: 22px !important; height: 22px !important; }
  .why-card h3 { font-size: 15px !important; margin-bottom: 6px !important; }
  .why-card p { font-size: 12px !important; line-height: 1.55 !important; }

  /* Floating elements adjustments: Back-to-Top on Opposite Side of AI Agent */
  .float-wa { display: none !important; }
  .float-back-to-top {
    bottom: 92px !important;
    left: 16px !important; right: auto !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50%;
    z-index: 998;
    background: linear-gradient(135deg, rgba(28, 23, 18, 0.95), rgba(18, 14, 10, 0.98)) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1.5px solid rgba(245, 215, 127, 0.65) !important;
    color: #f5d77f !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5), 0 0 16px rgba(245, 215, 127, 0.25) !important;
  }
  body.en .float-back-to-top, html[dir="ltr"] .float-back-to-top {
    left: auto !important; right: 16px !important;
  }

  /* Floating Luxury Bottom Navigation Bar Deck */
  .mobile-bottom-nav {
    display: flex !important;
    position: fixed !important;
    bottom: 20px !important;
    left: 16px !important;
    right: 16px !important;
    background: linear-gradient(135deg, rgba(20, 16, 12, 0.92), rgba(38, 26, 16, 0.94)) !important;
    backdrop-filter: blur(28px) !important;
    -webkit-backdrop-filter: blur(28px) !important;
    border: 1.5px solid rgba(200, 160, 78, 0.4) !important;
    border-radius: 100px !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5) !important;
    z-index: 999;
    padding: 8px 12px !important;
    gap: 8px !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  [data-theme="light"] .mobile-bottom-nav {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 244, 236, 0.96)) !important;
    border: 1.5px solid rgba(184, 134, 11, 0.35) !important;
    box-shadow: 0 14px 36px rgba(184, 134, 11, 0.15), 0 4px 16px rgba(0, 0, 0, 0.08) !important;
  }

  .mobile-bottom-nav .m-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 0;
    border-radius: 30px;
    font-weight: 700;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
  }
  [data-theme="light"] .mobile-bottom-nav .m-btn {
    color: #1c1712 !important;
  }

  .mobile-bottom-nav .m-call { color: var(--gold-light); }
  [data-theme="light"] .mobile-bottom-nav .m-call { color: #8b5a15 !important; }

  .mobile-bottom-nav .m-wa { color: #25D366 !important; }
  .mobile-bottom-nav .m-wa svg { fill: currentColor; width: 16px; height: 16px; }

  .mobile-bottom-nav .m-enquire {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
    color: var(--ink) !important;
    box-shadow: 0 4px 16px rgba(200, 160, 78, 0.35) !important;
    flex: 1.2 !important;
    padding: 11px 0 !important;
    border: none !important;
    font-weight: 800 !important;
  }
  [data-theme="light"] .mobile-bottom-nav .m-enquire {
    color: #ffffff !important;
    background: linear-gradient(135deg, #b8860b 0%, #8b6508 100%) !important;
    box-shadow: 0 4px 16px rgba(184, 134, 11, 0.35) !important;
  }
  .mobile-bottom-nav .m-enquire:active { transform: scale(0.95); }

  /* Showcase overlays on mobile: fluid bottom sheet sliding animation */
  .collection-page-overlay,
  .gallery-page-overlay {
    position: fixed !important;
    inset: 0 !important;
    z-index: 2000 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior-y: contain !important;
    transform: translateY(100%) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, visibility 0.38s ease !important;
    will-change: transform, opacity !important;
  }
  .collection-page-overlay.active,
  .gallery-page-overlay.active {
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .cp-header, .gp-header {
    padding: 0 16px !important;
    height: 58px !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 100 !important;
  }
  .cp-back-btn, .gp-back-btn {
    min-height: 44px !important;
    padding: 8px 12px !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
  }
  .cp-hero {
    min-height: 240px !important;
    height: 35vh !important;
  }
  .cp-hero-content {
    padding: 16px 18px !important;
    max-width: 90% !important;
  }
  .cp-hero-title {
    font-size: 24px !important;
    margin-bottom: 8px !important;
  }
  .cp-hero-desc {
    font-size: 14px !important;
    line-height: 1.6 !important;
  }
  .cp-specs {
    grid-template-columns: repeat(2, 1fr) !important;
    margin-top: -24px !important;
    padding: 0 4% !important;
    gap: 10px !important;
  }
  .cp-spec-card {
    padding: 16px 12px !important;
    border-radius: 12px !important;
  }
  .cp-spec-card h3 {
    font-size: 10px !important;
    margin-bottom: 4px !important;
  }
  .cp-spec-card p {
    font-size: 14px !important;
  }
  .cp-grid-title {
    margin-top: 40px !important;
    margin-bottom: 20px !important;
  }
  .cp-grid-title h3 {
    font-size: 22px !important;
  }
  .cp-items-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 0 4% 80px !important;
    margin-bottom: 40px !important;
  }
  .cp-item-card {
    border-radius: 16px !important;
  }
  .cp-item-card .cp-card-actions {
    display: flex !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
  }
  .cp-item-card .cp-card-actions button {
    flex: 1 !important;
    min-height: 44px !important;
    font-size: 13px !important;
  }

  /* Gallery Detail Page on mobile */
  .gp-layout {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 16px 4% 40px !important;
  }
  .gp-main-img-box {
    border-radius: 14px !important;
    max-height: 380px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
  }
  .gp-main-img-box img {
    max-height: 380px !important;
    object-fit: cover !important;
  }
  .gp-details-panel {
    padding: 0 !important;
  }
  .gp-title {
    font-size: 22px !important;
  }
  .gp-story {
    font-size: 14px !important;
    line-height: 1.7 !important;
  }
  .gp-tech-table {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }
  .gp-tech-cell {
    padding: 12px 14px !important;
    font-size: 13px !important;
  }
  .gp-related-title {
    padding: 0 4% !important;
    font-size: 16px !important;
    margin-bottom: 12px !important;
  }
  .gp-related-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 12px !important;
    padding: 10px 4% 40px !important;
    scrollbar-width: none;
  }
  .gp-related-card {
    flex: 0 0 130px !important;
    scroll-snap-align: start !important;
    border-radius: 10px !important;
    height: 110px !important;
  }
}

/* Scroll Reveal */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.9s ease, transform 0.9s ease; will-change: transform, opacity; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   STATS COUNTERS STRIP
═══════════════════════════════════════ */
/* ═══════════════════════════════════════
   MODERN ULTRA-LUXURY STATS COUNTER CARDS
   ═══════════════════════════════════════ */
#stats {
  margin-top: 70px;
  margin-bottom: 50px;
}
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  border: none;
  box-shadow: none;
}
.stat-item {
  padding: 36px 24px 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(145deg, #ffffff 0%, #faf6ee 100%);
  border: 1px solid rgba(184, 134, 11, 0.28);
  box-shadow: 0 12px 32px rgba(184, 134, 11, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.stat-item:hover {
  transform: translateY(-8px) scale(1.02);
  background: linear-gradient(145deg, #ffffff 0%, #f7efe0 100%);
  border-color: rgba(184, 134, 11, 0.65);
  box-shadow: 0 20px 45px rgba(184, 134, 11, 0.2), 0 6px 16px rgba(0, 0, 0, 0.06);
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3.5px;
  background: linear-gradient(90deg, #b8860b, #e5c158, #b8860b);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 22px 22px 0 0;
}
.stat-item.counted::before { transform: scaleX(1); }

.stat-badge-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(184, 134, 11, 0.12), rgba(184, 134, 11, 0.03));
  border: 1.5px solid rgba(184, 134, 11, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 12px;
  transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease;
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.1);
}
.stat-item:hover .stat-badge-icon {
  transform: translateY(-3px) scale(1.1);
  background: linear-gradient(135deg, rgba(184, 134, 11, 0.26), rgba(184, 134, 11, 0.1));
  border-color: rgba(184, 134, 11, 0.6);
}

.stat-num {
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 900;
  font-family: var(--font-serif);
  font-variant-numeric: tabular-nums;
  background: linear-gradient(135deg, #8b5a15 0%, #b8860b 45%, #d4a339 75%, #8b6508 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
  transition: filter 1.2s ease;
}
.stat-item.counted .stat-num {
  filter: drop-shadow(0 2px 8px rgba(184, 134, 11, 0.35));
}

.stat-label {
  font-size: 13px;
  color: #1c1712 !important;
  font-weight: 700 !important;
  letter-spacing: 0.2px;
  line-height: 1.4;
  margin: 0;
}
.stat-label span {
  display: block;
  color: inherit;
}

.stat-sparkle {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 12px;
  color: #b8860b;
  opacity: 0.45;
  transition: opacity 0.3s ease, transform 0.45s ease;
}
body.en .stat-sparkle { right: auto; left: 16px; }
.stat-item:hover .stat-sparkle {
  opacity: 0.9;
  transform: rotate(90deg) scale(1.15);
  color: #d4a339;
}

/* ═══════════════════════════════════════
   NIGHT / DARK MODE OVERRIDES FOR STAT CARDS
   ═══════════════════════════════════════ */
[data-theme="dark"] .stat-item {
  background: linear-gradient(145deg, rgba(28, 22, 17, 0.9), rgba(16, 12, 9, 0.95)) !important;
  border: 1px solid rgba(229, 193, 88, 0.28) !important;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55), 0 0 16px rgba(229, 193, 88, 0.12) !important;
}
[data-theme="dark"] .stat-item:hover {
  border-color: rgba(245, 215, 127, 0.6) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 25px rgba(245, 215, 127, 0.25) !important;
}
[data-theme="dark"] .stat-badge-icon {
  background: linear-gradient(135deg, rgba(245, 215, 127, 0.18), rgba(245, 215, 127, 0.05)) !important;
  border-color: rgba(245, 215, 127, 0.35) !important;
}
[data-theme="dark"] .stat-num {
  background: linear-gradient(135deg, #f5d77f 0%, #e5c158 50%, #c4962c 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
[data-theme="dark"] .stat-item.counted .stat-num {
  filter: drop-shadow(0 4px 14px rgba(245, 215, 127, 0.4)) !important;
}
[data-theme="dark"] .stat-label {
  color: rgba(255, 255, 255, 0.88) !important;
}
[data-theme="dark"] .stat-sparkle {
  color: #f5d77f !important;
  opacity: 0.4;
}

/* ═══════════════════════════════════════
   HERO ENHANCEMENTS
═══════════════════════════════════════ */
.hero-ornament {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-ornament::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 55vmin; height: 55vmin;
  border-radius: 50%;
  border: 1px solid rgba(200,160,78,0.08);
  box-shadow: 0 0 0 30px rgba(200,160,78,0.04), 0 0 0 60px rgba(200,160,78,0.025);
}
body.en .hero-ornament::before { right: auto; left: -5%; }
.hero-ornament::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(20,16,12,0.7) 0%, transparent 100%);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 96px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: floatUpDown 2.4s ease-in-out infinite;
}
.hero-scroll-indicator span {
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-dot {
  width: 3px; height: 7px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDotAnim 1.8s ease-in-out infinite;
}
@keyframes scrollDotAnim {
  0% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(13px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
@keyframes floatUpDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ═══════════════════════════════════════
   GALLERY CAPTIONS — ALWAYS VISIBLE
═══════════════════════════════════════ */
.gal-item .gal-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 16px 16px;
  background: linear-gradient(to top, rgba(8,6,4,0.88) 0%, rgba(8,6,4,0.55) 55%, transparent 100%);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  z-index: 4;
  line-height: 1.4;
  pointer-events: none;
  text-shadow: 0 1px 6px rgba(0,0,0,0.9), 0 2px 14px rgba(0,0,0,0.7);
  letter-spacing: 0.2px;
}
.gal-caption-title {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.95), 0 2px 20px rgba(0,0,0,0.7);
  margin-bottom: 3px;
  line-height: 1.35;
}
body.en .gal-caption-title {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.gal-caption-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #0c0a07;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 9px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-shadow: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  text-transform: uppercase;
}
/* Night mode: slightly brighter gradient */
html[data-theme="dark"] .gal-item .gal-caption {
  background: linear-gradient(to top, rgba(4,3,2,0.95) 0%, rgba(4,3,2,0.6) 60%, transparent 100%);
}
/* Day mode: strong overlay for pale backgrounds */
html:not([data-theme="dark"]) .gal-item .gal-caption {
  background: linear-gradient(to top, rgba(10,7,5,0.9) 0%, rgba(10,7,5,0.55) 60%, transparent 100%);
}

/* ═══════════════════════════════════════
   REVIEW CAROUSEL
═══════════════════════════════════════ */
.rev-carousel-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 50px;
  padding-bottom: 4px;
}
.rev-carousel-track {
  display: flex;
  gap: 28px;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.rev-carousel-track .rev-card {
  min-width: calc(33.333% - 19px);
  flex-shrink: 0;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.rev-carousel-track .rev-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.rev-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
}
.rev-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(200,160,78,0.45);
  background: transparent;
  color: var(--gold-dark);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  font-size: 20px;
  line-height: 1;
}
.rev-btn:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.rev-btn:active { transform: scale(0.94); }
.rev-dots-row {
  display: flex;
  gap: 8px;
}
.rev-dot-btn {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--line);
  border: none; cursor: pointer;
  transition: all 0.35s ease;
  padding: 0;
}
.rev-dot-btn.active { background: var(--gold); width: 26px; border-radius: 5px; }



/* ═══════════════════════════════════════
   COLLECTION CARD ENHANCEMENTS
═══════════════════════════════════════ */
.col-card { position: relative; }
.col-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 2px solid var(--gold);
  border-radius: 5px;
  opacity: 0;
  z-index: 3;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.col-card:hover::before { opacity: 0.6; }
.col-img-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,16,12,0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.col-card:hover .col-img-box::after { opacity: 1; }

/* ═══════════════════════════════════════
   WHY CARD GLOW EFFECT
═══════════════════════════════════════ */
.why-card {
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: -50%; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,160,78,0.2) 0%, transparent 70%);
  opacity: 0;
  transition: all 0.6s ease;
  pointer-events: none;
}
.why-card:hover::after { bottom: -20%; opacity: 1; }
.why-ico, .why-card h3, .why-card p { position: relative; z-index: 1; }

/* ═══════════════════════════════════════
   IMPROVED SPA OVERLAY ANIMATION
═══════════════════════════════════════ */
.collection-page-overlay,
.gallery-page-overlay {
  transition: opacity 0.45s ease, visibility 0.45s ease !important;
}
.collection-page-overlay::-webkit-scrollbar,
.gallery-page-overlay::-webkit-scrollbar { width: 6px; }
.collection-page-overlay::-webkit-scrollbar-thumb,
.gallery-page-overlay::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 3px;
}

/* ═══════════════════════════════════════
   CTA SECTION RADIAL GLOW
═══════════════════════════════════════ */
#cta { isolation: isolate; }
#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(200,160,78,0.12) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
#cta .wrap { position: relative; z-index: 2; }

.col-scroll-progress-bar,
.rev-scroll-progress-bar,
.gal-scroll-progress-bar {
  display: none;
}
.mobile-swipe-wrapper {
  position: relative;
  width: 100%;
}
.swipe-arrow {
  display: none;
}

/* ═══════════════════════════════════════
   RESPONSIVE ADDITIONS
═══════════════════════════════════════ */
@media(max-width: 900px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-left-color: rgba(200,160,78,0.12); }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(200,160,78,0.12); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(200,160,78,0.12); }
}
@media(max-width: 768px) {
  .col-scroll-progress-bar,
  .gal-scroll-progress-bar,
  .rev-scroll-progress-bar {
    display: block !important;
    width: 140px !important;
    height: 4px !important;
    background: rgba(200, 160, 78, 0.2) !important;
    margin: 20px auto 0 !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    position: relative !important;
  }
  .col-scroll-progress-fill,
  .gal-scroll-progress-fill,
  .rev-scroll-progress-fill {
    width: 0%;
    height: 100% !important;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)) !important;
    border-radius: 10px !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    transition: width 0.15s ease-out !important;
  }
  html[dir="ltr"] .col-scroll-progress-fill,
  html[dir="ltr"] .gal-scroll-progress-fill,
  html[dir="ltr"] .rev-scroll-progress-fill,
  body.en .col-scroll-progress-fill,
  body.en .gal-scroll-progress-fill,
  body.en .rev-scroll-progress-fill {
    right: auto !important;
    left: 0 !important;
  }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }

  .hero-scroll-indicator { display: none; }
  .rev-carousel-track .rev-card { min-width: calc(90vw - 10%); }
  .rev-btn { width: 42px; height: 42px; font-size: 16px; }
}
@media(max-width: 480px) {
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 28px 16px; }
}

@media(max-width: 768px) {
  /* Mobile typography size reductions for specific sections as requested */
  
  /* 1. Stats Counter Strip */
  .stat-num {
    font-size: 32px !important;
  }
  .stat-label {
    font-size: 12.5px !important;
  }

  /* 2. Craft Process Steps */
  .craft-n {
    font-size: 15px !important;
    width: 44px !important;
    height: 44px !important;
  }
  .craft-steps::before {
    right: 22px !important;
  }
  body.en .craft-steps::before {
    right: auto !important;
    left: 22px !important;
  }
  .craft-step h4 {
    font-size: 16px !important;
  }
  .craft-step p {
    font-size: 13.5px !important;
  }

  /* 3. FAQ Section Accordion Questions */
  .faq-question {
    font-size: 15px !important;
    padding: 18px 22px !important;
  }
  .faq-icon {
    font-size: 15px !important;
  }

  /* 4. Testimonials (Reviewer Names) */
  .rev-name {
    font-size: 14px !important;
  }

  /* 5. About Us Section Center Alignment & Header Lines */
  #about {
    text-align: center !important;
  }
  #about .sec-tag {
    justify-content: center !important;
  }
  #about .sec-line-r {
    display: block !important;
  }
  #about .sec-sub p {
    text-align: center !important;
  }
  #about .about-sign {
    text-align: center !important;
  }

  /* 6. Mobile Footer 3-column Layout (Collections, Links, Contact on one row) */
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 20px 8px !important;
  }
  .f-logo {
    grid-column: span 3 !important;
    align-items: center !important;
    text-align: center !important;
    margin-bottom: 12px !important;
  }
  .f-logo .f-about {
    text-align: center !important;
  }
  .f-logo .f-socials {
    justify-content: center !important;
  }
  .f-col, .f-contact-col {
    grid-column: span 1 !important;
    display: flex !important;
    flex-direction: column !important;
    border-top: none !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
    text-align: start !important;
    gap: 0 !important;
  }
  .f-col h3 {
    font-size: 13.5px !important;
    margin: 0 0 12px 0 !important;
    padding: 0 0 8px 0 !important;
    height: 28px !important;
    display: flex !important;
    align-items: flex-end !important;
    white-space: nowrap !important;
    box-sizing: content-box !important;
  }
  .f-col h3::after {
    width: 22px !important;
    bottom: 0 !important;
  }
  .f-col ul, .f-contact-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
  }
  .f-col li, .f-contact-links li {
    margin: 0 !important;
    padding: 0 !important;
    height: 32px !important;
    min-height: 32px !important;
    display: flex !important;
    align-items: center !important;
  }
  .f-col a, .f-contact-links a {
    font-size: 12px !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
    overflow: hidden !important;
    max-width: 100% !important;
    display: inline-flex !important;
    align-items: center !important;
    color: rgba(255, 255, 255, 0.82) !important;
  }

  /* 7. Centering Craft, Contact headers and consultation form title on mobile */
  #craft .block-fa, #craft .block-en,
  #contact .block-fa, #contact .block-en {
    text-align: center !important;
  }
  #craft .sec-tag, #contact .sec-tag {
    justify-content: center !important;
  }
  #craft .sec-line-r, #contact .sec-line-r {
    display: block !important;
  }
  #craft .sec-sub, #contact .sec-sub {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .form-box h3 {
    display: block !important;
    text-align: center !important;
  }
}

/* ═══════════ PREMIUM DELIVERY SECTION STYLES ═══════════ */
#delivery-section {
  padding: 100px 0;
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
}

@media (max-width: 900px) {
  .delivery-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.delivery-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 45px 35px;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.delivery-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.delivery-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}

.delivery-card:hover::before {
  opacity: 1;
}

.delivery-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(200, 160, 78, 0.08);
  border: 1px solid rgba(200, 160, 78, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  transition: var(--transition);
}

.delivery-card:hover .delivery-card-icon {
  background: var(--gold);
  color: var(--ink);
  transform: scale(1.05);
}

.delivery-card-icon svg {
  width: 24px;
  height: 24px;
}

.delivery-card-title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
}

body.en .delivery-card-title {
  font-family: var(--font-serif);
}

body:not(.en) .delivery-card-title {
  font-family: var(--font-fa);
  font-weight: 700;
}

.delivery-card-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
}

.delivery-destinations {
  margin-top: 15px;
}

.dest-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-dark);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

body:not(.en) .dest-title {
  font-family: var(--font-fa);
  letter-spacing: 0;
  font-weight: 700;
}

.dest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dest-tag {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  transition: all 0.3s ease;
}

body:not(.en) .dest-tag {
  font-family: var(--font-fa);
}

.delivery-card:hover .dest-tag {
  border-color: rgba(200, 160, 78, 0.3);
  background: rgba(200, 160, 78, 0.04);
}

.delivery-card-note {
  font-size: 12px;
  color: var(--gold-dark);
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 15px;
  font-style: italic;
}

body:not(.en) .delivery-card-note {
  font-family: var(--font-fa);
  font-style: normal;
}

/* ═══════════════════════════════════════
   NEW: DARK THEME OVERRIDES
═══════════════════════════════════════ */
/* ════════════════════════════════════════════════════════════
   LUXURY NIGHT MODE (DARK THEME) TYPOGRAPHY & VISUAL REFINEMENT
════════════════════════════════════════════════════════════ */
/* ════════════════════════════════════════════════════════════
   MASTER NIGHT MODE TEXT COLOR & VISUAL CONTRAST OVERRIDES
════════════════════════════════════════════════════════════ */
/* ════════════════════════════════════════════════════════════
   MASTER HARMONIOUS DUAL-THEME ENGINE (DAY & NIGHT MODES)
════════════════════════════════════════════════════════════ */

/* ── DAY MODE (LIGHT THEME DEFAULT) ── */
html:not([data-theme="dark"]) {
  --paper: #faf8f5;
  --pale: #f4efe9;
  --cream: #eee7de;
  --white: #ffffff;
  --ink: #14100c;
  --deep: #2a1c12;
  --text-main: #1c1814;
  --text-muted: #4a4a4a;
  --line: rgba(140, 43, 37, 0.14);
  --gold-dark-text: #7a5200;
  --gold: #b8860b;
  --gold-light: #d4af37;
  --gold-dark: #8b6508;
  --shadow-sm: 0 4px 16px rgba(0,0,0,0.05);
  --shadow-md: 0 12px 32px rgba(0,0,0,0.08);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.12);
}

html:not([data-theme="dark"]) body {
  background: var(--paper);
  color: var(--text-main);
}

html:not([data-theme="dark"]) h1,
html:not([data-theme="dark"]) h2,
html:not([data-theme="dark"]) h3,
html:not([data-theme="dark"]) h4,
html:not([data-theme="dark"]) h5,
html:not([data-theme="dark"]) h6,
html:not([data-theme="dark"]) .col-title,
html:not([data-theme="dark"]) .why-title,
html:not([data-theme="dark"]) .faq-q,
html:not([data-theme="dark"]) .rev-name,
html:not([data-theme="dark"]) .ci-val,
html[data-theme="light"] h3,
html[data-theme="light"] h4,
html[data-theme="light"] h5 {
  color: #14100c !important;
}

/* Ensure Footer headings (Collections, Links, Contact & Showroom) stay white in Day Mode */
html:not([data-theme="dark"]) .footer h3,
html:not([data-theme="dark"]) .footer .f-col h3,
html:not([data-theme="dark"]) .footer .f-col h3 *,
html[data-theme="light"] .footer h3,
html[data-theme="light"] .footer .f-col h3,
html[data-theme="light"] .footer .f-col h3 * {
  color: #ffffff !important;
  font-weight: 700 !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important;
}

html:not([data-theme="dark"]) p,
html:not([data-theme="dark"]) .sec-lead,
html:not([data-theme="dark"]) .sec-sub,
html:not([data-theme="dark"]) .sec-desc,
html:not([data-theme="dark"]) .col-desc,
html:not([data-theme="dark"]) .why-desc,
html:not([data-theme="dark"]) .faq-a,
html:not([data-theme="dark"]) .ci-sub,
html:not([data-theme="dark"]) .delivery-desc {
  color: #5c5246 !important;
}

/* ═══════════════════════════════════════
   HEADER AUTH BUTTONS — World-Class Minimalist
   Refined for warm cream light mode (#faf8f5)
═══════════════════════════════════════ */

/* ═══════════════════════════════════════
   HEADER AUTH BUTTONS — High-Contrast Ultra-Sharp Glass Design
═══════════════════════════════════════ */

.nav-login-link,
.nav-login-btn,
.nav-reg-btn,
.nav-cta {
  height: 44px;
  padding: 0 20px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 700 !important;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-login-link svg,
.nav-login-btn svg,
.nav-reg-btn svg,
.nav-cta svg {
  stroke-width: 2.5px !important;
}

/* Light mode (Day Mode) — Ultra-Transparent Glass & Identical Size for Sign In & Join */
html:not([data-theme="dark"]) .nav-login-link,
html:not([data-theme="dark"]) .nav-login-btn,
html:not([data-theme="dark"]) .nav-reg-btn,
html:not([data-theme="dark"]) .nav-cta {
  height: 38px !important;
  min-width: 105px !important;
  padding: 0 16px !important;
  border-radius: 50px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.2px;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(200, 160, 78, 0.03) !important;
  border: 1px solid rgba(200, 160, 78, 0.25) !important;
  color: #1c1712 !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  text-shadow: none !important;
  box-shadow: none !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

html:not([data-theme="dark"]) .nav-login-link:hover,
html:not([data-theme="dark"]) .nav-login-btn:hover,
html:not([data-theme="dark"]) .nav-reg-btn:hover,
html:not([data-theme="dark"]) .nav-cta:hover {
  background: rgba(200, 160, 78, 0.12) !important;
  border-color: rgba(200, 160, 78, 0.65) !important;
  color: #9e7c34 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(200, 160, 78, 0.15) !important;
}

/* ── Navigation Buttons Styling ── */

/* Dark mode (Night Mode) — Ultra-Transparent Glass & Identical Size for Sign In & Join */
html[data-theme="dark"] .nav-login-link,
html[data-theme="dark"] .nav-login-btn,
html[data-theme="dark"] .nav-reg-btn,
html[data-theme="dark"] .nav-cta {
  height: 38px !important;
  min-width: 105px !important;
  padding: 0 16px !important;
  border-radius: 50px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0.2px;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(232, 212, 154, 0.03) !important;
  border: 1px solid rgba(232, 212, 154, 0.22) !important;
  color: var(--gold-light, #e8d49a) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  text-shadow: none !important;
  box-shadow: none !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

html[data-theme="dark"] .nav-login-link:hover,
html[data-theme="dark"] .nav-login-btn:hover,
html[data-theme="dark"] .nav-reg-btn:hover,
html[data-theme="dark"] .nav-cta:hover {
  background: rgba(232, 212, 154, 0.1) !important;
  border-color: rgba(232, 212, 154, 0.5) !important;
  color: var(--gold-light, #e8d49a) !important;
  transform: translateY(-1px) !important;
  box-shadow: none !important;
}

.nav-reg-btn:hover,
.nav-cta:hover {
  background: #155049;
  box-shadow: 0 4px 14px rgba(26, 92, 82, 0.35);
  transform: translateY(-1px);
}

.nav-reg-btn:active,
.nav-cta:active {
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}

html:not([data-theme="dark"]) .form-box,
html:not([data-theme="dark"]) .col-card,
html:not([data-theme="dark"]) .why-card,
html:not([data-theme="dark"]) .rev-card,
html:not([data-theme="dark"]) .faq-item,
html:not([data-theme="dark"]) .ci-card,
html:not([data-theme="dark"]) .delivery-card,
html:not([data-theme="dark"]) .cp-spec-card,
html:not([data-theme="dark"]) .gp-tech-cell {
  background: #ffffff !important;
  border: 1px solid rgba(140, 43, 37, 0.12) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

html:not([data-theme="dark"]) .fg input,
html:not([data-theme="dark"]) .fg select,
html:not([data-theme="dark"]) .fg textarea {
  background: #ffffff !important;
  color: #14100c !important;
  border: 1px solid rgba(140, 43, 37, 0.2) !important;
}

html:not([data-theme="dark"]) header.header,
html:not([data-theme="dark"]) .header {
  background: rgba(250, 248, 245, 0.94) !important;
  border-bottom: 1px solid rgba(140, 43, 37, 0.12) !important;
}

html:not([data-theme="dark"]) .nav-links a {
  color: #14100c !important;
}

html:not([data-theme="dark"]) .nav-links a:hover {
  color: #8c2b25 !important;
}

/* ── NIGHT MODE (DARK THEME - MODERN LUXURY REDESIGN) ── */
html[data-theme="dark"] {
  --paper: #090807;
  --pale: #120e0b;
  --cream: #1a1410;
  --white: #241b15;
  --ink: #fbf8f3;
  --deep: #f5eedf;
  --text-main: #f3ece1;
  --text-muted: #c8bead;
  --line: rgba(229, 193, 88, 0.22);
  --gold-dark-text: #f5d77f;
  --gold: #e5c158;
  --gold-light: #fbeecb;
  --gold-dark: #f0c961;
  --carpet-red: #d63a31;
  --shadow-sm: 0 4px 18px rgba(0,0,0,0.6);
  --shadow-md: 0 16px 48px rgba(0,0,0,0.75);
  --shadow-lg: 0 30px 80px rgba(0,0,0,0.9);
}

html[data-theme="dark"] body {
  background: var(--paper) !important;
  color: var(--text-main) !important;
  background-image: radial-gradient(circle at 50% 0%, rgba(229, 193, 88, 0.05) 0%, transparent 60%) !important;
}

/* Radiant Titles & Headings in Night Mode */
html[data-theme="dark"] h1,
html[data-theme="dark"] h2,
html[data-theme="dark"] h3,
html[data-theme="dark"] h4,
html[data-theme="dark"] h5,
html[data-theme="dark"] h6,
html[data-theme="dark"] .sec-h2,
html[data-theme="dark"] .hero-h1,
html[data-theme="dark"] .col-body h3,
html[data-theme="dark"] .col-title,
html[data-theme="dark"] .why-card h3,
html[data-theme="dark"] .why-title,
html[data-theme="dark"] .faq-q,
html[data-theme="dark"] .rev-name,
html[data-theme="dark"] .ci-val,
html[data-theme="dark"] .delivery-card h3,
html[data-theme="dark"] .cp-item-title,
html[data-theme="dark"] .gp-tech-cell,
html[data-theme="dark"] .modal-title,
html[data-theme="dark"] .popup-title,
html[data-theme="dark"] th,
html[data-theme="dark"] strong,
html[data-theme="dark"] b {
  color: #ffffff !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

/* Warm Legible Body Text & Descriptions in Night Mode */
html[data-theme="dark"] p,
html[data-theme="dark"] .sec-lead,
html[data-theme="dark"] .sec-sub,
html[data-theme="dark"] .sec-desc,
html[data-theme="dark"] .block-fa,
html[data-theme="dark"] .block-en,
html[data-theme="dark"] .col-desc,
html[data-theme="dark"] .why-desc,
html[data-theme="dark"] .why-card p,
html[data-theme="dark"] .faq-a,
html[data-theme="dark"] .ci-sub,
html[data-theme="dark"] .delivery-desc,
html[data-theme="dark"] .rev-role,
html[data-theme="dark"] li,
html[data-theme="dark"] td,
html[data-theme="dark"] label {
  color: #e2dacd !important;
}

/* Section Eyebrows & Metallic Golden Accents */
html[data-theme="dark"] .sec-label,
html[data-theme="dark"] .hero-sub,
html[data-theme="dark"] .col-tag,
html[data-theme="dark"] .badge-gold {
  color: #e5c158 !important;
  text-shadow: 0 0 10px rgba(229, 193, 88, 0.25);
}

/* Sticky Header in Night Mode */
html[data-theme="dark"] header.header,
html[data-theme="dark"] .header,
html[data-theme="dark"] #main-nav {
  background: rgba(10, 8, 7, 0.88) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  border-bottom: 1px solid rgba(229, 193, 88, 0.2) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6) !important;
}

html[data-theme="dark"] .nav-links a {
  color: #f0e8dc !important;
}

html[data-theme="dark"] .nav-links a:hover {
  color: #e5c158 !important;
  text-shadow: 0 0 8px rgba(229, 193, 88, 0.4);
}

/* Luxury Glassmorphic Cards & Surface Containers in Night Mode */
html[data-theme="dark"] .form-box,
html[data-theme="dark"] .col-card,
html[data-theme="dark"] .why-card,
html[data-theme="dark"] .rev-card,
html[data-theme="dark"] .faq-item,
html[data-theme="dark"] .ci-card,
html[data-theme="dark"] .delivery-card,
html[data-theme="dark"] .cp-spec-card,
html[data-theme="dark"] .gp-tech-cell {
  background: linear-gradient(145deg, rgba(22, 17, 14, 0.94), rgba(14, 11, 9, 0.97)) !important;
  border: 1px solid rgba(229, 193, 88, 0.2) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(16px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

html[data-theme="dark"] .col-card:hover,
html[data-theme="dark"] .why-card:hover,
html[data-theme="dark"] .faq-item:hover,
html[data-theme="dark"] .rev-card:hover,
html[data-theme="dark"] .ci-card:hover {
  border-color: rgba(229, 193, 88, 0.55) !important;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(229, 193, 88, 0.16) !important;
  transform: translateY(-5px) !important;
}

/* Inputs & Form Controls in Night Mode */
html[data-theme="dark"] .fg input,
html[data-theme="dark"] .fg select,
html[data-theme="dark"] .fg textarea,
html[data-theme="dark"] input,
html[data-theme="dark"] select,
html[data-theme="dark"] textarea {
  background: rgba(25, 19, 15, 0.85) !important;
  color: #ffffff !important;
  border: 1.5px solid rgba(229, 193, 88, 0.28) !important;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.4) !important;
}

html[data-theme="dark"] input:focus,
html[data-theme="dark"] select:focus,
html[data-theme="dark"] textarea:focus {
  border-color: #e5c158 !important;
  box-shadow: 0 0 0 3px rgba(229, 193, 88, 0.2), inset 0 2px 6px rgba(0, 0, 0, 0.4) !important;
}

html[data-theme="dark"] ::placeholder {
  color: #a39788 !important;
  opacity: 1 !important;
}

/* Footer & Copyright in Night Mode */
html[data-theme="dark"] footer.footer,
html[data-theme="dark"] .footer {
  background: #050404 !important;
  border-top: 1px solid rgba(229, 193, 88, 0.2) !important;
  color: #b0a597 !important;
}

html[data-theme="dark"] .footer a {
  color: #e2dacd !important;
}

html[data-theme="dark"] .footer a:hover {
  color: #e5c158 !important;
  text-shadow: 0 0 8px rgba(229, 193, 88, 0.4);
}

/* Gold Primary CTA Buttons */
.btn-gold,
.btn-primary,
.ai-send-btn {
  color: #0d0d0e !important;
  font-weight: 700 !important;
}

/* ═══════════ REFINED HEADER ACTION BUTTONS ═══════════ */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

#nav-auth-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}


/* Minimal Logout Button */
.nav-logout-btn {
  height: 36px;
  padding: 0 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff !important;
  background: linear-gradient(135deg, #a82424, #7f1d1d);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.nav-logout-btn:hover {
  background: linear-gradient(135deg, #c93232, #991b1b);
  transform: translateY(-1px);
}

/* Day Mode action buttons — crisp dark ink with warm gold borders */
html:not([data-theme="dark"]) .search-toggle,
html:not([data-theme="dark"]) .theme-toggle,
html:not([data-theme="dark"]) .lang-switch,
html:not([data-theme="dark"]) .lang-switch-btn,
html:not([data-theme="dark"]) .lang-switch-link {
  background: rgba(200, 160, 78, 0.08) !important;
  border: 1px solid rgba(200, 160, 78, 0.35) !important;
  color: #1c1712 !important;
}

html:not([data-theme="dark"]) .search-toggle:hover,
html:not([data-theme="dark"]) .theme-toggle:hover,
html:not([data-theme="dark"]) .lang-switch:hover,
html:not([data-theme="dark"]) .lang-switch-btn:hover,
html:not([data-theme="dark"]) .lang-switch-link:hover {
  background: rgba(200, 160, 78, 0.18) !important;
  border-color: rgba(200, 160, 78, 0.75) !important;
  color: #9e7c34 !important;
  box-shadow: 0 4px 14px rgba(200, 160, 78, 0.18) !important;
}

/* Minimal Search Toggle Button */
.search-toggle {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 160, 78, 0.22);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  backdrop-filter: blur(8px);
}

.search-toggle:hover {
  background: rgba(200, 160, 78, 0.15);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: scale(1.06);
  box-shadow: 0 0 12px rgba(200, 160, 78, 0.25);
}

.search-toggle svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* Minimal Theme Toggle Button (Sun/Moon) */
.theme-toggle {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 160, 78, 0.22);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  backdrop-filter: blur(8px);
}

.theme-toggle:hover {
  background: rgba(200, 160, 78, 0.15);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: scale(1.06) rotate(15deg);
  box-shadow: 0 0 12px rgba(200, 160, 78, 0.25);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform 0.4s ease;
}

.theme-toggle:hover svg {
  transform: rotate(30deg);
}

.theme-toggle .icon-sun,
.drawer-act-btn .icon-sun { display: none !important; }
.theme-toggle .icon-moon,
.drawer-act-btn .icon-moon { display: block !important; }
html[data-theme="dark"] .theme-toggle .icon-moon,
html[data-theme="dark"] .drawer-act-btn .icon-moon { display: none !important; }
html[data-theme="dark"] .theme-toggle .icon-sun,
html[data-theme="dark"] .drawer-act-btn .icon-sun { display: block !important; color: #fbeecb; }

/* Modern Minimal Language Switcher Button (FA / EN) - Matching Icon Toggle Size */
.lang-switch-btn,
.lang-switch-link,
.lang-switch {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border-radius: 50%;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 160, 78, 0.22);
  color: var(--gold-light);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(8px);
  flex-shrink: 0;
}

.lang-switch-btn:hover,
.lang-switch-link:hover,
.lang-switch:hover {
  background: rgba(200, 160, 78, 0.15);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: scale(1.06);
  box-shadow: 0 0 12px rgba(200, 160, 78, 0.25);
}

/* ═══════════ MINIMAL & MODERN LUXURY SEARCH OVERLAY ═══════════ */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 2100;
  background: rgba(8, 6, 4, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(20px, 8vh, 80px) 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
  overflow-y: auto;
}
.search-overlay.active {
  opacity: 1;
  visibility: visible;
}
html:not([data-theme="dark"]) .search-overlay {
  background: rgba(28, 23, 20, 0.72);
}

.search-box {
  width: 100%;
  max-width: 720px;
  background: linear-gradient(165deg, rgba(24, 18, 13, 0.98) 0%, rgba(14, 11, 8, 0.99) 100%);
  border: 1.5px solid rgba(245, 215, 127, 0.32);
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.7), 0 0 32px rgba(245, 215, 127, 0.12);
  padding: 24px 28px;
  transform: translateY(-20px) scale(0.98);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
body.en .search-box {
  direction: ltr;
  text-align: left;
  font-family: var(--font-en, 'Jost', sans-serif);
}
body:not(.en) .search-box {
  direction: rtl;
  text-align: right;
  font-family: var(--font-fa, 'Vazirmatn', sans-serif);
}
.search-overlay.active .search-box {
  transform: translateY(0) scale(1);
}
html:not([data-theme="dark"]) .search-box {
  background: linear-gradient(165deg, #ffffff 0%, #FAF7F2 100%);
  border: 1.5px solid rgba(139, 26, 26, 0.25);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25), 0 0 24px rgba(139, 26, 26, 0.08);
}

/* Search Header Bar */
.search-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.search-badge {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #f5d77f;
  background: rgba(245, 215, 127, 0.1);
  border: 1px solid rgba(245, 215, 127, 0.25);
  padding: 4px 12px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.search-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f5d77f;
  box-shadow: 0 0 8px #f5d77f;
}
html:not([data-theme="dark"]) .search-badge {
  color: #8B1A1A;
  background: rgba(139, 26, 26, 0.07);
  border-color: rgba(139, 26, 26, 0.2);
}
html:not([data-theme="dark"]) .search-badge::before {
  background: #8B1A1A;
  box-shadow: 0 0 8px rgba(139, 26, 26, 0.6);
}

.search-close-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(245, 215, 127, 0.3);
  color: #f5d77f;
  cursor: pointer;
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.search-close-btn:hover {
  background: rgba(245, 215, 127, 0.2);
  color: #ffffff;
  border-color: #f5d77f;
  transform: rotate(90deg) scale(1.08);
}
html:not([data-theme="dark"]) .search-close-btn {
  background: rgba(139, 26, 26, 0.06);
  border-color: rgba(139, 26, 26, 0.25);
  color: #8B1A1A;
}
html:not([data-theme="dark"]) .search-close-btn:hover {
  background: rgba(139, 26, 26, 0.16);
  color: #6B0F0F;
  border-color: #8B1A1A;
}

/* Search Input Field Row */
.search-input-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(245, 215, 127, 0.35);
  border-radius: 16px;
  padding: 6px 16px;
  transition: all 0.3s ease;
  position: relative;
}
.search-input-row:focus-within {
  background: rgba(255, 255, 255, 0.07);
  border-color: #f5d77f;
  box-shadow: 0 0 20px rgba(245, 215, 127, 0.25);
}
html:not([data-theme="dark"]) .search-input-row {
  background: #ffffff;
  border: 1.5px solid rgba(139, 26, 26, 0.25);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
html:not([data-theme="dark"]) .search-input-row:focus-within {
  border-color: #8B1A1A;
  box-shadow: 0 0 20px rgba(139, 26, 26, 0.18);
}

.search-icon-svg {
  color: #f5d77f;
  flex-shrink: 0;
}
html:not([data-theme="dark"]) .search-icon-svg {
  color: #8B1A1A;
}

.search-input-row input {
  flex: 1;
  background: none;
  border: none;
  color: #ffffff;
  font-size: clamp(15px, 2.4vw, 19px);
  font-weight: 600;
  font-family: inherit;
  outline: none;
  height: 46px;
  padding: 0;
}
body.en .search-input-row input {
  font-family: var(--font-en, 'Jost', sans-serif);
  letter-spacing: 0.3px;
}
.search-input-row input::placeholder {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
  font-size: 14.5px;
}
html:not([data-theme="dark"]) .search-input-row input {
  color: #1C1714;
}
html:not([data-theme="dark"]) .search-input-row input::placeholder {
  color: rgba(28, 23, 20, 0.45);
}

.search-clear-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.search-clear-btn:hover {
  background: rgba(245, 215, 127, 0.25);
  color: #ffffff;
}
html:not([data-theme="dark"]) .search-clear-btn {
  background: rgba(28, 23, 20, 0.08);
  color: #1C1714;
}
html:not([data-theme="dark"]) .search-clear-btn:hover {
  background: rgba(139, 26, 26, 0.15);
  color: #8B1A1A;
}

/* Search Category Filter Tabs */
.search-filter-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  padding: 2px 2px 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.search-filter-tabs::-webkit-scrollbar {
  display: none;
}
.search-tab-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 215, 127, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-family: inherit;
  font-size: 11.5px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.search-tab-btn:hover {
  background: rgba(245, 215, 127, 0.12);
  color: #ffffff;
  border-color: rgba(245, 215, 127, 0.4);
}
.search-tab-btn.active {
  background: linear-gradient(135deg, rgba(245, 215, 127, 0.25) 0%, rgba(200, 160, 78, 0.38) 100%) !important;
  border-color: #f5d77f !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  box-shadow: 0 2px 10px rgba(200, 160, 78, 0.25);
}

html:not([data-theme="dark"]) .search-tab-btn {
  background: rgba(28, 23, 20, 0.04);
  border-color: rgba(139, 26, 26, 0.18);
  color: #5c4d43;
}
html:not([data-theme="dark"]) .search-tab-btn:hover {
  background: rgba(139, 26, 26, 0.08);
  color: #8B1A1A;
  border-color: rgba(139, 26, 26, 0.35);
}
html:not([data-theme="dark"]) .search-tab-btn.active {
  background: #8B1A1A !important;
  border-color: #8B1A1A !important;
  color: #ffffff !important;
  box-shadow: 0 3px 10px rgba(139, 26, 26, 0.25);
}

/* Quick Suggestion Chips */
.search-suggestions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 2px;
}
.search-sug-label {
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(245, 215, 127, 0.85);
  margin-inline-end: 4px;
}
html:not([data-theme="dark"]) .search-sug-label {
  color: #8B1A1A;
}

.search-chips-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.search-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 215, 127, 0.22);
  color: #e5d2af;
  font-size: 11.5px;
  font-weight: 600;
  font-family: inherit;
  padding: 4px 10px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.search-chip:hover {
  background: rgba(245, 215, 127, 0.18);
  border-color: #f5d77f;
  color: #ffffff;
  transform: translateY(-1px);
}
html:not([data-theme="dark"]) .search-chip {
  background: #ffffff;
  border: 1px solid rgba(139, 26, 26, 0.2);
  color: #3d2f26;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}
html:not([data-theme="dark"]) .search-chip:hover {
  background: rgba(139, 26, 26, 0.08);
  border-color: #8B1A1A;
  color: #8B1A1A;
}

/* Results Summary Bar */
.search-results-summary-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 8px;
  font-size: 11.5px;
  font-weight: 700;
  color: #f5d77f;
  background: rgba(245, 215, 127, 0.06);
  border-radius: 8px;
  border: 1px solid rgba(245, 215, 127, 0.14);
  margin-bottom: 6px;
}
html:not([data-theme="dark"]) .search-results-summary-bar {
  color: #8B1A1A;
  background: rgba(139, 26, 26, 0.04);
  border-color: rgba(139, 26, 26, 0.12);
}
.sr-type-badge {
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(245, 215, 127, 0.15);
  color: #f5d77f;
  font-weight: 700;
}
html:not([data-theme="dark"]) .sr-type-badge {
  background: rgba(139, 26, 26, 0.09);
  color: #8B1A1A;
}

/* Search Results Container */
.search-results {
  max-height: 52vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 4px;
  margin-top: 4px;
  -webkit-overflow-scrolling: touch;
}
.search-results::-webkit-scrollbar {
  width: 6px;
}
.search-results::-webkit-scrollbar-thumb {
  background: rgba(245, 215, 127, 0.3);
  border-radius: 6px;
}
html:not([data-theme="dark"]) .search-results::-webkit-scrollbar-thumb {
  background: rgba(139, 26, 26, 0.25);
}

/* Search Result Item Card */
.search-result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 215, 127, 0.12);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  text-decoration: none;
  outline: none;
}
.search-result-item:hover,
.search-result-item:focus-visible,
.search-result-item.selected {
  background: rgba(245, 215, 127, 0.12);
  border-color: rgba(245, 215, 127, 0.45);
  transform: translateX(-3px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}
body.en .search-result-item:hover,
body.en .search-result-item.selected {
  transform: translateX(3px);
}

html:not([data-theme="dark"]) .search-result-item {
  background: #ffffff;
  border: 1px solid rgba(139, 26, 26, 0.12);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}
html:not([data-theme="dark"]) .search-result-item:hover,
html:not([data-theme="dark"]) .search-result-item:focus-visible,
html:not([data-theme="dark"]) .search-result-item.selected {
  background: rgba(139, 26, 26, 0.05);
  border-color: #8B1A1A;
  box-shadow: 0 4px 14px rgba(139, 26, 26, 0.1);
}

/* Item Image Box */
.sr-img-box {
  width: 58px;
  height: 58px;
  min-width: 58px;
  min-height: 58px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(245, 215, 127, 0.25);
  background: rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}
.sr-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.search-result-item:hover .sr-img-box img {
  transform: scale(1.1);
}
html:not([data-theme="dark"]) .sr-img-box {
  border-color: rgba(139, 26, 26, 0.2);
}

/* Item Info */
.sr-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  overflow: hidden;
}
.sr-top-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.sr-cat-badge {
  font-size: 11px;
  font-weight: 700;
  color: #f5d77f;
  background: rgba(245, 215, 127, 0.12);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.3px;
}
html:not([data-theme="dark"]) .sr-cat-badge {
  color: #8B1A1A;
  background: rgba(139, 26, 26, 0.08);
}

.sr-spec-badge {
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 6px;
  border-radius: 4px;
}
html:not([data-theme="dark"]) .sr-spec-badge {
  color: #5c4d43;
  background: rgba(28, 23, 20, 0.05);
}

.sr-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 14.5px;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
html:not([data-theme="dark"]) .sr-title {
  color: #1C1714;
}

.sr-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
html:not([data-theme="dark"]) .sr-desc {
  color: #63554b;
}

/* Highlight Marked Text */
.sr-highlight {
  background: rgba(245, 215, 127, 0.35);
  color: #ffffff;
  padding: 0 2px;
  border-radius: 2px;
  font-weight: 800;
}
html:not([data-theme="dark"]) .sr-highlight {
  background: rgba(201, 168, 76, 0.35);
  color: #8B1A1A;
}

/* Arrow indicator */
.sr-action-arrow {
  color: #f5d77f;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  transition: all 0.25s ease;
  flex-shrink: 0;
}
body:not(.en) .sr-action-arrow svg {
  transform: rotate(180deg);
}
.search-result-item:hover .sr-action-arrow {
  background: #f5d77f;
  color: #140e08;
  transform: scale(1.1);
}
html:not([data-theme="dark"]) .sr-action-arrow {
  color: #8B1A1A;
  background: rgba(139, 26, 26, 0.06);
}
html:not([data-theme="dark"]) .search-result-item:hover .sr-action-arrow {
  background: #8B1A1A;
  color: #ffffff;
}

/* Empty State */
.search-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 16px;
  gap: 8px;
}
.search-empty-icon {
  font-size: 32px;
  margin-bottom: 4px;
}
.search-empty-title {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
}
html:not([data-theme="dark"]) .search-empty-title {
  color: #1C1714;
}
.search-empty-sub {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  max-width: 360px;
}
html:not([data-theme="dark"]) .search-empty-sub {
  color: #6d5e53;
}
.search-empty-cta {
  margin-top: 10px;
  background: linear-gradient(135deg, #c8a04e, #9e7c34);
  color: #110d08;
  font-size: 12.5px;
  font-weight: 700;
  font-family: inherit;
  padding: 8px 18px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}
.search-empty-cta:hover {
  transform: translateY(-1.5px);
  box-shadow: 0 4px 14px rgba(200, 160, 78, 0.4);
}
html:not([data-theme="dark"]) .search-empty-cta {
  background: linear-gradient(135deg, #8B1A1A, #6B0F0F);
  color: #ffffff;
}

/* Search Footer Hint */
.search-footer-hint {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-footer-hint kbd {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  padding: 1px 6px;
  font-family: inherit;
  font-size: 10.5px;
  margin: 0 2px;
}
html:not([data-theme="dark"]) .search-footer-hint {
  color: rgba(28, 23, 20, 0.45);
  border-top-color: rgba(139, 26, 26, 0.1);
}
html:not([data-theme="dark"]) .search-footer-hint kbd {
  background: rgba(28, 23, 20, 0.06);
  border-color: rgba(28, 23, 20, 0.15);
  color: #1C1714;
}

/* BRAND HERITAGE TIMELINE */
#timeline { background: var(--paper); padding: 90px 0; }
.timeline-track { position: relative; max-width: 900px; margin: 60px auto 0; padding-right: 2px; }
.timeline-track::before {
  content: ''; position: absolute; top: 0; bottom: 0; right: 19px; width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold-light), var(--gold-dark), transparent);
}
body.en .timeline-track::before { right: auto; left: 19px; }
.timeline-entry { position: relative; padding: 0 60px 50px 0; }
body.en .timeline-entry { padding: 0 0 50px 60px; }
.timeline-entry:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute; top: 4px; right: 10px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold); border: 4px solid var(--paper); box-shadow: 0 0 0 2px var(--gold-dark);
}
body.en .timeline-dot { right: auto; left: 10px; }
.timeline-year { font-family: var(--font-serif); font-weight: 700; font-size: 22px; color: var(--gold-dark); margin-bottom: 6px; }
.timeline-entry h4 { font-size: 18px; margin-bottom: 8px; color: var(--text-main); }
.timeline-entry p { font-size: 14.5px; color: var(--text-muted); line-height: 1.85; }

/* AWARDS & CERTIFICATIONS STRIP */
#awards { background: var(--cream); padding: 60px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.awards-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 40px; }
.award-badge { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; max-width: 160px; }
.award-badge .badge-ico {
  width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--pale), var(--cream)); border: 1px solid var(--gold-light); color: var(--gold-dark);
}
.award-badge .badge-ico svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.award-badge span { font-size: 12.5px; font-weight: 600; color: var(--text-muted); }

/* JALILI JOURNAL / NEWS SECTION */
#journal { background: var(--paper); padding: 90px 0; }
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 50px; }
.journal-card { background: var(--white); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; transition: var(--transition); }
.journal-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--gold-light); }
.journal-img { height: 200px; overflow: hidden; background: var(--pale); }
.journal-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.journal-card:hover .journal-img img { transform: scale(1.06); }
.journal-body { padding: 26px; }
.journal-date { font-size: 12px; color: var(--gold-dark); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; display: block; }
.journal-body h3 { font-size: 18px; margin-bottom: 10px; line-height: 1.4; color: var(--text-main); }
.journal-body p { font-size: 14px; color: var(--text-muted); line-height: 1.8; }
.journal-link { margin-top: 16px; display: inline-flex; align-items: center; gap: 6px; color: var(--carpet-red); font-weight: 700; font-size: 13.5px; }

/* NEWSLETTER BAND */
#newsletter {
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}
#newsletter .wrap {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#newsletter h2.sec-h2 {
  text-align: center !important;
  margin: 0 auto 14px auto !important;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}
#newsletter p.sec-sub {
  text-align: center !important;
  margin: 0 auto 30px auto !important;
  max-width: 660px;
  font-size: 1.05rem;
  line-height: 1.8;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: 16px 24px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
}
.newsletter-form .btn-cta {
  padding: 16px 32px;
  border-radius: 50px;
  white-space: nowrap;
}
.newsletter-note {
  margin-top: 18px;
  font-size: 13px;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ── DAY MODE (LIGHT THEME) ADAPTATION FOR NEWSLETTER ── */
html:not([data-theme="dark"]) #newsletter {
  background: linear-gradient(135deg, #fdfaf6, #f3ece2);
  border-top: 1px solid rgba(140, 43, 37, 0.12);
  border-bottom: 1px solid rgba(140, 43, 37, 0.12);
}
html:not([data-theme="dark"]) #newsletter h2.sec-h2 {
  color: #14100c !important;
}
html:not([data-theme="dark"]) #newsletter p.sec-sub {
  color: #5c5246 !important;
}
html:not([data-theme="dark"]) .newsletter-form input {
  background: #ffffff;
  color: #14100c;
  border: 1.5px solid rgba(140, 43, 37, 0.22);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}
html:not([data-theme="dark"]) .newsletter-form input::placeholder {
  color: #8c8275;
}
html:not([data-theme="dark"]) .newsletter-form input:focus {
  border-color: #8c2b25;
  box-shadow: 0 0 0 3px rgba(140, 43, 37, 0.12);
}
html:not([data-theme="dark"]) .newsletter-note {
  color: #7c7265 !important;
}

/* ── DARK MODE ADAPTATION FOR NEWSLETTER ── */
html[data-theme="dark"] #newsletter {
  background: linear-gradient(135deg, #16120e, #261912);
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}
html[data-theme="dark"] #newsletter h2.sec-h2 {
  color: #fceecb !important;
}
html[data-theme="dark"] #newsletter p.sec-sub {
  color: rgba(255, 255, 255, 0.82) !important;
}
html[data-theme="dark"] .newsletter-form input {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
html[data-theme="dark"] .newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
html[data-theme="dark"] .newsletter-form input:focus {
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}
html[data-theme="dark"] .newsletter-note {
  color: rgba(255, 255, 255, 0.5) !important;
}


/* VISUAL BREADCRUMB */
.visual-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gold-light); padding: 16px 5% 0; flex-wrap: wrap; }
.visual-breadcrumb a { color: rgba(232,212,154,0.7); }
.visual-breadcrumb a:hover { color: var(--gold-light); }
.visual-breadcrumb span.sep { opacity: 0.4; }

/* DEMO LOCALSTORAGE EDITOR AFFORDANCE */
[data-editable] { position: relative; }
[data-editable].editing-active { outline: 2px dashed var(--gold); outline-offset: 4px; cursor: text; }
.edit-mode-badge {
  position: fixed; bottom: 100px; right: 30px; z-index: 998; background: var(--gold); color: var(--ink);
  padding: 10px 18px; border-radius: 100px; font-size: 12.5px; font-weight: 700; box-shadow: var(--shadow-gold);
  border: none; display: none; cursor: pointer;
}
body.en .edit-mode-badge { right: auto; left: 30px; }
.edit-mode-badge.show { display: block; }

@media(max-width: 1024px) {
  .journal-grid { grid-template-columns: repeat(2, 1fr); }
  .awards-row { gap: 26px; }
}
@media(max-width: 768px) {
  .journal-grid { grid-template-columns: 1fr; }
  .timeline-entry { padding-right: 44px; }
  body.en .timeline-entry { padding-left: 44px; }
  .search-overlay { padding: 6vh 16px; }
}



/* ==================== EXTRACTED STYLES ==================== */


/* ════════════════════════════════════════════════════════════
   PRO-MAX JALILI AI CONCIERGE DESIGN SYSTEM
════════════════════════════════════════════════════════════ */
.ai-widget-trigger {
  position: fixed;
  bottom: 104px;
  right: 32px;
  left: auto;
  z-index: 9999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(14, 14, 18, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(212, 175, 55, 0.65);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5), 0 0 25px rgba(212, 175, 55, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: #fff;
  padding: 0;
  overflow: hidden;
  animation: aiFloatPulse 4s infinite ease-in-out;
}

body.en .ai-widget-trigger {
  right: auto;
  left: 32px;
}


@keyframes aiFloatPulse {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5), 0 0 25px rgba(212, 175, 55, 0.3);
  }
  50% {
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.6), 0 0 35px rgba(212, 175, 55, 0.5);
  }
}

.ai-widget-trigger:hover {
  transform: translateY(-8px) scale(1.1);
  border-color: #d4af37;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.7), 0 0 45px rgba(212, 175, 55, 0.6);
}

.ai-badge-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f3e5ab 0%, #d4af37 50%, #aa7c11 100%);
  color: #0d0d0e;
  font-weight: 900;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.5);
  position: relative;
}

.ai-badge-avatar svg {
  width: 22px;
  height: 22px;
  fill: #0d0d0e;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

.ai-badge-avatar::after {
  content: '';
  position: absolute;
  top: -1px;
  right: -1px;
  width: 10px;
  height: 10px;
  background: #10b981;
  border: 2px solid #0d0d0e;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
  animation: aiOnlinePulse 2s infinite ease-in-out;
}

@keyframes aiOnlinePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.8; }
}

.ai-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(8, 8, 10, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 32px;
}

.ai-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.ai-chat-box {
  width: 100%;
  max-width: 480px;
  height: 640px;
  max-height: 85vh;
  background: rgba(18, 18, 22, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), 0 0 32px rgba(212, 175, 55, 0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ai-modal-overlay.active .ai-chat-box {
  transform: translateY(0) scale(1);
}

.ai-chat-header {
  padding: 16px 20px;
  background: rgba(28, 28, 34, 0.9);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ai-chat-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ai-chat-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.ai-chat-subtitle {
  font-size: 11px;
  color: rgba(212, 175, 55, 0.85);
}

.ai-chat-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ai-ctrl-btn {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 16px;
}

.ai-ctrl-btn:hover {
  background: rgba(212, 175, 55, 0.2);
  color: #d4af37;
  border-color: rgba(212, 175, 55, 0.4);
}

.ai-chat-body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 175, 55, 0.3) transparent;
}

.ai-msg {
  display: flex;
  flex-direction: column;
  max-width: 88%;
  animation: aiMsgFadeIn 0.3s ease forwards;
}

@keyframes aiMsgFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.ai-msg.bot { align-self: flex-start; }
.ai-msg.user { align-self: flex-end; }

.ai-msg-bubble {
  padding: 14px 18px;
  border-radius: 18px;
  font-size: 13.5px;
  line-height: 1.6;
}

.ai-msg.bot .ai-msg-bubble {
  background: rgba(32, 32, 40, 0.9);
  color: #e5e7eb;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom-left-radius: 4px;
}

.ai-msg.user .ai-msg-bubble {
  background: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%);
  color: #0d0d0e;
  font-weight: 600;
  border-bottom-right-radius: 4px;
}

.ai-prompt-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.ai-pill-btn {
  padding: 7px 14px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 20px;
  color: #e5e7eb;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}

.ai-pill-btn:hover {
  background: rgba(212, 175, 55, 0.25);
  border-color: rgba(212, 175, 55, 0.6);
  color: #fff;
  transform: translateY(-2px);
}

.ai-rug-card-recommend {
  margin-top: 12px;
  padding: 12px;
  background: rgba(20, 20, 26, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ai-card-top-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ai-card-top-row img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.ai-rug-card-info h5 {
  margin: 0 0 4px 0;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.ai-rug-card-info p {
  margin: 0;
  font-size: 11px;
  color: #9ca3af;
  line-height: 1.4;
}

.ai-card-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.ai-card-act-btn {
  flex: 1;
  padding: 6px 10px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  color: #d4af37;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.ai-card-act-btn:hover {
  background: rgba(212, 175, 55, 0.3);
  color: #fff;
}

.ai-typing-indicator {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
}

.ai-typing-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d4af37;
  animation: aiTypingBounce 1.4s infinite ease-in-out both;
}

.ai-typing-dot:nth-child(1) { animation-delay: -0.32s; }
.ai-typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes aiTypingBounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

.ai-chat-footer {
  padding: 14px 18px;
  background: rgba(24, 24, 30, 0.95);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
}

.ai-chat-input {
  flex: 1;
  padding: 10px 16px;
  min-height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: all 0.25s ease;
  font-family: inherit;
}

.ai-chat-input:focus {
  border-color: rgba(212, 175, 55, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.ai-send-btn {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%);
  border: none;
  color: #0d0d0e;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.ai-send-btn:hover { transform: scale(1.08); }

@media (max-width: 768px) {
  .ai-widget-trigger {
    bottom: 92px !important;
    right: 16px !important;
    left: auto !important;
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    min-height: 52px !important;
    z-index: 998 !important;
  }
  body.en .ai-widget-trigger, html[dir="ltr"] .ai-widget-trigger {
    right: auto !important;
    left: 16px !important;
  }
  .ai-modal-overlay {
    padding: 0 !important;
    align-items: flex-end !important;
    justify-content: center !important;
  }

  .ai-chat-box {
    width: 100% !important;
    max-width: 100% !important;
    height: 88vh !important;
    max-height: 88vh !important;
    border-radius: 24px 24px 0 0 !important;
    border-bottom: none !important;
    transform: translateY(100%) !important;
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1) !important;
  }
  .ai-modal-overlay.active .ai-chat-box {
    transform: translateY(0) !important;
  }
  .ai-chat-header {
    padding: 14px 16px !important;
  }
  .ai-chat-body {
    padding: 14px 14px 20px !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior-y: contain !important;
  }
  .ai-msg {
    max-width: 94% !important;
  }
  .ai-msg-bubble {
    font-size: 13px !important;
    padding: 12px 14px !important;
  }
  .ai-chat-footer {
    padding: 10px 12px !important;
    padding-bottom: max(10px, env(safe-area-inset-bottom)) !important;
  }
  .ai-chat-input {
    font-size: 15px !important;
    padding: 8px 14px !important;
  }
}

/* ═══════════ LIGHT THEME LUXURY HARMONIZATION FOR AI CURATOR ═══════════ */
[data-theme="light"] .ai-modal-overlay {
  background: rgba(30, 24, 18, 0.45);
}
[data-theme="light"] .ai-chat-box {
  background: linear-gradient(145deg, #ffffff 0%, #faf6ee 100%);
  border: 1.5px solid rgba(184, 134, 11, 0.35);
  box-shadow: 0 24px 64px rgba(184, 134, 11, 0.18), 0 8px 32px rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .ai-chat-header {
  background: linear-gradient(135deg, #fdfbf7 0%, #f4ede0 100%);
  border-bottom: 1px solid rgba(184, 134, 11, 0.2);
}
[data-theme="light"] .ai-chat-title {
  color: #1c1712 !important;
}
[data-theme="light"] .ai-chat-subtitle {
  color: #8b5a15 !important;
}
[data-theme="light"] .ai-ctrl-btn {
  background: #ffffff;
  border: 1px solid rgba(184, 134, 11, 0.25);
  color: #4a3b32;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}
[data-theme="light"] .ai-ctrl-btn:hover {
  background: #b8860b;
  color: #ffffff;
  border-color: #b8860b;
}
[data-theme="light"] .ai-msg.bot .ai-msg-bubble {
  background: #ffffff;
  color: #1c1712;
  border: 1px solid rgba(184, 134, 11, 0.22);
  box-shadow: 0 4px 14px rgba(184, 134, 11, 0.08);
}
[data-theme="light"] .ai-pill-btn {
  background: #ffffff;
  border: 1px solid rgba(184, 134, 11, 0.3);
  color: #2c221a;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}
[data-theme="light"] .ai-pill-btn:hover {
  background: linear-gradient(135deg, #b8860b, #8b6508);
  color: #ffffff;
  border-color: #b8860b;
}
[data-theme="light"] .ai-rug-card-recommend {
  background: #ffffff;
  border: 1px solid rgba(184, 134, 11, 0.3);
  box-shadow: 0 6px 18px rgba(184, 134, 11, 0.1);
}
[data-theme="light"] .ai-rug-card-info h5 {
  color: #1c1712;
}
[data-theme="light"] .ai-rug-card-info p {
  color: #5c4d42;
}
[data-theme="light"] .ai-card-act-btn {
  background: #fdfbf7;
  border: 1px solid rgba(184, 134, 11, 0.35);
  color: #8b5a15;
}
[data-theme="light"] .ai-card-act-btn:hover {
  background: #b8860b;
  color: #ffffff;
}
[data-theme="light"] .ai-chat-footer {
  background: linear-gradient(135deg, #fdfbf7 0%, #f4ede0 100%);
  border-top: 1px solid rgba(184, 134, 11, 0.2);
}
[data-theme="light"] .ai-chat-input {
  background: #ffffff;
  border: 1.5px solid rgba(184, 134, 11, 0.3);
  color: #1c1712;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}
[data-theme="light"] .ai-chat-input:focus {
  border-color: #b8860b;
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.15);
}
[data-theme="light"] .ai-chat-input::placeholder {
  color: #8c7b6e;
}
[data-theme="light"] .ai-widget-trigger {
  background: linear-gradient(135deg, #ffffff, #f7efe0);
  border: 1.5px solid rgba(184, 134, 11, 0.5);
  box-shadow: 0 12px 36px rgba(184, 134, 11, 0.25), 0 4px 16px rgba(0, 0, 0, 0.08);
}


/* ==================== EXTRACTED STYLES ==================== */


/* ════════════════════════════════════════════════════════════
   DEDICATED GALLERY, CRAFT & FOOTER NIGHT MODE REFINEMENTS
════════════════════════════════════════════════════════════ */

/* ── GALLERY SECTION IN NIGHT MODE ── */
html[data-theme="dark"] #gallery {
  background: #0b0a0e !important;
}

html[data-theme="dark"] #gallery .sec-h2,
html[data-theme="dark"] #gallery h2,
html[data-theme="dark"] #gallery h3,
html[data-theme="dark"] .col-card h3,
html[data-theme="dark"] .gal-item h3 {
  color: #ffffff !important;
}

html[data-theme="dark"] #gallery .sec-lead,
html[data-theme="dark"] #gallery p,
html[data-theme="dark"] .col-card p,
html[data-theme="dark"] .gal-item p {
  color: #d1d5db !important;
}

html[data-theme="dark"] .col-card,
html[data-theme="dark"] .gal-item {
  background: rgba(24, 23, 32, 0.95) !important;
  border: 1px solid rgba(212, 175, 55, 0.25) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5) !important;
}

html[data-theme="dark"] .col-card:hover,
html[data-theme="dark"] .gal-item:hover {
  border-color: rgba(212, 175, 55, 0.6) !important;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.7), 0 0 24px rgba(212, 175, 55, 0.25) !important;
}

html[data-theme="dark"] .col-tag,
html[data-theme="dark"] .gal-tag {
  background: rgba(212, 175, 55, 0.15) !important;
  color: #d4af37 !important;
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
}

/* ── CRAFT SECTION IN NIGHT MODE ── */
html[data-theme="dark"] #craft {
  background: #08080b !important;
  color: #f3f4f6 !important;
}

html[data-theme="dark"] #craft .sec-h2,
html[data-theme="dark"] #craft .sec-h2.on-dark,
html[data-theme="dark"] #craft h2,
html[data-theme="dark"] #craft h3,
html[data-theme="dark"] .cp-item-title,
html[data-theme="dark"] .craft-title {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
  background-clip: unset !important;
}

html[data-theme="dark"] #craft p,
html[data-theme="dark"] #craft .sec-lead,
html[data-theme="dark"] .cp-item-desc,
html[data-theme="dark"] .craft-desc {
  color: #d1d5db !important;
}

html[data-theme="dark"] .cp-spec-card,
html[data-theme="dark"] .craft-card,
html[data-theme="dark"] .craft-step-card {
  background: rgba(22, 22, 30, 0.95) !important;
  border: 1px solid rgba(212, 175, 55, 0.25) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5) !important;
}

html[data-theme="dark"] .craft-num,
html[data-theme="dark"] .cp-num {
  color: #d4af37 !important;
}

/* ── FULLSCREEN GALLERY SHOWCASE MODAL IN NIGHT MODE ── */
html[data-theme="dark"] #gallery-showcase,
html[data-theme="dark"] .gp-modal-content {
  background: rgba(14, 14, 18, 0.98) !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.8) !important;
}

html[data-theme="dark"] .gp-tech-table {
  background: rgba(20, 20, 26, 0.95) !important;
  border: 1px solid rgba(212, 175, 55, 0.25) !important;
}

html[data-theme="dark"] .gp-tech-cell {
  color: #f3f4f6 !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15) !important;
}

html[data-theme="dark"] .gp-tech-cell strong,
html[data-theme="dark"] .gp-tech-cell b {
  color: #ffffff !important;
}

/* ── FOOTER SECTION IN NIGHT MODE ── */
html[data-theme="dark"] footer,
html[data-theme="dark"] .footer {
  background: #050507 !important;
  border-top: 1px solid rgba(212, 175, 55, 0.25) !important;
  color: #d1d5db !important;
}

html[data-theme="dark"] footer h3,
html[data-theme="dark"] footer h4,
html[data-theme="dark"] .footer-col h3,
html[data-theme="dark"] .footer-title {
  color: #ffffff !important;
}

html[data-theme="dark"] footer p,
html[data-theme="dark"] .footer-desc,
html[data-theme="dark"] .copy-bar {
  color: #9ca3af !important;
}

html[data-theme="dark"] footer a,
html[data-theme="dark"] .footer-links a {
  color: #d1d5db !important;
}

html[data-theme="dark"] footer a:hover,
html[data-theme="dark"] .footer-links a:hover {
  color: #d4af37 !important;
}

html[data-theme="dark"] .footer-line {
  background: rgba(212, 175, 55, 0.25) !important;
}

/* ── ABOUT US SECTION IN NIGHT MODE ── */
html[data-theme="dark"] #about {
  background: #0e0d12 !important;
  color: #f3f4f6 !important;
}
html[data-theme="dark"] #about .sec-h2,
html[data-theme="dark"] #about h2,
html[data-theme="dark"] #about h3 {
  color: #ffffff !important;
}
html[data-theme="dark"] #about p,
html[data-theme="dark"] #about .sec-sub,
html[data-theme="dark"] #about .about-sign {
  color: #d1d5db !important;
}

/* ── COLLECTIONS SECTION IN NIGHT MODE ── */
html[data-theme="dark"] #collections {
  background: #0c0b10 !important;
}
html[data-theme="dark"] #collections .sec-h2,
html[data-theme="dark"] #collections h2,
html[data-theme="dark"] #collections h3,
html[data-theme="dark"] .col-card h3 {
  color: #ffffff !important;
}
html[data-theme="dark"] #collections p,
html[data-theme="dark"] #collections .sec-sub,
html[data-theme="dark"] .col-body p {
  color: #d1d5db !important;
}
html[data-theme="dark"] .col-card {
  background: rgba(22, 21, 30, 0.95) !important;
  border: 1px solid rgba(212, 175, 55, 0.25) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5) !important;
}
html[data-theme="dark"] .col-tag {
  background: rgba(212, 175, 55, 0.15) !important;
  color: #d4af37 !important;
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
}

/* ── WHY JALILI SECTION IN NIGHT MODE ── */
html[data-theme="dark"] #why {
  background: #0e0d12 !important;
}
html[data-theme="dark"] #why .sec-h2,
html[data-theme="dark"] #why h2,
html[data-theme="dark"] #why h3,
html[data-theme="dark"] .why-card h3 {
  color: #ffffff !important;
}
html[data-theme="dark"] #why p,
html[data-theme="dark"] #why .sec-sub,
html[data-theme="dark"] .why-card p {
  color: #d1d5db !important;
}
html[data-theme="dark"] .why-card {
  background: rgba(24, 22, 32, 0.95) !important;
  border: 1px solid rgba(212, 175, 55, 0.25) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45) !important;
}
html[data-theme="dark"] .why-num {
  color: #f5d77f !important;
}

/* ── FAQ SECTION IN NIGHT MODE ── */
html[data-theme="dark"] #faq-section {
  background: #0b0a0e !important;
}
html[data-theme="dark"] #faq-section .sec-h2,
html[data-theme="dark"] #faq-section h2,
html[data-theme="dark"] #faq-section h3,
html[data-theme="dark"] .faq-question span {
  color: #ffffff !important;
}
html[data-theme="dark"] #faq-section .faq-answer {
  color: #e2e8f0 !important;
  line-height: 1.85 !important;
}
html[data-theme="dark"] .faq-item {
  background: rgba(20, 19, 28, 0.95) !important;
  border: 1px solid rgba(212, 175, 55, 0.22) !important;
}
html[data-theme="dark"] .faq-item.active {
  border-color: rgba(212, 175, 55, 0.6) !important;
  background: rgba(26, 24, 36, 0.98) !important;
}

/* ── TESTIMONIALS (REVIEWS) IN NIGHT MODE ── */
html[data-theme="dark"] #reviews {
  background: #0e0d12 !important;
}
html[data-theme="dark"] #reviews .sec-h2,
html[data-theme="dark"] #reviews h2,
html[data-theme="dark"] #reviews h3,
html[data-theme="dark"] .rev-name {
  color: #ffffff !important;
}
html[data-theme="dark"] #reviews p,
html[data-theme="dark"] #reviews .sec-sub,
html[data-theme="dark"] .rev-text {
  color: #d1d5db !important;
}
html[data-theme="dark"] .rev-role {
  color: #f5d77f !important;
}
html[data-theme="dark"] .rev-card {
  background: rgba(22, 21, 30, 0.95) !important;
  border: 1px solid rgba(212, 175, 55, 0.25) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5) !important;
}

/* ── CONTACT SECTION IN NIGHT MODE ── */
html[data-theme="dark"] #contact {
  background: #0b0a0e !important;
}
html[data-theme="dark"] #contact .sec-h2,
html[data-theme="dark"] #contact h2,
html[data-theme="dark"] #contact h3 {
  color: #ffffff !important;
}
html[data-theme="dark"] #contact p,
html[data-theme="dark"] #contact .sec-sub {
  color: #d1d5db !important;
}
html[data-theme="dark"] #contact .ci-label,
html[data-theme="dark"] #contact .fg label {
  color: #f5d77f !important;
}
html[data-theme="dark"] #contact .ci-val {
  color: #ffffff !important;
}
html[data-theme="dark"] #contact .fg input,
html[data-theme="dark"] #contact .fg textarea,
html[data-theme="dark"] #contact .fg select {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
  color: #ffffff !important;
}
html[data-theme="dark"] #contact .form-box {
  background: rgba(20, 19, 28, 0.95) !important;
  border: 1px solid rgba(212, 175, 55, 0.25) !important;
  box-shadow: 0 16px 40px rgba(0,0,0,0.6) !important;
}


/* ==================== EXTRACTED STYLES ==================== */


/* ════════════════════════════════════════════════════════════
   DEDICATED GALLERY & CRAFT DAY MODE (LIGHT THEME) REFINEMENTS
════════════════════════════════════════════════════════════ */

/* ── GALLERY SECTION IN DAY MODE ── */
html:not([data-theme="dark"]) #gallery {
  background: #f8f5f0 !important;
}

/* UNIFIED RAZOR-SHARP CRIMSON-TO-GOLD LUXURY TITLE COLOR FOR ALL SECTION TITLES */
html:not([data-theme="dark"]) .sec-h2,
html:not([data-theme="dark"]) h2.sec-h2,
html:not([data-theme="dark"]) #gallery .sec-h2,
html:not([data-theme="dark"]) #craft .sec-h2,
html:not([data-theme="dark"]) #craft .sec-h2.on-dark,
html:not([data-theme="dark"]) #collections .sec-h2,
html:not([data-theme="dark"]) #why .sec-h2,
html:not([data-theme="dark"]) #faq-section .sec-h2,
html:not([data-theme="dark"]) #reviews .sec-h2,
html:not([data-theme="dark"]) #contact .sec-h2 {
  background: linear-gradient(135deg, #a62121 0%, #c45627 35%, #d4a339 70%, #e8c86b 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-weight: 800 !important;
  filter: drop-shadow(0 1px 1.5px rgba(0, 0, 0, 0.15)) !important;
  -webkit-font-smoothing: antialiased !important;
  text-rendering: optimizeLegibility !important;
}

html:not([data-theme="dark"]) #gallery h2,
html:not([data-theme="dark"]) #gallery h3,
html:not([data-theme="dark"]) .col-card h3,
html:not([data-theme="dark"]) .gal-item h3 {
  color: #14100c !important;
}

html:not([data-theme="dark"]) #gallery .sec-lead,
html:not([data-theme="dark"]) #gallery p,
html:not([data-theme="dark"]) .col-card p,
html:not([data-theme="dark"]) .gal-item p {
  color: #0d0b09 !important;
  font-weight: 500 !important;
}

html:not([data-theme="dark"]) .col-card,
html:not([data-theme="dark"]) .gal-item {
  background: #ffffff !important;
  border: 1px solid rgba(140, 43, 37, 0.12) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

html:not([data-theme="dark"]) .col-card:hover,
html:not([data-theme="dark"]) .gal-item:hover {
  border-color: rgba(184, 134, 11, 0.5) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09) !important;
}

html:not([data-theme="dark"]) .col-tag,
html:not([data-theme="dark"]) .gal-tag {
  background: rgba(140, 43, 37, 0.07) !important;
  color: #8c2b25 !important;
  border: 1px solid rgba(140, 43, 37, 0.2) !important;
}

/* ── CRAFT SECTION IN DAY MODE ── */
html:not([data-theme="dark"]) #craft {
  background: #f3ede5 !important;
  color: #14100c !important;
}

html:not([data-theme="dark"]) #craft h2,
html:not([data-theme="dark"]) #craft h3,
html:not([data-theme="dark"]) .cp-item-title,
html:not([data-theme="dark"]) .craft-title {
  color: #0d0b09 !important;
}

html:not([data-theme="dark"]) #craft p,
html:not([data-theme="dark"]) #craft .sec-lead,
html:not([data-theme="dark"]) .cp-item-desc,
html:not([data-theme="dark"]) .craft-desc {
  color: #0d0b09 !important;
  font-weight: 500 !important;
}

html:not([data-theme="dark"]) .cp-spec-card,
html:not([data-theme="dark"]) .craft-card,
html:not([data-theme="dark"]) .craft-step-card {
  background: #ffffff !important;
  border: 1px solid rgba(140, 43, 37, 0.14) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

html:not([data-theme="dark"]) .craft-num,
html:not([data-theme="dark"]) .cp-num {
  color: #8c2b25 !important;
}

/* ── COLLECTION PAGE OVERLAY HERO: ALL TEXT WHITE IN DAY MODE ── */
html:not([data-theme="dark"]) .cp-hero-content,
html:not([data-theme="dark"]) .cp-hero-content p,
html:not([data-theme="dark"]) .cp-hero-content h2,
html:not([data-theme="dark"]) .cp-hero-content h3,
html:not([data-theme="dark"]) .cp-hero-desc,
html:not([data-theme="dark"]) #cp-banner-desc,
html:not([data-theme="dark"]) #cp-banner-title {
  color: #ffffff !important;
}

/* ── FULLSCREEN GALLERY SHOWCASE MODAL IN DAY MODE ── */
html:not([data-theme="dark"]) #gallery-showcase,
html:not([data-theme="dark"]) .gp-modal-content {
  background: #faf8f5 !important;
  border: 1px solid rgba(140, 43, 37, 0.2) !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15) !important;
}

html:not([data-theme="dark"]) .gp-tech-table {
  background: #ffffff !important;
  border: 1px solid rgba(140, 43, 37, 0.14) !important;
}

html:not([data-theme="dark"]) .gp-tech-cell {
  color: #2a1c12 !important;
  border-bottom: 1px solid rgba(140, 43, 37, 0.1) !important;
}

html:not([data-theme="dark"]) .gp-tech-cell strong,
html:not([data-theme="dark"]) .gp-tech-cell b {
  color: #14100c !important;
}


/* ==================== EXTRACTED STYLES ==================== */


/* ════════════════════════════════════════════════════════════
   REFINED LUXURY SECTION SPACING & TIGHT PADDING ENGINE
════════════════════════════════════════════════════════════ */
section {
  padding: 56px 0 !important;
}

#hero {
  padding: 0 !important;
}

#cta {
  padding: 56px 0 !important;
}

footer, .footer {
  padding: 52px 0 24px !important;
}

/* Tighten Section Header Margins */
.sec-top-line {
  margin-bottom: 14px !important;
}

.sec-h2 {
  margin-bottom: 16px !important;
}

.sec-sub, .sec-lead {
  margin-bottom: 28px !important;
}

/* Optimize Grid Gaps */
.col-grid, .why-grid, .faq-grid, .delivery-grid, .gal-grid {
  gap: 24px !important;
}

/* Mobile Responsiveness Padding (≤768px) */
@media (max-width: 768px) {
  section {
    padding: 38px 0 !important;
  }
  
  #cta {
    padding: 38px 0 !important;
  }
  
  footer, .footer {
    padding: 38px 0 20px !important;
  }
  
  .sec-sub, .sec-lead {
    margin-bottom: 20px !important;
  }
  
  .col-grid, .why-grid, .faq-grid, .delivery-grid, .gal-grid {
    gap: 16px !important;
  }
}


/* ==================== EXTRACTED STYLES ==================== */


/* ════════════════════════════════════════════════════════════
   CRAFT & DELIVERY SECTION COMPACT DESKTOP SPACING
════════════════════════════════════════════════════════════ */
#craft {
  padding: 42px 0 !important;
}

#awards {
  padding: 16px 0 !important;
  margin: 0 !important;
}

#delivery-section {
  padding: 42px 0 !important;
}

#delivery-section .delivery-grid {
  margin-top: 24px !important;
}

@media (max-width: 768px) {
  #craft {
    padding: 30px 0 !important;
  }
  #awards {
    padding: 10px 0 !important;
  }
  #delivery-section {
    padding: 30px 0 !important;
  }
  #delivery-section .delivery-grid {
    margin-top: 16px !important;
  }
}


/* ==================== ACCESSIBILITY & MOBILE TOUCH TARGETS ==================== */
@media (max-width: 768px) {
  button, 
  a.btn, 
  a.nav-link, 
  .menu-btn, 
  
  .filter-chip, 
  .tag-chip, 
  .tab-btn, 
  .modal-close, 
  .control-btn, 
  .mobile-bottom-nav a,
  .cp-back-btn,
  .gp-back-btn {
    min-width: 44px;
    min-height: 44px;
    box-sizing: border-box;
  }
  .hero-dot, .scroll-dot {
    position: relative;
  }
  .hero-dot::before, .scroll-dot::before {
    content: '';
    position: absolute;
    top: -12px;
    bottom: -12px;
    left: -12px;
    right: -12px;
  }
}

*:focus-visible {
  outline: 2px solid #b8860b !important;
  outline-offset: 2px !important;
}


/* High Contrast Input Placeholders (WCAG AA) */
::placeholder {
  color: #555555 !important;
  opacity: 1 !important;
}
:-ms-input-placeholder {
  color: #555555 !important;
}
::-ms-input-placeholder {
  color: #555555 !important;
}

/* Desktop & Hybrid Touch Target Hit Areas */
.nav-menu li a, 
.top-bar-contact a, 
.lang-switch-btn, 
.filter-chip, 
.tag-chip, 
.tab-btn, 
.btn, 
.soc-icon-btn,
.gal-nav-btn {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 2px;
}

/* High Contrast Dark Mode Adjustments */
html[data-theme="dark"] {
  --text-muted: #b0b0b0;
  --text-subtle: #cccccc;
}


/* Hero & Scroll Dots - 44px Button with centered 10px visual dot */
.hero-dot {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  max-width: 44px !important;
  max-height: 44px !important;
  background: transparent !important;
  border: none !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  box-sizing: border-box !important;
  padding: 0 !important;
}

.hero-dot::before {
  content: '' !important;
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  border: 1.5px solid rgba(255, 255, 255, 0.5) !important;
  background: transparent !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: static !important;
}

.hero-dot.active::before {
  border-color: var(--gold) !important;
  background: var(--gold) !important;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.6) !important;
  transform: scale(1.2) !important;
}


/* ==================== MINIMAL & MODERN MOBILE TRUST FEATURES ==================== */
@media (max-width: 768px) {
  #trust-section, #trust {
    padding: 20px 14px !important;
    background: linear-gradient(180deg, rgba(26, 17, 12, 0.95) 0%, rgba(18, 12, 8, 0.98) 100%) !important;
    border-top: 1px solid rgba(200, 160, 78, 0.15) !important;
    border-bottom: 1px solid rgba(200, 160, 78, 0.15) !important;
  }

  .trust-inner {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .trust-item {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(200, 160, 78, 0.2) !important;
    border-radius: 10px !important;
    padding: 10px 10px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    transition: transform 0.2s ease, background 0.2s ease !important;
    min-height: 52px !important;
  }

  .trust-item:active {
    transform: scale(0.98) !important;
    background: rgba(200, 160, 78, 0.08) !important;
  }

  .trust-icon-box {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    transform: none !important;
    border-radius: 7px !important;
    background: rgba(200, 160, 78, 0.12) !important;
    border: 1px solid rgba(200, 160, 78, 0.3) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: none !important;
  }

  .trust-icon-box svg {
    transform: none !important;
    width: 16px !important;
    height: 16px !important;
    stroke: #ebd49b !important;
    stroke-width: 1.8 !important;
  }

  .trust-item span {
    font-size: 11.5px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    color: #f2e6d0 !important;
    white-space: normal !important;
    word-break: keep-all !important;
  }

  body.en .trust-item span {
    font-family: var(--font-en) !important;
    font-size: 10.5px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    line-height: 1.25 !important;
    color: #ebd49b !important;
  }

  html[data-theme="light"] #trust-section,
  html[data-theme="light"] #trust {
    background: #faf8f5 !important;
    border-top: 1px solid rgba(200, 160, 78, 0.2) !important;
    border-bottom: 1px solid rgba(200, 160, 78, 0.2) !important;
  }

  html[data-theme="light"] .trust-item {
    background: #ffffff !important;
    border: 1px solid rgba(200, 160, 78, 0.25) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
  }

  html[data-theme="light"] .trust-item span,
  html[data-theme="light"] body.en .trust-item span {
    color: #3b2a1a !important;
  }
}


/* ==================== JALILI AI CARPET CURATOR (MINIMAL & ADJUSTED MOBILE FORMAT) ==================== */
@media (max-width: 768px) {
  .ai-widget-trigger {
    bottom: 95px !important;
    right: 14px !important;
    left: auto !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    border-radius: 50% !important;
    background: rgba(14, 14, 18, 0.94) !important;
    border: 1px solid rgba(212, 175, 55, 0.5) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 15px rgba(212, 175, 55, 0.25) !important;
    z-index: 998 !important;
  }

  body.en .ai-widget-trigger, html[dir="ltr"] .ai-widget-trigger {
    right: auto !important;
    left: 14px !important;
  }

  .ai-badge-avatar {
    width: 32px !important;
    height: 32px !important;
  }

  .ai-badge-avatar svg {
    width: 17px !important;
    height: 17px !important;
  }

  .ai-badge-avatar::after {
    width: 8px !important;
    height: 8px !important;
    top: 0px !important;
    right: 0px !important;
  }

  .ai-modal-overlay {
    padding: 12px 10px 80px 10px !important;
    align-items: flex-start !important;
    justify-content: center !important;
  }

  .ai-chat-box {
    width: 100% !important;
    max-width: 440px !important;
    height: 76vh !important;
    max-height: 76vh !important;
    border-radius: 18px !important;
    border: 1px solid rgba(212, 175, 55, 0.4) !important;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.75), 0 0 25px rgba(212, 175, 55, 0.2) !important;
    margin: 10px auto 0 auto !important;
  }

  .ai-chat-header {
    padding: 12px 14px !important;
    background: rgba(22, 22, 28, 0.95) !important;
  }

  .ai-chat-title {
    font-size: 13.5px !important;
    font-weight: 600 !important;
  }

  .ai-chat-subtitle {
    font-size: 10px !important;
    opacity: 0.9 !important;
  }

  .ai-ctrl-btn {
    width: 30px !important;
    height: 30px !important;
    font-size: 12px !important;
  }

  .ai-chat-body {
    padding: 12px 10px !important;
    gap: 10px !important;
  }

  .ai-msg {
    max-width: 92% !important;
  }

  .ai-msg-bubble {
    padding: 10px 14px !important;
    font-size: 12px !important;
    line-height: 1.55 !important;
    border-radius: 14px !important;
  }

  .ai-prompt-pills {
    gap: 6px !important;
    margin-top: 8px !important;
  }

  .ai-pill-btn {
    padding: 5px 11px !important;
    font-size: 11px !important;
    border-radius: 16px !important;
  }

  .ai-chat-footer {
    padding: 10px 12px !important;
    gap: 8px !important;
    background: rgba(18, 18, 24, 0.98) !important;
  }

  .ai-chat-input {
    padding: 10px 16px !important;
    font-size: 13.5px !important;
    border-radius: 20px !important;
    min-height: 44px !important;
  }

  .ai-send-btn {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
  }

  .ai-rug-card-recommend {
    padding: 10px !important;
    border-radius: 12px !important;
    gap: 8px !important;
  }

  .ai-card-top-row img {
    width: 52px !important;
    height: 52px !important;
    border-radius: 6px !important;
  }

  .ai-rug-card-info h5 {
    font-size: 12px !important;
  }

  .ai-rug-card-info p {
    font-size: 10.5px !important;
  }

  .ai-card-act-btn {
    padding: 5px 8px !important;
    font-size: 10px !important;
  }
}


/* ==================== JALILI AI AGENT (INCREASED SIZE & HIGH CONTRAST DAY/NIGHT) ==================== */

/* Floating Trigger Button Sizing */
.ai-widget-trigger {
  width: 54px;
  height: 54px;
}

@media (max-width: 768px) {
  .ai-widget-trigger {
    bottom: 95px !important;
    right: 16px !important;
    left: auto !important;
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    min-height: 50px !important;
    border-radius: 50% !important;
    border: 1.5px solid rgba(212, 175, 55, 0.6) !important;
  }

  body.en .ai-widget-trigger, html[dir="ltr"] .ai-widget-trigger {
    right: auto !important;
    left: 16px !important;
  }

  .ai-badge-avatar {
    width: 36px !important;
    height: 36px !important;
  }

  .ai-badge-avatar svg {
    width: 19px !important;
    height: 19px !important;
  }

  .ai-modal-overlay {
    padding: 10px 10px 75px 10px !important;
    align-items: flex-start !important;
    justify-content: center !important;
  }

  .ai-chat-box {
    width: 96% !important;
    max-width: 460px !important;
    height: 84vh !important;
    max-height: 84vh !important;
    border-radius: 20px !important;
    margin: 5px auto 0 auto !important;
  }

  .ai-chat-header {
    padding: 14px 16px !important;
  }

  .ai-chat-title {
    font-size: 14.5px !important;
  }

  .ai-chat-body {
    padding: 14px 12px !important;
    gap: 12px !important;
  }

  .ai-msg {
    max-width: 90% !important;
  }

  .ai-msg-bubble {
    padding: 11px 15px !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
  }

  .ai-pill-btn {
    padding: 6px 13px !important;
    font-size: 11.5px !important;
  }

  .ai-chat-footer {
    padding: 12px 14px !important;
  }

  .ai-chat-input {
    padding: 10px 16px !important;
    font-size: 13.5px !important;
    min-height: 44px !important;
  }

  .ai-send-btn {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
  }
}

/* HIGH CONTRAST DAY & NIGHT MODE STYLES FOR AI AGENT */

/* Night / Dark Mode Default Contrast Fixes */
.ai-chat-box {
  background: rgba(16, 16, 22, 0.98);
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.ai-chat-header {
  background: #181822;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.ai-chat-title {
  color: #ffffff !important;
}

.ai-chat-subtitle {
  color: #ebd49b !important;
}

.ai-msg.bot .ai-msg-bubble {
  background: #242432 !important;
  color: #f3f4f6 !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.ai-msg.user .ai-msg-bubble {
  background: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%) !important;
  color: #0b0b0d !important;
  font-weight: 700 !important;
}

.ai-pill-btn {
  background: rgba(212, 175, 55, 0.14) !important;
  border: 1px solid rgba(212, 175, 55, 0.45) !important;
  color: #ffffff !important;
  font-weight: 600 !important;
}

.ai-pill-btn:hover {
  background: rgba(212, 175, 55, 0.35) !important;
  color: #ffffff !important;
}

.ai-chat-input {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
  color: #ffffff !important;
}

.ai-chat-input::placeholder {
  color: #bbbbbb !important;
  opacity: 1 !important;
}

.ai-rug-card-recommend {
  background: #181822 !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
}

.ai-rug-card-info h5 {
  color: #ffffff !important;
}

.ai-rug-card-info p {
  color: #d1d5db !important;
}

/* Day / Light Mode Contrast Fixes (html[data-theme="light"]) */
html[data-theme="light"] .ai-chat-box {
  background: #ffffff !important;
  border: 1px solid rgba(184, 134, 11, 0.35) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25) !important;
}

html[data-theme="light"] .ai-chat-header {
  background: #f7f3ec !important;
  border-bottom: 1px solid rgba(184, 134, 11, 0.25) !important;
}

html[data-theme="light"] .ai-chat-title {
  color: #261a10 !important;
}

html[data-theme="light"] .ai-chat-subtitle {
  color: #7a5200 !important;
  font-weight: 600 !important;
}

html[data-theme="light"] .ai-ctrl-btn {
  background: #ebdcc9 !important;
  color: #261a10 !important;
  border: 1px solid rgba(184, 134, 11, 0.3) !important;
}

html[data-theme="light"] .ai-msg.bot .ai-msg-bubble {
  background: #f4efe8 !important;
  color: #1a140e !important;
  border: 1px solid rgba(184, 134, 11, 0.2) !important;
  font-weight: 500 !important;
}

html[data-theme="light"] .ai-msg.user .ai-msg-bubble {
  background: linear-gradient(135deg, #5e1a18 0%, #3e100f 100%) !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 12px rgba(94, 26, 24, 0.25) !important;
}

html[data-theme="light"] .ai-pill-btn {
  background: #f5ede0 !important;
  border: 1px solid #d4b06a !important;
  color: #3b2817 !important;
  font-weight: 600 !important;
}

html[data-theme="light"] .ai-pill-btn:hover {
  background: #ebd4a8 !important;
  color: #1a120a !important;
}

html[data-theme="light"] .ai-chat-footer {
  background: #f7f3ec !important;
  border-top: 1px solid rgba(184, 134, 11, 0.25) !important;
}

html[data-theme="light"] .ai-chat-input {
  background: #ffffff !important;
  border: 1px solid #d4c5ab !important;
  color: #1a140e !important;
}

html[data-theme="light"] .ai-chat-input::placeholder {
  color: #555555 !important;
  opacity: 1 !important;
}

html[data-theme="light"] .ai-rug-card-recommend {
  background: #faf7f2 !important;
  border: 1px solid rgba(184, 134, 11, 0.3) !important;
}

html[data-theme="light"] .ai-rug-card-info h5 {
  color: #261a10 !important;
}

html[data-theme="light"] .ai-rug-card-info p {
  color: #4a3b2c !important;
}

html[data-theme="light"] .ai-card-act-btn {
  background: #f0e4d0 !important;
  color: #694600 !important;
  border: 1px solid #d4b06a !important;
}

html[data-theme="light"] .ai-card-act-btn:hover {
  background: #5e1a18 !important;
  color: #ffffff !important;
}


/* ==================== CONTACT SECTION SYMMETRIC ARCHITECTURE ==================== */
.contact-info-box,
#consultationForm {
  background: var(--surface-bg, rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(200, 160, 78, 0.3);
  border-radius: 18px !important;
  padding: 32px 28px !important;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
}

[data-theme="light"] .contact-info-box,
[data-theme="light"] #consultationForm {
  background: #ffffff !important;
  border: 1px solid rgba(184, 134, 11, 0.28) !important;
  box-shadow: 0 12px 36px rgba(184, 134, 11, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

.contact-info-box h2,
#consultationForm h2 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
  min-height: 36px !important;
  display: flex !important;
  align-items: center !important;
  font-size: 26px !important;
  line-height: 1.2 !important;
}

body:not(.en) .contact-info-box h2,
body:not(.en) #consultationForm h2 {
  text-align: right !important;
  justify-content: flex-start !important;
  direction: rtl !important;
}

body.en .contact-info-box h2,
body.en #consultationForm h2 {
  text-align: left !important;
  justify-content: flex-start !important;
  direction: ltr !important;
}

.form-subtitle-note {
  font-size: 13.5px !important;
  opacity: 0.88 !important;
  line-height: 1.65 !important;
  margin-top: 12px !important;
  margin-bottom: 20px !important;
  border-top: 1px dashed rgba(200, 160, 78, 0.25) !important;
  border-bottom: 1px dashed rgba(200, 160, 78, 0.25) !important;
  padding-top: 12px !important;
  padding-bottom: 14px !important;
  min-height: 72px !important;
  display: flex !important;
  align-items: center !important;
  box-sizing: border-box !important;
}

body:not(.en) .form-subtitle-note {
  text-align: right !important;
  direction: rtl !important;
  justify-content: flex-start !important;
}

body.en .form-subtitle-note {
  text-align: left !important;
  direction: ltr !important;
  justify-content: flex-start !important;
}

/* Two-column grid row inside the consultation form */
#consultationForm .f2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}

@media (max-width: 640px) {
  #consultationForm .f2 {
    grid-template-columns: 1fr;
  }
  #consultationForm {
    padding: 20px 16px;
  }
}

#consultationForm .fg {
  margin-bottom: 18px;
}

#consultationForm label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary, #3b2a1a);
}

#consultationForm input,
#consultationForm select,
#consultationForm textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: inherit;
  border-radius: 10px;
  border: 1.5px solid rgba(200, 160, 78, 0.3);
  background: rgba(255, 255, 255, 0.9);
  color: #1a140e;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

#consultationForm select {
  cursor: pointer;
  appearance: auto;

  /* Custom dropdown styling */
  background-image: none;
}

#consultationForm input:focus,
#consultationForm select:focus,
#consultationForm textarea:focus {
  border-color: var(--gold, #c8a04e) !important;
  box-shadow: 0 0 12px rgba(200, 160, 78, 0.35) !important;
  background: #ffffff !important;
}

#consultationForm textarea {
  min-height: 100px;
  resize: vertical;
}

#consultationForm button[type="submit"] {
  min-height: 52px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  margin-top: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#consultationForm button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 160, 78, 0.35);
}

/* Dark Theme Adjustments for Consultation Form */
html[data-theme="dark"] #consultationForm {
  background: rgba(22, 22, 28, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.35);
}

html[data-theme="dark"] #consultationForm label {
  color: #f0e6d2 !important;
}

html[data-theme="dark"] #consultationForm input,
html[data-theme="dark"] #consultationForm select,
html[data-theme="dark"] #consultationForm textarea {
  background: rgba(14, 14, 18, 0.9) !important;
  border: 1.5px solid rgba(212, 175, 55, 0.35) !important;
  color: #ffffff !important;
}

html[data-theme="dark"] #consultationForm select option {
  background: #181822;
  color: #ffffff;
}

html[data-theme="dark"] #consultationForm input:focus,
html[data-theme="dark"] #consultationForm select:focus,
html[data-theme="dark"] #consultationForm textarea:focus {
  border-color: #d4af37 !important;
  background: #1f1f2a !important;
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.4) !important;
}

/* Mobile Responsive Consultation Form */
@media (max-width: 768px) {
  #consultationForm {
    padding: 20px 14px;
    border-radius: 14px;
  }

  #consultationForm h2 {
    margin-bottom: 16px;
  }

  #consultationForm input,
  #consultationForm select,
  #consultationForm textarea {
    min-height: 46px;
    font-size: 13.5px;
    padding: 10px 12px;
  }

  #dialCode {
    width: 105px !important;
    font-size: 12px !important;
    padding: 10px 6px !important;
  }
}



/* ══════════════════════════════════════════════════════════════════════
   CONTACT SECTION  —  Premium equal-height two-column layout
══════════════════════════════════════════════════════════════════════ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 32px;
  align-items: stretch;
}

/* ── Shared box shell (both left and right columns) ─────────────────── */
#contact .form-box:first-child,
.contact-info-box,
#consultationForm {
  border-radius: 20px;
  border: 1.5px solid rgba(200, 160, 78, 0.3);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

/* ── Left contact info box ──────────────────────────────────────────── */
#contact .form-box:first-child,
.contact-info-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 30px 28px;
  background: linear-gradient(145deg, rgba(25, 20, 16, 0.03) 0%, rgba(200, 160, 78, 0.04) 100%);
}

#contact .form-box:first-child:hover,
.contact-info-box:hover,
#consultationForm:hover {
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.28);
  border-color: rgba(200, 160, 78, 0.52);
}

/* ── Section heading inside contact box ─────────────────────────────── */
#contact .form-box:first-child .sec-h2 {
  margin-bottom: 6px;
}

/* ── ci-cards wrapper ────────────────────────────────────────────────── */
.ci-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
  flex-grow: 1;
}

/* ── Individual contact info card ───────────────────────────────────── */
.ci-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 14px;
  border-radius: 12px;
  border: 1.5px solid rgba(200, 160, 78, 0.16);
  border-inline-start: 3px solid rgba(200, 160, 78, 0.35);
  background: linear-gradient(135deg, rgba(200, 160, 78, 0.04) 0%, transparent 100%);
  overflow: hidden;
  margin-bottom: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  text-decoration: none;
}
/* shimmer pseudo-element */
.ci-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.05) 50%, transparent 70%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.ci-card:hover::before {
  opacity: 1;
  animation: ci-shimmer 0.8s ease forwards;
}
@keyframes ci-shimmer {
  from { background-position: -100% 0; }
  to   { background-position: 200% 0; }
}
.ci-card:hover {
  border-color: rgba(200, 160, 78, 0.48);
  border-inline-start-color: var(--gold-dark, #c8a04e);
  background: linear-gradient(135deg, rgba(200, 160, 78, 0.10) 0%, rgba(200, 160, 78, 0.02) 100%);
  transform: translateX(3px);
  box-shadow: 0 6px 22px rgba(0,0,0,0.12), 0 0 16px rgba(200,160,78,0.10);
}
body.en .ci-card:hover { transform: translateX(-3px); }

.ci-card-featured {
  border-color: rgba(200, 160, 78, 0.32);
  border-inline-start: 3px solid var(--gold-dark, #c8a04e);
  background: linear-gradient(135deg, rgba(200, 160, 78, 0.09), rgba(200, 160, 78, 0.01));
  padding: 9px 14px;
}
.ci-card-featured:hover {
  transform: translateX(3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.14), 0 0 20px rgba(200,160,78,0.14);
}
body.en .ci-card-featured:hover { transform: translateX(-3px); }

/* ── Icon badge inside card ──────────────────────────────────────────── */
.ci-ico {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(200, 160, 78, 0.10);
  border: 1.5px solid rgba(200, 160, 78, 0.20);
  color: var(--gold-dark, #c8a04e);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
.ci-ico svg {
  width: 18px;
  height: 18px;
}
/* icon glow ring on hover */
.ci-ico::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 13px;
  opacity: 0;
  transition: opacity 0.3s ease;
  border: 1.5px solid currentColor;
}
.ci-card:hover .ci-ico::after { opacity: 0.35; }
.ci-card:hover .ci-ico {
  transform: scale(1.1) rotate(-4deg);
  border-color: currentColor;
}
.ci-ico svg {
  width: 20px; height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
  position: relative;
  z-index: 1;
}

/* ── Brand-specific icon colors ─────────────────────────────────────── */
.ci-ico--address {
  color: #c8a04e;
  background: rgba(200, 160, 78, 0.12);
  border-color: rgba(200, 160, 78, 0.28);
}
.ci-ico--phone {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.10);
  border-color: rgba(34, 197, 94, 0.22);
}
.ci-card:hover .ci-ico--phone { background: rgba(34, 197, 94, 0.20); border-color: rgba(34, 197, 94, 0.5); }
.ci-ico--email {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.10);
  border-color: rgba(245, 158, 11, 0.22);
}
.ci-card:hover .ci-ico--email { background: rgba(245, 158, 11, 0.20); border-color: rgba(245, 158, 11, 0.5); }
.ci-ico--telegram {
  color: #2aabee;
  background: rgba(42, 171, 238, 0.10);
  border-color: rgba(42, 171, 238, 0.22);
}
.ci-card:hover .ci-ico--telegram { background: rgba(42, 171, 238, 0.20); border-color: rgba(42, 171, 238, 0.5); }
.ci-ico--linkedin {
  color: #0a66c2;
  background: rgba(10, 102, 194, 0.10);
  border-color: rgba(10, 102, 194, 0.22);
}
.ci-card:hover .ci-ico--linkedin { background: rgba(10, 102, 194, 0.20); border-color: rgba(10, 102, 194, 0.5); }
.ci-ico--instagram {
  color: #e1306c;
  background: linear-gradient(135deg, rgba(253,185,58,0.12), rgba(225,48,108,0.12), rgba(130,58,180,0.12));
  border-color: rgba(225, 48, 108, 0.22);
}
.ci-card:hover .ci-ico--instagram {
  background: linear-gradient(135deg, rgba(253,185,58,0.22), rgba(225,48,108,0.22), rgba(130,58,180,0.22));
  border-color: rgba(225, 48, 108, 0.5);
}

/* ── Label & value text ──────────────────────────────────────────────── */
.ci-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-dark, #b8892a);
  margin-bottom: 2px;
  opacity: 0.85;
}
.ci-val {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}
.ci-val a, .address-link-wrapper {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.ci-val a:hover { color: var(--gold-dark, #c8a04e); }

.phone-val { letter-spacing: 0.4px; font-size: 12.5px; }
.phone-val a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 4px 0;
}
.ci-item-sep,
.phone-sep {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  margin: 0 8px;
  border-radius: 50%;
  background: rgba(200, 160, 78, 0.12);
  border: 1px solid rgba(200, 160, 78, 0.28);
  color: var(--gold-dark, #c8a04e);
  vertical-align: middle;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}
.ci-item-sep svg,
.phone-sep svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
  transition: transform 0.35s ease;
}
.ci-card:hover .ci-item-sep,
.ci-card:hover .phone-sep {
  background: rgba(200, 160, 78, 0.22);
  border-color: rgba(200, 160, 78, 0.6);
  color: #ffffff;
  transform: scale(1.18);
  box-shadow: 0 0 10px rgba(200, 160, 78, 0.35);
}
.ci-card:hover .ci-item-sep svg,
.ci-card:hover .phone-sep svg {
  transform: rotate(45deg);
}

html:not([data-theme="dark"]) .ci-item-sep,
html:not([data-theme="dark"]) .phone-sep {
  background: rgba(139, 26, 26, 0.08);
  border-color: rgba(139, 26, 26, 0.22);
  color: #8B1A1A;
}
html:not([data-theme="dark"]) .ci-card:hover .ci-item-sep,
html:not([data-theme="dark"]) .ci-card:hover .phone-sep {
  background: rgba(139, 26, 26, 0.16);
  border-color: #8B1A1A;
  color: #8B1A1A;
  box-shadow: 0 0 10px rgba(139, 26, 26, 0.25);
}

/* ── Arrow indicator ─────────────────────────────────────────────────── */
.ci-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(200, 160, 78, 0.07);
  border: 1.5px solid rgba(200, 160, 78, 0.16);
  color: var(--gold-dark, #c8a04e);
  opacity: 0.45;
  transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
  margin-inline-start: auto;
}
.ci-card:hover .ci-arrow {
  opacity: 1;
  background: rgba(200, 160, 78, 0.18);
  border-color: rgba(200, 160, 78, 0.42);
  transform: translate(-3px, -2px) scale(1.1);
}
body.en .ci-card:hover .ci-arrow { transform: translate(3px, -2px) scale(1.1); }

/* ── Address link wrapper ────────────────────────────────────────────── */
.address-link-wrapper {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

/* ── Location Map Box ────────────────────────────────────────────────── */
.contact-map-box {
  position: relative;
  width: 100%;
  height: 155px;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid rgba(200, 160, 78, 0.24);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  margin: 3px 0 5px;
}
.contact-map-box:hover {
  border-color: rgba(200, 160, 78, 0.5);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.18);
}
.contact-map-box iframe {
  width: 100%; height: 100%; border: 0; display: block;
}
.map-overlay-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 30px;
  background: rgba(14, 10, 6, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ebd49b;
  border: 1px solid rgba(200, 160, 78, 0.38);
  text-decoration: none;
  transition: all 0.25s ease;
  z-index: 2;
  letter-spacing: 0.3px;
}
body.en .map-overlay-badge { left: auto; right: 8px; }
.map-overlay-badge:hover {
  background: rgba(200, 160, 78, 0.95);
  color: #1a140e;
  border-color: #c8a04e;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(200,160,78,0.35);
}

/* ── Right box: Consultation Form ──────────────────────────────────── */
#consultationForm {
  display: flex;
  flex-direction: column;
  padding: 28px 26px;
}

/* Form title */
#consultationForm h2 {
  margin: 0 0 6px 0;
  line-height: 1.35;
}

/* Subtitle note under title */
.form-subtitle-note {
  font-size: 13px !important;
  line-height: 1.65 !important;
  opacity: 0.82;
  margin-bottom: 18px !important;
  padding-bottom: 14px !important;
  border-bottom: 1px dashed rgba(200,160,78,0.22) !important;
}

/* Quick-preset chips */
.inquiry-presets-row {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 7px !important;
  margin-bottom: 18px !important;
}
.preset-tag {
  font-size: 11.5px !important;
  padding: 5px 13px !important;
  background: rgba(200,160,78,0.07) !important;
  border: 1px solid rgba(200,160,78,0.22) !important;
  border-radius: 50px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  font-weight: 600;
  color: var(--gold-dark, #b8892a);
  user-select: none;
}
.preset-tag:hover {
  background: rgba(200,160,78,0.2) !important;
  border-color: rgba(200,160,78,0.55) !important;
  transform: translateY(-1px);
}
.preset-tag:active { transform: scale(0.97); }

/* Two-column field row */
#consultationForm .f2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Field group */
#consultationForm .fg {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}

#consultationForm label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
  color: var(--gold-dark, #b8892a);
  text-transform: uppercase;
}

#consultationForm input,
#consultationForm select,
#consultationForm textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  border-radius: 10px;
  border: 1.5px solid rgba(200, 160, 78, 0.28);
  background: rgba(255, 255, 255, 0.95);
  color: #1a140e;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}
#consultationForm input:focus,
#consultationForm select:focus,
#consultationForm textarea:focus {
  border-color: var(--gold, #c8a04e) !important;
  box-shadow: 0 0 0 3px rgba(200,160,78,0.15), 0 4px 12px rgba(200,160,78,0.2) !important;
  background: #ffffff !important;
}
#consultationForm textarea {
  min-height: 96px;
  resize: vertical;
  line-height: 1.6;
}

/* Dial code + phone row */
#dialCode {
  width: 140px !important;
  flex-shrink: 0 !important;
  font-size: 12.5px !important;
  padding: 11px 8px !important;
}

/* Submit button */
#consultationForm button[type="submit"] {
  min-height: 52px;
  border-radius: 12px;
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  margin-top: 6px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
#consultationForm button[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(200, 160, 78, 0.45);
}

/* Trust note */
#consultationForm .form-trust-note {
  font-size: 11.5px;
  opacity: 0.72;
  text-align: center;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  line-height: 1.5;
}

/* ── Light mode ───────────────────────────────────────────────────── */
html[data-theme="light"] #contact .form-box:first-child,
html:not([data-theme="dark"]) #contact .form-box:first-child {
  background: #ffffff !important;
  border-color: rgba(184,134,11,0.2) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06) !important;
}
html[data-theme="light"] #consultationForm,
html:not([data-theme="dark"]) #consultationForm {
  background: #ffffff !important;
  border-color: rgba(184,134,11,0.25) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07) !important;
}
html[data-theme="light"] #consultationForm label,
html:not([data-theme="dark"]) #consultationForm label { color: #8b6318 !important; }
html[data-theme="light"] #consultationForm input,
html[data-theme="light"] #consultationForm select,
html[data-theme="light"] #consultationForm textarea,
html:not([data-theme="dark"]) #consultationForm input,
html:not([data-theme="dark"]) #consultationForm select,
html:not([data-theme="dark"]) #consultationForm textarea {
  background: #faf8f5 !important;
  border-color: #d4c5ab !important;
  color: #1a140e !important;
}
html:not([data-theme="dark"]) #consultationForm input::placeholder,
html:not([data-theme="dark"]) #consultationForm textarea::placeholder { color: #888 !important; }

html:not([data-theme="dark"]) .ci-card {
  background: rgba(253, 250, 246, 0.9);
  border-color: rgba(200, 160, 78, 0.2);
}
html:not([data-theme="dark"]) .ci-card:hover {
  background: rgba(253, 248, 238, 1);
}
html:not([data-theme="dark"]) .ci-ico {
  background: rgba(200, 160, 78, 0.10) !important;
  border-color: rgba(200, 160, 78, 0.22) !important;
}
html:not([data-theme="dark"]) .ci-label { color: #8b6318 !important; }
html:not([data-theme="dark"]) .ci-val { color: #1a140e; }

/* ── Dark mode ────────────────────────────────────────────────────── */
html[data-theme="dark"] #contact .form-box:first-child {
  background: rgba(14, 12, 18, 0.95) !important;
  border-color: rgba(212,175,55,0.3) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5) !important;
}
html[data-theme="dark"] #consultationForm {
  background: rgba(16,14,20,0.96) !important;
  border-color: rgba(212,175,55,0.38) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55) !important;
}
html[data-theme="dark"] #consultationForm label { color: #f3e8d2 !important; }
html[data-theme="dark"] #consultationForm input,
html[data-theme="dark"] #consultationForm select,
html[data-theme="dark"] #consultationForm textarea {
  background: rgba(12,12,18,0.88) !important;
  border-color: rgba(212,175,55,0.3) !important;
  color: #ffffff !important;
}
html[data-theme="dark"] #consultationForm select option {
  background: #181822 !important;
  color: #ffffff !important;
}
html[data-theme="dark"] .ci-card {
  background: rgba(20,16,12,0.75);
  border-color: rgba(200,160,78,0.18);
}
html[data-theme="dark"] .ci-card:hover {
  background: rgba(28,22,15,0.9);
  border-color: rgba(200,160,78,0.4);
}
html[data-theme="dark"] .ci-ico {
  background: rgba(200, 160, 78, 0.12) !important;
  border-color: rgba(200, 160, 78, 0.25) !important;
}

/* ── Contact & Consultation Typography Refinements ────────────────────── */

/* Base font-family mappings for language blocks */
.block-fa, .block-fa *, 
body:not(.en) #consultationForm *, 
body:not(.en) #contact .sec-label, 
body:not(.en) #contact .sec-h2, 
body:not(.en) #contact .sec-sub,
body:not(.en) #consultationForm h2,
body:not(.en) #consultationForm .form-subtitle-note,
body:not(.en) #consultationForm label,
body:not(.en) #consultationForm input,
body:not(.en) #consultationForm select,
body:not(.en) #consultationForm textarea,
body:not(.en) #consultationForm button {
  font-family: var(--font-fa), sans-serif;
}

body.en #contact .sec-label,
body.en #contact .sec-sub,
body.en #consultationForm h3,
body.en #consultationForm .form-subtitle-note,
body.en #consultationForm label,
body.en #consultationForm input,
body.en #consultationForm select,
body.en #consultationForm textarea,
body.en #consultationForm button {
  font-family: var(--font-en), sans-serif;
}

/* Specific heading styling adjustments removed to match base h2.sec-h2 styling */

/* Subtitle and note alignment */
#contact .sec-sub,
#consultationForm .form-subtitle-note {
  font-size: 13.5px !important;
  font-weight: 400 !important;
  opacity: 0.85 !important;
}
body:not(.en) #contact .sec-sub,
body:not(.en) #consultationForm .form-subtitle-note {
  line-height: 1.75 !important;
}
body.en #contact .sec-sub,
body.en #consultationForm .form-subtitle-note {
  line-height: 1.6 !important;
  letter-spacing: 0.15px !important;
}

/* Gold label styling for both cards and form */
#contact .ci-label,
#consultationForm label {
  font-size: 11px !important;
  font-weight: 700 !important;
  color: var(--gold-dark, #b8892a) !important;
}
body.en #contact .ci-label,
body.en #consultationForm label {
  font-family: var(--font-en), sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
}
body:not(.en) #contact .ci-label,
body:not(.en) #consultationForm label {
  font-family: var(--font-fa), sans-serif !important;
  font-size: 12px !important;
  letter-spacing: 0 !important;
}

/* Day theme colors for labels to ensure premium golden branding */
html:not([data-theme="dark"]) #contact .ci-label,
html:not([data-theme="dark"]) #consultationForm label {
  color: #8b6318 !important;
}
/* Night theme colors for labels */
html[data-theme="dark"] #contact .ci-label,
html[data-theme="dark"] #consultationForm label {
  color: #ebd49b !important;
}

/* Force English/Latin font & LTR direction for specific fields (phone, handles, emails) */
#contact .ci-val a,
#contact .phone-val,
#contact .phone-val a,
#contact .phone-val span,
#consultationForm input[type="email"],
#consultationForm input[type="tel"],
#consultationForm select#dialCode,
#consultationForm input#zipCode {
  font-family: var(--font-en), sans-serif !important;
  direction: ltr !important;
  unicode-bidi: embed !important;
  letter-spacing: 0.5px !important;
}

/* Preset chips text sizing */
#consultationForm .preset-tag {
  font-size: 11.5px !important;
  font-weight: 600 !important;
}
body.en #consultationForm .preset-tag {
  font-family: var(--font-en), sans-serif !important;
  letter-spacing: 0.2px !important;
}
body:not(.en) #consultationForm .preset-tag {
  font-family: var(--font-fa), sans-serif !important;
}

/* Form inputs & placeholders */
#consultationForm input,
#consultationForm select,
#consultationForm textarea {
  font-size: 13.5px !important;
  font-weight: 500 !important;
}
#consultationForm input::placeholder,
#consultationForm textarea::placeholder {
  font-size: 13px !important;
  font-weight: 400 !important;
}

/* Submit button styling */
#consultationForm button[type="submit"] {
  font-size: 14.5px !important;
}
body.en #consultationForm button[type="submit"] {
  font-family: var(--font-en), sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
}
body:not(.en) #consultationForm button[type="submit"] {
  font-family: var(--font-fa), sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
}

/* Trust note styling */
#consultationForm .form-trust-note,
#consultationForm div[style*="font-size: 12px"] {
  font-size: 11.5px !important;
  opacity: 0.78 !important;
}
body.en #consultationForm .form-trust-note,
body.en #consultationForm div[style*="font-size: 12px"] {
  font-family: var(--font-en), sans-serif !important;
  line-height: 1.55 !important;
  letter-spacing: 0.1px !important;
}
body:not(.en) #consultationForm .form-trust-note,
body:not(.en) #consultationForm div[style*="font-size: 12px"] {
  font-family: var(--font-fa), sans-serif !important;
  line-height: 1.7 !important;
}

/* ── Mobile (≤768px) ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: unset;
  }
  #contact .form-box:first-child,
  #consultationForm {
    padding: 26px 20px;
    border-radius: 16px;
  }
  .ci-social-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .contact-map-box {
    height: 350px;
  }
  #consultationForm .f2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  #dialCode { width: 115px !important; }
  #consultationForm h2 {
    text-align: center !important;
  }
  .inquiry-presets-row { justify-content: center !important; }
}
