/* ============================================================
   AHSANKIDS — premium wholesale kidswear frontend
   Clean, bright B2B factory catalogue aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&family=Noto+Sans+Arabic:wght@300;400;500;600&display=swap');

/* ── Design Tokens ── */
:root {
  /* Core palette — clean warm ivory, enterprise-neutral */
  --bg-0: #fafaf8;
  --bg-1: #ffffff;
  --bg-2: #f4f8fa;
  --bg-3: #f6f9f6;

  /* Accent: brass / antique-gold spectrum — premium, textile-industry feel */
  --gold-100: #faf3e3;
  --gold-200: #eccd85;
  --gold-300: #c9992e;
  --gold-400: #a97918;
  --gold-500: #7a5710;

  /* Accent: deep steel-teal spectrum */
  --cyan-100: #e2eef4;
  --cyan-200: #9dc4d6;
  --cyan-300: #2f7a94;
  --cyan-400: #1c5c72;

  /* Glass surfaces */
  --glass-white: rgba(255, 255, 255, 0.72);
  --glass-white-h: rgba(255, 255, 255, 0.92);
  --glass-gold: rgba(201, 153, 46, 0.10);
  --glass-gold-h: rgba(201, 153, 46, 0.18);
  --glass-cyan: rgba(47, 122, 148, 0.10);
  --border-white: rgba(28, 38, 54, 0.10);
  --border-gold: rgba(201, 153, 46, 0.28);
  --border-cyan: rgba(47, 122, 148, 0.25);

  /* Text */
  --text-100: #1f2937;
  --text-60: rgba(31, 41, 55, 0.68);
  --text-40: rgba(31, 41, 55, 0.46);
  --text-20: rgba(31, 41, 55, 0.25);

  /* Text-on-dark — for content sitting on the dark hero/page-hero bands
     (see .hero, .page-hero). --text-* above is tuned for the bright body
     sections and is unreadable on those dark surfaces. */
  --text-on-dark-100: rgba(255, 255, 255, 0.96);
  --text-on-dark-70: rgba(255, 255, 255, 0.74);
  --text-on-dark-50: rgba(255, 255, 255, 0.52);
  --text-on-dark-30: rgba(255, 255, 255, 0.32);

  /* Glow / shadow */
  --glow-gold: 0 18px 44px rgba(201, 153, 46, 0.18);
  --glow-cyan: 0 18px 44px rgba(47, 122, 148, 0.16);
  --shadow-card: 0 20px 60px rgba(31, 41, 55, 0.12), 0 4px 16px rgba(31, 41, 55, 0.08);
  --shadow-lg: 0 40px 100px rgba(31, 41, 55, 0.16);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui: 'DM Sans', system-ui, sans-serif;
  --font-arabic: 'Noto Sans Arabic', 'DM Sans', sans-serif;

  /* Layout */
  --nav-h: 72px;
  --max-w: 1320px;
  --px: clamp(1.25rem, 4vw, 3.5rem);
  --section-y: clamp(5rem, 9vw, 8rem);

  /* Radius */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-2xl: 48px;

  /* Easing */
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased
}

body {
  background: var(--bg-0);
  color: var(--text-100);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}

body[dir="rtl"] {
  font-family: var(--font-arabic);
}

a {
  color: inherit;
  text-decoration: none
}

ul {
  list-style: none
}

img {
  display: block;
  max-width: 100%
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit
}

input, textarea, select {
  font-family: inherit
}

/* ── Vivid background system ── */
.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Large radial blobs — bright but not white */
.bg-canvas::before {
  content: '';
  position: absolute;
  width: 1200px;
  height: 900px;
  top: -200px;
  left: -300px;
  background: radial-gradient(ellipse at center,
  rgba(201, 153, 46, 0.18) 0%,
  rgba(47, 122, 148, 0.10) 40%,
  transparent 70%);
  animation: bgBlob1 20s ease-in-out infinite;
}

.bg-canvas::after {
  content: '';
  position: absolute;
  width: 900px;
  height: 900px;
  bottom: -200px;
  right: -200px;
  background: radial-gradient(ellipse at center,
  rgba(47, 122, 148, 0.15) 0%,
  rgba(134, 239, 172, 0.10) 45%,
  transparent 70%);
  animation: bgBlob2 25s ease-in-out infinite;
}

@keyframes bgBlob1 {
  0%, 100% {
    transform: translate(0, 0) scale(1)
  }
  50% {
    transform: translate(120px, 80px) scale(1.15)
  }
}

@keyframes bgBlob2 {
  0%, 100% {
    transform: translate(0, 0) scale(1)
  }
  50% {
    transform: translate(-80px, -60px) scale(1.10)
  }
}

/* Extra mid blob */
.bg-mid-blob {
  position: fixed;
  width: 600px;
  height: 600px;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(201, 153, 46, 0.08) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  animation: bgBlob3 30s ease-in-out infinite;
}

@keyframes bgBlob3 {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1)
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2)
  }
}

/* Aurora sheen — slow rotating conic gradient for a premium "living light" feel */
.bg-aurora {
  position: fixed;
  inset: -25% -15%;
  z-index: 0;
  pointer-events: none;
  background: conic-gradient(from 0deg at 50% 38%,
  rgba(201, 153, 46, 0.12), rgba(47, 122, 148, 0.10), rgba(169, 121, 24, 0.09),
  rgba(157, 196, 214, 0.10), rgba(236, 205, 133, 0.11), rgba(201, 153, 46, 0.12));
  filter: blur(90px) saturate(125%);
  opacity: .5;
  animation: auroraSpin 70s linear infinite;
  transform-origin: 50% 50%;
}

@keyframes auroraSpin {
  from {
    transform: rotate(0deg)
  }
  to {
    transform: rotate(360deg)
  }
}

/* Cursor-reactive spotlight — a soft light that follows the pointer, plus a gentle
   scroll-linked drift so the whole ambient layer feels alive rather than static. */
.bg-spotlight {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(480px circle at var(--mx, 50%) var(--my, 28%),
  rgba(201, 153, 46, 0.14), rgba(47, 122, 148, 0.06) 45%, transparent 68%);
  transform: translateY(var(--bg-shift, 0px));
  will-change: transform;
}

/* Sparkle particle canvas — a handful of drifting golden motes, drawn in JS */
.bg-sparkles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: 100%
}

