/* ============================================================
   KHADIJA COLLECTION — Luxury E-commerce MVP Stylesheet
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --white: #FFFFFF;
  --bg-soft: #F0EDE6;
  --bg-cream: #FFFCF8;
  --text-dark: #2B2B2B;
  --text-heading: #1A1A1A;
  --text-muted: #4F4F4F;
  --text-light: #6E6E6E;
  --black-deep: #1A1A1A;
  --charcoal-soft: #2E2E2E;

  --cyan: #00B4D8;
  --cyan-soft: rgba(0, 180, 216, 0.24);
  --cyan-glow: rgba(0, 180, 216, 0.42);
  --magenta: #D63384;
  --magenta-soft: rgba(214, 51, 132, 0.2);
  --magenta-glow: rgba(214, 51, 132, 0.38);
  --yellow: #F4D03F;
  --yellow-soft: rgba(244, 208, 63, 0.28);

  --glass-bg: rgba(255, 255, 255, 0.28);
  --glass-bg-strong: rgba(255, 255, 255, 0.96);
  --glass-border: rgba(0, 0, 0, 0.07);
  --glass-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  --card-border: rgba(0, 0, 0, 0.09);
  --glass-blur: blur(20px);

  --gradient-luxury: linear-gradient(135deg, rgba(0, 180, 216, 0.22), rgba(214, 51, 132, 0.18), rgba(244, 208, 63, 0.22));
  --gradient-hero: linear-gradient(160deg, #FFFCF8 0%, #E8F4FA 38%, #F9ECF3 72%, #FFF6E6 100%);
  --gradient-banner: linear-gradient(90deg, var(--cyan), var(--magenta), var(--yellow), var(--cyan));

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --text-body: 16px;
  --text-body-lg: 17px;
  --leading-body: 1.65;
  --leading-tight: 1.15;
  --tracking-tight: -0.02em;
  --tracking-wide: 0.14em;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;

  --nav-height: 100px;
  --logo-height: clamp(80px, 9vw, 110px);
  --container-max: 1280px;
  --section-pad: clamp(36px, 5vw, 72px);
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-body);
  line-height: var(--leading-body);
  letter-spacing: 0.01em;
  color: var(--text-dark);
  background-color: var(--bg-cream);
  background-image:
    radial-gradient(ellipse 90% 55% at 50% -8%, rgba(0, 180, 216, 0.1) 0%, transparent 58%),
    radial-gradient(ellipse 55% 45% at 100% 20%, rgba(214, 51, 132, 0.07) 0%, transparent 52%),
    radial-gradient(ellipse 50% 40% at 0% 80%, rgba(244, 208, 63, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-soft) 100%);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--text-heading);
}

p {
  line-height: var(--leading-body);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

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

ul { list-style: none; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ---------- Utility Classes ---------- */
.glass-card {
  background: var(--white);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
}

.glass-overlay {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-blur {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(30px);
  transition: opacity 0.8s ease, filter 0.8s ease, transform 0.8s ease;
}

.reveal-blur.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* ---------- Cursor Glow (disabled) ---------- */
.cursor-glow {
  display: none !important;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn:hover::before { transform: translateX(100%); }

.btn--primary {
  background: var(--cyan);
  color: var(--white);
  box-shadow: 0 6px 22px var(--cyan-glow);
}

.btn--primary:hover {
  background: #0096b7;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--cyan-glow);
}

.btn--glass {
  background: var(--white);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--card-border);
  color: var(--text-heading);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.btn--glass:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--glass-shadow);
  border-color: rgba(0, 180, 216, 0.25);
  color: var(--cyan);
}

.btn--sm {
  padding: 8px 20px;
  font-size: 12px;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

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

/* ---------- Section Headers ---------- */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 14px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  color: var(--text-heading);
}

.section__desc {
  color: var(--text-muted);
  max-width: 540px;
  font-size: var(--text-body-lg);
  line-height: 1.75;
  font-weight: 500;
}

.section__header {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.section__header .section__desc {
  margin: 0 auto;
}

/* ============================================================
   NAVIGATION — Solid bar layout (prominent logo)
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header__topbar {
  height: 4px;
  background: var(--gradient-banner);
  background-size: 200% 100%;
  animation: gradientShift 8s ease infinite;
}

.header__main {
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: box-shadow var(--transition);
}

.header.scrolled .header__main {
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.1);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 32px);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 12px clamp(20px, 4vw, 40px);
  min-height: 80px;
}

.nav__logo {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  min-width: 0;
  max-width: min(280px, 38vw);
}

.nav__logo img {
  height: var(--logo-height);
  width: auto;
  max-width: min(320px, 44vw);
  object-fit: contain;
  object-position: left center;
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.8vw, 42px);
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.02em;
  text-transform: none;
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.nav-item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: inherit;
  opacity: 0.88;
}

.nav-item-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.nav__link:hover .nav-item-icon,
.nav__link.active .nav-item-icon {
  opacity: 1;
}

.nav-item-label {
  line-height: 1;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--cyan);
  font-weight: 600;
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__icon-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition-fast);
  position: relative;
  color: var(--text-dark);
}

.nav__icon-btn svg {
  width: 22px;
  height: 22px;
}

.nav__icon-btn:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--cyan);
}

.nav__cart-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background: var(--magenta);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  background: var(--cyan);
  color: var(--white);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  margin-left: 4px;
}

.nav__cta:hover {
  background: #0096b7;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 180, 216, 0.35);
  color: var(--white);
}

.nav__cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__cta-icon svg {
  width: 20px;
  height: 20px;
}

.nav__cta-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav__cta-number {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nav__cta-label {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.92;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  transition: all var(--transition);
}

.nav__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999; /* Below header */
  padding: calc(var(--nav-height) + 10px) 24px 32px;
  background: var(--white);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-100%);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu__header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
}

.mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.04);
  color: var(--text-dark);
  transition: all var(--transition-fast);
}

.mobile-menu__close:hover {
  background: rgba(0,0,0,0.08);
  transform: rotate(90deg);
}

.mobile-menu__close svg {
  width: 24px;
  height: 24px;
}

.mobile-menu__links {
  text-align: left;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.mobile-menu__link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  padding: 16px 8px;
  color: var(--text-heading);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.mobile-menu__link:last-child {
  border-bottom: none;
}

.mobile-menu__link .nav-item-icon {
  width: 22px;
  height: 22px;
  color: var(--cyan);
}

.mobile-menu.open .mobile-menu__link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open .mobile-menu__links li:nth-child(1) .mobile-menu__link { transition-delay: 0.1s; }
.mobile-menu.open .mobile-menu__links li:nth-child(2) .mobile-menu__link { transition-delay: 0.15s; }
.mobile-menu.open .mobile-menu__links li:nth-child(3) .mobile-menu__link { transition-delay: 0.2s; }
.mobile-menu.open .mobile-menu__links li:nth-child(4) .mobile-menu__link { transition-delay: 0.25s; }
.mobile-menu.open .mobile-menu__links li:nth-child(5) .mobile-menu__link { transition-delay: 0.3s; }
.mobile-menu.open .mobile-menu__links li:nth-child(6) .mobile-menu__link { transition-delay: 0.35s; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-height) + 16px) 0 32px;
  background: var(--gradient-hero);
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__gradient {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.72;
  animation: gradientFloat 12s ease-in-out infinite;
}

.hero__gradient--1 {
  width: 500px;
  height: 500px;
  background: var(--cyan-soft);
  top: -10%;
  right: -5%;
}

.hero__gradient--2 {
  width: 400px;
  height: 400px;
  background: var(--magenta-soft);
  bottom: 10%;
  left: -5%;
  animation-delay: -4s;
}

.hero__gradient--3 {
  width: 300px;
  height: 300px;
  background: var(--yellow-soft);
  top: 40%;
  left: 30%;
  animation-delay: -8s;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: blur(40px);
  border: 1px solid var(--glass-border);
  animation: blobFloat 8s ease-in-out infinite;
}

.hero__blob--1 {
  width: 120px;
  height: 120px;
  top: 20%;
  left: 10%;
}

.hero__blob--2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 15%;
  animation-delay: -3s;
}

.hero__blob--3 {
  width: 60px;
  height: 60px;
  bottom: 25%;
  left: 40%;
  animation-delay: -6s;
}

.hero__particles {
  position: absolute;
  inset: 0;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: particleFloat 6s ease-in-out infinite;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 22px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.8vw, 4.75rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 26px;
  color: var(--text-heading);
}

.hero__title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: saturate(1.15);
}

.hero__subtitle {
  color: var(--text-muted);
  font-size: clamp(16px, 1.6vw, 18px);
  max-width: 500px;
  margin-bottom: 38px;
  line-height: 1.75;
  font-weight: 500;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* 3D Contact Lens */
.hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.lens-scene {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lensFloat 6s ease-in-out infinite;
}

.lens-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--lens-glow, rgba(139, 115, 85, 0.3)) 0%, transparent 70%);
  filter: blur(30px);
  transition: background 0.8s ease;
  animation: glowPulse 4s ease-in-out infinite;
}

.lens-3d {
  position: relative;
  width: 220px;
  height: 220px;
  transform-style: preserve-3d;
  transform: perspective(900px) rotateX(10deg);
}

.lens-3d__outer {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.4) 50%, rgba(200,200,200,0.3) 100%);
  box-shadow:
    inset 0 0 30px rgba(255,255,255,0.8),
    inset 0 -10px 20px rgba(0,0,0,0.05),
    0 20px 60px rgba(0,0,0,0.1),
    0 0 80px var(--lens-glow, rgba(139, 115, 85, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.8s ease;
}

.lens-3d__inner {
  width: 75%;
  height: 75%;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 40% 40%, rgba(255,255,255,0.3), transparent 60%);
}

.lens-3d__iris {
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  background: var(--iris-gradient, radial-gradient(circle at 35% 35%, #B8956C, #8B7355 40%, #6B5344 70%, #4A3728));
  transition: background 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: inset 0 0 20px rgba(0,0,0,0.2);
}

.lens-3d__iris::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: repeating-conic-gradient(
    from 0deg,
    transparent 0deg 8deg,
    rgba(0,0,0,0.03) 8deg 10deg
  );
}

.lens-3d__pupil {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28%;
  height: 28%;
  border-radius: 50%;
  background: radial-gradient(circle, #3a3a3a 60%, #4a4a4a);
  box-shadow: inset 0 0 8px rgba(0,0,0,0.8);
}

.lens-3d__reflection {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  filter: blur(1px);
}

.lens-3d__reflection--1 {
  width: 35%;
  height: 20%;
  top: 15%;
  left: 20%;
  transform: rotate(-30deg);
  opacity: 0.8;
}

.lens-3d__reflection--2 {
  width: 12%;
  height: 8%;
  bottom: 25%;
  right: 20%;
  opacity: 0.5;
}

.lens-3d__shine {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 50%);
  pointer-events: none;
}

.lens-3d__ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
  animation: ringPulse 3s ease-in-out infinite;
}

.lens-ripple {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 2px solid var(--lens-glow-color, rgba(139, 115, 85, 0.4));
  opacity: 0;
  pointer-events: none;
}

.lens-ripple.active {
  animation: rippleEffect 0.8s ease-out;
}