@media (prefers-reduced-motion: reduce) {
  .bg-aurora, .bg-canvas::before, .bg-canvas::after, .bg-mid-blob {
    animation: none !important
  }

  .bg-sparkles {
    display: none
  }

  .bg-spotlight {
    transition: none;
    transform: none
  }
}

@media (max-width: 640px) {
  .bg-aurora {
    opacity: .32
  }
}

/* Grid lines overlay */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(31, 41, 55, 0.035) 1px, transparent 1px),
  linear-gradient(90deg, rgba(31, 41, 55, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* Noise grain */
.bg-noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.page-wrapper {
  position: relative;
  z-index: 1
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px)
}

/* ── Glass mixins ── */
.glass {
  background: var(--glass-white);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-white);
  border-radius: var(--r-lg);
}

.glass-gold {
  background: var(--glass-gold);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-lg);
}

.glass-cyan {
  background: var(--glass-cyan);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-cyan);
  border-radius: var(--r-lg);
}

/* ============================================================
   NAVBAR
   ============================================================ */
/* ── Scroll progress ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 1001;
  background: rgba(31, 41, 55, 0.06);
  pointer-events: none;
}

.scroll-progress-fill {
  height: 100%;
  width: 0%;
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold-300), var(--cyan-300), var(--gold-400));
  background-size: 200% 100%;
  box-shadow: 0 0 12px rgba(201, 153, 46, 0.5);
  transition: width .12s linear;
  animation: progressSheen 6s linear infinite;
}

@keyframes progressSheen {
  0% {
    background-position: 0% 0
  }
  100% {
    background-position: 200% 0
  }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 var(--px);
  transition: background .4s var(--ease), backdrop-filter .4s, box-shadow .4s;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 1px 0 rgba(31, 41, 55, 0.08), 0 8px 32px rgba(31, 41, 55, 0.10);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
  cursor: pointer
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: .04em;
  background: linear-gradient(135deg, #ffffff, var(--gold-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: background .3s;
}

.navbar.scrolled .nav-logo-name {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  -webkit-background-clip: text;
  background-clip: text;
}

.nav-logo-sub {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-200);
  -webkit-text-fill-color: var(--gold-200);
  transition: color .3s;
}

.navbar.scrolled .nav-logo-sub {
  color: var(--gold-400);
  -webkit-text-fill-color: var(--gold-400)
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: .15rem
}

.nav-link {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.84);
  padding: .45rem 1rem;
  border-radius: var(--r-sm);
  transition: color .3s, background .15s;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12)
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background: var(--gold-200);
  border-radius: 2px;
}

.navbar.scrolled .nav-link {
  color: var(--text-60)
}

.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active {
  color: var(--text-100);
  background: rgba(31, 41, 55, 0.06)
}

.navbar.scrolled .nav-link.active::after {
  background: var(--gold-300)
}

/* Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: .75rem
}

/* Lang switcher */
.lang-sw {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 100px;
  padding: 3px;
  backdrop-filter: blur(12px);
  transition: background .3s, border-color .3s;
}

.lang-btn {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, 0.68);
  padding: .28rem .65rem;
  border-radius: 100px;
  transition: all .15s;
  cursor: pointer;
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-200));
  color: #fff;
}

.lang-btn:hover:not(.active) {
  color: #fff;
  background: rgba(255, 255, 255, 0.14)
}

.navbar.scrolled .lang-sw {
  background: rgba(31, 41, 55, 0.04);
  border-color: var(--border-white)
}

.navbar.scrolled .lang-btn {
  color: var(--text-40)
}

.navbar.scrolled .lang-btn:hover:not(.active) {
  color: var(--text-100);
  background: rgba(31, 41, 55, 0.06)
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .35s, background .3s
}

.navbar.scrolled .hamburger span {
  background: var(--text-100)
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
  opacity: 0
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(32px);
  border-bottom: 1px solid var(--border-white);
  padding: 1.5rem var(--px) 2.5rem;
  transform: translateY(-110%);
  transition: transform .4s var(--ease);
  z-index: 999;
}

.mobile-nav.open {
  transform: translateY(0)
}

.mobile-nav .nav-link {
  display: block;
  font-size: 1rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--border-white);
  color: var(--text-100)
}

.mobile-nav .nav-link:hover, .mobile-nav .nav-link.active {
  color: var(--gold-400);
  background: none
}

.mobile-nav .lang-btn {
  color: var(--text-40)
}

.mobile-nav .lang-btn:hover:not(.active) {
  color: var(--text-100);
  background: rgba(31, 41, 55, 0.06)
}

.mobile-nav .lang-sw {
  background: rgba(31, 41, 55, 0.04);
  border-color: var(--border-white)
}