/* Lens Color Selector */
.lens-selector {
  margin-top: 40px;
  text-align: center;
}

.lens-selector__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}

.lens-selector__colors {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.lens-color {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--swatch);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.lens-color::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}

.lens-color:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.lens-color.active {
  transform: scale(1.2);
  box-shadow: 0 0 20px var(--swatch);
}

.lens-color.active::after {
  border-color: var(--text-dark);
}

.lens-selector__name {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--text-muted);
  transition: color var(--transition);
}

/* Hero Scroll Indicator */
.hero__scroll {
  position: relative;
  margin-top: 24px;
  left: auto;
  bottom: auto;
  transform: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero__scroll span {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-light), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ============================================================
   LUXURY BANNER
   ============================================================ */
.luxury-banner {
  background: var(--text-dark);
  overflow: hidden;
  padding: 16px 0;
  position: relative;
}

.luxury-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-banner);
  background-size: 300% 100%;
  animation: gradientMove 8s linear infinite;
  opacity: 0.15;
}

.luxury-banner__track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.luxury-banner__content {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 20px;
  white-space: nowrap;
}

.luxury-banner__content span {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}

.luxury-banner__dot {
  color: var(--cyan) !important;
  font-size: 10px !important;
}

/* ============================================================
   CATEGORIES — COVERFLOW CAROUSEL
   ============================================================ */
.category-carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  overflow: visible;
  touch-action: pan-y;
}

.category-carousel__viewport {
  position: relative;
  height: clamp(380px, 52vw, 440px);
  overflow: visible;
  perspective: 1400px;
}

.category-carousel__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.category-carousel__card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(240px, 28vw, 300px);
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
  transform: translate(-50%, -50%) scale(0.72);
  opacity: 0.45;
  z-index: 1;
  transition:
    transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.55s ease,
    box-shadow 0.55s ease;
  pointer-events: none;
}

.category-carousel__card.is-center {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  z-index: 5;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.14);
  pointer-events: auto;
}

.category-carousel__card.is-left-1 {
  transform: translate(calc(-50% - clamp(200px, 24vw, 270px)), -50%) scale(0.86);
  opacity: 0.78;
  z-index: 4;
}

.category-carousel__card.is-right-1 {
  transform: translate(calc(-50% + clamp(200px, 24vw, 270px)), -50%) scale(0.86);
  opacity: 0.78;
  z-index: 4;
}

.category-carousel__card.is-left-2 {
  transform: translate(calc(-50% - clamp(360px, 42vw, 480px)), -50%) scale(0.74);
  opacity: 0.35;
  z-index: 2;
}

.category-carousel__card.is-right-2 {
  transform: translate(calc(-50% + clamp(360px, 42vw, 480px)), -50%) scale(0.74);
  opacity: 0.35;
  z-index: 2;
}

.category-carousel__card.is-hidden {
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

.category-carousel__visual {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.category-carousel__visual.category-card__img {
  position: relative;
  inset: auto;
}

.category-carousel__body {
  padding: 20px 22px 22px;
  background: var(--white);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.category-carousel__body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-heading);
  margin: 0;
}

.category-carousel__body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.category-carousel__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.category-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--card-border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
}

.category-carousel__nav:hover {
  background: var(--cyan);
  color: var(--white);
  border-color: var(--cyan);
}

.category-carousel__nav svg {
  width: 20px;
  height: 20px;
}

.category-carousel__nav--prev { left: 0; }
.category-carousel__nav--next { right: 0; }

.categories {
  padding-top: calc(var(--section-pad) * 0.75);
}

/* Legacy grid fallback */
.categories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.category-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: all var(--transition);
  display: block;
  color: inherit;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, var(--cyan), var(--magenta), var(--yellow));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 2;
}

.category-card:hover::before { opacity: 1; }

.category-card__img {
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-card:hover .category-card__img { transform: scale(1.08); }

.category-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
}

.category-card__placeholder svg {
  width: 48px;
  height: 48px;
}

.category-card__img--lenses { background: linear-gradient(160deg, #8B7355, #C4A882); }
.category-card__img--eyecare { background: linear-gradient(160deg, #4A7C9B, #7BAFC8); }
.category-card__img--lipstick { background: linear-gradient(160deg, #D63384, #E8A0C0); }
.category-card__img--foundation { background: linear-gradient(160deg, #C4956A, #E8D5C0); }
.category-card__img--skincare { background: linear-gradient(160deg, #7EC8C8, #B8E0E0); }
.category-card__img--brushes { background: linear-gradient(160deg, #9B8EC4, #C8B8E8); }
.category-card__img--accessories { background: linear-gradient(160deg, #C4A882, #E8DCC8); }

.has-site-photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.category-card__img.has-site-photo .category-card__placeholder {
  display: none;
}

.service-card__visual.has-site-photo .service-card__icon {
  opacity: 0;
  pointer-events: none;
}

.service-card__visual.has-site-photo::before {
  opacity: 0.12;
}

.instagram__placeholder.has-site-photo {
  min-height: 100%;
}

.category-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 1;
  transition: all var(--transition);
}

.category-card__overlay h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 4px;
}

.category-card__link {
  font-size: 13px;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
  display: inline-block;
}

.category-card:hover .category-card__link {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   PRODUCT CARDS (LENSES)
   ============================================================ */
.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.product-card {
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
}

.product-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--text-dark);
  color: var(--white);
  border-radius: var(--radius-full);
}

.product-card__badge--new {
  background: var(--magenta);
}

.product-card__img {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}

.product-card__img--hazel { background: radial-gradient(circle at 40% 40%, #B8956C, #8B7355, #5C4033); }
.product-card__img--ocean { background: radial-gradient(circle at 40% 40%, #5BA3C4, #2E6B8A, #1A4A5E); }
.product-card__img--honey { background: radial-gradient(circle at 40% 40%, #E8C49A, #C4956A, #9A7048); }
.product-card__img--gray { background: radial-gradient(circle at 40% 40%, #B0B0B0, #8A8A8A, #606060); }

.product-card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.8s;
}

.product-card:hover .product-card__shine { transform: translateX(100%); }

.product-card__body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.stars {
  color: var(--yellow);
  font-size: 12px;
  letter-spacing: 2px;
}

.rating-count {
  font-size: 12px;
  color: var(--text-light);
}

.product-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  color: var(--text-heading);
}

.product-card__meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 500;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.product-card__actions {
  display: flex;
  gap: 8px;
  width: 100%;
}

.product-card__actions .btn {
  flex: 1;
  min-width: 0;
  padding: 8px 10px;
  font-size: 12px;
}

.product-card__price {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.price-pkr {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.price-pkr small {
  font-size: 0.75em;
  font-weight: 500;
  opacity: 0.85;
}

/* ============================================================
   BEAUTY COLLECTION
   ============================================================ */
.beauty {
  position: relative;
  overflow: visible;
}

.beauty::before {
  content: '';
  position: absolute;
  width: min(700px, 90vw);
  height: min(700px, 90vw);
  background: radial-gradient(circle, rgba(0, 180, 216, 0.12) 0%, transparent 68%);
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.beauty .container {
  position: relative;
  z-index: 1;
}

.beauty__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

/* Beauty Carousel (homepage) — manual scroll */
.beauty-carousel {
  position: relative;
  z-index: 1;
  margin: 0 0 40px;
  padding: 0;
  overflow: visible;
  touch-action: pan-y;
}

.beauty-carousel__viewport {
  overflow: hidden;
  overflow-y: hidden;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 28px 0 32px;
}

.beauty-carousel__track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 8px clamp(28px, 5vw, 64px);
  animation: beautyCarouselScroll 38s linear infinite;
  will-change: transform;
}

.beauty-carousel:hover .beauty-carousel__track,
.beauty-carousel:focus-within .beauty-carousel__track {
  animation-play-state: paused;
}

@keyframes beautyCarouselScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.beauty-carousel .beauty-card {
  flex: 0 0 clamp(200px, 17vw, 252px);
  min-width: 200px;
  scroll-snap-align: start;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.beauty-carousel .beauty-card.glass-card {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.beauty-carousel .beauty-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}

@media (prefers-reduced-motion: reduce) {
  .beauty-carousel__track { animation: none; }
}

@media (max-width: 768px) {
  .beauty-carousel .beauty-card {
    flex: 0 0 clamp(180px, 42vw, 220px);
    min-width: 180px;
  }

  .beauty-carousel__viewport {
    padding: 20px 0 24px;
  }

  .beauty-carousel__track {
    padding-inline: 20px;
  }
}

.beauty-card {
  text-align: center;
  padding: 24px 16px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  overflow: hidden;
}

.beauty-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}

.beauty-card__img {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease;
}

.beauty-card:hover .beauty-card__img { transform: scale(1.05); }

.beauty-card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.25) 50%, transparent 60%);
  animation: shimmer 3s ease-in-out infinite;
}

.beauty-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.beauty-card__price {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.float-anim {
  animation: gentleFloat 5s ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
}

/* Beauty product placeholder gradients */
.beauty-card__img--lipstick { background: linear-gradient(160deg, #D63384, #8B2252); }
.beauty-card__img--foundation { background: linear-gradient(160deg, #C4956A, #8B6F47); }
.beauty-card__img--blush { background: linear-gradient(160deg, #E8A0B0, #D4788F); }
.beauty-card__img--mascara { background: linear-gradient(160deg, #4A4A4A, #3A3A3A); }
.beauty-card__img--concealer { background: linear-gradient(160deg, #E8D5C0, #C4A882); }
.beauty-card__img--powder { background: linear-gradient(160deg, #F0E8E0, #D8CFC4); }
.beauty-card__img--highlighter { background: linear-gradient(160deg, #F4D03F, #E8C840); }
.beauty-card__img--serum { background: linear-gradient(160deg, #7EC8C8, #4A9E9E); }
.beauty-card__img--facewash { background: linear-gradient(160deg, #B8E0D8, #7EC8B0); }
.beauty-card__img--sunscreen { background: linear-gradient(160deg, #F4E4C0, #E8D4A0); }

/* ============================================================
   FEATURED COLLECTIONS
   ============================================================ */
.collections__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.collection-banner {
  position: relative;
  aspect-ratio: 16/7;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  transition: all var(--transition);
}

.collection-banner:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.collection-banner__bg {
  position: absolute;
  inset: 0;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collection-banner:hover .collection-banner__bg { transform: scale(1.08); }

.collection-banner__bg--summer { background: linear-gradient(135deg, #F4D03F, #E8A040, #D63384); }
.collection-banner__bg--new { background: linear-gradient(135deg, #00B4D8, #4A7C9B, #2E6B8A); }
.collection-banner__bg--makeup { background: linear-gradient(135deg, #D63384, #9B2252, #4A1528); }
.collection-banner__bg--eye { background: linear-gradient(135deg, #8B7355, #4A7C59, #2E6B4A); }
.collection-banner__bg--wedding { background: linear-gradient(135deg, #FF9A9E, #FECFEF, #FFB6C1); }
.collection-banner__bg--everyday { background: linear-gradient(135deg, #A1C4FD, #C2E9FB, #E0C3FC); }
.collection-banner__bg--party { background: linear-gradient(135deg, #FA709A, #FEE140, #FFA500); }
.collection-banner__bg--natural { background: linear-gradient(135deg, #84FAB0, #8FD3F4, #A1C4FD); }


.collection-banner__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 36px;
}

.collection-banner__overlay h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}

.collection-banner__overlay span {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
}

.collection-banner:hover .collection-banner__overlay span {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.why-card {
  text-align: center;
  padding: 36px 24px;
  transition: all var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.why-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gradient-luxury);
  transition: transform var(--transition);
}

.why-card:hover .why-card__icon {
  transform: scale(1.1) rotate(5deg);
}

.why-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--text-dark);
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-heading);
}

.why-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 500;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-carousel {
  position: relative;
  overflow: hidden;
}

.testimonial-carousel__track {
  display: flex;
  gap: 28px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 19px);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 16px;
  border: 2px solid var(--glass-border);
  animation: avatarPulse 3s ease-in-out infinite;
}

.testimonial-card__avatar--1 { background: linear-gradient(135deg, #D63384, #E8A0C0); }
.testimonial-card__avatar--2 { background: linear-gradient(135deg, #00B4D8, #7EC8E8); }
.testimonial-card__avatar--3 { background: linear-gradient(135deg, #8B7355, #C4A882); }
.testimonial-card__avatar--4 { background: linear-gradient(135deg, #4A7C59, #7EC89B); }

.testimonial-card__stars {
  color: var(--yellow);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.testimonial-card cite {
  font-size: 13px;
  color: var(--text-light);
  font-style: normal;
}

.testimonial-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.carousel-btn:hover {
  background: var(--text-dark);
  color: var(--white);
  transform: scale(1.1);
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-light);
  opacity: 0.3;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
}

.carousel-dot.active {
  opacity: 1;
  background: var(--text-dark);
  transform: scale(1.3);
}

/* ============================================================
   FOLLOW OUR JOURNEY — BLOG GALLERY
   ============================================================ */
.journey-section .section__header {
  text-align: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.journey__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, 196px);
  gap: 14px;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
}

.journey__item {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  text-align: left;
}

.journey__item--1 { grid-column: 1; grid-row: 1 / 3; }
.journey__item--2 { grid-column: 2; grid-row: 1; }
.journey__item--3 { grid-column: 3; grid-row: 1; }
.journey__item--4 { grid-column: 4; grid-row: 1; }
.journey__item--5 { grid-column: 2 / 4; grid-row: 2; }
.journey__item--6 { grid-column: 4; grid-row: 2; }

.journey__photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.journey__item:hover .journey__photo {
  transform: scale(1.06);
}

.journey__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 45%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.journey__overlay span {
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateY(8px);
  transition: transform var(--transition);
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
}

.journey__item:hover .journey__overlay { opacity: 1; }
.journey__item:hover .journey__overlay span { transform: translateY(0); }

/* Blog article modal */
.blog-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.blog-modal.open {
  opacity: 1;
  visibility: visible;
}

.blog-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.blog-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.18);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-modal.open .blog-modal__dialog {
  transform: translateY(0) scale(1);
}

.blog-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.blog-modal__close svg {
  width: 18px;
  height: 18px;
}

.blog-modal__close:hover {
  background: var(--white);
  transform: scale(1.05);
}

.blog-modal__hero {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.blog-modal__body {
  padding: 28px 32px 36px;
  overflow-y: auto;
}

.blog-modal__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.blog-modal__category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--magenta);
  background: rgba(214, 51, 132, 0.08);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.blog-modal__meta time {
  font-size: 13px;
  color: var(--text-light);
}

.blog-modal__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.blog-modal__content {
  color: var(--text-muted);
  line-height: 1.85;
  font-size: 15px;
}

.blog-modal__content p {
  margin-bottom: 16px;
}

.blog-modal__content p:last-child {
  margin-bottom: 0;
}

/* Legacy instagram selectors — kept for compatibility */
.instagram__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}

.instagram__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.instagram__item--tall { grid-row: span 2; }
.instagram__item--wide { grid-column: span 2; }

.instagram__placeholder {
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.instagram__item:hover .instagram__placeholder { transform: scale(1.1); }

.instagram__placeholder--1 { background: linear-gradient(160deg, #D63384, #9B2252); }
.instagram__placeholder--2 { background: linear-gradient(160deg, #00B4D8, #2E6B8A); }
.instagram__placeholder--3 { background: linear-gradient(160deg, #8B7355, #C4A882); }
.instagram__placeholder--4 { background: linear-gradient(160deg, #F4D03F, #E8A040); }
.instagram__placeholder--5 { background: linear-gradient(160deg, #4A7C59, #7EC89B); }
.instagram__placeholder--6 { background: linear-gradient(160deg, #9B8EC4, #D4C8F0); }

.instagram__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.instagram__overlay span {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: translateY(10px);
  transition: transform var(--transition);
}

.instagram__item:hover .instagram__overlay { opacity: 1; }
.instagram__item:hover .instagram__overlay span { transform: translateY(0); }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  background: var(--white);
  padding: clamp(28px, 4vw, 44px) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.newsletter__inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.newsletter__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-heading);
}

.newsletter__desc {
  color: var(--text-muted);
  margin-bottom: 22px;
  font-size: 14px;
  line-height: 1.6;
}

.newsletter__form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
}

.newsletter__form input {
  flex: 1;
  padding: 12px 20px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-full);
  background: var(--bg-soft);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: all var(--transition-fast);
}

.newsletter__form input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-soft);
  background: var(--white);
}

.newsletter__form input::placeholder { color: var(--text-light); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--white) 45%, #f3f6f9 100%);
  padding: 0 0 32px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.footer .container {
  position: relative;
  z-index: 1;
  padding-top: 8px;
}

.footer__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.footer__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.4;
  will-change: transform;
}

.footer__orb--cyan {
  width: min(360px, 50vw);
  height: min(360px, 50vw);
  top: -18%;
  left: -12%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.55) 0%, transparent 68%);
  animation: footerOrbDrift1 22s ease-in-out infinite;
}

.footer__orb--magenta {
  width: min(320px, 45vw);
  height: min(320px, 45vw);
  bottom: -20%;
  right: -10%;
  background: radial-gradient(circle, rgba(214, 51, 132, 0.45) 0%, transparent 68%);
  animation: footerOrbDrift2 26s ease-in-out infinite;
}

.footer__orb--gold {
  width: min(240px, 35vw);
  height: min(240px, 35vw);
  top: 35%;
  right: 28%;
  background: radial-gradient(circle, rgba(244, 208, 63, 0.35) 0%, transparent 70%);
  animation: footerOrbDrift3 18s ease-in-out infinite;
}

.footer__shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 40%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 60%
  );
  background-size: 240% 100%;
  animation: footerShimmerSweep 9s ease-in-out infinite;
}

.footer__sparkles {
  position: absolute;
  inset: 0;
}

.footer__sparkles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(0, 180, 216, 0.6);
  animation: footerSparkle 3s ease-in-out infinite;
}

.footer__sparkles span:nth-child(1) { top: 18%; left: 12%; animation-delay: 0s; }
.footer__sparkles span:nth-child(2) { top: 42%; right: 18%; animation-delay: 0.9s; background: rgba(214, 51, 132, 0.55); }
.footer__sparkles span:nth-child(3) { bottom: 28%; left: 35%; animation-delay: 1.6s; width: 3px; height: 3px; }
.footer__sparkles span:nth-child(4) { top: 62%; right: 42%; animation-delay: 2.3s; background: rgba(244, 208, 63, 0.7); }

.footer__divider {
  position: relative;
  height: 3px;
  margin-bottom: 56px;
  overflow: visible;
}

.footer__divider-line {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--magenta), var(--yellow), var(--cyan), transparent);
  background-size: 200% 100%;
  animation: gradientMove 5s linear infinite;
  border-radius: var(--radius-full);
  opacity: 0.85;
}

.footer__divider-glow {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100px;
  height: 12px;
  transform: translateY(-50%);
  background: radial-gradient(ellipse, rgba(0, 180, 216, 0.85) 0%, transparent 72%);
  filter: blur(6px);
  animation: footerDividerGlow 4.5s ease-in-out infinite;
  pointer-events: none;
}

.footer__logo-link {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.footer.is-visible .footer__logo-link {
  animation: footerLogoReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.footer__logo-link:hover {
  transform: scale(1.03);
  opacity: 0.9;
}

.footer__reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer.is-visible .footer__reveal {
  opacity: 1;
  transform: translateY(0);
}

.footer.is-visible .footer__reveal[data-footer-delay="1"] { transition-delay: 0.1s; }
.footer.is-visible .footer__reveal[data-footer-delay="2"] { transition-delay: 0.2s; }
.footer.is-visible .footer__reveal[data-footer-delay="3"] { transition-delay: 0.3s; }
.footer.is-visible .footer__reveal[data-footer-delay="4"] { transition-delay: 0.45s; }

.footer__col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  border-radius: var(--radius-full);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer.is-visible .footer__col h4::after {
  transform: scaleX(1);
  transition-delay: 0.35s;
}

.footer__col a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer__col a:hover {
  color: var(--cyan);
  transform: translateX(4px);
}

.footer__col a:hover::after {
  width: 100%;
}

.footer__social a {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.7) translateY(10px);
}

.footer.is-visible .footer__social a {
  animation: footerSocialPop 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.footer.is-visible .footer__social a:nth-child(1) { animation-delay: 0.45s; }
.footer.is-visible .footer__social a:nth-child(2) { animation-delay: 0.55s; }
.footer.is-visible .footer__social a:nth-child(3) { animation-delay: 0.65s; }
.footer.is-visible .footer__social a:nth-child(4) { animation-delay: 0.75s; }

.footer__social a::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.footer__social a:hover::before {
  opacity: 1;
  transform: scale(1);
}

.footer__social a svg {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer__social a:hover {
  color: var(--white);
  transform: translateY(-4px) scale(1.08);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(0, 180, 216, 0.3);
}

.footer__social a:hover svg {
  transform: rotate(-6deg) scale(1.05);
}

.footer__newsletter-form input {
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.footer__newsletter-form input:focus {
  transform: translateY(-1px);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.15), 0 8px 24px rgba(0, 180, 216, 0.12);
}

.footer__subscribe-btn {
  position: relative;
  overflow: hidden;
}

.footer__subscribe-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.35) 50%, transparent 60%);
  transform: translateX(-120%);
  animation: footerBtnShine 3.5s ease-in-out infinite;
}

.footer__legal a {
  position: relative;
}

.footer__legal a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--cyan);
  transition: width 0.3s ease;
}

.footer__legal a:hover::after {
  width: 100%;
}

@keyframes footerOrbDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 20px) scale(1.08); }
}

@keyframes footerOrbDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-25px, -18px) scale(1.06); }
}

@keyframes footerOrbDrift3 {
  0%, 100% { transform: translate(0, 0); opacity: 0.35; }
  50% { transform: translate(15px, -12px); opacity: 0.5; }
}

@keyframes footerShimmerSweep {
  0%, 100% { background-position: 200% 0; }
  50% { background-position: -200% 0; }
}

@keyframes footerSparkle {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

@keyframes footerDividerGlow {
  0% { left: 0; opacity: 0.4; }
  50% { opacity: 1; }
  100% { left: calc(100% - 100px); opacity: 0.4; }
}

@keyframes footerSocialPop {
  from { opacity: 0; transform: scale(0.7) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes footerLogoReveal {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes footerBtnShine {
  0%, 70%, 100% { transform: translateX(-120%); }
  40% { transform: translateX(120%); }
}

@media (prefers-reduced-motion: reduce) {
  .footer__orb,
  .footer__shimmer,
  .footer__sparkles span,
  .footer__divider-line,
  .footer__divider-glow,
  .footer__subscribe-btn::after {
    animation: none !important;
  }

  .footer__reveal,
  .footer__social a {
    opacity: 1;
    transform: none;
    animation: none !important;
    transition: none !important;
  }

  .footer__col h4::after {
    transform: scaleX(1);
  }
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 16px 0 24px;
  max-width: 300px;
  line-height: 1.7;
}

.footer__brand img { height: 48px; width: auto; }

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__social svg {
  width: 18px;
  height: 18px;
}

.footer__col h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer__col li {
  margin-bottom: 10px;
}

.footer__col a {
  font-size: 14px;
  color: var(--text-muted);
  position: relative;
  display: inline-block;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer__contact li {
  font-size: 14px;
  color: var(--text-muted);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.footer__bottom p {
  font-size: 13px;
  color: var(--text-light);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 13px;
  color: var(--text-light);
  transition: color var(--transition-fast);
}

.footer__legal a:hover { color: var(--text-dark); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes lensFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

@keyframes ringPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}

@keyframes rippleEffect {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.5); }
}

@keyframes gradientFloat {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -20px); }
  66% { transform: translate(-20px, 20px); }
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(15px, -15px) scale(1.05); }
}

@keyframes particleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
  50% { transform: translateY(-30px) scale(1.2); opacity: 0.8; }
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

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

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes avatarPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 180, 216, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(0, 180, 216, 0); }
}

/* ============================================================
   INNER PAGE STYLES
   ============================================================ */
.page-hero {
  position: relative;
  padding: calc(var(--nav-height) + 60px) 0 80px;
  text-align: center;
  overflow: hidden;
  background: var(--gradient-hero);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-hero__gradient {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.page-hero__gradient--1 {
  width: 400px;
  height: 400px;
  background: var(--cyan-soft);
  top: -20%;
  right: 10%;
}

.page-hero__gradient--2 {
  width: 350px;
  height: 350px;
  background: var(--magenta-soft);
  bottom: -10%;
  left: 5%;
}

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

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.breadcrumb a:hover { color: var(--text-dark); }
.breadcrumb span { color: var(--text-muted); }

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--text-heading);
}

.page-hero__desc {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: var(--text-body-lg);
  line-height: 1.75;
  font-weight: 500;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* Product Filters */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 22px;
  font-size: 13px;
  letter-spacing: 0.04em;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--text-dark);
  color: var(--white);
  border-color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.products__grid--page {
  grid-template-columns: repeat(4, 1fr);
}

.product-card.hidden,
.beauty-card.hidden {
  display: none;
}

.product-card__price--old {
  font-size: 13px;
  color: var(--text-light);
  text-decoration: line-through;
  font-weight: 400;
}

/* About Page */

/* Trust Strip */
.trust-strip {
  padding: 28px 0;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-strip__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: var(--bg-cream);
  border: 1px solid var(--card-border);
  transition: all var(--transition-fast);
}

.trust-strip__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--glass-shadow);
  border-color: rgba(0, 180, 216, 0.28);
  background: var(--white);
}

.trust-strip__icon {
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.2), rgba(214, 51, 132, 0.16));
  color: var(--cyan);
  box-shadow: 0 4px 14px rgba(0, 180, 216, 0.18);
}

.trust-strip__icon svg {
  width: 24px;
  height: 24px;
}

.trust-strip__item h3,
.trust-strip__item h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-heading);
}

.trust-strip__item p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  font-weight: 500;
}

/* About Preview */
.about-preview {
  padding-top: calc(var(--section-pad) * 0.85);
  padding-bottom: calc(var(--section-pad) * 0.5);
}

.about-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-preview__content p {
  color: var(--text-muted);
  margin: 16px 0 24px;
  line-height: 1.8;
}

.about-preview__visual {
  position: relative;
}

.about-preview__img {
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  background: var(--gradient-luxury);
  position: relative;
  overflow: hidden;
}

.about-preview__img::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-lg);
}

.about-preview__badge {
  position: absolute;
  bottom: 24px;
  left: -24px;
  padding: 20px 28px;
  text-align: center;
  min-width: 140px;
}

.about-preview__badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--cyan);
  line-height: 1;
}

.about-preview__badge span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Stats Bar */
.stats-bar {
  background: linear-gradient(135deg, #00B4D8 0%, #008FAD 42%, #D63384 100%);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.65;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.stats-bar__item {
  text-align: center;
  color: var(--white);
}

.stats-bar__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 6px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.stats-bar__item span {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.95;
  letter-spacing: 0.04em;
}

/* Services */
.services {
  background: var(--white);
  overflow: visible;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 8px 4px 12px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.08);
}

.service-card__visual {
  position: relative;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-card__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.6;
  transition: opacity var(--transition);
}

.service-card:hover .service-card__visual::before {
  opacity: 0.85;
}

.service-card__visual--lenses {
  background: linear-gradient(135deg, #dbeafe 0%, #e9d5ff 50%, #fce7f3 100%);
}

.service-card__visual--lenses::before {
  background: radial-gradient(circle at 30% 30%, rgba(0, 180, 216, 0.35), transparent 55%);
}

.service-card__visual--eyecare {
  background: linear-gradient(135deg, #ccfbf1 0%, #fef9c3 50%, #d1fae5 100%);
}

.service-card__visual--eyecare::before {
  background: radial-gradient(circle at 70% 25%, rgba(244, 208, 63, 0.4), transparent 55%);
}

.service-card__visual--beauty {
  background: linear-gradient(135deg, #bfdbfe 0%, #fbcfe8 50%, #fed7aa 100%);
}

.service-card__visual--beauty::before {
  background: radial-gradient(circle at 40% 60%, rgba(214, 51, 132, 0.3), transparent 55%);
}

.service-card__visual--private {
  background: linear-gradient(135deg, #fef3c7 0%, #a7f3d0 50%, #bae6fd 100%);
}

.service-card__visual--private::before {
  background: radial-gradient(circle at 60% 40%, rgba(0, 180, 216, 0.35), transparent 55%);
}

.service-card__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  color: var(--text-dark);
  transition: all var(--transition);
}

.service-card:hover .service-card__icon {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
}

.service-card__icon svg {
  width: 44px;
  height: 44px;
}

.service-card__body {
  padding: 24px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.service-card__body p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
  flex: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--cyan);
  transition: all var(--transition-fast);
  margin-top: auto;
}

.service-card__link svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.service-card__link:hover {
  color: var(--magenta);
  gap: 12px;
}

.service-card__link:hover svg {
  transform: translateX(4px);
}

/* Quality Section */
.quality-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.quality-section__visual {
  overflow: hidden;
  padding: 0;
}

.quality-section__visual-inner {
  aspect-ratio: 4/3;
  background: radial-gradient(circle at 40% 40%, var(--cyan-soft), var(--magenta-soft), var(--yellow-soft));
  border-radius: var(--radius-lg);
}

.quality-section__content p {
  color: var(--text-muted);
  margin: 16px 0 28px;
  line-height: 1.8;
}

.progress-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.progress-item__head {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.progress-item__head span:last-child {
  color: var(--cyan);
  font-weight: 600;
}

.progress-item__bar {
  height: 8px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-item__fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  border-radius: var(--radius-full);
  transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Shop Steps */
.shop-steps {
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.shop-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.shop-step {
  padding: 32px 28px;
  text-align: center;
  transition: all var(--transition);
}

.shop-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
}

.shop-step__num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--cyan);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 12px;
}

.shop-step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.shop-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Sale CTA Banner */
.sale-cta {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}

.sale-cta__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.sale-cta__base {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    #1e3a47 0%,
    #254a58 25%,
    #2d5a68 50%,
    #224e5c 75%,
    #1e3a47 100%
  );
  background-size: 300% 300%;
  animation: saleGradientShift 14s ease-in-out infinite;
}

.sale-cta__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.72;
  will-change: transform;
}

.sale-cta__orb--cyan {
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  top: -12%;
  left: -8%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.75) 0%, transparent 68%);
  animation: saleOrbDrift1 18s ease-in-out infinite;
}

.sale-cta__orb--magenta {
  width: min(380px, 50vw);
  height: min(380px, 50vw);
  top: 10%;
  right: -10%;
  background: radial-gradient(circle, rgba(214, 51, 132, 0.65) 0%, transparent 68%);
  animation: saleOrbDrift2 22s ease-in-out infinite;
}

.sale-cta__orb--gold {
  width: min(300px, 40vw);
  height: min(300px, 40vw);
  bottom: -18%;
  left: 38%;
  background: radial-gradient(circle, rgba(244, 208, 63, 0.45) 0%, transparent 70%);
  animation: saleOrbDrift3 16s ease-in-out infinite;
}

.sale-cta__wave {
  position: absolute;
  inset: -40% -20%;
  background: radial-gradient(
    ellipse at 50% 120%,
    rgba(0, 180, 216, 0.18) 0%,
    rgba(214, 51, 132, 0.08) 35%,
    transparent 62%
  );
  animation: saleWavePulse 8s ease-in-out infinite;
}

.sale-cta__shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 42%,
    rgba(255, 255, 255, 0.07) 50%,
    transparent 58%
  );
  background-size: 220% 100%;
  animation: saleShimmerSweep 6s ease-in-out infinite;
}

.sale-cta__sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sale-cta__sparkles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 12px rgba(0, 180, 216, 0.8);
  animation: saleSparkle 4s ease-in-out infinite;
}

.sale-cta__sparkles span:nth-child(1) { top: 22%; left: 18%; animation-delay: 0s; }
.sale-cta__sparkles span:nth-child(2) { top: 35%; right: 22%; animation-delay: 0.8s; width: 3px; height: 3px; }
.sale-cta__sparkles span:nth-child(3) { bottom: 28%; left: 28%; animation-delay: 1.6s; }
.sale-cta__sparkles span:nth-child(4) { top: 48%; left: 52%; animation-delay: 2.2s; width: 5px; height: 5px; }
.sale-cta__sparkles span:nth-child(5) { bottom: 35%; right: 30%; animation-delay: 1.1s; }
.sale-cta__sparkles span:nth-child(6) { top: 18%; right: 38%; animation-delay: 2.8s; width: 3px; height: 3px; }

/* ============================================================
   MODALS
   ============================================================ */
.modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

.modal {
  background: var(--bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  max-width: 90%;
}

.modal-backdrop.open .modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

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

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

@keyframes saleOrbDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, 25px) scale(1.08); }
  66% { transform: translate(20px, -15px) scale(0.95); }
}

@keyframes saleOrbDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-35px, 30px) scale(1.1); }
}

@keyframes saleOrbDrift3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.45; }
  50% { transform: translate(-25px, -20px) scale(1.15); opacity: 0.65; }
}

@keyframes saleWavePulse {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.7; }
  50% { transform: translateY(-6%) scale(1.05); opacity: 1; }
}

@keyframes saleShimmerSweep {
  0% { background-position: 120% 0; }
  100% { background-position: -120% 0; }
}

@keyframes saleSparkle {
  0%, 100% { opacity: 0.15; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.3); }
}

.sale-cta__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 640px;
  text-align: center;
  margin: 0 auto;
  padding: 0 16px;
}

.sale-cta__content::before {
  content: '';
  position: absolute;
  inset: -48px -32px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.28) 0%, transparent 72%);
  z-index: -1;
  pointer-events: none;
}

.sale-cta__eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7ee8ff;
  margin-bottom: 18px;
  text-shadow: 0 0 20px rgba(0, 180, 216, 0.5);
}

.sale-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  margin-bottom: 18px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.35),
    0 4px 32px rgba(0, 0, 0, 0.25);
}

.sale-cta h2 em {
  font-style: normal;
  color: #ffe566;
  font-weight: 700;
  text-shadow:
    0 0 24px rgba(244, 208, 63, 0.65),
    0 2px 8px rgba(0, 0, 0, 0.3);
}

.sale-cta p {
  font-size: clamp(15px, 2vw, 17px);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  margin-bottom: 32px;
  line-height: 1.7;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

.sale-cta .btn--primary {
  position: relative;
  z-index: 1;
  background: var(--white);
  color: #1a4a58;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 16px 36px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.2);
}

.sale-cta .btn--primary:hover {
  background: #f0f9ff;
  color: var(--cyan);
  transform: translateY(-3px);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.4),
    0 0 24px rgba(0, 180, 216, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  .sale-cta__base,
  .sale-cta__orb,
  .sale-cta__wave,
  .sale-cta__shimmer,
  .sale-cta__sparkles span,
  .pre-footer-cta__shimmer {
    animation: none;
  }
}

/* Team Section */
.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  text-align: center;
  padding: 32px 20px;
  transition: all var(--transition);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.team-card__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: var(--gradient-luxury);
  border: 3px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.team-card__avatar--1 { background: radial-gradient(circle at 30% 30%, #E8C4D0, #D63384); }
.team-card__avatar--2 { background: radial-gradient(circle at 30% 30%, #B8E0EC, #00B4D8); }
.team-card__avatar--3 { background: radial-gradient(circle at 30% 30%, #F5E6C8, #C4956A); }
.team-card__avatar--4 { background: radial-gradient(circle at 30% 30%, #D4C4E8, #8B6BAE); }

.team-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.team-card p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Blog Section */
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  overflow: hidden;
  padding: 0;
  transition: all var(--transition);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.blog-card__img {
  aspect-ratio: 16/10;
  background: var(--gradient-luxury);
  background-size: cover;
  background-position: center;
}

.blog-card__body {
  padding: 24px;
}

.blog-card__body time {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

.blog-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 10px 0 14px;
  line-height: 1.4;
}

.blog-card__body a {
  font-size: 13px;
  font-weight: 500;
  color: var(--cyan);
  transition: color var(--transition-fast);
}

.blog-card__body a:hover { color: var(--magenta); }

/* Pre-Footer CTA */
.pre-footer-cta {
  position: relative;
  padding: clamp(40px, 6vw, 64px) 0;
  overflow: hidden;
  isolation: isolate;
}

.pre-footer-cta__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.pre-footer-cta__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #0096b4 0%,
    #00B4D8 35%,
    #00a8c8 65%,
    #0088a5 100%
  );
}

.pre-footer-cta__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.55;
  pointer-events: none;
}

.pre-footer-cta__orb--magenta {
  width: min(320px, 45vw);
  height: min(320px, 45vw);
  top: -20%;
  right: 8%;
  background: radial-gradient(circle, rgba(214, 51, 132, 0.5) 0%, transparent 70%);
}

.pre-footer-cta__orb--gold {
  width: min(260px, 38vw);
  height: min(260px, 38vw);
  bottom: -25%;
  left: 12%;
  background: radial-gradient(circle, rgba(244, 208, 63, 0.35) 0%, transparent 70%);
}

.pre-footer-cta__shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 60%
  );
  background-size: 200% 100%;
  animation: saleShimmerSweep 8s ease-in-out infinite;
}

.pre-footer-cta__card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(28px, 4vw, 40px) clamp(28px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-xl);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.pre-footer-cta__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 10px;
}

.pre-footer-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 10px;
}

.pre-footer-cta__title em {
  font-style: normal;
  color: var(--yellow);
  text-shadow: 0 0 24px rgba(244, 208, 63, 0.35);
}

.pre-footer-cta__desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 18px;
  max-width: 420px;
}

.pre-footer-cta__features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.pre-footer-cta__features li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.pre-footer-cta__features svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--yellow);
}

.pre-footer-cta__visual {
  position: relative;
  width: clamp(120px, 14vw, 160px);
  height: clamp(120px, 14vw, 160px);
  flex-shrink: 0;
}

.pre-footer-cta__lens {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), inset 0 2px 8px rgba(255, 255, 255, 0.25);
}

.pre-footer-cta__lens--hazel {
  width: 56%;
  height: 56%;
  top: 0;
  left: 0;
  background: radial-gradient(circle at 35% 35%, #B8956C, #8B7355 40%, #6B5344 70%, #4A3728);
  z-index: 3;
}

.pre-footer-cta__lens--ocean {
  width: 48%;
  height: 48%;
  bottom: 4%;
  right: 0;
  background: radial-gradient(circle at 35% 35%, #4A9EC4, #2E6B8A 40%, #1E5570 70%, #0E3A50);
  z-index: 2;
}

.pre-footer-cta__lens--honey {
  width: 38%;
  height: 38%;
  bottom: 18%;
  left: 28%;
  background: radial-gradient(circle at 35% 35%, #E8C49A, #C4956A 40%, #A07848 70%, #7A5830);
  z-index: 1;
}

.pre-footer-cta__action {
  flex-shrink: 0;
}

.pre-footer-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--cyan);
  padding: 14px 28px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.pre-footer-cta__btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.pre-footer-cta__btn:hover {
  background: var(--bg-soft);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.pre-footer-cta__btn:hover svg {
  transform: translateX(3px);
}

/* Enhanced Footer */
.footer__grid--enhanced {
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
}

.footer__contact-block {
  margin-bottom: 20px;
}

.footer__contact-block p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
  line-height: 1.6;
}

.footer__contact-block a {
  color: var(--text-dark);
  transition: color var(--transition-fast);
}

.footer__contact-block a:hover { color: var(--cyan); }

.footer__newsletter p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.footer__newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__newsletter-form input {
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition-fast);
}

.footer__newsletter-form input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-soft);
}

/* About Page */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-story__visual {
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  background: var(--gradient-luxury);
  position: relative;
  overflow: hidden;
}

.about-story__visual::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-lg);
}

.about-story__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 20px;
}

.about-story__content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.stat-card {
  text-align: center;
  padding: 32px 20px;
}

.stat-card__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card__label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
  letter-spacing: 0.05em;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  padding: 36px 28px;
  transition: all var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info__card {
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all var(--transition);
}

.contact-info__card:hover {
  transform: translateX(6px);
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-luxury);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__icon svg {
  width: 22px;
  height: 22px;
}

.contact-info__card h4 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-info__card p,
.contact-info__card a {
  font-size: 15px;
  color: var(--text-muted);
}

.contact-form {
  padding: clamp(32px, 5vw, 48px);
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.contact-form > p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 14px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-soft);
  background: var(--white);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-map {
  margin-top: 42px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.contact-map iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
}

/* Collections Page */
.collection-section {
  margin-bottom: 80px;
}

.collection-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 20px;
  flex-wrap: wrap;
}

.collection-section__header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.collection-section__header p {
  color: var(--text-muted);
  max-width: 400px;
  font-size: 14px;
}

.footer__brand img {
  height: 64px;
  width: auto;
  max-width: 220px;
}

.page-hero--compact {
  padding: calc(var(--nav-height) + 32px) 0 48px;
}

/* ============================================================
   PRODUCT MODAL (QUICK VIEW)
   ============================================================ */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.product-modal.open {
  opacity: 1;
  visibility: visible;
}

.product-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.product-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 1020px;
  max-height: 92vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, #ffffff 0%, #f8f9fb 55%, #f5eff3 100%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 28px;
  box-shadow:
    0 0 0 1px rgba(0, 180, 216, 0.1),
    0 40px 80px rgba(0, 0, 0, 0.16),
    0 12px 32px rgba(214, 51, 132, 0.08);
  transform: translateY(24px) scale(0.96);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-modal.open .product-modal__dialog {
  transform: translateY(0) scale(1);
}

.product-modal__close {
  position: static;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  color: var(--text-dark);
}

.product-modal__close svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.25;
}

.product-modal__close:hover {
  background: #f9fafb;
  border-color: #d1d5db;
  color: var(--text-dark);
  transform: none;
}

.product-modal__grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.15fr);
  gap: 0;
  max-height: 92vh;
}

.product-modal__gallery {
  padding: 32px 28px 32px 32px;
  background: linear-gradient(145deg, rgba(0, 180, 216, 0.04), rgba(214, 51, 132, 0.03));
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.product-modal__image-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.product-modal__image {
  aspect-ratio: 1;
  width: 100%;
  border-radius: 22px;
}

.product-modal__image-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.35) 50%, transparent 62%);
  pointer-events: none;
  animation: shimmer 4s ease-in-out infinite;
}