/* ── Buttons ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold-200) 0%, var(--gold-300) 60%, var(--gold-400) 100%);
  padding: .85rem 2rem;
  border-radius: 100px;
  box-shadow: 0 6px 28px rgba(201, 153, 46, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: all .3s var(--ease);
  cursor: pointer;
  border: none;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -60%;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  transition: left .65s var(--ease);
}

.btn-gold:hover::before {
  left: 130%
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 153, 46, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.25)
}

.btn-gold:active {
  transform: translateY(0)
}

.btn-gold svg {
  width: 15px;
  height: 15px;
  transition: transform .2s var(--ease-spring);
  position: relative
}

.btn-gold span {
  position: relative
}

.btn-gold:hover svg {
  transform: translateX(3px)
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--text-60);
  padding: .85rem 1.75rem;
  border-radius: 100px;
  border: 1px solid var(--border-white);
  backdrop-filter: blur(12px);
  transition: all .2s;
}

.btn-outline:hover {
  color: var(--text-100);
  border-color: var(--border-gold);
  background: var(--glass-gold)
}

.btn-cyan {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--cyan-200), var(--cyan-300));
  padding: .85rem 2rem;
  border-radius: 100px;
  box-shadow: 0 6px 28px rgba(47, 122, 148, 0.28);
  transition: all .3s var(--ease);
  border: none;
  cursor: pointer;
}

.btn-cyan:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(47, 122, 148, 0.40)
}

/* ── Section labels ── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 1rem;
}

.tag::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--gold-300);
  flex-shrink: 0
}

.tag.cyan-tag {
  color: var(--cyan-200)
}

.tag.cyan-tag::before {
  background: var(--cyan-200)
}

[dir=rtl] .tag::before {
  display: none
}

[dir=rtl] .tag::after {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--gold-300);
  flex-shrink: 0
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.01em;
}

.section-title em {
  font-style: italic;
  color: var(--gold-300)
}

.section-title .cyan {
  color: var(--cyan-200);
  font-style: italic
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .9s var(--ease), transform .9s var(--ease)
}

.reveal.in {
  opacity: 1;
  transform: none
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .9s var(--ease), transform .9s var(--ease)
}

.reveal-left.in {
  opacity: 1;
  transform: none
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .9s var(--ease), transform .9s var(--ease)
}

.reveal-right.in {
  opacity: 1;
  transform: none
}

.delay-1 {
  transition-delay: .1s
}

.delay-2 {
  transition-delay: .2s
}

.delay-3 {
  transition-delay: .3s
}

.delay-4 {
  transition-delay: .4s
}

.delay-5 {
  transition-delay: .5s
}

/* ── Animate in (hero) ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }
  to {
    opacity: 1;
    transform: none
  }
}

.anim {
  animation: fadeUp .8s var(--ease) both
}

.anim-1 {
  animation-delay: .1s
}

.anim-2 {
  animation-delay: .22s
}

.anim-3 {
  animation-delay: .36s
}

.anim-4 {
  animation-delay: .52s
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 4rem) var(--px) 5rem;
}

/* Large hero background image */
.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80') center/cover no-repeat;
  filter: brightness(.18) saturate(1.2);
  transform: scale(1.02);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.02)
  }
  to {
    transform: scale(1.07)
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
      135deg,
      rgba(3, 8, 16, 0.85) 0%,
      rgba(6, 15, 30, 0.6) 50%,
      rgba(47, 122, 148, 0.05) 100%
  );
}

.hero-overlay-gold {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 70% 70% at 80% 30%, rgba(201, 153, 46, 0.12) 0%, transparent 60%);
}

/* Decorative SVG lines */
.hero-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns:1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--gold-300)
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 1.5rem;
}

.hero-h1 .line-gold {
  font-style: italic;
  background: linear-gradient(90deg, var(--gold-100), var(--gold-300), var(--gold-200), var(--gold-400), var(--gold-100));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 8s ease-in-out infinite;
}

@keyframes goldShimmer {
  0%, 100% {
    background-position: 0% 50%
  }
  50% {
    background-position: 100% 50%
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-h1 .line-gold {
    animation: none
  }
}

.hero-h1 .line-cyan {
  font-style: italic;
  color: var(--cyan-200);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-on-dark-70);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 2.5rem
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 3rem
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.stat .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-200), var(--gold-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat .lbl {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-on-dark-50);
  margin-top: .3rem
}

/* Hero right visual */
.hero-gallery {
  position: relative;
  height: 520px
}

.hero-img-main {
  position: absolute;
  top: 0;
  left: 0;
  right: 40px;
  bottom: 80px;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-card), var(--glow-gold);
}

.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease
}

.hero-img-main:hover img {
  transform: scale(1.06)
}

.hero-img-sm1 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 180px;
  height: 220px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-cyan);
  box-shadow: var(--shadow-card), var(--glow-cyan);
  animation: floatY 6s ease-in-out infinite;
}

.hero-img-sm1 img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

@keyframes floatY {
  0%, 100% {
    transform: translateY(0)
  }
  50% {
    transform: translateY(-14px)
  }
}

.hero-badge {
  position: absolute;
  top: 20px;
  right: 50px;
  background: var(--glass-gold);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  text-align: center;
  animation: floatY 8s ease-in-out infinite reverse;
  box-shadow: var(--glow-gold);
}

.hero-badge .big {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-200);
  line-height: 1
}

.hero-badge .small {
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-on-dark-70);
  margin-top: .25rem
}

/* ============================================================
   IMAGE GALLERY SECTION
   ============================================================ */
.gallery-section {
  padding: var(--section-y) var(--px)
}

.gallery-inner {
  max-width: var(--max-w);
  margin: 0 auto
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Masonry-style grid */
.gallery-grid {
  display: grid;
  grid-template-columns:repeat(12, 1fr);
  grid-template-rows:repeat(3, 200px);
  gap: 12px;
}

.g-item {
  overflow: hidden;
  border-radius: var(--r-md);
  position: relative;
  cursor: pointer;
  border: 1px solid var(--border-white);
  transition: transform .4s var(--ease), box-shadow .4s;
}

.gallery-grid {
  perspective: 1400px
}

.g-item {
  transform-style: preserve-3d
}

.g-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--border-gold)
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease)
}

.g-item:hover img {
  transform: scale(1.08)
}

.g-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 8, 16, 0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.g-item:hover .g-item-overlay {
  opacity: 1
}

.g-item-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-200)
}

/* Grid placements */
.g-item:nth-child(1) {
  grid-column: 1/5;
  grid-row: 1/3
}

.g-item:nth-child(2) {
  grid-column: 5/8;
  grid-row: 1/2
}

.g-item:nth-child(3) {
  grid-column: 8/10;
  grid-row: 1/2
}

.g-item:nth-child(4) {
  grid-column: 10/13;
  grid-row: 1/3
}

.g-item:nth-child(5) {
  grid-column: 5/7;
  grid-row: 2/3
}

.g-item:nth-child(6) {
  grid-column: 7/10;
  grid-row: 2/4
}

.g-item:nth-child(7) {
  grid-column: 1/4;
  grid-row: 3/4
}

.g-item:nth-child(8) {
  grid-column: 4/7;
  grid-row: 3/4
}

.g-item:nth-child(9) {
  grid-column: 10/13;
  grid-row: 3/4
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg)
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass-white);
  border: 1px solid var(--border-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-100);
  cursor: pointer;
  transition: background .2s;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.15)
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--glass-gold);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--gold-200);
  transition: all .2s;
}

.lightbox-nav:hover {
  background: var(--glass-gold-h);
  box-shadow: var(--glow-gold)
}

.lightbox-prev {
  left: 1.5rem
}

.lightbox-next {
  right: 1.5rem
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  padding: var(--section-y) var(--px)
}