.product-modal__info {
  padding: 28px 32px 32px 28px;
  overflow-y: auto;
  max-height: 92vh;
}

.product-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.product-modal__was {
  display: block;
  font-size: 12px;
  color: var(--magenta);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.product-modal__rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  min-width: 0;
}

.modal-stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.product-modal__reviews {
  color: #9ca3af;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}

.modal-stars__icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  color: #e5e7eb;
}

.modal-stars__icon svg {
  width: 100%;
  height: 100%;
}

.modal-stars__icon--filled {
  color: #eab308;
}

.product-modal__title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.12;
}

.product-modal__subtitle {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
  font-weight: 500;
}


.product-modal__pricing {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 14px;
}

.product-modal__price {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.product-modal__old-price {
  font-size: 1.05rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.product-modal__sale-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: linear-gradient(90deg, #16a34a, #22c55e);
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  margin-bottom: 12px;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}

.product-modal__sale-off {
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.product-modal__sale-timer strong {
  font-variant-numeric: tabular-nums;
}

.product-modal__views {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #16a34a;
  margin-bottom: 14px;
}

.product-modal__views-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.product-modal__views-icon svg {
  width: 100%;
  height: 100%;
}

.product-modal__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.product-modal__var-label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.product-modal__var-label span {
  color: var(--cyan);
  font-weight: 700;
}

.product-modal__var-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.var-thumb {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  padding: 5px;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.var-thumb:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.var-thumb.active {
  border-color: var(--text-dark);
  box-shadow: 0 0 0 3px var(--cyan-soft);
  transform: scale(1.05);
}

.var-thumb__swatch {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.product-modal__quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
}

.product-modal__qty-label {
  font-size: 14px;
  font-weight: 600;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.qty-btn {
  width: 44px;
  height: 44px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
  color: var(--text-dark);
}

.qty-btn:hover {
  background: var(--cyan-soft);
  color: var(--cyan);
}

.qty-value {
  width: 52px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  font-variant-numeric: tabular-nums;
}

.product-modal__offer {
  padding: 18px 20px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 1.5px solid #fbbf24;
  border-radius: var(--radius-md);
}

.product-modal__offer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
}

.product-modal__offer-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-modal__offer-title svg {
  width: 18px;
  height: 18px;
  color: #d97706;
}

.product-modal__offer-badge {
  background: var(--text-dark);
  color: var(--white);
  font-size: 10px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.08em;
  font-weight: 700;
}

.product-modal__offer-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.product-modal__offer-body strong {
  font-size: 15px;
  display: block;
  margin-bottom: 4px;
}

.product-modal__offer-body p {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--cyan);
  font-weight: 500;
  margin: 0;
}

.product-modal__check-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  background: var(--cyan);
  color: var(--white);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-modal__check-icon svg {
  width: 10px;
  height: 10px;
}

.product-modal__offer-discount {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: var(--white);
  font-weight: 800;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.35);
}

.product-modal__bulk {
  position: relative;
  border: 1.5px solid #fdba74;
  border-radius: var(--radius-md);
  padding: 22px 18px 16px;
  margin-bottom: 22px;
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
}

.product-modal__bulk-tag {
  position: absolute;
  top: -11px;
  left: 18px;
  background: var(--text-dark);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  padding: 5px 14px;
  letter-spacing: 0.1em;
  border-radius: 4px;
}

.product-modal__bulk-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}

.product-modal__bulk-body a {
  color: var(--cyan);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-modal__bulk-body a:hover {
  color: var(--magenta);
}

.product-modal__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 22px;
}

.btn--modal-cart,
.btn--modal-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition-fast);
  min-height: 54px;
}

.btn--modal-cart svg,
.btn--modal-buy svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn--modal-cart {
  background: var(--white);
  border: 2px solid var(--text-dark);
  color: var(--text-dark);
}

.btn--modal-cart:hover {
  background: var(--text-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.btn--modal-buy {
  background: var(--text-dark);
  border: 2px solid var(--text-dark);
  color: var(--white);
}

.btn--modal-buy:hover {
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 180, 216, 0.35);
}

.btn--modal-cart:hover svg,
.btn--modal-buy:hover svg {
  transform: none;
}

.btn--outline {
  background: var(--white);
  border: 2px solid var(--text-dark);
  color: var(--text-dark);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.btn--outline:hover {
  background: var(--text-dark);
  color: var(--white);
}

.product-modal__trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  text-align: center;
  margin-bottom: 22px;
  padding: 18px 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
}

.product-modal__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.product-modal__trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-soft), var(--magenta-soft));
  color: var(--cyan);
}

.product-modal__trust-icon svg {
  width: 22px;
  height: 22px;
}

.product-modal__trust-item small {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.3;
  display: block;
}

.product-modal__mini-reviews {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mini-review {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.mini-review__head {
  margin-bottom: 10px;
}

.mini-review__stars {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.mini-review__stars .modal-stars__icon {
  width: 14px;
  height: 14px;
}

.mini-review__stars span {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}

.mini-review__verified {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #16a34a;
  font-weight: 600;
}

.mini-review__check {
  display: inline-flex;
  width: 16px;
  height: 16px;
  background: #16a34a;
  color: var(--white);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

.mini-review__check svg {
  width: 10px;
  height: 10px;
}

.mini-review__text {
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.65;
  margin-bottom: 10px;
}

.mini-review__author {
  font-size: 12px;
  color: var(--text-light);
}

.cart-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: linear-gradient(135deg, var(--text-dark), var(--charcoal-soft));
  color: var(--white);
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  z-index: 10001;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 180, 216, 0.3);
  letter-spacing: 0.02em;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
  opacity: 0;
  pointer-events: none;
}

.cart-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

[data-product-id] {
  cursor: pointer;
}

/* ============================================================
   CART PAGE
   ============================================================ */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto auto auto;
  gap: 20px;
  align-items: center;
  padding: 20px;
  margin-bottom: 16px;
}

.cart-item__img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
}