.about-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns:1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Left visual */
.about-vis {
  position: relative;
  height: 540px
}

.about-main-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 60px;
  bottom: 60px;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-card), var(--glow-gold);
}

.about-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.about-sm-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 240px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-cyan);
  box-shadow: var(--shadow-card);
  animation: floatY 7s ease-in-out infinite;
}

.about-sm-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.about-chip {
  position: absolute;
  top: 30px;
  right: 20px;
  background: var(--glass-gold);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  text-align: center;
  box-shadow: var(--glow-gold);
  animation: floatY 9s ease-in-out infinite reverse;
}

.about-chip .big {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-200);
  line-height: 1
}

.about-chip .sm {
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-on-dark-70);
  margin-top: .3rem
}

/* Features */
.about-feats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem
}

.feat-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  transition: all .25s;
}

.feat-row:hover {
  background: var(--glass-white);
  border-color: var(--border-white)
}

.feat-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: var(--r-sm);
  background: var(--glass-gold);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.feat-title {
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: .25rem
}

.feat-desc {
  font-size: .82rem;
  color: var(--text-60);
  line-height: 1.6
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products-section {
  padding: var(--section-y) var(--px)
}

.prod-header {
  max-width: var(--max-w);
  margin: 0 auto 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}

.prod-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns:repeat(3, 1fr);
  gap: 1.25rem;
}

.prod-empty-note {
  grid-column: 1/-1;
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-60);
  border: 1px dashed var(--border-white);
  border-radius: var(--r-lg);
}

.p-full-grid {
  perspective: 1400px
}

.prod-card {
  background: var(--glass-white);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all .35s var(--ease);
  cursor: pointer;
  transform-style: preserve-3d;
  group: true;
}

.prod-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), var(--glow-gold);
  animation: cardGlowPulse 2.6s ease-in-out infinite;
}

@keyframes cardGlowPulse {
  0%, 100% {
    box-shadow: var(--shadow-card), var(--glow-gold), 0 0 26px rgba(201, 153, 46, .22)
  }
  50% {
    box-shadow: var(--shadow-card), var(--glow-gold), 0 0 42px rgba(47, 122, 148, .26)
  }
}

@media (prefers-reduced-motion: reduce) {
  .prod-card:hover {
    animation: none
  }
}

.prod-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.prod-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease)
}

.prod-card:hover .prod-card-img img {
  transform: scale(1.07)
}

.prod-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 8, 16, 0.6) 0%, transparent 50%);
}

.prod-card-img-label {
  position: absolute;
  bottom: .75rem;
  left: 1rem;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-200);
}

.prod-card-body {
  padding: 1.5rem 1.5rem 1.75rem
}

.prod-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: .5rem;
}

.prod-card-desc {
  font-size: .82rem;
  color: var(--text-60);
  line-height: 1.6;
  margin-bottom: 1rem
}

.prod-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border-white);
  width: 100%;
  text-align: start;
}

button.prod-card-footer {
  cursor: pointer
}

button.prod-card-footer:hover .prod-min-val {
  color: var(--gold-400)
}

.prod-min-lbl {
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-20)
}

.prod-min-val {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  color: var(--gold-300)
}

.prod-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--glass-gold);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-200);
  font-size: .8rem;
  transition: all .2s var(--ease-spring);
}

.prod-card:hover .prod-arrow {
  background: var(--gold-300);
  color: var(--bg-0);
  transform: rotate(-45deg)
}

/* Featured card spans 2 cols */
.prod-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns:1.2fr 1fr;
}

.prod-card.featured .prod-card-img {
  height: 100%;
  min-height: 280px
}

.prod-card.featured .prod-card-title {
  font-size: 1.8rem
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-section {
  padding: var(--section-y) var(--px)
}

.process-inner {
  max-width: var(--max-w);
  margin: 0 auto
}

.process-header {
  text-align: center;
  margin-bottom: 4rem
}

.process-track {
  display: grid;
  grid-template-columns:repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-track::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-400), var(--gold-300), var(--gold-400), transparent);
  z-index: 0;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 1.4s var(--ease) .2s;
}

.process-track.in::before {
  transform: scaleX(1)
}

@media (prefers-reduced-motion: reduce) {
  .process-track::before {
    transition: none;
    transform: scaleX(1)
  }
}

.p-step {
  background: var(--glass-white);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-white);
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all .3s var(--ease);
}

.p-step:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .5), var(--glow-gold)
}

.p-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 6px 24px rgba(201, 153, 46, 0.45);
  animation: pNumPulse 3.5s ease-in-out infinite;
}

@keyframes pNumPulse {
  0%, 100% {
    box-shadow: 0 6px 24px rgba(201, 153, 46, 0.45)
  }
  50% {
    box-shadow: 0 6px 32px rgba(201, 153, 46, 0.65), 0 0 0 6px rgba(201, 153, 46, 0.08)
  }
}

@media (prefers-reduced-motion: reduce) {
  .p-num {
    animation: none
  }
}

.p-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .5rem
}

.p-desc {
  font-size: .8rem;
  color: var(--text-60);
  line-height: 1.6
}

/* ============================================================
   FABRIC / MATERIALS SHOWCASE
   ============================================================ */
.materials-section {
  padding: var(--section-y) var(--px)
}

.mat-inner {
  max-width: var(--max-w);
  margin: 0 auto
}

.mat-grid {
  display: grid;
  grid-template-columns:repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.mat-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-white);
  position: relative;
  height: 280px;
  cursor: pointer;
  transition: all .35s var(--ease);
}

.mat-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card)
}

.mat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease)
}

.mat-card:hover img {
  transform: scale(1.08)
}

.mat-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.25rem 1.25rem;
  background: linear-gradient(to top, rgba(3, 8, 16, .9) 0%, transparent 100%);
}

.mat-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .2rem;
  color: var(--text-on-dark-100)
}

.mat-detail {
  font-size: .7rem;
  letter-spacing: .1em;
  color: var(--gold-300);
  text-transform: uppercase
}

/* ============================================================
   STATS BELT
   ============================================================ */
.stats-belt {
  padding: 4rem var(--px);
  background: linear-gradient(135deg, var(--glass-gold), rgba(47, 122, 148, 0.04));
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  backdrop-filter: blur(12px);
}