.cart-item__info h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.cart-item__info p {
  font-size: 13px;
  color: var(--text-muted);
}

.cart-item__price {
  font-weight: 600;
  font-size: 14px;
}

.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-full);
  padding: 4px;
}

.cart-item__qty .qty-btn {
  width: 32px;
  height: 32px;
  font-size: 16px;
}

.cart-item__total {
  font-weight: 700;
  font-size: 16px;
  min-width: 90px;
  text-align: right;
}

.cart-item__remove {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  color: var(--text-light);
  transition: all var(--transition-fast);
}

.cart-item__remove:hover {
  background: #fee2e2;
  color: #dc2626;
}

.cart-summary {
  padding: 28px;
  position: sticky;
  top: calc(var(--nav-height) + 20px);
}

.cart-summary h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cart-summary__row--discount span:last-child {
  color: #22c55e;
}

.cart-summary__row--total {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  border-bottom: none;
  padding-top: 16px;
}

.cart-summary__note {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 12px;
}

.cart-empty {
  text-align: center;
  padding: 80px 40px;
}

.cart-empty h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 12px;
}

.cart-empty p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.cart-empty__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
.checkout-section {
  background: var(--bg-soft);
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 400px);
  gap: 28px;
  align-items: start;
}

.checkout-main {
  min-width: 0;
}

.checkout-form {
  padding: clamp(28px, 4vw, 40px);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-lg);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.06),
    0 1px 3px rgba(0, 0, 0, 0.04);
}

.checkout-form.glass-card {
  background: var(--white);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.checkout-form h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(0, 180, 216, 0.2);
}

.checkout-form__section + .checkout-form__section {
  margin-top: 36px;
}

.checkout-form .form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.06em;
}

.checkout-form .form-group input,
.checkout-form .form-group select {
  background: #f8f9fb;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
  font-size: 15px;
}

.checkout-form .form-group input::placeholder {
  color: var(--text-light);
}

.checkout-form .form-group input:focus,
.checkout-form .form-group select:focus {
  background: var(--white);
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.15);
}

.checkout-form .form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23707070' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.checkout-sidebar {
  padding: clamp(24px, 3vw, 32px);
  position: sticky;
  top: calc(var(--nav-height) + 20px);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-lg);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.06),
    0 1px 3px rgba(0, 0, 0, 0.04);
}

.checkout-sidebar.glass-card {
  background: var(--white);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.checkout-sidebar h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.checkout-items {
  margin-bottom: 20px;
  max-height: 280px;
  overflow-y: auto;
}

.checkout-item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 13px;
}

.checkout-item__img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
}

.checkout-item p {
  color: var(--text-muted);
  font-size: 12px;
}

.checkout-sidebar .cart-summary__row {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.checkout-sidebar .cart-summary__row--total {
  border-bottom: none;
  padding-top: 14px;
  margin-top: 4px;
  border-top: 2px solid rgba(0, 0, 0, 0.08);
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  transition: all var(--transition-fast);
  background: #f8f9fb;
  cursor: pointer;
  text-align: left;
  width: 100%;
}

.payment-method:hover {
  border-color: rgba(0, 180, 216, 0.45);
  background: rgba(0, 180, 216, 0.06);
}

.payment-method.active {
  border-color: var(--cyan);
  background: rgba(0, 180, 216, 0.12);
  box-shadow: 0 0 0 1px rgba(0, 180, 216, 0.2);
}

.payment-method__icon {
  font-size: 20px;
}

.payment-note {
  margin-top: 20px;
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-dark);
  background: rgba(0, 180, 216, 0.1);
  border: 1px solid rgba(0, 180, 216, 0.2);
  border-radius: var(--radius-md);
}

.checkout-form__submit {
  width: 100%;
  justify-content: center;
  margin-top: 28px;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 700;
}

.checkout-success {
  text-align: center;
  padding: 80px 40px;
  max-width: 560px;
  margin: 0 auto;
}

.checkout-success__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #22c55e;
  color: var(--white);
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.checkout-success h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 12px;
}

.checkout-success__order {
  font-size: 18px;
  margin: 16px 0;
}