.stats-belt-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns:repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.belt-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-100), var(--gold-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.belt-lbl {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-40);
  margin-top: .5rem
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  margin: 0 var(--px);
  padding: var(--section-y) 5rem;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 153, 46, 0.15) 0%, transparent 60%),
  radial-gradient(ellipse 60% 50% at 80% 100%, rgba(47, 122, 148, 0.10) 0%, transparent 60%),
  var(--glass-white);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--glow-gold);
}

.cta-band-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.cta-band-desc {
  font-size: 1rem;
  color: var(--text-60);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.75
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap
}

/* ============================================================
   TRUST / EXPORTS
   ============================================================ */
.trust-section {
  padding: var(--section-y) var(--px)
}

.trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .7rem 1.4rem;
  border-radius: 100px;
  background: var(--glass-white);
  border: 1px solid var(--border-white);
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-60);
  transition: all .2s;
}

.trust-pill:hover {
  border-color: var(--border-gold);
  color: var(--text-100);
  background: var(--glass-gold)
}

.trust-flag {
  font-size: 1rem
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-section {
  padding: var(--section-y) var(--px)
}

.testi-inner {
  max-width: var(--max-w);
  margin: 0 auto
}

.testi-grid {
  display: grid;
  grid-template-columns:repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem
}

.testi-card {
  background: var(--glass-white);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-white);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: all .3s;
}

.testi-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
  animation: testiGlowPulse 2.8s ease-in-out infinite
}

@keyframes testiGlowPulse {
  0%, 100% {
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5), 0 0 0 1px var(--border-gold)
  }
  50% {
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5), 0 0 0 1px var(--border-gold), 0 0 30px rgba(47, 122, 148, .2)
  }
}

@media (prefers-reduced-motion: reduce) {
  .testi-card:hover {
    animation: none
  }
}

.testi-stars {
  color: var(--gold-300);
  font-size: 1rem;
  margin-bottom: 1rem
}

.testi-text {
  font-size: .88rem;
  color: var(--text-60);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem
}

.testi-author {
  display: flex;
  align-items: center;
  gap: .75rem
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

.testi-name {
  font-size: .85rem;
  font-weight: 600
}

.testi-country {
  font-size: .72rem;
  color: var(--text-40)
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  margin-top: var(--section-y);
  border-top: 1px solid var(--border-white);
  padding: 5rem var(--px) 2.5rem;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto
}

.footer-grid {
  display: grid;
  grid-template-columns:2.2fr 1fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem
}

.footer-logo-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .25rem;
}

.footer-logo-sub {
  font-size: .58rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--text-20);
  margin-bottom: 1.25rem
}

.footer-tagline {
  font-size: .88rem;
  color: var(--text-60);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.25rem
}

.footer-address {
  font-size: .78rem;
  color: var(--text-20);
  line-height: 1.7
}

.footer-col-h {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 1.25rem
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .6rem
}

.footer-lnk {
  font-size: .86rem;
  color: var(--text-60);
  transition: color .15s
}

.footer-lnk:hover {
  color: var(--text-100)
}

.footer-contact-row {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  margin-bottom: .75rem;
  font-size: .82rem;
  color: var(--text-60)
}

.footer-contact-row .ico {
  color: var(--gold-300);
  flex-shrink: 0;
  font-style: normal
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: .75rem;
  color: var(--text-20)
}

.social-row {
  display: flex;
  gap: .65rem
}

.soc-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--glass-white);
  border: 1px solid var(--border-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-60);
  font-size: .85rem;
  transition: all .2s;
}

.soc-btn:hover {
  background: var(--glass-gold);
  border-color: var(--border-gold);
  color: var(--gold-200)
}

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-h) + 5rem) var(--px) 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('https://images.unsplash.com/photo-1542291026-7eec264c27ff?w=1400&q=70') center/cover no-repeat;
  filter: brightness(.1) saturate(1.3);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(3, 8, 16, .6) 0%, rgba(3, 8, 16, .95) 100%);
}

.page-hero-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(201, 153, 46, 0.12) 0%, transparent 60%);
  animation: pageGlowPulse 8s ease-in-out infinite;
}

@keyframes pageGlowPulse {
  0%, 100% {
    opacity: .75;
    transform: scale(1)
  }
  50% {
    opacity: 1;
    transform: scale(1.06)
  }
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: -30% -10% auto -10%;
  height: 160%;
  z-index: 1;
  pointer-events: none;
  background: conic-gradient(from 90deg at 50% 20%, rgba(201, 153, 46, 0.09), rgba(47, 122, 148, 0.08), transparent 55%);
  filter: blur(60px);
  animation: auroraSpin 80s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .page-hero-glow, .page-hero::after {
    animation: none !important
  }
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto
}

.page-hero .section-title {
  color: var(--text-on-dark-100)
}

.page-hero .section-title em {
  color: var(--gold-200)
}

.page-hero .tag {
  color: var(--gold-200)
}

.page-hero .tag::before {
  background: var(--gold-200)
}

.page-hero-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-on-dark-70);
  margin-top: 1.25rem
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: .5rem;
  align-items: center;
  font-size: .72rem;
  color: var(--text-on-dark-50);
  letter-spacing: .08em;
  margin-bottom: 2rem;
}

.breadcrumb-sep {
  color: var(--gold-200)
}

.breadcrumb a:hover {
  color: #fff
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns:repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem
}

.val-card {
  background: var(--glass-white);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-white);
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem;
  transition: all .3s;
}

.val-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .5), var(--glow-gold)
}

.val-icon {
  font-size: 2.2rem;
  margin-bottom: 1.25rem
}

.val-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: .6rem
}

.val-desc {
  font-size: .84rem;
  color: var(--text-60);
  line-height: 1.7
}

/* Timeline */
.timeline {
  margin-top: 3.5rem;
  position: relative;
  padding-left: 2.5rem
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold-300), rgba(201, 153, 46, 0))
}

.tl-item {
  position: relative;
  padding-bottom: 3rem
}

.tl-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 5px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold-300);
  box-shadow: 0 0 0 4px rgba(201, 153, 46, 0.2);
}

.tl-year {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: .35rem
}

.tl-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: .4rem
}

.tl-desc {
  font-size: .86rem;
  color: var(--text-60);
  line-height: 1.65
}

[dir=rtl] .timeline {
  padding-left: 0;
  padding-right: 2.5rem
}

[dir=rtl] .timeline::before {
  left: auto;
  right: 0
}

[dir=rtl] .tl-item::before {
  left: auto;
  right: -2.5rem
}

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.filter-bar {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem
}

.f-btn {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-60);
  padding: .48rem 1.25rem;
  border-radius: 100px;
  border: 1px solid var(--border-white);
  background: var(--glass-white);
  cursor: pointer;
  transition: all .18s;
}

.f-btn:hover, .f-btn.active {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-400));
  color: #fff;
  border-color: transparent
}

.p-full-grid {
  display: grid;
  grid-template-columns:repeat(3, 1fr);
  gap: 1.25rem
}

.p-item {
  transition: opacity .3s, transform .3s
}

/* ============================================================
   REQUEST FORM
   ============================================================ */
.req-wrap {
  padding: var(--section-y) var(--px)
}

.req-inner {
  max-width: 900px;
  margin: 0 auto
}

.form-glass {
  background: var(--glass-white);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-xl);
  padding: 3.5rem 4rem;
  box-shadow: var(--shadow-card), var(--glow-gold);
}

.form-grid {
  display: grid;
  grid-template-columns:1fr 1fr;
  gap: 1.5rem
}

.fg {
  display: flex;
  flex-direction: column;
  gap: .5rem
}

.fg.full {
  grid-column: 1/-1
}

.form-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-300)
}

.form-input, .form-select, .form-textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-white);
  border-radius: var(--r-sm);
  padding: .9rem 1rem;
  color: var(--text-100);
  font-size: .9rem;
  outline: none;
  width: 100%;
  transition: border-color .2s, background .2s;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold-300);
  background: rgba(201, 153, 46, 0.05);
  box-shadow: 0 0 0 3px rgba(201, 153, 46, 0.10);
}

.form-input::placeholder, .form-textarea::placeholder {
  color: var(--text-20)
}

.form-select option {
  background: var(--bg-2);
  color: var(--text-100)
}

.form-textarea {
  resize: vertical;
  min-height: 120px
}

.form-submit {
  margin-top: 2rem;
  text-align: center
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-wrap {
  padding: var(--section-y) var(--px)
}

.contact-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns:1fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--glass-white);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-white);
  border-radius: var(--r-md);
  padding: 1.75rem;
  margin-bottom: 1rem;
  transition: all .2s;
}

.contact-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--glow-gold)
}

.contact-card-ico {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: var(--r-sm);
  background: var(--glass-gold);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.contact-card-lbl {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: .4rem
}

.contact-card-val {
  font-size: .9rem;
  color: var(--text-60);
  line-height: 1.6
}

.map-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-card)
}

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, rgba(201, 153, 46, 0.18), rgba(201, 153, 46, 0.06));
  backdrop-filter: blur(24px);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-md);
  padding: 1.1rem 1.6rem;
  z-index: 9999;
  transform: translateY(130%);
  transition: transform .4s var(--ease-spring);
  max-width: 320px;
  box-shadow: var(--glow-gold);
}

.toast.show {
  transform: translateY(0)
}

.toast-title {
  font-weight: 700;
  color: var(--gold-200);
  margin-bottom: .2rem;
  font-size: .95rem
}

.toast-msg {
  font-size: .82rem;
  color: var(--text-60)
}

[dir=rtl] .toast {
  right: auto;
  left: 2rem
}

/* ============================================================
   HERO SLIDESHOW — crossfading Ken-Burns backgrounds
   ============================================================ */
.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  filter: brightness(.18) saturate(1.2);
  transform: scale(1.02);
  transition: opacity 1.6s var(--ease);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1
}

.hero-slide-dots {
  position: absolute;
  left: 50%;
  bottom: 1.75rem;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: .5rem;
}

.hero-slide-dot {
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background .3s, transform .3s;
  border: none;
}

.hero-slide-dot.active {
  background: linear-gradient(90deg, var(--gold-200), var(--gold-300));
  transform: scaleX(1.15)
}

/* Hero gallery parallax tilt */
.hero-gallery {
  perspective: 1200px;
}

.hero-img-main {
  transition: transform .35s var(--ease);
  transform-style: preserve-3d;
}

/* ============================================================
   TRUST MARQUEE — infinite scroll strip
   ============================================================ */
.trust-marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent)
}

.trust-marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marqueeScroll 34s linear infinite
}

.trust-marquee:hover .trust-marquee-track {
  animation-play-state: paused
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0)
  }
  to {
    transform: translateX(-50%)
  }
}

[dir=rtl] .trust-marquee-track {
  animation-name: marqueeScrollRtl
}

@keyframes marqueeScrollRtl {
  from {
    transform: translateX(0)
  }
  to {
    transform: translateX(50%)
  }
}

/* ============================================================
   TESTIMONIAL CAROUSEL
   ============================================================ */
.testi-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 3rem
}

.testi-track {
  display: flex;
  transition: transform .6s var(--ease)
}

.testi-slide {
  flex: 0 0 100%;
  padding: 0 .5rem;
  display: grid;
  grid-template-columns:repeat(3, 1fr);
  gap: 1.25rem
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem
}

.testi-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-white);
  border: 1px solid var(--border-white);
  color: var(--text-100);
  transition: all .25s;
  cursor: pointer;
}

.testi-arrow:hover {
  border-color: var(--border-gold);
  background: var(--glass-gold);
  color: var(--gold-400)
}

.testi-dots {
  display: flex;
  gap: .5rem
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-white);
  cursor: pointer;
  transition: all .25s;
  border: none
}

.testi-dot.active {
  background: var(--gold-300);
  width: 22px;
  border-radius: 4px
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-section {
  padding: var(--section-y) var(--px)
}

.faq-inner {
  max-width: 860px;
  margin: 0 auto
}

.faq-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: .85rem
}

.faq-item {
  background: var(--glass-white);
  border: 1px solid var(--border-white);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}

.faq-item.open {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card)
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: start;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-100);
  cursor: pointer;
}

.faq-q-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-gold);
  color: var(--gold-400);
  font-size: 1rem;
  font-weight: 700;
  transition: transform .35s var(--ease);
}

.faq-item.open .faq-q-icon {
  transform: rotate(45deg);
  background: var(--gold-300);
  color: #fff
}