.nav__cart-btn {
  text-decoration: none;
  color: inherit;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet landscape */
@media (max-width: 1200px) {
  .products__grid,
  .products__grid--page { grid-template-columns: repeat(3, 1fr); }
  .beauty__grid { grid-template-columns: repeat(3, 1fr); }
  .why-us__grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-card { flex: 0 0 calc(50% - 14px); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .cart-layout,
  .checkout-layout { grid-template-columns: 1fr 320px; }
}

/* Tablet portrait */
@media (max-width: 1024px) {
  .hero__container { grid-template-columns: 1fr; text-align: center; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }
  .hero__visual { order: -1; }
  .categories__grid { grid-template-columns: repeat(2, 1fr); }
  .products__grid,
  .products__grid--page { grid-template-columns: repeat(2, 1fr); }
  .footer__grid,
  .footer__grid--enhanced { grid-template-columns: 1fr 1fr; }
  .about-story { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-preview__grid,
  .quality-section__grid { grid-template-columns: 1fr; gap: 40px; }
  .about-preview__badge { left: 16px; bottom: 16px; }
  .blog__grid { grid-template-columns: repeat(2, 1fr); }

  .journey__grid {
    max-width: 880px;
    grid-template-rows: repeat(2, 180px);
    gap: 12px;
  }
  .shop-steps__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pre-footer-cta { padding: 32px 0; }
  .pre-footer-cta__card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 24px;
  }
  .pre-footer-cta__desc { margin-left: auto; margin-right: auto; }
  .pre-footer-cta__features { justify-content: center; }
  .pre-footer-cta__visual {
    margin: 0 auto;
    width: 140px;
    height: 140px;
  }
  .pre-footer-cta__action { display: flex; justify-content: center; }
  .pre-footer-cta__btn { width: 100%; max-width: 300px; justify-content: center; }
  .cart-layout,
  .checkout-layout { grid-template-columns: 1fr; }
  .cart-summary,
  .checkout-sidebar { position: static; }
  .checkout-sidebar { order: -1; }
}

@media (max-width: 1100px) {
  :root { --logo-height: clamp(68px, 8vw, 88px); }
  .nav__cta-label { display: none; }
  .nav__cta { padding: 11px 14px; }
}

@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav { display: none; }
}

/* Mobile — primary breakpoint */
@media (max-width: 768px) {
  :root {
    --nav-height: 76px;
    --logo-height: clamp(56px, 8vw, 72px);
    --section-pad: 40px;
    --container-max: 100%;
  }

  html { overflow-x: hidden; }

  .container,
  .hero__container { padding: 0 16px; }

  /* Header */
  .header__inner {
    min-height: 64px;
    padding: 10px 16px;
    gap: 8px;
  }

  .nav__logo { max-width: 130px; flex-shrink: 1; }
  .nav__logo img { max-width: 130px; height: 44px; }
  .nav__actions { gap: 6px; flex-shrink: 0; }
  .nav__cta-text { display: none; }
  .nav__cta { padding: 10px; margin-left: 0; }
  .nav__icon-btn { width: 38px; height: 38px; }
  .nav__icon-btn svg { width: 20px; height: 20px; }
  .nav__actions .nav__icon-btn:not(.nav__cart-btn):not(.nav__account-btn) { display: none; }

  /* Hero */
  .hero {
    min-height: auto;
    padding: calc(var(--nav-height) + 12px) 0 24px;
  }

  .hero__title { font-size: clamp(1.85rem, 8.5vw, 2.6rem); }
  .hero__subtitle { font-size: 15px; max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; max-width: none; justify-content: center; }
  .lens-scene { width: 220px; height: 220px; }
  .lens-3d { width: 150px; height: 150px; }
  .lens-selector { margin-top: 16px; width: 100%; max-width: 320px; }

  /* Sections */
  .section { padding: var(--section-pad) 0; }
  .section__header { margin-bottom: 32px; }
  .section__title { font-size: clamp(1.65rem, 6.5vw, 2.2rem); }
  .section__desc { font-size: 15px; max-width: 100%; }

  /* Page hero */
  .page-hero { padding: calc(var(--nav-height) + 28px) 0 40px; }
  .page-hero__title { font-size: clamp(1.75rem, 7vw, 2.4rem); }
  .page-hero__desc { font-size: 15px; padding: 0 8px; }

  /* About preview */
  .about-preview__content { text-align: center; }
  .about-preview__content .btn { width: 100%; max-width: 280px; }
  .about-preview__visual { max-width: 360px; margin: 0 auto; width: 100%; }
  .about-preview__badge { left: 12px; bottom: 12px; min-width: 0; padding: 14px 20px; }

  /* Grids */
  .category-carousel {
    padding: 0 40px;
  }

  .category-carousel__card.is-left-2,
  .category-carousel__card.is-right-2 {
    opacity: 0;
    pointer-events: none;
  }

  .categories__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .products__grid,
  .products__grid--page {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
    margin: 0;
    gap: 12px;
  }
  .beauty__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .collections__grid { grid-template-columns: 1fr; gap: 16px; }
  .collection-banner { aspect-ratio: auto; height: 180px; }
  .why-us__grid { grid-template-columns: 1fr; gap: 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stats-bar__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .collection-section__header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .trust-strip__grid { grid-template-columns: 1fr; gap: 12px; }
  .trust-strip__item { padding: 14px 16px; }
  .services__grid { grid-template-columns: 1fr; gap: 16px; }
  .team__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .blog__grid { grid-template-columns: 1fr; max-width: none; }
  .shop-steps__grid { max-width: none; }

  /* Product cards */
  .product-card { border-radius: var(--radius-md); }
  .product-card__body { padding: 14px; }
  .product-card__title { font-size: 1rem; }
  .product-card__price { font-size: 15px; }
  .product-card__actions { flex-direction: column; gap: 6px; }
  .product-card__actions .btn { font-size: 11px; padding: 8px 10px; }
  .beauty-card { padding: 16px 12px 20px; }
  .beauty-card h3 { font-size: 0.95rem; }

  /* Filters */
  .filters {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 28px;
    padding-top: 4px;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .filters::-webkit-scrollbar { display: none; }
  .filter-btn { flex-shrink: 0; padding: 8px 16px; font-size: 12px; }

  /* Stats & CTA */
  .stats-bar { padding: 28px 0; }
  .stats-bar__item strong { font-size: 1.75rem; }
  .sale-cta { padding: 56px 0; }
  .sale-cta h2 { font-size: clamp(1.6rem, 6.5vw, 2.2rem); }
  .sale-cta p { font-size: 14px; padding: 0 8px; }
  .pre-footer-cta { padding: 28px 0; }
  .pre-footer-cta__card { gap: 20px; padding: 24px 20px; }
  .pre-footer-cta__features { flex-direction: column; align-items: center; gap: 8px; }
  .pre-footer-cta__btn { max-width: 100%; }

  /* Testimonials & social */
  .testimonial-card { flex: 0 0 100%; padding: 28px 20px; }
  .testimonial-card blockquote { font-size: 15px; }
  .instagram__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .instagram__item--wide,
  .instagram__item--tall { grid-column: span 1; grid-row: span 1; }

  .journey__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    max-width: 560px;
  }

  .journey__item--1,
  .journey__item--2,
  .journey__item--3,
  .journey__item--4,
  .journey__item--5,
  .journey__item--6 {
    grid-column: auto;
    grid-row: auto;
    min-height: 180px;
  }

  .journey__item--5 {
    grid-column: 1 / -1;
    min-height: 200px;
  }

  .blog-modal__body { padding: 22px 20px 28px; }
  .blog-modal__dialog { max-height: 94vh; }

  /* Newsletter & footer */
  .newsletter__form { flex-direction: column; }
  .newsletter__form input,
  .newsletter__form .btn { width: 100%; }
  .footer__grid,
  .footer__grid--enhanced { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer__legal { flex-wrap: wrap; justify-content: center; gap: 12px; }

  /* Cart & checkout */
  .cart-item {
    grid-template-columns: 64px 1fr;
    grid-template-areas:
      "img info"
      "img qty"
      "img total"
      "img remove";
    gap: 10px 12px;
    padding: 16px;
  }
  .cart-item__img { grid-area: img; width: 64px; height: 64px; }
  .cart-item__info { grid-area: info; min-width: 0; }
  .cart-item__qty { grid-area: qty; justify-self: start; }
  .cart-item__total { grid-area: total; font-size: 15px; }
  .cart-item__remove { grid-area: remove; justify-self: start; }
  .cart-empty { padding: 48px 20px; }
  .cart-empty__actions { flex-direction: column; align-items: center; }
  .payment-methods { grid-template-columns: 1fr; }

  /* Modal */
  .product-modal { padding: 12px; align-items: flex-end; }
  .product-modal__dialog {
    max-height: 92vh;
    border-radius: 24px 24px 0 0;
    overflow-y: auto;
  }
  .product-modal__grid { grid-template-columns: 1fr; max-height: none; }
  .product-modal__gallery { padding: 20px 20px 0; border-right: none; border-bottom: 1px solid rgba(0,0,0,0.05); }
  .product-modal__image-wrap { max-width: 280px; margin: 0 auto; }
  .product-modal__info { padding: 20px 20px 28px; max-height: none; overflow: visible; }
  .product-modal__actions { grid-template-columns: 1fr; }
  .product-modal__trust { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-modal__mini-reviews { grid-template-columns: 1fr; }
  .product-modal__sale-bar { flex-direction: column; align-items: flex-start; gap: 6px; border-radius: var(--radius-md); }
  .product-modal__reviews { white-space: normal; font-size: 12px; }
  .product-modal__header { flex-wrap: wrap; gap: 10px; }
  .checkout-item { grid-template-columns: 44px 1fr auto; gap: 10px; font-size: 13px; }
  .checkout-item__img { width: 44px; height: 44px; }

  /* Misc */
  .luxury-banner__content span { font-size: 11px; }
  .quality-section__grid { gap: 28px; }
  .category-card__overlay h3 { font-size: 1rem; }
  .service-card__visual { min-height: 160px; }
  .about-story__visual { min-height: 240px; }
  .contact-info__card { padding: 20px; flex-direction: column; align-items: flex-start; }
  .contact-form { padding: 24px 20px; }
  .contact-map iframe { height: 300px; }
  .cursor-glow { display: none; }
  [data-tilt] { transform: none !important; }
  .magnetic-btn { transform: none !important; }
}

/* Small phones */
@media (max-width: 480px) {
  :root {
    --nav-height: 72px;
    --logo-height: clamp(52px, 14vw, 64px);
    --section-pad: 36px;
  }

  .contact-map iframe { height: 260px; }

  .nav__logo,
  .nav__logo img { max-width: 110px; height: 40px; }
  .nav__icon-btn { width: 36px; height: 36px; }

  .hero__title { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .lens-scene { width: 200px; height: 200px; }
  .lens-3d { width: 140px; height: 140px; }

  .category-carousel {
    padding: 0 36px;
  }

  .category-carousel__viewport {
    height: 360px;
  }

  .category-carousel__card.is-left-1 {
    transform: translate(calc(-50% - 170px), -50%) scale(0.82);
  }

  .category-carousel__card.is-right-1 {
    transform: translate(calc(-50% + 170px), -50%) scale(0.82);
  }

  .categories__grid { grid-template-columns: 1fr; }
  .products__grid,
  .products__grid--page { grid-template-columns: 1fr; gap: 16px; }
  .beauty__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .team__grid { grid-template-columns: 1fr; }
  .stats-bar__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stats-bar__item strong { font-size: 1.5rem; }
  .why-us__grid { grid-template-columns: 1fr; }

  .btn { width: 100%; max-width: none; justify-content: center; }
  .section-cta .btn { max-width: 100%; }

  .lens-selector__colors { gap: 8px; }
  .lens-color { width: 28px; height: 28px; }

  .service-card__body { padding: 20px 18px 24px; }
  .trust-strip__icon { width: 40px; height: 40px; }
  .trust-strip__icon svg { width: 20px; height: 20px; }

  .product-modal { padding: 0; }
  .product-modal__dialog { border-radius: 20px 20px 0 0; max-height: 94vh; }
  .product-modal__close { top: 12px; right: 12px; width: 40px; height: 40px; }

  .cart-toast {
    left: 16px;
    right: 16px;
    transform: translateX(0) translateY(80px);
    width: auto;
    text-align: center;
  }
  .cart-toast.show { transform: translateX(0) translateY(0); }
}

/* Very small screens */
@media (max-width: 360px) {
  .beauty__grid { grid-template-columns: 1fr; }
  .stats-bar__grid { grid-template-columns: 1fr; }
  .beauty-carousel .beauty-card { flex: 0 0 78vw; min-width: 0; }
  .nav__cta { display: none; }
  .product-card__actions .btn { font-size: 10px; }
}

/* ============================================================
   AUTH & ACCOUNT
   ============================================================ */
.auth-section {
  min-height: calc(100vh - var(--nav-height) - 120px);
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 40px) 0 80px;
  background:
    radial-gradient(circle at 14% 18%, rgba(0, 180, 216, 0.16), transparent 24%),
    radial-gradient(circle at 82% 20%, rgba(214, 51, 132, 0.14), transparent 22%),
    radial-gradient(circle at 70% 85%, rgba(244, 208, 63, 0.12), transparent 24%),
    linear-gradient(160deg, #fffaf4 0%, #f2f7fb 48%, #f8eef3 100%);
}

.auth-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 560px);
  gap: 28px;
  align-items: center;
  width: 100%;
}

.auth-spotlight {
  padding: clamp(30px, 4vw, 42px);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.82)),
    linear-gradient(135deg, rgba(0, 180, 216, 0.08), rgba(214, 51, 132, 0.07), rgba(244, 208, 63, 0.08));
}

.auth-spotlight h2 {
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  margin-bottom: 14px;
  max-width: 15ch;
}

.auth-spotlight > p {
  color: var(--text-muted);
  max-width: 42ch;
  margin-bottom: 22px;
}

.auth-spotlight__list {
  display: grid;
  gap: 12px;
}

.auth-spotlight__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: var(--text-heading);
  font-weight: 500;
}

.auth-spotlight__list svg {
  width: 18px;
  height: 18px;
  color: var(--cyan);
  flex-shrink: 0;
}