.faq-a-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease)
}

.faq-a {
  padding: 0 1.5rem 1.5rem;
  font-size: .86rem;
  line-height: 1.75;
  color: var(--text-60)
}

/* ============================================================
   CART — nav trigger, drawer, items
   ============================================================ */
.cart-trigger {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  cursor: pointer;
  transition: all .2s;
}

.cart-trigger:hover {
  border-color: var(--gold-200);
  background: rgba(255, 255, 255, 0.2);
  color: var(--gold-200)
}

.navbar.scrolled .cart-trigger {
  background: rgba(31, 41, 55, 0.05);
  border-color: var(--border-white);
  color: var(--text-100)
}

.navbar.scrolled .cart-trigger:hover {
  border-color: var(--border-gold);
  background: var(--glass-gold);
  color: var(--gold-400)
}

.cart-trigger svg {
  width: 18px;
  height: 18px
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-400));
  color: #fff;
  font-size: .62rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px var(--bg-1);
  transition: transform .25s var(--ease-spring);
}

.cart-badge.bump {
  animation: cartBump .4s var(--ease-spring)
}

@keyframes cartBump {
  0% {
    transform: scale(1)
  }
  40% {
    transform: scale(1.5)
  }
  100% {
    transform: scale(1)
  }
}

[dir=rtl] .cart-badge {
  right: auto;
  left: -4px
}

.cart-scrim {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(3, 8, 16, .55);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}

.cart-scrim.open {
  opacity: 1;
  pointer-events: auto
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1201;
  width: min(420px, 92vw);
  background: var(--bg-1);
  box-shadow: -30px 0 80px rgba(31, 41, 55, .25);
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform .45s var(--ease);
}

.cart-drawer.open {
  transform: translateX(0)
}

.cart-drawer::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -60%;
  width: 60%;
  height: 120%;
  z-index: -1;
  background: radial-gradient(circle, rgba(201, 153, 46, .25), transparent 70%);
  filter: blur(40px);
  opacity: 0;
  transition: opacity .5s var(--ease);
  pointer-events: none;
}

.cart-drawer.open::before {
  opacity: 1;
  animation: drawerGlowPulse 4s ease-in-out infinite
}

@keyframes drawerGlowPulse {
  0%, 100% {
    transform: scale(1)
  }
  50% {
    transform: scale(1.15)
  }
}

@media (prefers-reduced-motion: reduce) {
  .cart-drawer.open::before {
    animation: none
  }
}

[dir=rtl] .cart-drawer {
  right: auto;
  left: 0;
  transform: translateX(-105%)
}

[dir=rtl] .cart-drawer.open {
  transform: translateX(0)
}

.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-white);
}

.cart-drawer-title {
  font-family: var(--font-display);
  font-size: 1.4rem
}

.cart-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(31, 41, 55, 0.05);
  cursor: pointer;
  transition: background .2s;
}

.cart-drawer-close:hover {
  background: var(--glass-gold);
  color: var(--gold-400)
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem
}

.cart-empty {
  padding: 3rem 1rem;
  text-align: center;
  color: var(--text-40)
}

.cart-empty-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  opacity: .5
}

.cart-item {
  display: grid;
  grid-template-columns:64px 1fr auto;
  gap: .9rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-white);
}

.cart-item-img {
  width: 64px;
  height: 64px;
  border-radius: var(--r-sm);
  overflow: hidden
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.cart-item-title {
  font-size: .86rem;
  font-weight: 600;
  margin-bottom: .2rem
}

.cart-item-meta {
  font-size: .72rem;
  color: var(--text-40);
  line-height: 1.6
}

.cart-item-remove {
  font-size: .7rem;
  color: var(--gold-400);
  cursor: pointer;
  text-decoration: underline;
  margin-top: .3rem;
  display: inline-block
}

.cart-drawer-foot {
  padding: 1.5rem;
  border-top: 1px solid var(--border-white)
}

.cart-drawer-total {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  margin-bottom: 1rem
}

.cart-drawer-total b {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold-400)
}

/* ============================================================
   PRODUCT ADD-TO-ORDER MODAL
   ============================================================ */
.pmodal-scrim {
  position: fixed;
  inset: 0;
  z-index: 1300;
  background: rgba(3, 8, 16, .6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}

.pmodal-scrim::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(680px, 90vw);
  height: min(680px, 80vh);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(201, 153, 46, .28), rgba(47, 122, 148, .22), rgba(169, 121, 24, .18), rgba(201, 153, 46, .28));
  filter: blur(60px);
  opacity: 0;
  transition: opacity .6s var(--ease);
  pointer-events: none;
}

.pmodal-scrim.open::before {
  opacity: .55;
  animation: auroraSpin 14s linear infinite
}

@media (prefers-reduced-motion: reduce) {
  .pmodal-scrim.open::before {
    animation: none
  }
}

.pmodal-scrim.open {
  opacity: 1;
  pointer-events: auto
}

.pmodal {
  width: min(560px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  background: var(--bg-1);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  transform: translateY(24px) scale(.97);
  opacity: 0;
  transition: all .35s var(--ease-spring);
  position: relative;
}

.pmodal-scrim.open .pmodal {
  transform: none;
  opacity: 1
}

.pmodal-head {
  position: relative;
  height: 180px;
  overflow: hidden
}

.pmodal-head img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.pmodal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(3, 8, 16, .5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

[dir=rtl] .pmodal-close {
  right: auto;
  left: 1rem
}

.pmodal-body {
  padding: 1.75rem
}

.pmodal-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: .35rem
}

.pmodal-min {
  font-size: .76rem;
  color: var(--text-40);
  margin-bottom: 1.5rem
}

.pmodal-size-grid {
  display: grid;
  grid-template-columns:repeat(3, 1fr);
  gap: .75rem;
  margin-bottom: 1.25rem
}

.pmodal-size {
  border: 1px solid var(--border-white);
  border-radius: var(--r-sm);
  padding: .75rem .6rem;
  text-align: center;
  transition: border-color .2s;
}

.pmodal-size.has-qty {
  border-color: var(--border-gold);
  background: var(--glass-gold)
}

.pmodal-size-lbl {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--text-60);
  margin-bottom: .5rem
}

.pmodal-qty-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem
}

.pmodal-qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(31, 41, 55, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  cursor: pointer;
}

.pmodal-qty-btn:hover {
  background: var(--glass-gold);
  color: var(--gold-400)
}

.pmodal-qty-input {
  width: 36px;
  text-align: center;
  font-size: .85rem;
  font-weight: 700;
  border: none;
  background: none
}

.pmodal-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .9rem 1.1rem;
  background: rgba(31, 41, 55, .03);
  border-radius: var(--r-sm);
  font-size: .82rem;
  margin-bottom: 1.25rem;
}

.pmodal-total b {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold-400)
}

.pmodal-note-input {
  width: 100%
}

/* ============================================================
   PAYMENT METHOD CARDS
   ============================================================ */
.pay-grid {
  display: grid;
  grid-template-columns:repeat(3, 1fr);
  gap: 1rem;
  margin: 1rem 0 1.5rem
}

.pay-card {
  position: relative;
  cursor: pointer;
  border: 1.5px solid var(--border-white);
  border-radius: var(--r-md);
  padding: 1.25rem 1.1rem;
  transition: all .25s;
  background: var(--glass-white);
}

.pay-card:hover {
  border-color: var(--border-gold)
}

.pay-card.selected {
  border-color: var(--gold-300);
  background: var(--glass-gold);
  box-shadow: var(--glow-gold)
}

.pay-card-check {
  position: absolute;
  top: .9rem;
  right: .9rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--border-white);
}

.pay-card.selected .pay-card-check {
  background: var(--gold-300);
  border-color: var(--gold-300);
  position: relative
}

.pay-card.selected .pay-card-check::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  color: #fff
}

[dir=rtl] .pay-card-check {
  right: auto;
  left: .9rem
}

.pay-card-pct {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold-400);
  margin-bottom: .2rem
}

.pay-card-lbl {
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: .25rem
}

.pay-card-desc {
  font-size: .72rem;
  color: var(--text-40);
  line-height: 1.5
}

.pay-notice {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  padding: 1rem 1.2rem;
  background: rgba(47, 122, 148, 0.06);
  border: 1px dashed var(--border-cyan);
  border-radius: var(--r-sm);
  font-size: .78rem;
  color: var(--text-60);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* ============================================================
   ORDER SUMMARY (order/request page)
   ============================================================ */
.order-summary {
  margin-bottom: 2rem
}

.order-summary-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  border: 1.5px dashed var(--border-white);
  border-radius: var(--r-lg);
}

.order-row {
  display: grid;
  grid-template-columns:56px 1fr auto auto;
  gap: 1rem;
  align-items: center;
  padding: .9rem 0;
  border-bottom: 1px solid var(--border-white);
  font-size: .84rem;
}

.order-row-img {
  width: 56px;
  height: 56px;
  border-radius: var(--r-sm);
  overflow: hidden
}

.order-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.order-row-meta {
  font-size: .72rem;
  color: var(--text-40)
}

.order-row-qty {
  font-weight: 700;
  color: var(--gold-400)
}

.order-total-line {
  display: flex;
  justify-content: space-between;
  padding-top: 1.25rem;
  margin-top: .5rem;
  border-top: 2px solid var(--border-gold);
  font-size: 1rem
}

.order-total-line b {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-400)
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns:1fr;
    gap: 3rem
  }

  .hero-gallery {
    display: none
  }

  .about-grid {
    grid-template-columns:1fr;
    gap: 3rem
  }

  .about-vis {
    height: 400px
  }

  .gallery-grid {
    grid-template-rows:repeat(3, 160px)
  }

  .mat-grid {
    grid-template-columns:repeat(2, 1fr)
  }

  .prod-grid {
    grid-template-columns:1fr 1fr
  }

  .prod-card.featured {
    grid-column: span 2
  }

  .stats-belt-inner {
    grid-template-columns:repeat(2, 1fr);
    gap: 2.5rem
  }

  .footer-grid {
    grid-template-columns:1fr 1fr;
    gap: 2.5rem
  }

  .values-grid {
    grid-template-columns:1fr 1fr
  }

  .p-full-grid {
    grid-template-columns:1fr 1fr
  }

  .contact-grid {
    grid-template-columns:1fr
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 64px
  }

  .nav-links, .btn-gold.nav-cta {
    display: none
  }

  .hamburger {
    display: flex
  }

  .prod-grid {
    grid-template-columns:1fr
  }

  .prod-card.featured {
    grid-column: span 1;
    grid-template-columns:1fr
  }

  .process-track {
    grid-template-columns:1fr 1fr
  }

  .process-track::before {
    display: none
  }

  .testi-grid {
    grid-template-columns:1fr
  }

  .footer-grid {
    grid-template-columns:1fr
  }

  .cta-band {
    padding: 3rem 2rem;
    margin: 0 1rem
  }

  .form-glass {
    padding: 2rem 1.5rem
  }

  .form-grid {
    grid-template-columns:1fr
  }

  .gallery-grid {
    grid-template-columns:1fr 1fr;
    grid-template-rows:auto;
  }

  .g-item {
    grid-column: auto !important;
    grid-row: auto !important;
    height: 180px
  }

  .values-grid {
    grid-template-columns:1fr
  }

  .p-full-grid {
    grid-template-columns:1fr
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column
  }

  .btn-gold, .btn-outline, .btn-cyan {
    width: 100%;
    justify-content: center
  }

  .hero-stats {
    gap: 1.5rem
  }

  .stats-belt-inner {
    grid-template-columns:1fr 1fr
  }

  .mat-grid {
    grid-template-columns:1fr
  }

  .contact-grid {
    grid-template-columns:1fr
  }
}

/* ============================================================
   RESPONSIVE — V2 (order system, carousel, faq, cart)
   ============================================================ */
@media (max-width: 1100px) {
  .cart-drawer {
    width: 100vw
  }
}

@media (max-width: 900px) {
  .testi-slide {
    grid-template-columns:1fr
  }

  .pay-grid {
    grid-template-columns:1fr
  }
}

@media (max-width: 768px) {
  .pmodal-size-grid {
    grid-template-columns:repeat(2, 1fr)
  }

  .order-row {
    grid-template-columns:48px 1fr;
    grid-template-areas:"img title" "img meta";
    row-gap: .25rem
  }

  .order-row-img {
    grid-area: img
  }
}