.auth-card {
  width: 100%;
  max-width: 560px;
  padding: clamp(36px, 5vw, 54px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.88)),
    linear-gradient(135deg, rgba(0, 180, 216, 0.06), rgba(214, 51, 132, 0.05), rgba(244, 208, 63, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(16, 24, 40, 0.16);
  position: relative;
  overflow: hidden;
}

.auth-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 180, 216, 0.12), transparent 16%),
    radial-gradient(circle at 84% 12%, rgba(214, 51, 132, 0.12), transparent 18%),
    radial-gradient(circle at 82% 84%, rgba(244, 208, 63, 0.14), transparent 20%);
  pointer-events: none;
}

.auth-card > * {
  position: relative;
  z-index: 1;
}

.auth-card__header {
  text-align: center;
  margin-bottom: 28px;
}

.auth-card__header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 10px;
}

.auth-card__header p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 34rem;
  margin: 0 auto;
}

.auth-card .form-group input,
.auth-card .form-group select,
.auth-card .form-group textarea {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(31, 41, 55, 0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.auth-card .form-group input:focus,
.auth-card .form-group select:focus,
.auth-card .form-group textarea:focus {
  box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.12);
}

.auth-form .form-group label {
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.auth-form__submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  padding: 14px;
  font-weight: 700;
}

.auth-card__footer {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-muted);
}

.auth-card__footer a {
  color: var(--cyan);
  font-weight: 600;
}

.auth-card__footer a:hover {
  color: var(--magenta);
}

.auth-message {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  margin-bottom: 20px;
}

.auth-message--error {
  background: rgba(214, 51, 132, 0.1);
  color: #9b2252;
  border: 1px solid rgba(214, 51, 132, 0.2);
}

.auth-message--success {
  background: rgba(0, 180, 216, 0.1);
  color: #007a94;
  border: 1px solid rgba(0, 180, 216, 0.25);
}

.account-section {
  padding: 28px 0 80px;
  overflow: visible;
}

/* Deals */
.deals {
  padding-top: 0;
}

.deals__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.deal-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(240px, 34%) minmax(0, 1fr);
  min-height: 320px;
}

.deal-card__visual {
  position: relative;
  min-height: 100%;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.9), rgba(214, 51, 132, 0.82));
}

.deal-card__visual.product-card__img--hazel {
  background: linear-gradient(135deg, rgba(139, 115, 85, 0.94), rgba(74, 55, 40, 0.92));
}

.deal-card__visual.product-card__img--ocean {
  background: linear-gradient(135deg, rgba(46, 107, 138, 0.94), rgba(28, 64, 88, 0.92));
}

.deal-card__visual.product-card__img--honey {
  background: linear-gradient(135deg, rgba(196, 149, 106, 0.96), rgba(149, 100, 48, 0.9));
}

.deal-card__badge,
.deal-card__discount {
  position: absolute;
  left: 18px;
  right: 18px;
  display: inline-flex;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.16);
}

.deal-card__badge {
  top: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  font-size: 11px;
}

.deal-card__discount {
  bottom: 18px;
  font-size: 12px;
}

.deal-card__body {
  padding: clamp(22px, 4vw, 30px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.deal-card__body h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  margin-bottom: 10px;
}

.deal-card__description {
  color: var(--text-muted);
  margin-bottom: 18px;
}

.deal-card__products {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.deal-card__products li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.deal-card__products span {
  color: var(--text-heading);
  font-weight: 500;
}

.deal-card__products strong {
  color: var(--cyan);
}

.deal-card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.deal-card__footer span {
  color: var(--text-light);
  font-size: 14px;
}

.deals__empty {
  padding: 28px;
  text-align: center;
}

.deals__empty h3 {
  margin-bottom: 8px;
}

@media (max-width: 980px) {
  .auth-section {
    min-height: auto;
    padding: 24px 0 56px;
  }

  .deals__grid {
    grid-template-columns: 1fr;
  }

  .deal-card {
    grid-template-columns: 1fr;
  }

  .deal-card__visual {
    min-height: 220px;
  }

  .auth-section__inner {
    grid-template-columns: 1fr;
  }

  .auth-spotlight {
    display: none;
  }

  .auth-card {
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .auth-section {
    padding: 18px 0 44px;
  }

  .auth-card {
    padding: 24px 18px 22px;
    border-radius: 22px;
  }

  .auth-card__header {
    margin-bottom: 22px;
  }

  .auth-card__header h1 {
    font-size: clamp(1.7rem, 8vw, 2.1rem);
  }

  .auth-card__header p,
  .auth-card__footer {
    font-size: 13px;
  }

  .auth-form .form-group {
    margin-bottom: 14px;
  }

  .auth-form .form-group input,
  .auth-form .form-group select,
  .auth-form .form-group textarea {
    padding: 11px 13px;
  }

  .auth-form__submit {
    padding: 13px 16px;
  }
}

.page-hero--account {
  padding: calc(var(--nav-height) + 16px) 0 24px;
}

.page-hero--account .page-hero__title {
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  margin-bottom: 0;
}

.page-hero--account .breadcrumb {
  margin-bottom: 12px;
}

.account-layout {
  display: grid;
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  width: 100%;
}

.account-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: calc(var(--nav-height) + 16px);
  align-self: start;
}

.account-sidebar__user {
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.account-sidebar__greeting {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 8px;
}

.account-sidebar__user strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--text-dark);
  word-break: break-word;
}

.account-sidebar__user span {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  word-break: break-all;
  line-height: 1.4;
}

.account-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.account-tab {
  width: 100%;
  text-align: left;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid transparent;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.account-tab:hover {
  background: rgba(0, 180, 216, 0.06);
  color: var(--text-dark);
}

.account-tab.active {
  background: var(--white);
  color: var(--cyan);
  border-color: rgba(0, 180, 216, 0.25);
  box-shadow: 0 2px 12px rgba(0, 180, 216, 0.1);
}

.account-content {
  min-width: 0;
  width: 100%;
}

.account-panel {
  display: none;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.account-panel.active {
  display: flex;
}

.account-panel__card {
  width: 100%;
  box-sizing: border-box;
  padding: clamp(20px, 3vw, 32px);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.account-panel__card--form {
  margin-top: 0;
}

.account-panel .auth-form .form-group {
  margin-bottom: 16px;
}

.account-panel .auth-form .form-group label {
  font-weight: 600;
  color: var(--text-dark);
}

.account-panel .auth-form input,
.account-panel .auth-form select {
  width: 100%;
  box-sizing: border-box;
}

.account-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
  padding-top: 8px;
}

.account-panel__actions .btn {
  min-width: 140px;
}

.account-panel__card h2,
.account-panel__card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.account-panel__desc {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.account-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
}

.account-empty .btn {
  margin-top: 16px;
}

.form-hint {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 6px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  cursor: pointer;
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--cyan);
}

.orders-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.order-card {
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  background: #fafbfc;
}

.order-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.order-card__head strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.order-card__head time {
  font-size: 12px;
  color: var(--text-muted);
}

.order-card__status {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(0, 180, 216, 0.12);
  color: var(--cyan);
  flex-shrink: 0;
}

.order-card__items {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
  padding-left: 18px;
}

.order-card__items li {
  margin-bottom: 4px;
  list-style: disc;
}

.order-card__addr {
  font-size: 13px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.order-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 14px;
}

.addresses-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 8px;
}

.address-card {
  padding: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  background: #fafbfc;
}

.address-card--default {
  border-color: rgba(0, 180, 216, 0.35);
  background: rgba(0, 180, 216, 0.05);
}

.address-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.address-card__label {
  font-weight: 700;
  font-size: 14px;
}

.address-card__label em {
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  color: var(--cyan);
  margin-left: 6px;
}

.address-card__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.address-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.checkout-saved-address {
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(0, 180, 216, 0.06);
  border: 1px solid rgba(0, 180, 216, 0.15);
  border-radius: var(--radius-md);
}

body[data-page="account"] main {
  overflow: visible;
  min-height: auto;
}

body[data-page="account"] {
  overflow-x: hidden;
  overflow-y: auto;
}

@media (max-width: 1024px) {
  .account-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    max-width: 100%;
  }

  .account-sidebar {
    position: static;
    min-width: 0;
    max-width: 100%;
  }

  .account-nav {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .account-nav::-webkit-scrollbar { display: none; }

  .account-tab {
    flex-shrink: 0;
    white-space: nowrap;
    width: auto;
  }
}

@media (max-width: 768px) {
  .account-section {
    padding: 20px 0 64px;
  }

  .page-hero--account {
    padding: calc(var(--nav-height) + 12px) 0 20px;
  }

  .account-sidebar__user {
    padding: 14px 16px;
  }

  .account-panel__card {
    padding: 18px 16px;
  }

  .account-panel__actions {
    flex-direction: column;
  }

  .account-panel__actions .btn {
    width: 100%;
    min-width: 0;
  }

  .address-card__head {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   GLOBAL MOBILE RESPONSIVENESS
   ============================================================ */
@media (max-width: 991px) {
  .hero__container { grid-template-columns: 1fr; text-align: center; }
  .hero__visual { order: -1; margin-bottom: 24px; }
  .products__grid, .categories__grid, .deals__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
}

@media (max-width: 768px) {
  .header__inner { padding: 12px; }
  .nav__logo img { height: 60px; }
  .products__grid { grid-template-columns: 1fr 1fr; }
  .deals__grid { grid-template-columns: 1fr; }
  .trust-strip__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; text-align: center; }
  .quality-section__grid { grid-template-columns: 1fr; }
  .quality-section__visual { min-height: 250px; }
  .journey__grid { grid-template-columns: 1fr 1fr; }
  .section__title { font-size: 2.2rem; }
  .hero__title { font-size: 2.8rem; }
  .deals-header { padding: 100px 20px 40px; }
  .deal-banner { flex-direction: column; text-align: center; }
  .product-card--featured { flex-direction: column; }
  .filters { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding-bottom: 12px; }
  .cart-drawer { width: 100%; right: -100%; }
  .hero__visual { display: none; }
}

@media (max-width: 480px) {
  .products__grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .categories__grid { grid-template-columns: 1fr; }
  .journey__grid { grid-template-columns: 1fr; }
  .hero__title { font-size: 2.2rem; }
  
  /* Shrink product cards on mobile to show more in less view */
  .product-card__body { padding: 12px 10px 14px; }
  .product-card__title { font-size: 1rem; margin-bottom: 2px; }
  .product-card__meta { font-size: 11px; margin-bottom: 10px; }
  .product-card__price { font-size: 14px; }
  .product-card__actions { margin-top: 8px !important; gap: 6px; }
  .product-card__actions .btn { padding: 6px 8px; font-size: 11px; }
  .product-card__actions .btn svg { width: 14px !important; height: 14px !important; }
}

/* ========== GLOBAL LOADER ========== */
.global-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: var(--bg-cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.6s;
}
.global-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--cyan-soft);
  border-top-color: var(--cyan);
  border-radius: 50%;
  animation: loader-spin 1s linear infinite;
  margin-bottom: 24px;
}
.loader-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: 2px;
  animation: loader-pulse 2s ease-in-out infinite;
}
@keyframes loader-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes loader-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
