/* ============================================================
   AZZURRI WELLNESS — MAIN STYLESHEET
   Matches Figma: 1KQkifQBAdq9Swhf6JkoMb
   ============================================================ */

/* ---- RESET & ROOT ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* ---- IMPORT MONTSERRAT ------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');


:root {
  --az-blue:        #2DA5F3;
  --az-blue-dark:   #0050d0;
  --az-navy:        #203559;
  --az-navy-mid:    #111c33;
  --az-white:       #ffffff;
  --az-gray-light:  #f5f7fa;
  --az-gray:        #6b7280;
  --az-gray-border: #e5e7eb;
  --az-text:        #1a1a2e;
  --az-yellow-bg:   #fef9e7;
  --az-darkblue-bg:   #203559;
  --az-blue-bg:      #EAF2FF;
  --az-green-bg:    #DDFFED;
  --az-purple-bg:   #F2EBFF;
  --az-star:        #f5a623;
  --az-font:        'Montserrat', sans-serif;
  --az-font-serif:  'Playfair Display', serif;
  --az-radius:      12px;
  --az-radius-sm:   8px;
  --az-shadow:      0 4px 24px rgba(0,0,0,.08);
  --az-shadow-md:   0 8px 32px rgba(0,0,0,.12);
  --az-transition:  all .25s ease;
}

html { scroll-behavior: smooth; }


body { font-family: var(--az-font); color: var(--az-text); background: #fff; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- BUTTONS ---------------------------------------------- */
.azb-btn {
  display: inline-flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 600;
  transition: var(--az-transition); white-space: nowrap; width: 172px;
  height: 45px;
}
.az-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 28px; font-size: 15px; font-weight: 600;
  transition: var(--az-transition); white-space: nowrap;
}
.az-btn:hover {
  background: linear-gradient(90deg, #0b4ed6 0%, #0b4ed6 70%, #0090e0 100%);
}
.az-btn--primary {
    background: linear-gradient(90deg, #0D59F2 0%, #0D59F2 43%, #00A3FF 92%);
    color: #fff;
    border: none;
}
.az-btn--primary:hover { background: var(--az-blue-dark); transform: translateY(-1px); }
.az-btn--dark { background: var(--az-navy); color: #fff; }
.az-btn--dark:hover { background: #1a2f55; transform: translateY(-1px); }
.az-btn--outline { border: 2px solid var(--az-blue); color: var(--az-blue); }
.az-btn--outline:hover { background: var(--az-blue); color: #fff; }
.az-btn--sm { padding: 10px 22px; font-size: 14px; }

/* ---- TOPBAR ----------------------------------------------- */
.az-topbar {
  background: var(--az-navy); color: #fff; text-align: center;
  padding: 9px 20px; font-size: 12px; font-weight: 500; letter-spacing: .02em;
}

/* ---- NAVBAR ----------------------------------------------- */
.az-nav {
  position: sticky; top: 0; z-index: 1000;
  background: #fff; border-bottom: 1px solid var(--az-gray-border);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.az-nav__inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 10;
  height: 68px; display: flex; align-items: center; gap: 32px;
}
.az-nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.az-nav__links {
  display: flex; align-items: center; gap: 6px; flex: 1; justify-content: end;
}
.az-nav__link {
  padding: 8px 14px; font-size: 18px; font-weight: 500; color: var(--az-text);
  border-radius: 6px; transition: var(--az-transition);
}
.az-nav__link:hover, .az-nav__link.active {
  padding: 8px 14px; font-size: 18px; font-weight: 500; background: linear-gradient(90deg, #0D59F2 0%, #0D59F2 40%, #00A3FF 92%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-radius: 6px; transition: var(--az-transition);
 }
.az-nav__link.active { font-weight: 600; }
.az-nav__actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.az-nav__icon-btn {
  position: relative; width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--az-text); font-size: 20px; transition: var(--az-transition);
}
.az-nav__icon-btn:hover { background: var(--az-gray-light); color: var(--az-blue); }
.az-cart-badge {
  position: absolute; top: 2px; right: 2px;
  background: var(--az-blue); color: #fff;
  width: 18px; height: 18px; border-radius: 50%;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.az-nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 32px; padding: 4px;
}
.az-nav__hamburger span {
  display: block; height: 2px; background: var(--az-text);
  border-radius: 2px; transition: var(--az-transition);
}

/* ---- MESSAGES --------------------------------------------- */
.az-messages { position: fixed; top: 80px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 8px; }
.az-message {
  padding: 12px 18px 12px 16px; border-radius: var(--az-radius-sm);
  background: #fff; border-left: 4px solid var(--az-blue);
  box-shadow: var(--az-shadow-md); display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 500; min-width: 260px;
}
.az-message--success { border-color: #22c55e; }
.az-message--error { border-color: #ef4444; }
.az-message__close { margin-left: auto; font-size: 18px; line-height: 1; color: var(--az-gray); }

/* ---- HERO ------------------------------------------------- */
.az-hero {
  position: relative;
  min-height: 545px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;

  /* Background image + gradient overlay */
  background: 
    /* linear-gradient(135deg, rgba(13,89,242,0.6) 0%, rgba(0,163,255,0.6) 100%), */
    url('/static/images/bg.png') center/cover no-repeat;
}
.az-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(11,24,50,.84) 0%, rgba(11,24,50,.58) 44%, rgba(11,24,50,.72) 100%);
  z-index: 0;
}
.az-hero__ambient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.az-hero__orb {
  position: absolute;
  display: block;
  border-radius: 999px;
}
.az-hero__orb--one {
  top: 8%;
  left: 4%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(0,163,255,.28) 0%, rgba(13,89,242,.16) 42%, rgba(13,89,242,0) 72%);
  animation: heroOrbFloat 14s ease-in-out infinite;
}
.az-hero__orb--two {
  right: -2%;
  bottom: 10%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(45,165,243,.26) 0%, rgba(13,89,242,.08) 46%, rgba(13,89,242,0) 72%);
  animation: heroOrbFloat 18s ease-in-out infinite reverse;
}
.az-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(120deg, rgba(0,0,0,.72) 10%, rgba(0,0,0,0) 65%);
  mask-image: linear-gradient(120deg, rgba(0,0,0,.72) 10%, rgba(0,0,0,0) 65%);
  opacity: .35;
  animation: heroGridShift 20s linear infinite;
}
.az-hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 888px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
  /* padding-left: max(24px, calc(50vw - 580px)); */
}
.az-hero--home {
  min-height: 620px;
}
.az-hero--home .az-hero__content {
  max-width: 1160px;
  padding-right: min(42vw, 480px);
  text-align: left;
}
.az-hero__title {
  font-family: 'PP Neue Montreal', sans-serif;
  font-weight: 500;
  font-size: 60px;
  line-height: 84px;
  letter-spacing: -1.8px;
  text-align: center;
  color: #fff;
  text-shadow: 0 4px 20px rgba(4, 51, 88, 0.65);
}
.az-hero--home .az-hero__title {
  display: flex;
  flex-direction: column;
  max-width: 620px;
  text-align: left;
}
.az-hero__title-line {
  display: block;
  overflow: hidden;
}
.az-hero__title-reveal {
  display: inline-block;
  transform: translateY(118%);
  opacity: 0;
  will-change: transform, opacity;
}
.az-hero--home .az-hero__title-line--first .az-hero__title-reveal {
  animation: heroHeadlineIn .9s cubic-bezier(.16, 1, .3, 1) .08s forwards;
}
.az-hero--home .az-hero__title-line--second .az-hero__title-reveal {
  animation: heroHeadlineIn .9s cubic-bezier(.16, 1, .3, 1) .24s forwards;
}
.az-hero__title--accent {
  background: linear-gradient(90deg, #0D59F2 0%, #0D59F2 43%, #00A3FF 92%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.az-hero--home .az-hero__title--accent {
  animation: heroAccentShift 6s ease-in-out 1.2s infinite alternate;
}
.az-hero__subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, .75);
  /* max-width: 480px; */
  margin-bottom: 32px;
  line-height: 1.7;
  padding: 0 11px;
}
.az-hero--home .az-hero__subtitle {
  max-width: 620px;
  padding: 0;
  text-align: left;
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp .85s cubic-bezier(.16, 1, .3, 1) .48s forwards;
}
.az-hero__actions {
  display: flex;
  justify-content: center;
}
.az-hero--home .az-hero__actions {
  justify-content: flex-start;
  opacity: 0;
  transform: translateY(24px) scale(.98);
  animation: heroFadeUp .85s cubic-bezier(.16, 1, .3, 1) .64s forwards;
}
.az-hero--home .az-btn--primary {
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(13,89,242,.28);
}
.az-hero--home .az-btn--primary::after {
  content: '';
  position: absolute;
  inset: -20% auto -20% -32%;
  width: 30%;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.55), rgba(255,255,255,0));
  transform: skewX(-22deg) translateX(-240%);
  animation: heroButtonSheen 5.5s ease-in-out 1.4s infinite;
}
.az-hero__image {
  position: absolute;
  right: max(24px, calc(50vw - 580px));
  top: 50%;
  bottom: auto;
  width: min(42vw, 460px);
  height: 440px;
  transform: translateY(-44%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}
.az-hero__vial-wrap { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.az-hero__bottle-stage {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1200px;
}
.az-hero__bottle-stage::before {
  content: '';
  position: absolute;
  inset: 32px 24px 68px;
  background: radial-gradient(circle at 48% 38%, rgba(72,188,255,.36) 0%, rgba(13,89,242,.16) 38%, rgba(13,89,242,0) 72%);
  filter: blur(10px);
}
.az-hero__bottle-stage::after {
  content: '';
  position: absolute;
  left: 56px;
  right: 44px;
  bottom: 8px;
  height: 24px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.44) 0%, rgba(0,0,0,0) 72%);
  filter: blur(8px);
}
.az-hero__product-shot {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: var(--hero-final-transform);
  transform-origin: center bottom;
  will-change: transform, opacity;
}
.az-hero__product-shot--rear-left {
  margin-left: -214px;
  bottom: 28px;
  width: 220px;
  z-index: 1;
  opacity: .38;
  --hero-final-transform: translate3d(0, 0, 0) rotate(-10deg) scale(.8);
  animation: heroBottleSlideIn 1.12s cubic-bezier(.16, 1, .3, 1) .12s both;
}
.az-hero__product-shot--front {
  margin-left: -139px;
  bottom: 0;
  width: 278px;
  z-index: 3;
  opacity: 1;
  --hero-final-transform: translate3d(0, 0, 0) rotate(-2deg) scale(1);
  animation: heroBottleSlideIn 1.18s cubic-bezier(.16, 1, .3, 1) .26s both;
}
.az-hero__product-shot--rear-right {
  margin-left: -6px;
  bottom: 28px;
  width: 220px;
  z-index: 2;
  opacity: .38;
  --hero-final-transform: translate3d(0, 0, 0) rotate(10deg) scale(.8);
  animation: heroBottleSlideIn 1.14s cubic-bezier(.16, 1, .3, 1) .4s both;
}
.az-hero__product-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 26px 48px rgba(8,24,62,.42));
}
.az-hero__product-shot--rear-left .az-hero__product-image,
.az-hero__product-shot--rear-right .az-hero__product-image {
  filter: drop-shadow(0 22px 40px rgba(8,24,62,.3)) saturate(.95);
}
.az-hero__bottle {
  position: absolute;
  bottom: 0;
  opacity: 1;
  transform: var(--hero-final-transform, var(--hero-bottle-final));
  transform-origin: center bottom;
  will-change: transform, opacity;
}
.az-hero__bottle--rear-left {
  left: 12px;
  bottom: 42px;
  z-index: 1;
  --hero-final-transform: translate3d(0, 0, 0) rotate(-8deg) scale(.82);
  --hero-bottle-final: translate3d(0, 0, 0) rotate(-8deg) scale(.82);
  animation: heroBottleSlideIn 1.12s cubic-bezier(.16, 1, .3, 1) .12s both;
}
.az-hero__bottle--front {
  left: 126px;
  bottom: 0;
  z-index: 3;
  --hero-final-transform: translate3d(0, 0, 0) rotate(-1.5deg) scale(1);
  --hero-bottle-final: translate3d(0, 0, 0) rotate(-1.5deg) scale(1);
  animation: heroBottleSlideIn 1.18s cubic-bezier(.16, 1, .3, 1) .26s both;
}
.az-hero__bottle--rear-right {
  right: 8px;
  bottom: 58px;
  z-index: 2;
  --hero-final-transform: translate3d(0, 0, 0) rotate(8deg) scale(.88);
  --hero-bottle-final: translate3d(0, 0, 0) rotate(8deg) scale(.88);
  animation: heroBottleSlideIn 1.14s cubic-bezier(.16, 1, .3, 1) .4s both;
}

/* Hero vial mock */
.az-vial-mock {
  width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 22px 44px rgba(8,24,62,.38));
}
.az-vial-mock--medium {
  width: 164px;
}
.az-vial-mock--large {
  width: 198px;
}
.az-vial-mock__cap {
  width: 60px;
  height: 24px;
  background: linear-gradient(180deg, #2a5fb8 0%, #17376f 100%);
  border-radius: 6px 6px 0 0;
  border: 2px solid #2a52a0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28);
}
.az-vial-mock--medium .az-vial-mock__cap {
  width: 70px;
  height: 27px;
}
.az-vial-mock--large .az-vial-mock__cap {
  width: 84px;
  height: 31px;
}
.az-vial-mock__stopper {
  width: 54px;
  height: 11px;
  margin-top: -1px;
  background: linear-gradient(180deg, #edf5ff 0%, #aac7ff 100%);
  border-radius: 4px 4px 2px 2px;
  border: 1px solid rgba(255,255,255,.4);
  border-bottom: none;
}
.az-vial-mock--medium .az-vial-mock__stopper {
  width: 62px;
  height: 12px;
}
.az-vial-mock--large .az-vial-mock__stopper {
  width: 74px;
  height: 13px;
}
.az-vial-mock__body {
  position: relative;
  overflow: hidden;
  width: 100px;
  min-height: 160px;
  background: linear-gradient(180deg, rgba(237,245,255,.42) 0%, rgba(146,180,240,.12) 44%, rgba(222,236,255,.18) 100%);
  border: 1.5px solid rgba(165,196,255,.5);
  border-radius: 0 0 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px 10px 18px;
  backdrop-filter: blur(6px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55), 0 16px 36px rgba(10,27,63,.2);
}
.az-vial-mock__body::before {
  content: '';
  position: absolute;
  left: 14%;
  top: 11%;
  width: 18%;
  height: 72%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.06));
  opacity: .74;
}
.az-vial-mock__body::after {
  content: '';
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 12%;
  height: 30%;
  border-radius: 12px 12px 24px 24px;
  background: linear-gradient(180deg, rgba(13,89,242,.16), rgba(0,163,255,.02));
  opacity: .58;
}
.az-vial-mock--medium .az-vial-mock__body {
  width: 116px;
  min-height: 188px;
}
.az-vial-mock--large .az-vial-mock__body {
  width: 138px;
  min-height: 236px;
  gap: 7px;
  padding: 18px 12px 22px;
}
.az-vial-mock__brand {
  position: relative;
  z-index: 1;
  font-size: 8px;
  color: rgba(255,255,255,.56);
  letter-spacing: .16em;
  text-transform: uppercase;
}
.az-vial-mock__name {
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .05em;
  text-align: center;
  background: linear-gradient(90deg, #0c57f2 0%, #00a3ff 100%);
  padding: 4px 10px;
  border-radius: 999px;
  margin: 2px 0;
  box-shadow: 0 10px 20px rgba(13,89,242,.28);
  max-width: 100%;
  line-height: 1.15;
  white-space: normal;
  word-break: break-word;
}
.az-vial-mock__dose {
  position: relative;
  z-index: 1;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: rgba(14,22,44,.72);
  padding: 3px 9px;
  border-radius: 999px;
}
.az-vial-mock__note {
  position: relative;
  z-index: 1;
  font-size: 9px;
  color: rgba(255,255,255,.44);
  margin-top: 4px;
}
.az-vial-mock--medium .az-vial-mock__brand,
.az-vial-mock--medium .az-vial-mock__note {
  font-size: 9px;
}
.az-vial-mock--medium .az-vial-mock__name {
  font-size: 14px;
}
.az-vial-mock--large .az-vial-mock__brand {
  font-size: 9px;
}
.az-vial-mock--large .az-vial-mock__name {
  font-size: 15px;
}
.az-vial-mock--large .az-vial-mock__dose {
  font-size: 12px;
}
.az-vial-mock--large .az-vial-mock__note {
  font-size: 10px;
}
.az-hero__bottle--rear-left .az-vial-mock__name {
  background: linear-gradient(90deg, #0f74ff 0%, #4ec6ff 100%);
}
.az-hero__bottle--rear-right .az-vial-mock__name {
  background: linear-gradient(90deg, #2448d8 0%, #70d7ff 100%);
}

@keyframes heroHeadlineIn {
  0% {
    opacity: 0;
    transform: translateY(118%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes heroAccentShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
@keyframes heroButtonSheen {
  0%, 70%, 100% { transform: skewX(-22deg) translateX(-240%); }
  86% { transform: skewX(-22deg) translateX(410%); }
}
@keyframes heroBottleSlideIn {
  0% {
    opacity: 0;
    transform: translate3d(260px, 34px, 0) rotate(-14deg) scale(.72);
  }
  62% {
    opacity: 1;
    transform: translate3d(-14px, -10px, 0) rotate(2deg) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: var(--hero-final-transform, var(--hero-bottle-final));
  }
}
@keyframes heroOrbFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -18px, 0) scale(1.06); }
}
@keyframes heroGridShift {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-36px, 24px, 0); }
}

@keyframes brandAmbientDrift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-10deg); }
  50% { transform: translate3d(20px, -18px, 0) rotate(-7deg); }
}
@keyframes brandHaloPulse {
  0%, 100% { transform: scale(1); opacity: .5; }
  50% { transform: scale(1.08); opacity: .82; }
}
@keyframes brandSweepAcross {
  0% { transform: translateX(-140%) rotate(10deg); }
  100% { transform: translateX(170%) rotate(10deg); }
}

/* ---- BRAND INTRO ------------------------------------------ */
.az-brand-intro {
  position: relative;
  padding: 104px 24px;
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
  overflow: hidden;
  isolation: isolate;
  --brand-mx: 0;
  --brand-my: 0;
}
.az-brand-intro__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.az-brand-intro__beam {
  position: absolute;
  top: -18%;
  left: -12%;
  width: 52%;
  height: 140%;
  background: linear-gradient(135deg, rgba(45,165,243,.18) 0%, rgba(45,165,243,.08) 24%, rgba(45,165,243,0) 70%);
  filter: blur(10px);
  transform: rotate(-10deg);
  animation: brandAmbientDrift 15s ease-in-out infinite;
}
.az-brand-intro__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13,89,242,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,89,242,.05) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .55;
  -webkit-mask-image: linear-gradient(135deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.12) 58%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(135deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.12) 58%, rgba(0,0,0,0) 100%);
}
.az-brand-intro__halo {
  position: absolute;
  right: -5%;
  top: 12%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122,211,255,.35) 0%, rgba(45,165,243,.12) 36%, rgba(45,165,243,0) 72%);
  animation: brandHaloPulse 10s ease-in-out infinite;
}
.az-brand-intro__inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
  gap: 72px;
  align-items: center;
}
.az-brand-intro__image {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1400px;
}
.az-brand-intro__image-shell {
  position: relative;
  width: min(100%, 620px);
  padding: 24px;
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0) scale(1);
  transition: transform 1.1s cubic-bezier(.16, 1, .3, 1), opacity .8s ease;
}
.az-brand-intro.js-motion-ready .az-brand-intro__image-shell {
  opacity: 0;
  transform: translate3d(-72px, 40px, 0) rotate(-8deg) scale(.92);
}
.az-brand-intro.js-motion-ready.is-visible .az-brand-intro__image-shell {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0) scale(1);
}
.az-brand-intro__image-rim {
  position: absolute;
  inset: 14px 32px 18px 4px;
  border-radius: 38px;
  border: 1px solid rgba(45,165,243,.18);
  background: linear-gradient(145deg, rgba(255,255,255,.6), rgba(255,255,255,0));
  transform: rotate(-4deg);
}
.az-brand-intro__image-orb {
  position: absolute;
  right: 14px;
  top: 18px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,165,243,.24) 0%, rgba(45,165,243,.08) 44%, rgba(45,165,243,0) 72%);
  filter: blur(2px);
}
.az-brand-intro__image-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 22px;
  background: linear-gradient(145deg, #eef6ff 0%, #e4f2ff 48%, #ffffff 100%);
  border: 1px solid rgba(45,165,243,.18);
  box-shadow: 0 30px 90px rgba(20,65,125,.12);
  transform: translate3d(calc(var(--brand-mx) * 14px), calc(var(--brand-my) * -14px), 0)
    rotateX(calc(var(--brand-my) * 4deg)) rotateY(calc(var(--brand-mx) * -6deg));
  transition: transform .35s ease, box-shadow .35s ease;
}
.az-brand-intro__image-card::before {
  content: '';
  position: absolute;
  inset: -28% -46%;
  background: linear-gradient(120deg, transparent 34%, rgba(255,255,255,.86) 48%, transparent 62%);
  transform: translateX(-140%) rotate(10deg);
}
.az-brand-intro.js-motion-ready.is-visible .az-brand-intro__image-card::before {
  animation: brandSweepAcross 1.6s cubic-bezier(.16, 1, .3, 1) .45s both;
}
.az-brand-intro__img {
  width: 100%;
  max-width: none;
  max-height: none;
  border-radius: 26px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 18px 40px rgba(20,65,125,.16));
}
.az-badge {
  display: inline-block;
  background: #EAF8FF;
  color: #2DA5F3;
  font-size: 13px;
  font-weight: 500;
  padding: 5px 5px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.az-brand-intro__text {
  max-width: 500px;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: transform 1s cubic-bezier(.16, 1, .3, 1), opacity .75s ease;
}
.az-brand-intro.js-motion-ready .az-brand-intro__text {
  opacity: 0;
  transform: translate3d(56px, 24px, 0);
}
.az-brand-intro.js-motion-ready.is-visible .az-brand-intro__text {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.az-brand-intro__copy {
  transform: translate3d(calc(var(--brand-mx) * -10px), calc(var(--brand-my) * 8px), 0);
  transition: transform .35s ease;
}
.az-brand-intro__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(45,165,243,.14);
  box-shadow: 0 12px 30px rgba(45,165,243,.08);
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: transform .7s cubic-bezier(.16, 1, .3, 1) .08s, opacity .5s ease .08s;
}
.az-brand-intro__badge::after {
  content: '';
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, rgba(45,165,243,.1), rgba(45,165,243,.8));
}
.az-brand-intro.js-motion-ready .az-brand-intro__badge {
  opacity: 0;
  transform: translateY(18px) scale(.96);
}
.az-brand-intro.js-motion-ready.is-visible .az-brand-intro__badge {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.az-brand-intro__title {
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.04;
  margin-bottom: 20px;
  color: var(--az-text);
  letter-spacing: -.03em;
}
.az-brand-intro__title-line {
  display: block;
  overflow: hidden;
}
.az-brand-intro__title-line > * {
  display: block;
  opacity: 1;
  transform: translateY(0);
  transition: transform 1s cubic-bezier(.16, 1, .3, 1), opacity .7s ease;
}
.az-brand-intro.js-motion-ready .az-brand-intro__title-line > * {
  opacity: 0;
  transform: translateY(112%);
}
.az-brand-intro.js-motion-ready.is-visible .az-brand-intro__title-line--eyebrow > * {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .16s;
}
.az-brand-intro.js-motion-ready.is-visible .az-brand-intro__title-line--main > * {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .28s;
}
.az-brand-intro__title em {
  color: #6f7f97;
  font-style: italic;
  font-weight: 400;
  font-size: .74em;
  letter-spacing: .03em;
}
.az-brand-intro__title strong {
  font-weight: 800;
  color: #172947;
}
.az-brand-intro__lead {
  font-size: 16px;
  color: #5f6877;
  line-height: 1.82;
  margin-bottom: 28px;
  opacity: 1;
  transform: translateY(0);
  transition: transform .8s cubic-bezier(.16, 1, .3, 1) .4s, opacity .55s ease .4s;
}
.az-brand-intro.js-motion-ready .az-brand-intro__lead {
  opacity: 0;
  transform: translateY(26px);
}
.az-brand-intro.js-motion-ready.is-visible .az-brand-intro__lead {
  opacity: 1;
  transform: translateY(0);
}
.az-brand-intro__cta {
  opacity: 1;
  transform: translateY(0);
  transition: transform .8s cubic-bezier(.16, 1, .3, 1) .54s, opacity .55s ease .54s;
  box-shadow: 0 16px 40px rgba(17,28,51,.14);
}
.az-brand-intro.js-motion-ready .az-brand-intro__cta {
  opacity: 0;
  transform: translateY(20px);
}
.az-brand-intro.js-motion-ready.is-visible .az-brand-intro__cta {
  opacity: 1;
  transform: translateY(0);
}

@keyframes personalizedStreakPulse {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-12deg); opacity: .28; }
  50% { transform: translate3d(18px, -12px, 0) rotate(-8deg); opacity: .68; }
}
@keyframes personalizedRingSpin {
  0% { transform: rotate(0deg) scale(1); }
  100% { transform: rotate(360deg) scale(1.03); }
}
@keyframes personalizedGlowPulse {
  0%, 100% { opacity: .42; transform: scale(1); }
  50% { opacity: .82; transform: scale(1.12); }
}
@keyframes personalizedSlashSweep {
  0% { transform: translateX(-150%) rotate(-18deg); }
  100% { transform: translateX(175%) rotate(-18deg); }
}

/* ---- PERSONALIZED ----------------------------------------- */
.az-personalized {
  position: relative;
  padding: 108px 24px 28px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 20%, rgba(45,165,243,.08) 0%, rgba(45,165,243,0) 28%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 56%);
  --pz-mx: 0;
  --pz-my: 0;
}
.az-personalized__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.az-personalized__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  animation: personalizedGlowPulse 9s ease-in-out infinite;
}
.az-personalized__glow--left {
  left: -8%;
  bottom: -8%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(45,165,243,.22) 0%, rgba(45,165,243,.06) 42%, rgba(45,165,243,0) 72%);
}
.az-personalized__glow--right {
  right: -6%;
  top: 4%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(13,89,242,.16) 0%, rgba(13,89,242,.05) 42%, rgba(13,89,242,0) 72%);
  animation-delay: 1.2s;
}
.az-personalized__streak {
  position: absolute;
  display: block;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(45,165,243,0), rgba(45,165,243,.85), rgba(45,165,243,0));
  transform: rotate(-12deg);
  animation: personalizedStreakPulse 7s ease-in-out infinite;
}
.az-personalized__streak--one {
  right: 8%;
  top: 22%;
  width: 240px;
}
.az-personalized__streak--two {
  left: 10%;
  bottom: 18%;
  width: 180px;
  animation-delay: 1.6s;
}
.az-personalized__inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 64px;
  align-items: center;
}
.az-personalized__text {
  max-width: 500px;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: transform .95s cubic-bezier(.16, 1, .3, 1), opacity .7s ease;
}
.az-personalized.js-motion-ready .az-personalized__text {
  opacity: 0;
  transform: translate3d(-56px, 34px, 0);
}
.az-personalized.js-motion-ready.is-visible .az-personalized__text {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.az-personalized__title {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.02;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: -.04em;
  color: #162949;
}
.az-personalized__title-line {
  display: block;
  overflow: hidden;
}
.az-personalized__title-line::after {
  content: '';
  display: block;
  width: 100%;
  height: 0;
}
.az-personalized__title-line {
  opacity: 1;
  transform: translateY(0);
  transition: transform .92s cubic-bezier(.16, 1, .3, 1), opacity .65s ease;
}
.az-personalized.js-motion-ready .az-personalized__title-line:first-child {
  opacity: 0;
  transform: translateY(128%);
}
.az-personalized.js-motion-ready .az-personalized__title-line:last-child {
  opacity: 0;
  transform: translateY(142%);
}
.az-personalized.js-motion-ready.is-visible .az-personalized__title-line:first-child {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .08s;
}
.az-personalized.js-motion-ready.is-visible .az-personalized__title-line:last-child {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .18s;
}
.az-personalized__lead {
  font-size: 16px;
  color: #5f6877;
  margin-bottom: 30px;
  line-height: 1.8;
  opacity: 1;
  transform: translateY(0);
  transition: transform .82s cubic-bezier(.16, 1, .3, 1) .28s, opacity .55s ease .28s;
}
.az-personalized.js-motion-ready .az-personalized__lead {
  opacity: 0;
  transform: translateY(30px);
}
.az-personalized.js-motion-ready.is-visible .az-personalized__lead {
  opacity: 1;
  transform: translateY(0);
}
.az-personalized__cta {
  opacity: 1;
  transform: translateY(0) scale(1);
  box-shadow: 0 18px 44px rgba(13,89,242,.18);
  transition: transform .8s cubic-bezier(.16, 1, .3, 1) .42s, opacity .55s ease .42s;
}
.az-personalized.js-motion-ready .az-personalized__cta {
  opacity: 0;
  transform: translateY(24px) scale(.94);
}
.az-personalized.js-motion-ready.is-visible .az-personalized__cta {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.az-personalized__image {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1600px;
}
.az-personalized__visual-shell {
  position: relative;
  width: min(100%, 650px);
  min-height: 460px;
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0) scale(1);
  transition: transform 1.12s cubic-bezier(.16, 1, .3, 1), opacity .7s ease;
}
.az-personalized.js-motion-ready .az-personalized__visual-shell {
  opacity: 0;
  transform: translate3d(120px, 50px, 0) rotate(18deg) scale(.84);
}
.az-personalized.js-motion-ready.is-visible .az-personalized__visual-shell {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0) scale(1);
}
.az-personalized__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(45,165,243,.18);
  animation: personalizedRingSpin 18s linear infinite;
}
.az-personalized__ring--outer {
  inset: 36px 20px 18px 90px;
}
.az-personalized__ring--inner {
  inset: 92px 74px 76px 144px;
  border-color: rgba(13,89,242,.16);
  animation-direction: reverse;
  animation-duration: 14s;
}
.az-personalized__slash {
  position: absolute;
  left: -14%;
  right: -14%;
  top: 46%;
  height: 70px;
  background: linear-gradient(90deg, rgba(45,165,243,0), rgba(255,255,255,.76) 48%, rgba(45,165,243,0));
  transform: translateX(-150%) rotate(-18deg);
  opacity: .42;
  pointer-events: none;
}
.az-personalized.js-motion-ready.is-visible .az-personalized__slash {
  animation: personalizedSlashSweep 1.1s cubic-bezier(.16, 1, .3, 1) .38s both;
}
.az-personalized__image-card {
  position: relative;
  z-index: 2;
  margin-left: auto;
  width: min(100%, 610px);
  padding: 18px;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(235,245,255,.96), rgba(219,237,255,.94));
  border: 1px solid rgba(45,165,243,.16);
  box-shadow: 0 32px 90px rgba(20,65,125,.18);
  transform: translate3d(calc(var(--pz-mx) * 16px), calc(var(--pz-my) * -12px), 0)
    rotateX(calc(var(--pz-my) * 5deg)) rotateY(calc(var(--pz-mx) * -7deg));
  transition: transform .35s ease, box-shadow .35s ease;
}
.az-personalized__image-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,255,255,0));
  opacity: .5;
  pointer-events: none;
}
.az-personalized__hero-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(20,65,125,.18));
}
/* ---- CATEGORY SECTIONS ------------------------------------ */
.az-category-section--white { background: #fff; }
.az-category-section--yellow {   max-width: 1378px;
  margin-right: auto;
  margin-left: 0;
  border: 1px solid var(--az-blue-bg);
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  background: var(--az-darkblue-bg);
  padding: 32px; }
/* .az-category-section--blue  { background: var(--az-blue-bg); } */
/* .az-category-section--purple { background: var(--az-purple-bg); } */
.az-category-section--green .az-category-section__inner {
  max-width: 1378px;
  margin-left: auto;
  margin-right: 0;
  border: 1px solid var(--az-green-bg);
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  background: var(--az-darkblue-bg);
  padding: 32px;
}
.az-category-section--blue .az-category-section__inner {
  max-width: 1378px;
  margin-right: auto;
  margin-left: 0;
  border: 1px solid var(--az-blue-bg);
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  background: var(--az-darkblue-bg);
  padding: 32px;
}
.az-category-section--purple .az-category-section__inner {
  max-width: 1378px;
  margin-left: auto;
  margin-right: 0;
  border: 1px solid var(--az-purple-bg);
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  background: var(--az-darkblue-bg);
  padding: 32px;
}

.az-category-section__inner { max-width: 1160px; margin: 0 auto; padding: 30px;}
/* .az-category-section__inner--right-title .az-category-section__header { text-align: right; } */
.az-category-section__header { margin-bottom: 36px; max-width: 500px; }
.az-category-section__inner--right-title .az-category-section__header { margin-left: auto; }
.az-category-section__headers { margin-bottom: 36px; max-width: 378px; }
.az-category-section__inner--right-title .az-category-section__headers { margin-left: auto; }
.az-category-section__title {
  font-family: var(--az-font); font-size: 45px; line-height: 47px; font-weight: 400;
  font-style: italic; color: #fff; margin-bottom: 12px;
}
.az-category-section__desc {     
    font-size: 16px;
    color: #fff;
    line-height: 30px;
    font-weight: 500;
}
.az-category-section__cta { display: flex; justify-content: center; margin-top: 36px; }

/* ---- PRODUCT GRID ----------------------------------------- */
.az-product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.az-product-card {
  background: #fff; border-radius: var(--az-radius);
  border: 1px solid var(--az-gray-border);
  padding: 16px; transition: var(--az-transition);
  display: flex; flex-direction: column; overflow: hidden;
  cursor: pointer;
}
.az-product-card:hover { box-shadow: var(--az-shadow-md); transform: translateY(-3px); border-color: #c5d8ff; }
.az-product-card__header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 12px;
}
.az-product-card__info { display: flex; flex-direction: column; gap: 2px; }
.az-product-card__name { font-size: 13px; font-weight: 600; color: var(--az-text); line-height: 1.3; }
.az-product-card__series { font-size: 11px; color: var(--az-gray); }
.az-product-card__arrow { color: var(--az-blue); font-size: 12px; flex-shrink: 0; padding: 2px; }
.az-product-card__image {
  flex: 1; display: flex; align-items: center; justify-content: center;
  min-height: 140px; padding: 8px;
}
.az-product-card__image img { max-height: 160px; object-fit: contain; }
.az-product-card__img-placeholder {
  width: 100%; height: 140px; display: flex; align-items: center; justify-content: center;
}
.az-product-card__price {
  font-size: 16px; font-weight: 700; color: var(--az-blue);
  margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--az-gray-border);
}

/* Vial SVG-like mock for product cards */
.az-vial-sm {
  width: 60px; height: 120px;
  background: linear-gradient(180deg, rgba(180,210,255,.4) 0%, rgba(180,210,255,.15) 100%);
  border: 1.5px solid rgba(100,150,255,.35); border-radius: 6px;
  position: relative;
}
.az-vial-sm::before {
  content: ''; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  width: 36px; height: 14px; background: #1e3a6e; border-radius: 3px 3px 0 0;
}
.az-vial-sm::after {
  content: 'SEMAGLUTIDE'; position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  white-space: nowrap; font-size: 5px; font-weight: 800; color: var(--az-blue);
  background: rgba(30,111,255,.15); padding: 2px 4px; border-radius: 2px; letter-spacing: .05em;
}
.az-vial-sm--lg { width: 80px; height: 160px; }

/* ---- TRUST BADGES ----------------------------------------- */
.az-trust { padding: 48px 23px; background: #fff; border-top: 1px solid var(--az-gray-border); }
.az-trust__inner {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}
.az-trust__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.az-trust__icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.az-trust__icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.az-trust__text strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.az-trust__text p { font-size: 12px; color: var(--az-gray); line-height: 1.5; }

/* ---- TESTIMONIALS ----------------------------------------- */
.az-testimonials { padding: 80px 24px; background: #fff; }
.az-testimonials__inner { max-width: 1160px; margin: 0 auto; }
.az-testimonials__title {
  font-size: 36px; font-weight: 500; text-align: center; margin-bottom: 8px;
}
.az-testimonials__sub { text-align: center; color: var(--az-gray); font-size: 16px; margin-bottom: 48px; font-weight: 400; line-height: 28px;}
.az-testimonials__track {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.az-review-card {
  background: #fff; border: 1px solid var(--az-gray-border);
  border-radius: var(--az-radius); padding: 28px 24px;
  box-shadow: var(--az-shadow); transition: var(--az-transition);
}
.az-review-card:hover { box-shadow: var(--az-shadow-md); transform: translateY(-2px); }
.az-review-card__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.az-review-card__stars { display: flex; gap: 3px; color: var(--az-star); font-size: 14px; }
.az-review-card__quote { font-size: 32px; color: #e5b96a; line-height: 1; font-family: Georgia, serif; }
.az-review-card__body {
    font-size: 16px;
    color: #444;
    line-height: 29.25px;
    margin-bottom: 24px;
    font-weight: 400;
}
.az-review-card__author { border-top: 1px solid var(--az-gray-border); padding-top: 16px; }
.az-review-card__author strong { display: block; font-size: 14px; font-weight: 700; }
.az-review-card__author span { font-size: 12px; color: var(--az-gray); }
.az-testimonials__nav { display: flex; justify-content: center; gap: 12px; margin-top: 32px; }
.az-testimonials__btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--az-gray-border); color: var(--az-text);
  font-size: 13px; display: flex; align-items: center; justify-content: center;
  transition: var(--az-transition);
}
.az-testimonials__btn:hover { background: var(--az-blue); color: #fff; border-color: var(--az-blue); }

/* ---- FAQ -------------------------------------------------- */
.az-faq { padding: 80px 24px; position: relative; overflow: hidden; }
.az-faq__inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.az-faq__title { font-size: clamp(26px, 3.5vw, 44px); line-height: 1.2; margin-bottom: 12px; font-weight: 700; }
.az-faq__title--light { color: var(--az-gray); font-weight: 400; font-size: .75em; display: block; }
.az-faq__sub { font-size: 14px; color: var(--az-gray); margin-bottom: 36px; line-height: 1.6; }

.az-accordion__item { border-bottom: 1px solid var(--az-gray-border); }
.az-accordion__trigger {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: 15px; font-weight: 500; color: var(--az-text);
  text-align: left; gap: 16px; background: none;
}
.az-accordion__trigger:hover { color: var(--az-blue); }
.az-accordion__icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid currentColor; display: flex; align-items: center; justify-content: center;
  font-size: 12px; flex-shrink: 0; transition: var(--az-transition);
}
.az-accordion__item--open .az-accordion__icon {
  background: var(--az-text); color: #fff; border-color: var(--az-text);
}
.az-accordion__body { padding: 0 0 20px; }
.az-accordion__body p { font-size: 14px; color: var(--az-gray); line-height: 1.7; }

.az-faq__image { position: relative; }
.az-faq__img-placeholder {
  min-height: 420px; display: flex; align-items: flex-end; justify-content: center;
  position: relative; overflow: visible;
}
/* Syringe mock visual */
.az-faq__syringe-mock {
  position: absolute; right: -20px; top: 0; bottom: 0;
  display: flex; align-items: center;
}
.az-syringe-body {
  width: 30px; height: 280px;
  background: linear-gradient(180deg, #d0dff5 0%, #e8f0ff 100%);
  border-radius: 4px; border: 1.5px solid rgba(100,150,255,.4);
  position: relative;
}
.az-syringe-needle {
  width: 4px; height: 80px; background: #b0c4e8;
  border-radius: 0 0 2px 2px; margin: 0 auto;
}
.az-faq__vial-mock {
  position: absolute; bottom: 20px; left: 30px;
  display: flex; align-items: flex-end;
}

/* ---- SHOP PAGE -------------------------------------------- */
.az-page-header {
  background: var(--az-navy); padding: 60px 24px;
  text-align: center; color: #fff;
}
.az-page-header h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 700; }
.az-page-header p { color: rgba(255,255,255,.7); margin-top: 10px; font-size: 15px; }

.az-shop-layout {
  max-width: 1160px; margin: 0 auto; padding: 48px 24px;
  display: grid; grid-template-columns: 240px 1fr; gap: 40px;
}
.az-shop-sidebar h3 { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--az-gray); margin-bottom: 16px; }
.az-filter-list { display: flex; flex-direction: column; gap: 4px; }
.az-filter-btn {
  padding: 10px 14px; border-radius: var(--az-radius-sm); font-size: 14px;
  font-weight: 500; color: var(--az-text); text-align: left; transition: var(--az-transition);
}
.az-filter-btn:hover, .az-filter-btn.active { background: var(--az-blue); color: #fff; }
.az-shop-products h2 { font-size: 22px; font-weight: 700; margin-bottom: 24px; }
.az-shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* Product detail */
.az-product-detail { max-width: 1160px; margin: 0 auto; padding: 60px 24px; }
.az-product-detail__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.az-product-detail__image-wrap {
  background: var(--az-gray-light); border-radius: var(--az-radius);
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.az-product-detail__image-wrap img { max-height: 400px; object-fit: contain; padding: 24px; }
.az-product-detail__category { font-size: 12px; font-weight: 600; color: var(--az-blue); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
.az-product-detail__name { font-size: clamp(22px, 3vw, 36px); font-weight: 700; margin-bottom: 12px; }
.az-product-detail__price { font-size: 32px; font-weight: 800; color: var(--az-blue); margin-bottom: 20px; }
.az-product-detail__desc { font-size: 15px; color: var(--az-gray); line-height: 1.7; margin-bottom: 32px; }
.az-product-detail__actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.az-qty { display: flex; align-items: center; border: 1.5px solid var(--az-gray-border); border-radius: 8px; overflow: hidden; }
.az-qty button { width: 36px; height: 44px; font-size: 18px; color: var(--az-text); transition: var(--az-transition); }
.az-qty button:hover { background: var(--az-gray-light); }
.az-qty input { width: 48px; height: 44px; text-align: center; border: none; font-size: 15px; font-weight: 600; outline: none; }

/* ---- CART PAGE -------------------------------------------- */
.az-cart { max-width: 1000px; margin: 0 auto; padding: 60px 24px; }
.az-cart h1 { font-size: 32px; font-weight: 700; margin-bottom: 36px; }
.az-cart__empty { text-align: center; padding: 80px 0; color: var(--az-gray); }
.az-cart__empty i { font-size: 48px; margin-bottom: 16px; display: block; }
.az-cart-table { width: 100%; border-collapse: collapse; margin-bottom: 32px; }
.az-cart-table th { text-align: left; padding: 12px 16px; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--az-gray); border-bottom: 2px solid var(--az-gray-border); }
.az-cart-table td { padding: 20px 16px; border-bottom: 1px solid var(--az-gray-border); vertical-align: middle; font-size: 14px; }
.az-cart-table td img { width: 60px; height: 60px; object-fit: contain; border-radius: 8px; background: var(--az-gray-light); }
.az-cart__product-name { font-weight: 600; font-size: 15px; }
.az-cart__product-series { font-size: 12px; color: var(--az-gray); }
.az-cart__total-row { display: flex; justify-content: flex-end; gap: 40px; padding: 20px 0; border-top: 2px solid var(--az-text); font-size: 18px; }
.az-cart__total-row strong { font-weight: 700; }
.az-cart__actions { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.az-remove-btn { color: #ef4444; font-size: 18px; transition: var(--az-transition); }
.az-remove-btn:hover { color: #b91c1c; }

/* ---- CHECKOUT -------------------------------------------- */
.az-checkout { max-width: 900px; margin: 0 auto; padding: 60px 24px; }
.az-checkout h1 { font-size: 32px; font-weight: 700; margin-bottom: 36px; }
.az-checkout__grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.az-form-group { margin-bottom: 20px; }
.az-form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--az-text); margin-bottom: 6px; }
.az-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.az-input, input.az-input, .az-form-group input, .az-form-group select {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--az-gray-border);
  border-radius: var(--az-radius-sm); font-size: 14px; font-family: var(--az-font);
  outline: none; transition: var(--az-transition); background: #fff;
}
.az-input:focus, .az-form-group input:focus { border-color: var(--az-blue); box-shadow: 0 0 0 3px rgba(30,111,255,.1); }
.az-order-summary { background: var(--az-gray-light); border-radius: var(--az-radius); padding: 24px; }
.az-order-summary h3 { font-size: 16px; font-weight: 700; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--az-gray-border); }
.az-order-summary__item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; font-size: 14px; border-bottom: 1px solid var(--az-gray-border); }
.az-order-summary__item:last-child { border: none; }
.az-order-summary__total { display: flex; justify-content: space-between; font-size: 18px; font-weight: 700; padding-top: 16px; margin-top: 8px; border-top: 2px solid var(--az-text); }

/* ---- AUTH PAGES ------------------------------------------ */
.az-auth { min-height: calc(100vh - 200px); display: flex; align-items: center; justify-content: center; padding: 60px 24px; background: var(--az-gray-light); }
.az-auth__box { background: #fff; border-radius: var(--az-radius); box-shadow: var(--az-shadow-md); padding: 48px 40px; width: 100%; max-width: 440px; }
.az-auth__logo { display: flex; justify-content: center; margin-bottom: 24px; }
.az-auth__title { font-size: 26px; font-weight: 700; text-align: center; margin-bottom: 6px; }
.az-auth__sub { text-align: center; color: var(--az-gray); font-size: 14px; margin-bottom: 32px; }
.az-auth__footer { text-align: center; margin-top: 24px; font-size: 14px; color: var(--az-gray); }
.az-auth__footer a { color: var(--az-blue); font-weight: 600; }

/* ---- ABOUT PAGE ------------------------------------------ */
.about-hero {   position: relative;
  min-height: 545px;
  display: flex;
  align-items: center;
  overflow: hidden;

  /* Background image + gradient overlay */
  background: 
    /* linear-gradient(135deg, rgba(13,89,242,0.6) 0%, rgba(0,163,255,0.6) 100%), */
    url('/static/images/about.png') center/cover no-repeat; }
.az-about-hero h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 700; margin-bottom: 16px; }
.az-about-hero p { font-size: 16px; color: rgba(255,255,255,.75); max-width: 600px; margin: 0 auto; }
.az-about-content { max-width: 1160px; margin: 0 auto; padding: 80px 24px; }
.az-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 80px; }
.az-about-grid h2 { font-size: 32px; font-weight: 700; margin-bottom: 16px; }
.az-about-grid p { font-size: 15px; color: var(--az-gray); line-height: 1.8; }
.az-about-img { aspect-ratio: 4/3; background: linear-gradient(135deg, #e8f0ff, #c8deff); border-radius: var(--az-radius); display: flex; align-items: center; justify-content: center; }
.az-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; padding: 48px 0; border-top: 1px solid var(--az-gray-border); border-bottom: 1px solid var(--az-gray-border); }
.az-stat__number { font-size: 40px; font-weight: 800; color: var(--az-blue); }
.az-stat__label { font-size: 14px; color: var(--az-gray); margin-top: 4px; }

/* ---- CONTACT PAGE ---------------------------------------- */
.az-contact { max-width: 900px; margin: 0 auto; padding: 60px 24px; }
.az-contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 40px; }
.az-contact__info h3 { font-size: 20px; font-weight: 700; margin-bottom: 16px; }
.az-contact__info-item { display: flex; gap: 14px; margin-bottom: 20px; }
.az-contact__info-item i { width: 40px; height: 40px; border-radius: 50%; background: #e8f0ff; color: var(--az-blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.az-contact__info-item div strong { display: block; font-size: 14px; font-weight: 700; }
.az-contact__info-item div p { font-size: 14px; color: var(--az-gray); }
.az-contact__form h3 { font-size: 20px; font-weight: 700; margin-bottom: 20px; }

/* ---- ORDER SUCCESS ---------------------------------------- */
.az-success { text-align: center; padding: 100px 24px; }
.az-success__icon { font-size: 64px; color: #22c55e; margin-bottom: 24px; }
.az-success h1 { font-size: 32px; font-weight: 700; margin-bottom: 12px; }
.az-success p { font-size: 15px; color: var(--az-gray); margin-bottom: 32px; }

/* ---- PROFILE PAGE ---------------------------------------- */
.az-profile { max-width: 700px; margin: 0 auto; padding: 60px 24px; }
.az-profile__card { background: #fff; border: 1px solid var(--az-gray-border); border-radius: var(--az-radius); padding: 32px; margin-bottom: 24px; box-shadow: var(--az-shadow); }
.az-profile__card h2 { font-size: 20px; font-weight: 700; margin-bottom: 20px; }

/* ---- FOOTER ----------------------------------------------- */
.az-footer { background: var(--az-navy); color: rgba(255,255,255,.75); padding: 60px 24px 0; }
.az-footer__inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 2fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.az-footer__heading { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 18px; letter-spacing: .02em; }
.az-footer__col--contact p { font-size: 13px; line-height: 1.7; }
.az-footer__col--contact strong { color: #fff; }
.az-footer__socials { display: flex; gap: 10px; margin-top: 20px; }
.az-footer__social {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.25); display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: rgba(255,255,255,.7); transition: var(--az-transition);
}
.az-footer__social:hover { background: var(--az-blue); border-color: var(--az-blue); color: #fff; }
.az-footer__links { display: flex; flex-direction: column; gap: 10px; }
.az-footer__links a { font-size: 13px; color: rgba(255,255,255,.65); transition: var(--az-transition); }
.az-footer__links a:hover { color: #fff; }
.az-footer__newsletter { display: flex; gap: 0; margin-top: 4px; }
.az-footer__email-input {
  flex: 1; padding: 12px 14px; background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.2);
  color: #fff; font-size: 12px; font-family: var(--az-font); outline: none; letter-spacing: .04em;
}
.az-footer__email-input::placeholder { color: rgba(255,255,255,.4); }
.az-footer__email-input:focus { border-color: var(--az-blue); }
.az-footer__signup-btn {
  padding: 12px 18px; background: var(--az-blue); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: .06em; transition: var(--az-transition);
}
.az-footer__signup-btn:hover { background: var(--az-blue-dark); }
.az-footer__bottom { padding: 20px 0; text-align: center; font-size: 13px; color: rgba(255,255,255,.4); }

/* ---- UTILITIES -------------------------------------------- */
.az-divider { border: none; border-top: 1px solid var(--az-gray-border); margin: 0; }
.az-text-center { text-align: center; }
.az-mt-4 { margin-top: 16px; }
.az-mb-4 { margin-bottom: 16px; }
.az-error { color: #ef4444; font-size: 12px; margin-top: 4px; }

/* ---- RESPONSIVE ------------------------------------------- */
@media (max-width: 1024px) {
  .az-product-grid { grid-template-columns: repeat(2, 1fr); }
  .az-trust__inner { grid-template-columns: repeat(2, 1fr); }
  .az-footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .az-shop-layout { grid-template-columns: 1fr; }
  .az-shop-sidebar { display: flex; gap: 8px; flex-wrap: wrap; }
  .az-shop-sidebar h3 { display: none; }
  .az-filter-list { flex-direction: row; flex-wrap: wrap; }
  .az-shop-grid { grid-template-columns: repeat(2, 1fr); }
  .az-testimonials__track { grid-template-columns: 1fr 1fr; }
  .az-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
/* 📱 Tablet */
@media (max-width: 1024px) {
  .about-hero {
    min-height: 400px;
    background-position: center;
  }
}

/* 📱 Mobile */
@media (max-width: 768px) {
  .about-hero {
    min-height: 300px;
    background-position: center top;
  }
}



/* 📱 Small mobile */
@media (max-width: 480px) {
  .about-hero {
    min-height: 140px;
  }
}
@media (max-width: 1024px) {
  .contact-hero {
    min-height: 400px;
    background-position: center;
  }
}
@media (max-width: 1300px) {
  .contact-hero {
    min-height: 400px;
    background-position: center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .contact-hero {
    min-height: 300px;
    background-position: center top;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .contact-hero {
    min-height: 160px;
  }
}
@media (max-width: 1100px) {
  .az-brand-intro {
    padding: 92px 24px;
  }
  .az-brand-intro__inner {
    gap: 48px;
  }
  .az-brand-intro__image-shell {
    width: min(100%, 560px);
  }
  .az-brand-intro__title {
    font-size: clamp(26px, 4vw, 40px);
  }
  .az-personalized {
    padding: 94px 24px 20px;
  }
  .az-personalized__inner {
    gap: 44px;
  }
  .az-personalized__visual-shell {
    min-height: 400px;
  }
  .az-personalized__title {
    font-size: clamp(30px, 4.6vw, 46px);
  }
  .az-hero--home {
    min-height: 580px;
  }
  .az-hero--home .az-hero__content {
    padding-right: min(38vw, 400px);
  }
  .az-hero--home .az-hero__title {
    font-size: 52px;
    line-height: 72px;
  }
  .az-hero--home .az-hero__image {
    width: min(38vw, 390px);
    height: 392px;
    transform: translateY(-42%);
  }
  .az-hero--home .az-hero__product-shot--rear-left {
    width: 186px;
    margin-left: -182px;
  }
  .az-hero--home .az-hero__product-shot--front {
    width: 236px;
    margin-left: -118px;
  }
  .az-hero--home .az-hero__product-shot--rear-right {
    width: 186px;
    margin-left: -4px;
  }
  .az-hero--home .az-hero__bottle--front {
    left: 100px;
  }
}
@media (max-width: 768px) {
  .az-hero--home {
    min-height: auto;
    padding-bottom: 40px;
  }

  .az-hero--home .az-hero__content {
    padding: 60px 20px 20px;
    text-align: center;
  }

  .az-hero--home .az-hero__title {
    font-size: 34px;
    line-height: 46px;
    max-width: 100%;
  }

  .az-hero--home .az-hero__subtitle {
    text-align: center;
  }

  .az-hero--home .az-hero__actions {
    justify-content: center;
  }

  /* 🔥 MAIN FIX */
  .az-hero__image {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    height: auto;
    margin-top: 30px;
    z-index: 0;
  }

  .az-hero__bottle-stage {
    height: 300px;
  }

  .az-hero__product-shot--front {
    width: 180px;
  }

  .az-hero__product-shot--rear-left,
  .az-hero__product-shot--rear-right {
    width: 140px;
    opacity: 0.5;
  }
}

@media (max-width: 768px) {
  .az-brand-intro {
    padding: 84px 24px;
  }
  .az-personalized {
    padding: 82px 24px 12px;
  }
  .az-hero { min-height: 420px; }
  .az-hero__content { padding: 60px 24px; max-width: 100%; }
  .az-hero__product-image {
  width: 70%;   /* ya 60%, 50% try kar sakte ho */
  height: auto;
  z-index: 0;
}
  .az-hero--home .az-hero__content {
    padding-right: 24px;
    text-align: center;
  }
  .az-hero--home .az-hero__title,
  .az-hero--home .az-hero__subtitle {
    max-width: none;
    text-align: center;
  }
  .az-hero--home .az-hero__actions {
    justify-content: center;
  }
  .az-hero__grid { background-size: 56px 56px; }
  .az-hero__orb--one { width: 180px; height: 180px; left: -8%; }
  .az-hero__orb--two { width: 230px; height: 230px; right: -12%; bottom: 6%; }
  .az-brand-intro__inner { grid-template-columns: 1fr; gap: 32px; }
  .az-brand-intro__beam {
    left: -42%;
    width: 112%;
    opacity: .7;
  }
  .az-brand-intro__halo {
    width: 280px;
    height: 280px;
    right: -14%;
    top: 6%;
  }
  .az-brand-intro__image-shell {
    width: min(100%, 540px);
    padding: 12px;
  }
  .az-brand-intro__text {
    max-width: none;
    text-align: center;
  }
  .az-brand-intro__copy {
    transform: none;
  }
  .az-brand-intro__badge {
    margin-left: auto;
    margin-right: auto;
  }
  .az-brand-intro__lead {
    margin-left: auto;
    margin-right: auto;
  }
  .az-brand-intro__cta {
    margin: 0 auto;
  }
  .az-personalized__inner { grid-template-columns: 1fr; gap: 32px; }
  .az-personalized__text {
    max-width: none;
    text-align: center;
  }
  .az-personalized__lead {
    margin-left: auto;
    margin-right: auto;
  }
  .az-personalized__cta {
    margin: 0 auto;
  }
  .az-personalized__visual-shell {
    width: min(100%, 560px);
    min-height: 340px;
  }
  .az-personalized__ring--outer {
    inset: 20px 24px 10px 28px;
  }
  .az-personalized__ring--inner {
    inset: 64px 72px 48px 84px;
  }
  .az-personalized__streak--one {
    width: 180px;
    right: -4%;
  }
  .az-personalized__streak--two {
    width: 140px;
    left: -2%;
  }
  .az-category-section__inner--right-title .az-category-section__header { text-align: left; margin-left: 0; }
  .az-product-grid { grid-template-columns: repeat(2, 1fr); }
  .az-faq__inner { grid-template-columns: 1fr; }
  .az-faq__image { display: none; }
  .az-footer__inner { grid-template-columns: 1fr 1fr; }
  .az-testimonials__track { grid-template-columns: 1fr; }
  .az-checkout__grid { grid-template-columns: 1fr; }
  .az-about-grid { grid-template-columns: 1fr; }
  .az-contact__grid { grid-template-columns: 1fr; }
  .az-product-detail__inner { grid-template-columns: 1fr; }
  .az-nav__links {
    position: fixed; top: 106px; left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: flex-start;
    padding: 20px 24px; gap: 4px;
    box-shadow: var(--az-shadow-md); display: none; z-index: 999;
  }
  .az-nav__links.is-open { display: flex; }
  .az-nav__hamburger { display: flex; }
}

@media (max-width: 480px) {
  .az-product-grid { grid-template-columns: 1fr; }
  .az-trust__inner { grid-template-columns: 1fr; }
  .az-footer__inner { grid-template-columns: 1fr; }
  .az-auth__box { padding: 32px 24px; }
  .az-form-row { grid-template-columns: 1fr; }
  .az-stats-grid { grid-template-columns: 1fr 1fr; }
  .az-brand-intro {
    padding: 72px 18px;
  }
  .az-personalized {
    padding: 68px 18px 6px;
  }
  .az-brand-intro__image-shell {
    padding: 8px;
  }
  .az-brand-intro__image-card {
    padding: 14px;
    border-radius: 26px;
  }
  .az-brand-intro__img {
    border-radius: 18px;
  }
  .az-brand-intro__badge {
    font-size: 11px;
    padding: 7px 12px;
    gap: 8px;
  }
  .az-brand-intro__badge::after {
    width: 24px;
  }
  .az-brand-intro__title {
    font-size: 28px;
  }
  .az-brand-intro__lead {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .az-personalized__title {
    font-size: 30px;
  }
  .az-personalized__lead {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .az-personalized__visual-shell {
    min-height: 280px;
  }
  .az-personalized__image-card {
    padding: 12px;
    border-radius: 24px;
  }
  .az-personalized__hero-img {
    border-radius: 18px;
  }
  .az-personalized__ring--outer {
    inset: 16px 10px 10px 12px;
  }
  .az-personalized__ring--inner {
    inset: 48px 42px 44px 44px;
  }
  .az-personalized__slash {
    top: 44%;
    height: 52px;
  }
  .az-hero__title {
    font-family: 'PP Neue Montreal', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 36px;
    letter-spacing: 0.2px;
    text-align: center;
    color: #fff;
    text-shadow: 0 4px 20px rgba(4, 51, 88, 0.65);
  }
  .az-hero__subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, .75);
    /* max-width: 480px; */
    margin-bottom: 24px;
    line-height: 1.7;
    padding: 0;
  }
  .az-hero__grid { background-size: 44px 44px; }
  .az-hero__orb--one { width: 130px; height: 130px; top: 12%; }
  .az-hero__orb--two { width: 160px; height: 160px; bottom: 14%; }
  .az-btn {
    font-size: 9px;
  }
  .az-personalized__inner {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .az-hero__orb,
  .az-hero__grid,
  .az-hero__title-reveal,
  .az-hero__subtitle,
  .az-hero__actions,
  .az-hero__product-shot,
  .az-hero__bottle,
  .az-hero__title--accent,
  .az-brand-intro__beam,
  .az-brand-intro__halo,
  .az-brand-intro__image-shell,
  .az-brand-intro__image-card,
  .az-brand-intro__text,
  .az-brand-intro__copy,
  .az-brand-intro__badge,
  .az-brand-intro__title-line > *,
  .az-brand-intro__lead,
  .az-brand-intro__cta,
  .az-personalized__glow,
  .az-personalized__streak,
  .az-personalized__text,
  .az-personalized__title-line,
  .az-personalized__lead,
  .az-personalized__cta,
  .az-personalized__visual-shell,
  .az-personalized__image-card,
  .az-personalized__ring,
  .az-personalized__slash,
  .az-hero--home .az-btn--primary::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  .az-brand-intro__image-card::before,
  .az-personalized__slash,
  .az-hero--home .az-btn--primary::after {
    display: none !important;
  }
}
/* ============================================================
   PRODUCT DETAIL PAGE — EXACT FIGMA MATCH
   ============================================================ */

/* ---- Wrapper ---- */
.pd-wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ---- TOP SECTION (image + info side by side) ---- */
.pd-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: flex-start;
}

@media (max-width: 900px) {
  .pd-top {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .pd-image-box {
    max-width: 420px;
    margin: 0 auto;
  }
}

/* ---- Image Column ---- */
.pd-image-col {}
.pd-image-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #1a2540;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.pd-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pd-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #111c33 0%, #1a2f55 100%);
}

/* Vial mock for placeholder */
.pd-vial-mock {
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 24px 48px rgba(30,111,255,.35));
}
.pd-vial-mock__cap {
  width: 70px; height: 28px;
  background: linear-gradient(180deg, #1e3a7a 0%, #152d63 100%);
  border-radius: 5px 5px 0 0;
  border: 2px solid #2a52a0;
}
.pd-vial-mock__body {
  width: 120px; min-height: 200px;
  background: linear-gradient(180deg, rgba(200,220,255,.18) 0%, rgba(200,220,255,.06) 100%);
  border: 1.5px solid rgba(100,150,255,.45);
  border-radius: 0 0 8px 8px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px; padding: 16px 10px;
  backdrop-filter: blur(6px);
}
.pd-vial-mock__brand {
  font-size: 9px; color: rgba(255,255,255,.55); letter-spacing: .1em;
  text-transform: uppercase; text-align: center; line-height: 1.4;
}
.pd-vial-mock__name {
  font-size: 15px; font-weight: 900; color: #fff; letter-spacing: .06em;
  background: var(--az-blue); padding: 5px 12px; border-radius: 4px;
  text-align: center;
}
.pd-vial-mock__dose {
  font-size: 13px; font-weight: 800; color: #fff;
  background: #111; padding: 3px 10px; border-radius: 3px;
}
.pd-vial-mock__purity { font-size: 10px; color: rgba(255,255,255,.5); }
.pd-vial-mock__note { font-size: 9px; color: rgba(255,255,255,.35); }

/* ---- Info Column ---- */
.pd-info-col { padding-top: 8px; }

.pd-instock {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; color: #374151;
  margin-bottom: 12px;
}
.pd-instock__dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #22c55e; display: inline-block;
}
.pd-instock__dot--out { background: #ef4444; }

.pd-name {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--az-text);
  line-height: 1.15;
  margin-bottom: 8px;
}

.pd-subtitle {
  font-size: 13px;
  color: var(--az-blue);
  font-weight: 500;
  margin-bottom: 16px;
  font-style: italic;
}

.pd-desc {
  font-size: clamp(13px, 1.8vw, 15px);
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 22px;
}
.pd-desc p   { margin: 0 0 10px; }
.pd-desc p:last-child { margin-bottom: 0; }
.pd-desc strong { font-weight: 700; color: #1f2937; }
.pd-desc em  { font-style: italic; }
.pd-desc h1,.pd-desc h2,.pd-desc h3,.pd-desc h4 {
  font-weight: 700;
  color: #1f2937;
  margin: 14px 0 6px;
  line-height: 1.3;
}
.pd-desc h1 { font-size: 1.25em; }
.pd-desc h2 { font-size: 1.15em; }
.pd-desc h3 { font-size: 1.05em; }
.pd-desc ul,.pd-desc ol {
  padding-left: 1.4em;
  margin: 0 0 10px;
}
.pd-desc li { margin-bottom: 4px; }
.pd-desc a  { color: var(--az-blue, #3b82f6); text-decoration: underline; }
.pd-desc code {
  background: #f3f4f6;
  border-radius: 3px;
  padding: 1px 5px;
  font-size: .92em;
}

/* Price */
.pd-price-row {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 22px;
}
.pd-price-old {
  font-size: 18px; font-weight: 500; color: #9ca3af;
  text-decoration: line-through;
}
.pd-price {
  font-size: clamp(26px, 5vw, 38px); font-weight: 800; color: var(--az-text);
}
@media (max-width: 600px) {
  .pd-actions {
    flex-direction: column;
  }

  .pd-btn {
    width: 100%;
  }
}
@media (max-width: 900px) {
  .pd-benefit-card:nth-child(1),
  .pd-benefit-card:nth-child(2),
  .pd-benefit-card:nth-child(n+3) {
    grid-column: auto;
  }
}
/* Strength Selector */
.pd-label {
  font-size: 13px; font-weight: 600; color: var(--az-text);
  margin-bottom: 10px;
}
.pd-strengths { margin-bottom: 22px; }
.pd-strengths__grid { display: flex; gap: 8px; flex-wrap: wrap; }
.pd-strength-btn {
  display: flex; flex-direction: column; align-items: center;
  padding: 8px 14px; border-radius: 7px;
  border: 1.5px solid #d1d5db;
  background: #fff; cursor: pointer;
  transition: all .2s ease; min-width: 68px;
}
.pd-strength-btn__label {
  font-size: 13px; font-weight: 700; color: var(--az-text); display: block;
}
.pd-strength-btn__price {
  font-size: 11px; color: #6b7280; display: block; margin-top: 2px;
}
.pd-strength-btn:hover { border-color: var(--az-blue); }
.pd-strength-btn--active {
  background: var(--az-blue) !important;
  border-color: var(--az-blue) !important;
}
.pd-strength-btn--active .pd-strength-btn__label,
.pd-strength-btn--active .pd-strength-btn__price { color: #fff !important; }

/* Quantity */
.pd-quantity-row { margin-bottom: 24px; }
.pd-qty {
  display: inline-flex; align-items: center;
  border: 1.5px solid #d1d5db; border-radius: 8px; overflow: hidden;
}
.pd-qty button {
  width: 40px; height: 46px;
  font-size: 22px; font-weight: 300; color: var(--az-text);
  transition: background .15s; cursor: pointer;
  background: none; border: none;
}
.pd-qty button:hover { background: #f3f4f6; }
.pd-qty input {
  width: 56px; height: 46px; text-align: center;
  border: none; border-left: 1.5px solid #d1d5db; border-right: 1.5px solid #d1d5db;
  font-size: 16px; font-weight: 600; color: var(--az-text);
  font-family: var(--az-font); outline: none;
}

/* Actions */
.pd-actions { display: flex; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.pd-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 7px;
  font-size: 15px; font-weight: 600; font-family: var(--az-font);
  cursor: pointer; transition: all .2s ease; border: none;
}
.pd-btn--cart {
  background: var(--az-navy); color: #fff; flex: 1; justify-content: center;
}
.pd-btn--cart:hover { background: #1a2f55; }
.pd-btn--buy {
  background: var(--az-blue); color: #fff; flex: 1; justify-content: center;
}
.pd-btn--buy:hover { background: var(--az-blue-dark); }

/* Trust Badges */
.pd-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.pd-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 500; color: #374151;
}
.pd-badge i { color: #22c55e; font-size: 11px; }
.pd-badge + .pd-badge::before {
  content: '·'; margin-right: 2px; color: #9ca3af;
}

/* ============================================================
   RESEARCH BENEFITS SECTION
   ============================================================ */
.pd-benefits-section {
  padding: 64px 0;
  margin-top: 16px;
}
.pd-benefits-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: start; margin-bottom: 40px;
}
.pd-benefits-tag {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    color: #0EBA78;
    /* text-transform: uppercase; */
    letter-spacing: .08em;
    margin-bottom: 12px;
}
.pd-benefits-title {
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 500;
    color: var(--az-text);
    line-height: 1.2;
    font-family: 'PP Neue Montreal', sans-serif;
}
.pd-benefits-title--accent { color: var(--az-blue); }
.pd-benefits-intro p {
    font-size: 16px;
    color: #4b5563;
    /* line-height: 1.75; */
    padding-top: 20px;
    font-weight: 400;
    font-family: 'PP Neue Montreal', sans-serif;
}

.pd-benefits-grid {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* First row */
.pd-benefit-card:nth-child(1) {
  grid-column: 1 / span 2; /* big card */
}

.pd-benefit-card:nth-child(2) {
  grid-column: 3 / 4; /* right side */
}

/* Rest rows */
.pd-benefit-card:nth-child(n+3) {
  grid-column: span 1;
}
.pd-benefit-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: transform .2s ease, box-shadow .2s ease;
}
.pd-benefit-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,.1); }
.pd-benefit-card--highlight {
  background: var(--az-blue) !important;
  border-color: var(--az-blue) !important;
}
.pd-benefit-card--highlight .pd-benefit-card__num,
.pd-benefit-card--highlight .pd-benefit-card__title,
.pd-benefit-card--highlight .pd-benefit-card__desc { color: #fff !important; }
.pd-benefit-card--highlight .pd-benefit-card__num {
    background: #fff;
    color: #019EFE !important;
}
.pd-benefit-card__num {
  width: 36px; height: 36px; border-radius: 50%;
  background: #F6F6FD; color: #019EFE;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; margin-bottom: 16px;
}
.pd-benefit-card__title {
  font-size: 16px; font-weight: 700; color: var(--az-text);
  margin-bottom: 10px; line-height: 1.3;
}
.pd-benefit-card__desc {
  font-size: 13px; color: #6b7280; line-height: 1.7;
}

/* ============================================================
   LYO SHELF LIFE SECTION
   ============================================================ */
.pd-lyo-section {
  background: #eef3fb;
  padding: 56px 0;
}
.pd-lyo-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.pd-lyo-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid #d1dced;
}
.pd-lyo-card--blue { background: #fff; }
.pd-lyo-card__title {
  font-size: 17px; font-weight: 700; color: var(--az-blue);
  margin-bottom: 18px;
}
.pd-lyo-card__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.pd-lyo-card__list li {
  font-size: 14px; color: #374151; line-height: 1.5;
}
.pd-lyo-card__note {
  font-size: 13px !important; color: #6b7280 !important;
  border-top: 1px solid #e5e7eb; padding-top: 10px; margin-top: 4px;
}
.pd-lyo-card__text {
  font-size: 14px; color: #374151; line-height: 1.75;
}

/* ============================================================
   REVIEWS SECTION (on product detail)
   ============================================================ */
.pd-reviews-section {
  padding: 72px 0;
  background: #fff;
}
.pd-reviews-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
}
.pd-reviews-head {
  text-align: center;
  margin-bottom: 42px;
}
.pd-reviews-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  margin-bottom: 8px;
}
.pd-reviews-sub {
  text-align: center;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.pd-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.pd-review-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.pd-review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
}
.pd-review-card__top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.pd-review-card__stars { display: flex; gap: 3px; color: #f5a623; font-size: 14px; }
.pd-review-card__quote {
  font-size: 36px; color: #e5b96a; line-height: 1;
  font-family: Georgia, serif; letter-spacing: -.1em;
}
.pd-review-card__body {
  font-size: 14px; color: #374151; line-height: 1.75;
  margin-bottom: 24px;
}
.pd-review-card__author {
  border-top: 1px solid #e5e7eb; padding-top: 16px;
}
.pd-review-card__author strong {
  display: block; font-size: 14px; font-weight: 700; color: var(--az-text);
}
.pd-review-card__author span {
  font-size: 12px; color: #6b7280;
}
.pd-review-panel {
  margin-top: 32px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #f8fbff;
  padding: 28px;
}
.pd-review-panel--info {
  background: #f9fafb;
}
.pd-review-panel__intro {
  max-width: 720px;
  margin-bottom: 20px;
}
.pd-review-panel__kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #e7f0fb;
  color: #14385a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.pd-review-panel__title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}
.pd-review-panel__text {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
}
.pd-review-panel__text a {
  color: var(--az-blue);
  font-weight: 600;
}
.pd-review-panel__form {
  display: grid;
  gap: 18px;
}
.pd-review-panel__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.pd-review-panel__group {
  display: grid;
  gap: 8px;
}
.pd-review-panel__group label {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
}
.pd-review-panel__input,
.pd-review-panel__select,
.pd-review-panel__textarea {
  width: 100%;
  border: 1px solid #d8e3ee;
  border-radius: 12px;
  padding: 13px 14px;
  font-size: 14px;
  color: #0f172a;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.pd-review-panel__textarea {
  min-height: 140px;
  resize: vertical;
}
.pd-review-panel__input:focus,
.pd-review-panel__select:focus,
.pd-review-panel__textarea:focus {
  outline: none;
  border-color: #1d5f97;
  box-shadow: 0 0 0 4px rgba(29, 95, 151, .12);
}
.pd-review-panel__error {
  color: #b42318;
  font-size: 13px;
  margin: 0;
}
.pd-review-panel__actions {
  display: flex;
  justify-content: flex-start;
}
.pd-review-panel__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  padding: 14px 22px;
  background: #0f2741;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.pd-review-panel__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(15, 39, 65, .18);
}

/* ============================================================
   RELATED PRODUCTS
   ============================================================ */
.pd-related { padding: 56px 0; background: #f8faff; }
.pd-related__inner { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.pd-related__title {
  font-size: 24px; font-weight: 700; margin-bottom: 28px;
}

/* ============================================================
   RESPONSIVE — PRODUCT DETAIL
   ============================================================ */
@media (max-width: 900px) {
  .pd-top { grid-template-columns: 1fr; gap: 32px; }
  .pd-image-box { max-width: 440px; margin: 0 auto; }
  .pd-benefits-inner { grid-template-columns: 1fr; }
  .pd-benefits-grid { display: block; grid-template-columns: 1fr 1fr; }
  .pd-lyo-inner { grid-template-columns: 1fr; }
  .pd-reviews-grid { grid-template-columns: 1fr 1fr; }
  .pd-review-panel__row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .pd-benefits-grid { display: block; grid-template-columns: 1fr; }
  .pd-reviews-grid { grid-template-columns: 1fr; }
  .pd-review-panel { padding: 22px; }
  .pd-review-panel__title { font-size: 22px; }
  .pd-review-panel__row { grid-template-columns: 1fr; }
  .pd-strengths__grid { gap: 6px; }
  .pd-actions { flex-direction: column; }
  .pd-btn { justify-content: center; }
}

/* ============================================================
   CART PAGE — EXACT FIGMA MATCH
   ============================================================ */

/* ── Breadcrumb ─────────────────────────────────────────── */
.cart-breadcrumb {
  background: #fff;
  border-bottom: 1px solid #f0f1f3;
  padding: 12px 0;
}
.cart-breadcrumb__inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: #6b7280;
}
.cart-breadcrumb__inner a {
  color: #6b7280; transition: color .2s;
}
.cart-breadcrumb__inner a:hover { color: var(--az-blue); }
.cart-breadcrumb__sep { font-size: 10px; color: #9ca3af; }
.cart-breadcrumb__inner span:last-child { color: var(--az-text); font-weight: 500; }

/* ── Page Title ──────────────────────────────────────────── */
.cart-title-row {
  max-width: 1160px; margin: 0 auto;
  padding: 32px 24px 0;
  text-align: center;
}
.cart-title {
  font-size: 28px; font-weight: 700; color: var(--az-text);
}

/* ── Layout ──────────────────────────────────────────────── */
.cart-layout {
  max-width: 1160px; margin: 0 auto;
  padding: 28px 24px 56px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  align-items: flex-start;
}

/* ── Cart Items Column ───────────────────────────────────── */
.cart-items-col {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}

/* Header label (🛍 My cart (2 items)) */
.cart-header-label {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f1f3;
  font-size: 14px; font-weight: 600; color: var(--az-text);
}
.cart-header-label i { color: #9ca3af; font-size: 15px; }

/* Item list */
.cart-items-list { padding: 0; }

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 20px 20px;
  border-bottom: 1px solid #f0f1f3;
  transition: background .15s ease;
}
.cart-item:last-child { border-bottom: none; }
.cart-item:hover { background: #fafbfc; }

/* Image */
.cart-item__img-wrap {
  width: 80px; height: 80px;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f7fa;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cart-item__img {
  width: 100%; height: 100%; object-fit: cover;
}
.cart-item__img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}

/* Mini vial for placeholder */
.crt-vial {
  width: 28px; height: 56px;
  background: linear-gradient(180deg, rgba(180,210,255,.5) 0%, rgba(180,210,255,.2) 100%);
  border: 1.5px solid rgba(100,150,255,.4);
  border-radius: 4px;
  position: relative;
}
.crt-vial::before {
  content: ''; position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  width: 18px; height: 10px; background: #1e3a6e; border-radius: 2px 2px 0 0;
}

/* Details (name, strength, qty) */
.cart-item__details { min-width: 0; }
.cart-item__name {
  font-size: 15px; font-weight: 700; color: var(--az-text);
  margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cart-item__strength {
  font-size: 13px; color: #6b7280; margin-bottom: 14px;
}
.cart-item__strength strong { color: var(--az-text); }

/* Qty Controls */
.cart-item__qty-form { display: inline-block; }
.cart-item__qty {
  display: inline-flex; align-items: center;
  border: 1.5px solid #d1d5db;
  border-radius: 7px; overflow: hidden;
  height: 36px;
}
.cart-item__qty-btn {
  width: 36px; height: 36px;
  font-size: 18px; font-weight: 300;
  color: var(--az-text); background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.cart-item__qty-btn:hover { background: #f3f4f6; }
.cart-item__qty-input {
  width: 44px; height: 36px; text-align: center;
  border: none;
  border-left: 1.5px solid #d1d5db;
  border-right: 1.5px solid #d1d5db;
  font-size: 14px; font-weight: 600; font-family: var(--az-font);
  outline: none; color: var(--az-text);
  -moz-appearance: textfield;
}
.cart-item__qty-input::-webkit-outer-spin-button,
.cart-item__qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* Right (price + remove) */
.cart-item__right {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 10px; flex-shrink: 0;
}
.cart-item__price {
  font-size: 16px; font-weight: 700; color: var(--az-text);
}
.cart-item__remove-form { display: inline; }
.cart-item__remove {
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 500; color: #ef4444;
  transition: color .2s; padding: 0;
}
.cart-item__remove:hover { color: #b91c1c; }
.cart-item__remove i { font-size: 13px; }

/* Empty State */
.cart-empty {
  padding: 80px 24px; text-align: center;
}
.cart-empty__icon {
  font-size: 52px; color: #d1d5db; margin-bottom: 20px;
}
.cart-empty h2 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.cart-empty p { font-size: 15px; color: #6b7280; margin-bottom: 28px; }
.cart-empty__btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px; background: var(--az-blue); color: #fff;
  border-radius: 7px; font-size: 15px; font-weight: 600;
  transition: background .2s;
}
.cart-empty__btn:hover { background: var(--az-blue-dark); }

/* ── Order Summary Column ────────────────────────────────── */
.cart-summary-col { position: sticky; top: 90px; }
.cart-summary {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px 20px;
}
.cart-summary__title {
  font-size: 16px; font-weight: 700; color: var(--az-text);
  margin-bottom: 18px;
}

/* Promo code */
.cart-promo {
  display: flex; gap: 0; margin-bottom: 20px;
}
.cart-promo__input {
  flex: 1; padding: 10px 12px;
  border: 1.5px solid #d1d5db; border-right: none;
  border-radius: 7px 0 0 7px;
  font-size: 13px; font-family: var(--az-font);
  outline: none; color: var(--az-text);
  transition: border-color .2s;
}
.cart-promo__input::placeholder { color: #9ca3af; }
.cart-promo__input:focus { border-color: var(--az-blue); }
.cart-promo__btn {
  padding: 10px 16px;
  background: #fff; color: var(--az-text);
  border: 1.5px solid #d1d5db; border-radius: 0 7px 7px 0;
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: all .2s; white-space: nowrap;
}
.cart-promo__btn:hover {
  background: var(--az-blue); color: #fff; border-color: var(--az-blue);
}

/* Summary lines */
.cart-summary__lines {
  display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px;
}
.cart-summary__line {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; color: #374151;
}
.cart-summary__line--discount { color: #16a34a; font-weight: 500; }
.cart-summary__divider {
  border-top: 1px solid #e5e7eb; margin: 4px 0 16px;
}
.cart-summary__total {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 16px; font-weight: 800; color: var(--az-text);
  margin-bottom: 20px;
}

/* Checkout button */
.cart-summary__checkout-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 14px;
  background: var(--az-navy); color: #fff;
  border-radius: 7px; font-size: 15px; font-weight: 600;
  transition: background .2s; text-align: center;
}
.cart-summary__checkout-btn:hover { background: #1a2f55; }
.cart-summary__checkout-btn i { font-size: 14px; }

/* ── Related Products ────────────────────────────────────── */
.cart-related {
  background: #eaf4ff;
  padding: 56px 0 64px;
}
.cart-related__inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
}
.cart-related__title {
  font-size: 24px; font-weight: 700; color: var(--az-text);
  margin-bottom: 28px;
}
.cart-related__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary-col { position: static; }
  .cart-related__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .cart-item { grid-template-columns: 64px 1fr; }
  .cart-item__right { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; }
  .cart-related__grid { grid-template-columns: 1fr; }
  .cart-layout { padding: 16px 16px 40px; }
}

/* ============================================================
   AUTH PAGES — LOGIN & REGISTER (Exact Figma)
   ============================================================ */

/* Hide the topbar + nav on auth pages */
.auth-page ~ * { }

.auth-page {
  min-height: calc(100vh - 40px);
  background: 
        url('/static/images/lgbg.png') center/cover no-repeat;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  padding: 170px 0px;
}

/* Subtle background pattern */
.auth-page::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(30,111,255,.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(30,111,255,.05) 0%, transparent 50%);
}

.auth-page__inner {
  position: relative; z-index: 2;
  width: 100%;  margin: 0 auto;
  /* display: flex; */
  align-items: center;
  max-width: 704px;
  max-height: 620px;
  padding: 60px 40px;
}

/* ── Auth Card ─────────────────────────────────────────── */
.auth-card-wrap {
  flex: 0 0 460px;
  display: flex; align-items: center; justify-content: center;
}
.auth-card {
  background: #fff;
  border-radius: 20px;
  padding: 48px 44px;
  width: 100%;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
}
.auth-card__title {
  font-size: 24px; font-weight: 700;
  color: var(--az-text); text-align: center;
  margin-bottom: 32px; line-height: 1.25;
}
.auth-help {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
  margin: -14px 0 22px;
}
.auth-error {
  background: #fef2f2; color: #dc2626;
  border: 1px solid #fecaca; border-radius: 8px;
  padding: 10px 14px; font-size: 13px;
  margin-bottom: 18px;
}

/* Form groups */
.auth-form { display: flex; flex-direction: column; gap: 0; }
.auth-form__group { margin-bottom: 18px; }
.auth-form__label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--az-text); margin-bottom: 7px;
}
.auth-req { color: #ef4444; }
.auth-err { color: #ef4444; font-size: 12px; margin-top: 4px; display: block; }

/* Input style */
.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"],
.az-dash-input {
  width: 100%; padding: 12px 14px;
  background: #f8f9fb;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px; font-family: var(--az-font);
  color: var(--az-text); outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.auth-form input:focus,
.az-dash-input:focus {
  border-color: var(--az-blue);
  box-shadow: 0 0 0 3px rgba(30,111,255,.1);
  background: #fff;
}

/* Password with eye toggle */
.auth-pwd-wrap { position: relative; }
.auth-pwd-wrap input { padding-right: 44px; }
.auth-eye {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer;
  color: #9ca3af; font-size: 15px; padding: 4px;
  transition: color .2s;
}
.auth-eye:hover { color: var(--az-blue); }

/* Forgot / agree */
.auth-forgot {
  display: block; font-size: 13px; color: var(--az-text);
  margin-bottom: 22px; text-decoration: none;
}
.auth-forgot:hover { color: var(--az-blue); }
.auth-agree {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: #6b7280; margin-bottom: 22px;
  cursor: pointer; line-height: 1.5;
}
.auth-agree__check { margin-top: 3px; flex-shrink: 0; accent-color: var(--az-blue); }
.auth-agree a { color: var(--az-blue); }

/* Submit button */
.auth-submit {
  width: 100%; padding: 14px;
  background: var(--az-navy); color: #fff;
  border-radius: 8px; border: none;
  font-size: 16px; font-weight: 600;
  cursor: pointer; transition: background .2s;
  font-family: var(--az-font);
}
.auth-submit:hover { background: #1a2f55; }

/* Footer link */
.auth-card__footer {
  text-align: center; font-size: 14px; color: #6b7280; margin-top: 22px;
}
.auth-card__footer a { color: var(--az-blue); font-weight: 600; }

/* ── Auth Vial Visual ─────────────────────────────────── */
.auth-visual {
  flex: 1; display: flex; align-items: center; justify-content: center;
}
.auth-vial-wrap {
  position: relative; display: flex; align-items: flex-end; justify-content: center;
  height: 420px;
}
.auth-vial {
  display: flex; flex-direction: column; align-items: center;
  filter: drop-shadow(0 32px 64px rgba(30,111,255,.4));
  animation: vialFloat 4s ease-in-out infinite;
}
@keyframes vialFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
.auth-vial__cap {
  width: 90px; height: 32px;
  background: linear-gradient(180deg, #2255aa 0%, #1a3d7c 100%);
  border-radius: 6px 6px 0 0;
  border: 2px solid #2a5abf;
}
.auth-vial__stopper {
  width: 78px; height: 12px;
  background: #dbe8ff; border-radius: 2px;
}
.auth-vial__body {
  width: 140px; height: 280px;
  background: linear-gradient(
    170deg,
    rgba(220,235,255,.25) 0%,
    rgba(180,210,255,.1)  40%,
    rgba(220,235,255,.2)  100%
  );
  border: 1.5px solid rgba(130,170,255,.45);
  border-radius: 0 0 12px 12px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
  backdrop-filter: blur(4px);
}
/* liquid fill */
.auth-vial__body::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 55%;
  background: linear-gradient(180deg, rgba(180,220,255,.2) 0%, rgba(160,205,255,.35) 100%);
  border-radius: 0 0 10px 10px;
}
.auth-vial__label {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 5px; padding: 12px 8px;
  width: 90%; text-align: center;
}
.auth-vial__brand {
  font-size: 8px; letter-spacing: .12em; color: rgba(255,255,255,.55);
  text-transform: uppercase; line-height: 1.4;
}
.auth-vial__brand small { font-weight: 400; color: rgba(255,255,255,.4); }
.auth-vial__name {
  background: #1a3d8f; color: #fff;
  font-size: 14px; font-weight: 900; letter-spacing: .06em;
  padding: 5px 14px; border-radius: 3px; width: 100%;
}
.auth-vial__conc { font-size: 10px; color: rgba(255,255,255,.55); }
.auth-vial__badge {
  background: #111; color: #fff;
  font-size: 12px; font-weight: 800;
  padding: 3px 14px; border-radius: 4px; margin-top: 2px;
}
.auth-vial__note { font-size: 9px; color: rgba(255,255,255,.38); margin-top: 4px; }
.auth-vial__base {
  width: 140px; height: 8px;
  background: rgba(100,140,200,.25); border-radius: 0 0 4px 4px;
}

/* ── Responsive Auth ──────────────────────────────────── */
@media (max-width: 860px) {
  .auth-visual { display: none; }
  .auth-card-wrap { flex: 1; }
  .auth-page__inner { justify-content: center; padding: 40px 24px; }
  .auth-page {padding: 0%;}
}
@media (max-width: 480px) {
  .auth-card { border-radius: 16px; }
}

/* ============================================================
   DASHBOARD LAYOUT
   ============================================================ */
.dash-layout {
  display: flex; min-height: calc(100vh - 108px);
  background: #f4f6f9;
}

/* ── Sidebar ───────────────────────────────────────────── */
.dash-sidebar {
  width: 200px; flex-shrink: 0;
  background: #fff;
  border-right: 1px solid #e5e7eb;
  padding: 24px 0;
}
.dash-nav { display: flex; flex-direction: column; }
.dash-nav__item {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 24px;
  font-size: 14px; font-weight: 500; color: #374151;
  transition: all .2s; text-decoration: none;
  border-left: 3px solid transparent;
}
.dash-nav__item i { font-size: 15px; color: #9ca3af; width: 18px; text-align: center; }
.dash-nav__item:hover { color: var(--az-blue); background: #f0f4ff; }
.dash-nav__item:hover i { color: var(--az-blue); }
.dash-nav__item--active {
  color: #fff !important;
  background: var(--az-blue) !important;
  border-left-color: var(--az-blue-dark) !important;
  font-weight: 600;
}
.dash-nav__item--active i { color: #fff !important; }

/* ── Main Content ─────────────────────────────────────── */
.dash-main {
  flex: 1; padding: 32px 36px; min-width: 0;
  display: flex; flex-direction: column; gap: 24px;
}

/* ── Breadcrumb ───────────────────────────────────────── */
.dash-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: #6b7280;
}
.dash-breadcrumb a { color: #6b7280; text-decoration: none; transition: color .2s; }
.dash-breadcrumb a:hover { color: var(--az-blue); }
.dash-breadcrumb i { font-size: 10px; }
.dash-breadcrumb span { color: var(--az-text); font-weight: 500; }

/* ── Overview Grid (2 info cards side by side) ──────── */
.dash-overview-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.dash-info-card {
  background: #fff; border-radius: 12px;
  padding: 24px 28px; border: 1px solid #e5e7eb;
}
.dash-info-card__header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.dash-info-card__icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.dash-info-card__icon--blue { background: #dbeafe; color: var(--az-blue); }
.dash-info-card__action {
  font-size: 13px; font-weight: 600; color: var(--az-blue);
  text-decoration: none; transition: color .2s;
}
.dash-info-card__action:hover { color: var(--az-blue-dark); }
.dash-info-card__label {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  color: #9ca3af; text-transform: uppercase; margin-bottom: 8px;
}
.dash-info-card__name {
  font-size: 22px; font-weight: 700; color: var(--az-text); margin-bottom: 12px;
}
.dash-info-card__details { display: flex; flex-direction: column; gap: 8px; }
.dash-info-card__row {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: #374151;
}
.dash-info-card__row i { color: #9ca3af; font-size: 13px; width: 16px; }
.dash-info-card__empty { font-size: 14px; color: #9ca3af; margin-top: 4px; }
.dash-add-link {
  display: inline-block; margin-top: 10px;
  font-size: 13px; font-weight: 600; color: var(--az-blue);
}

/* ── Orders Card & Table ──────────────────────────────── */
.dash-orders-card {
  background: #fff; border-radius: 12px;
  border: 1px solid #e5e7eb; overflow: hidden;
}
.dash-orders-card__header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 24px; border-bottom: 1px solid #f0f1f3;
}
.dash-orders-card__title { font-size: 15px; font-weight: 700; color: var(--az-text); }
.dash-orders-card__viewall {
  font-size: 13px; font-weight: 600; color: var(--az-blue);
  text-decoration: none; display: flex; align-items: center; gap: 5px;
  transition: color .2s;
}
.dash-orders-card__viewall:hover { color: var(--az-blue-dark); }

.dash-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.dash-table { width: 100%; min-width: 760px; border-collapse: collapse; }
.dash-table thead tr { background: #f8f9fb; }
.dash-table th {
  text-align: left; padding: 12px 20px;
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: #6b7280;
  border-bottom: 1px solid #f0f1f3;
}
.dash-table td {
  padding: 16px 20px; border-bottom: 1px solid #f8f9fb;
  font-size: 14px; color: var(--az-text); vertical-align: middle;
}
.dash-table tbody tr:last-child td { border-bottom: none; }
.dash-table tbody tr:hover { background: #fafbff; }
.dash-table__order-id { font-weight: 600; color: #374151; font-size: 13px; }
.dash-table__product {
  display: flex; align-items: center; gap: 12px;
}
.dash-table__product img {
  width: 40px; height: 40px; border-radius: 8px;
  object-fit: cover; background: #f5f7fa;
}
.dash-table__product-img-placeholder {
  width: 40px; height: 40px; border-radius: 8px;
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
  border: 1px solid #bfdbfe;
}
.dash-table__date { color: #6b7280; font-size: 13px; }
.dash-table__total { font-weight: 700; }
.dash-table__action-cell { white-space: nowrap; min-width: 160px; }
.dash-table__action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #0D59F2;
  text-decoration: none;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid #0D59F2;
  background: #eff6ff;
  transition: background .25s, color .2s, border-color .2s, box-shadow .25s, transform .15s;
}
.dash-table__action-link:hover {
  background: linear-gradient(90deg, #0D59F2 0%, #0D59F2 40%, #00A3FF 92%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 18px rgba(0,163,255,.45), 0 4px 14px rgba(13,89,242,.3);
  transform: translateY(-1px);
}
.dash-table__action-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  background: #f3f4f6;
  color: #6b7280;
}
.dash-table__action-text--complete { background: #dcfce7; color: #15803d; }
.dash-table__action-text--muted { min-width: 48px; }
.dash-table__empty {
  text-align: center; color: #9ca3af; padding: 48px !important; font-size: 14px;
}
.dash-table__empty a { color: var(--az-blue); font-weight: 600; }

/* Status badges */
.dash-status {
  display: inline-flex; align-items: center;
  padding: 5px 12px; border-radius: 20px;
  font-size: 11px; font-weight: 700; letter-spacing: .05em;
}
.dash-status--shipped    { background: #dcfce7; color: #16a34a; }
.dash-status--processing { background: #dbeafe; color: #1d4ed8; }
.dash-status--delivered  { background: #f3f4f6; color: #374151; }
.dash-status--pending    { background: #fef9c3; color: #854d0e; }
.dash-status--cancelled  { background: #fee2e2; color: #dc2626; }

/* ── Order History Page ───────────────────────────────── */
.dash-orders-header {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 24px;
}
.dash-orders-title { font-size: 28px; font-weight: 700; margin-bottom: 6px; }
.dash-orders-sub { font-size: 14px; color: #6b7280; max-width: 440px; line-height: 1.5; }

.dash-search {
  position: relative; flex-shrink: 0; width: 260px;
}
.dash-search__icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: #9ca3af; font-size: 14px;
}
.dash-search__input {
  width: 100%; padding: 11px 14px 11px 38px;
  border: 1.5px solid #e5e7eb; border-radius: 8px;
  font-size: 14px; font-family: var(--az-font); outline: none;
  background: #fff; color: var(--az-text);
  transition: border-color .2s;
}
.dash-search__input:focus { border-color: var(--az-blue); }
.dash-search__input::placeholder { color: #9ca3af; }

/* Status filter tabs */
.dash-tabs {
  display: flex; gap: 0;
  background: #fff; border: 1px solid #e5e7eb;
  border-radius: 12px 12px 0 0; overflow: hidden;
  border-bottom: none;
}
.dash-tab {
  display: flex; align-items: center; gap: 7px;
  padding: 13px 22px; font-size: 14px; font-weight: 500;
  color: #6b7280; text-decoration: none; border-bottom: 2px solid transparent;
  transition: all .2s; white-space: nowrap;
}
.dash-tab:hover { color: var(--az-blue); background: #f5f8ff; }
.dash-tab--active {
  color: var(--az-navy) !important;
  background: #fff !important;
  border-bottom-color: var(--az-navy) !important;
  font-weight: 700;
}
.dash-tab__badge {
  background: #f3f4f6; color: #374151;
  font-size: 11px; font-weight: 700; min-width: 20px;
  padding: 2px 6px; border-radius: 10px; text-align: center;
}
.dash-tab--active .dash-tab__badge { background: var(--az-navy); color: #fff; }

/* ── Form Card (Edit Profile, Payment, Shipping) ──────── */
.dash-form-card {
  background: #fff; border-radius: 12px;
  padding: 40px 44px; border: 1px solid #e5e7eb;
}
.dash-form-card__title {
  font-size: 26px; font-weight: 700; text-align: center;
  color: var(--az-text); margin-bottom: 36px;
}
.dash-form { display: flex; flex-direction: column; max-width: 600px; margin: 0 auto; }
.dash-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.dash-form__group { margin-bottom: 20px; }
.dash-form__label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--az-text); margin-bottom: 7px;
}
.dash-form__group input,
.dash-form__group select {
  width: 100%; padding: 13px 14px;
  border: 1.5px solid #e5e7eb; border-radius: 8px;
  font-size: 14px; font-family: var(--az-font);
  background: #f8f9fb; color: var(--az-text); outline: none;
  transition: border-color .2s;
}
.dash-form__group input:focus,
.dash-form__group select:focus {
  border-color: var(--az-blue); background: #fff;
  box-shadow: 0 0 0 3px rgba(30,111,255,.1);
}
.dash-form__submit {
  width: 100%; padding: 14px;
  background: var(--az-navy); color: #fff;
  border-radius: 8px; border: none;
  font-size: 16px; font-weight: 600;
  cursor: pointer; transition: background .2s;
  font-family: var(--az-font); margin-top: 8px;
}
.dash-form__submit:hover { background: #1a2f55; }

/* ── Shipping Address Cards ───────────────────────────── */
.dash-addr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.dash-addr-card {
  background: #fff; border: 1.5px solid #e5e7eb; border-radius: 12px;
  padding: 20px; position: relative; transition: border-color .2s;
}
.dash-addr-card--default { border-color: var(--az-blue); }
.dash-addr-card:hover { border-color: #bfdbfe; }
.dash-addr-badge {
  display: inline-block; background: #dbeafe; color: var(--az-blue);
  font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 10px;
  margin-bottom: 10px;
}
.dash-addr-card__label { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.dash-addr-card__name { font-size: 14px; font-weight: 600; color: var(--az-text); margin-bottom: 6px; }
.dash-addr-card__line { font-size: 13px; color: #6b7280; line-height: 1.5; }
.dash-addr-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}
.dash-addr-card__actions form {
  margin: 0;
}
.dash-addr-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #dbe3ee;
  background: #fff;
  color: #374151;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all .2s ease;
}
.dash-addr-action:hover {
  border-color: #bfdbfe;
  color: var(--az-blue);
}
.dash-addr-action--primary {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: var(--az-blue);
}
.dash-addr-delete {
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 5px;
  font-size: 13px; color: #ef4444; padding: 0; transition: color .2s;
}
.dash-addr-delete:hover { color: #b91c1c; }

/* ── Payment Provider Selector ──────────────────────── */
.pay-providers {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 4px;
}
.pay-provider {
  display: flex; align-items: center; justify-content: center;
  width: 88px; height: 52px; border-radius: 8px;
  border: 1.5px solid #e5e7eb; background: #fff;
  cursor: pointer; transition: all .2s; position: relative;
}
.pay-provider:hover { border-color: var(--az-blue); }
.pay-provider--active { border-color: var(--az-blue); box-shadow: 0 0 0 3px rgba(30,111,255,.15); }
.pay-provider--active::after {
  content: '✓'; position: absolute; top: -8px; right: -8px;
  width: 18px; height: 18px; background: var(--az-blue); color: #fff;
  border-radius: 50%; font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  line-height: 18px; text-align: center;
}

/* Mastercard circles */
.pay-provider__mc { position: relative; width: 44px; height: 28px; }
.pay-provider__mc-left {
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: #eb001b; opacity: .9;
}
.pay-provider__mc-right {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: #f79e1b; opacity: .9;
}
.pay-provider__text { font-size: 13px; font-weight: 700; }
.pay-provider__text--visa { color: #1a1f71; font-size: 18px; font-style: italic; letter-spacing: -.02em; }
.pay-provider__text--paypal { color: #003087; font-size: 12px; }
.pay-provider__text--paypal .fab { color: #009cde; }
/* Saved payment methods list */
.dash-methods-list { display: flex; flex-direction: column; gap: 12px; }
.dash-method-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; background: #f8f9fb;
  border-radius: 8px; border: 1px solid #e5e7eb; font-size: 14px;
}
.dash-payment-section {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}
.dash-payment-section__header {
  margin-bottom: 18px;
}
.dash-payment-section__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--az-text);
  margin-bottom: 6px;
}
.dash-payment-section__copy {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}
.dash-payment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.dash-payment-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}
.dash-payment-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.dash-payment-card__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 6px;
}
.dash-payment-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--az-text);
}
.dash-payment-card__meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dash-payment-card__meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: #4b5563;
}
.dash-payment-card__meta-row strong {
  color: var(--az-text);
  font-weight: 600;
}
.dash-payment-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--az-blue);
  text-decoration: none;
}
.dash-payment-card__link:hover {
  color: var(--az-blue-dark);
}
.dash-payment-empty {
  font-size: 14px;
  color: #6b7280;
}

/* ── Responsive Dashboard ─────────────────────────────── */
@media (max-width: 1024px) {
  .dash-overview-grid { grid-template-columns: 1fr; }
  .dash-addr-grid { grid-template-columns: 1fr 1fr; }
  .dash-payment-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .dash-layout { flex-direction: column; }
  .dash-sidebar { width: 100%; padding: 12px 0; border-right: none; border-bottom: 1px solid #e5e7eb; }
  .dash-nav { flex-direction: row; overflow-x: auto; padding: 0 16px; gap: 4px; }
  .dash-nav__item { padding: 10px 14px; border-left: none; border-bottom: 3px solid transparent; white-space: nowrap; }
  .dash-nav__item--active { border-bottom-color: var(--az-blue) !important; border-left-color: transparent !important; border-radius: 8px 8px 0 0; }
  .dash-main { padding: 20px 16px; }
  .dash-orders-header { flex-direction: column; }
  .dash-orders-card__header { flex-wrap: wrap; gap: 10px; }
  .dash-search { width: 100%; }
  .dash-tabs { overflow-x: auto; }
  .dash-tab { flex: 0 0 auto; }
  .dash-table { min-width: 680px; }
  .dash-form-card { padding: 24px 20px; }
  .dash-form-row { grid-template-columns: 1fr; }
  .pay-providers { gap: 8px; }
  .pay-provider { width: 72px; height: 44px; }
  .dash-addr-grid { grid-template-columns: 1fr; }
}

bash

cat >> /home/claude/azzurri_peptides/static/css/style.css << 'ENDCSS'

/* ============================================================
   MEGA MENU — NAVBAR CATEGORY DROPDOWN
   ============================================================ */

.az-nav__link--has-icon { display: flex; align-items: center; gap: 5px; }
.az-nav__caret { font-size: 10px; transition: transform .25s ease; }
.az-nav__has-mega { position: static; }

/* Mega menu panel */

.az-nav__has-mega:hover .az-mega,
.az-mega.is-open {
  opacity: 1; pointer-events: all; transform: translateY(0);
}
.az-nav__has-mega:hover .az-nav__caret { transform: rotate(180deg); }

.az-mega__inner { padding: 6px 0 12px; }

/* Header row */
.az-mega__head {
  padding: 14px 20px 10px;
  border-bottom: 1px solid #f0f1f3;
  margin-bottom: 6px;
}
.az-mega__head-title {
  font-size: 13px; font-weight: 700;
  color: var(--az-blue); letter-spacing: .04em;
  text-transform: uppercase;
}

/* Category list */
.az-mega__list { list-style: none; padding: 0; margin: 0; }
.az-mega__item { border-bottom: 1px solid #f8f9fb; }
.az-mega__item:last-child { border-bottom: none; }

/* Category button / link */
.az-mega__cat-btn {
  width: 100%; display: flex; align-items: center; gap: 12px;
  padding: 12px 20px; background: none; border: none;
  cursor: pointer; text-align: left;
  font-family: var(--az-font); transition: background .15s;
  text-decoration: none; color: var(--az-text);
}
.az-mega__cat-btn:hover,
.az-mega__cat-btn--link:hover { background: #f5f8ff; }

.az-mega__cat-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: #f0f4ff; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #6b7280;
}
.az-mega__cat-btn:hover .az-mega__cat-icon,
.az-mega__cat-btn--link:hover .az-mega__cat-icon { background: #dbeafe; color: var(--az-blue); }

.az-mega__cat-name { flex: 1; font-size: 14px; font-weight: 500; color: var(--az-text); }
.az-mega__cat-arrow { font-size: 11px; color: #9ca3af; transition: transform .2s; }
.az-mega__cat-arrow--right { margin-left: auto; }

/* Expanded item with subcategories */
.az-mega__item--expanded .az-mega__cat-btn { padding-bottom: 8px; }
.az-mega__item--expanded .az-mega__cat-arrow { transform: rotate(0deg); }
.az-mega__item--expanded.is-open .az-mega__cat-arrow { transform: rotate(180deg); }

/* Subcategory list */
.az-mega__sub {
  list-style: none; padding: 0 20px 10px 68px; margin: 0;
}
.az-mega__item:not(.az-mega__item--expanded) .az-mega__sub { display: none; }
.az-mega__sub-item {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 0;
}
.az-mega__sub-item a {
  font-size: 13px; color: #4b5563; transition: color .15s;
}
.az-mega__sub-item a:hover { color: var(--az-blue); }
.az-mega__sub-item--active a { color: var(--az-text); font-weight: 500; }

/* Dot indicators */
.az-mega__sub-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #d1d5db; flex-shrink: 0;
}
.az-mega__sub-dot--active { background: #d1d5db; }
.az-mega__sub-dot--blue   { background: var(--az-blue); }

/* ============================================================
   ABOUT PAGE — EXACT FIGMA MATCH
   ============================================================ */

/* ── Hero ──────────────────────────────────────────────── */
/* .about-hero {
  position: relative; min-height: 340px;
  background: linear-gradient(135deg, #061222 0%, #0d1f3c 50%, #0a1830 100%);
  display: flex; align-items: center; overflow: hidden;
} */
.about-hero__overlay {
  position: absolute; inset: 0;
}
.about-hero__content {
  position: relative; z-index: 2;
  max-width: 1160px; margin: 0 auto;
  padding: 80px 24px; max-width: 560px;
  padding-left: max(24px, calc(50vw - 560px));
}
.about-hero__title {
  font-size: clamp(30px, 5vw, 52px); font-weight: 800;
  color: #fff; line-height: 1.15; margin-bottom: 18px;
}
.about-hero__accent { color: var(--az-blue); }
.about-hero__desc {
  font-size: 14px; color: rgba(255,255,255,.72);
  line-height: 1.75; max-width: 400px;
}

/* Lab tube art */
.about-hero__bg-art {
  position: absolute; right: 0; top: 0; bottom: 0; width: 50%;
  overflow: hidden; opacity: .3;
}
.about-hero__tubes { position: relative; height: 100%; }
.about-hero__tube {
  position: absolute; border-radius: 40px;
  background: linear-gradient(180deg, rgba(30,111,255,.6) 0%, rgba(30,111,255,.1) 100%);
  border: 1.5px solid rgba(30,111,255,.4);
}
.about-hero__tube--1 { width: 60px; height: 220px; right: 22%; top: 10%; transform: rotate(12deg); }
.about-hero__tube--2 { width: 45px; height: 180px; right: 36%; top: 20%; transform: rotate(-8deg); }
.about-hero__tube--3 { width: 30px; height: 140px; right: 12%; top: 30%; transform: rotate(20deg); }

/* ── About Company Section ─────────────────────────────── */
.about-company { padding: 72px 24px; background: #fff; }
.about-company__inner { max-width: 860px; margin: 0 auto; text-align: center; }
.about-company__label {
  font-size: 12px; font-weight: 700; letter-spacing: .1em;
  color: var(--az-blue); text-transform: uppercase; margin-bottom: 16px;
}
.about-company__title {
  font-size: clamp(22px, 3.5vw, 36px); font-weight: 700;
  color: var(--az-text); line-height: 1.3; margin-bottom: 28px;
}
.about-company__title--accent { color: var(--az-blue); }
.about-company__body p {
  font-size: 15px; color: #4b5563; line-height: 1.8; max-width: 740px; margin: 0 auto 16px;
}

/* ── Our Mission ───────────────────────────────────────── */
.about-mission { padding: 72px 24px; background: #eef4fb; }
.about-mission__inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
/* Molecule image box */
.about-mission__img {
  width: 100%;
  max-width: 634px;
  height: auto;
  object-fit: contain;
}
.about-mission__img-box {
  width: 100%; aspect-ratio: 4/3; 
  border-radius: 20px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.about-why__img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
/* Molecule mock */
.about-mission__molecule { position: relative; width: 180px; height: 180px; }
.about-mission__mol-core {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: radial-gradient(circle, #3a9fff 0%, #1e5fbf 100%);
  box-shadow: 0 0 32px rgba(30,111,255,.6);
}
.about-mission__mol-atom {
  position: absolute; width: 18px; height: 18px; border-radius: 50%;
  background: radial-gradient(circle, #5ab4ff 0%, #1e6fff 100%);
  box-shadow: 0 0 12px rgba(30,111,255,.5);
}
.about-mission__mol-atom--1  { top: 10%; left: 50%; }
.about-mission__mol-atom--2  { top: 25%; left: 78%; }
.about-mission__mol-atom--3  { top: 55%; left: 85%; }
.about-mission__mol-atom--4  { top: 78%; left: 65%; }
.about-mission__mol-atom--5  { top: 78%; left: 30%; }
.about-mission__mol-atom--6  { top: 55%; left: 10%; }
.about-mission__mol-atom--7  { top: 25%; left: 18%; }
.about-mission__mol-atom--8  { top: 5%;  left: 35%; }
.about-mission__mol-atom--9  { top: 40%; left: 60%; }

/* Mission text */
.about-mission__title { font-size: 32px; font-weight: 700; margin-bottom: 18px; color: var(--az-text); }
.about-mission__body  { font-size: 14px; color: #4b5563; line-height: 1.8; margin-bottom: 14px; }
.about-mission__list  { list-style: none; padding: 0; margin-top: 20px; display: flex; flex-direction: column; gap: 14px; }
.about-mission__list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: #374151; line-height: 1.5;
}
.about-mission__check {
  width: 22px; height: 22px; border-radius: 50%;
  background: #dbeafe; color: var(--az-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; flex-shrink: 0; margin-top: 1px;
}

/* ── Why Choose Us ─────────────────────────────────────── */
.about-why { padding: 72px 24px; background: #fff; }
.about-why__inner { max-width: 1100px; margin: 0 auto; }
.about-why__title {
  font-size: clamp(24px, 3vw, 36px); font-weight: 700;
  text-align: center; margin-bottom: 52px; color: var(--az-text);
}
.about-why__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.about-why__card { padding: 8px 4px; }
.about-why__icon {
  width: 64px; height: 64px; border-radius: 14px;
  background: #0061A71A; display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px;
}
.about-why__card-title { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--az-text); }
.about-why__card-desc  { font-size: 13px; color: #6b7280; line-height: 1.7; }

/* Responsive About */
@media (max-width: 768px) {
  .about-mission__inner { grid-template-columns: 1fr; }
  .about-why__grid { grid-template-columns: 1fr; gap: 28px; }
  .about-hero__bg-art { display: none; }
}
/* Toggle button */
.az-mega-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  /* background: red; */
  border: none;
  cursor: pointer;
  margin-right: 10px;
  position: relative;
  z-index: 2001;
}
.az-mega-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}


.az-mega-toggle span {
  width: 22px;
  height: 2px;
  background: #fff;
  display: block;
}

/* Mega menu hidden by default */
.az-mega {
  position: absolute;
  top: calc(100% + 1px);
  left: 0; right: auto;
  width: 300px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,.13);
  z-index: 2000;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .22s ease, transform .22s ease;
  overflow: hidden;
  display: none;

}

/* Show state */
.az-mega.active {
  display: block;
}

/* ============================================================
   CONTACT PAGE — EXACT FIGMA MATCH
   ============================================================ */

/* ── Hero ──────────────────────────────────────────────── */
.contact-hero {
  position: relative;
  min-height: 545px;
  display: flex;
  align-items: center;
  overflow: hidden;

  /* Background image + gradient overlay */
  background: 
    /* linear-gradient(135deg, rgba(13,89,242,0.6) 0%, rgba(0,163,255,0.6) 100%), */
    url('/static/images/contact.png') center/cover no-repeat; }
.contact-hero__overlay {
  position: absolute; inset: 0;
  /* background: linear-gradient(90deg, rgba(6,18,34,.85) 0%, rgba(6,18,34,.5) 60%, rgba(6,18,34,.1) 100%); */
}
.contact-hero__content {
  position: relative; z-index: 2;
  max-width: 1160px; margin: 0 auto;
  padding: 72px 24px;
  padding-left: max(24px, calc(50vw - 560px));
}
.contact-hero__title {
  font-size: clamp(28px, 5vw, 52px); font-weight: 700;
  color: #fff; line-height: 1.2; margin-bottom: 18px;
}
.contact-hero__accent { color: var(--az-blue); }
.contact-hero__desc {
  font-size: 14px; color: rgba(255,255,255,.72);
  line-height: 1.75; max-width: 420px;
}
.contact-support-card__icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  margin-right: 6px;
}

/* Lab flask art */
.contact-hero__art {
  position: absolute; right: 0; top: 0; bottom: 0; width: 50%;
  overflow: hidden; opacity: .25;
}
.contact-hero__flask {
  position: absolute; border-radius: 50% 50% 8px 8px;
  background: linear-gradient(180deg, rgba(30,111,255,.5) 0%, rgba(30,111,255,.1) 100%);
  border: 1.5px solid rgba(30,111,255,.4);
}
.contact-hero__flask--1 { width: 90px; height: 160px; right: 28%; top: 8%; }
.contact-hero__flask--2 { width: 70px; height: 130px; right: 15%; top: 22%; }

/* ── Body ──────────────────────────────────────────────── */
.contact-body { padding: 56px 24px 72px; background: #fff; }
.contact-body__inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: flex-start;
}

/* Form col */
.contact-form__title { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.contact-form__sub   { font-size: 13px; color: #6b7280; margin-bottom: 28px; line-height: 1.6; }
.contact-form { display: flex; flex-direction: column; gap: 0; }
.contact-form__row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form__group { margin-bottom: 18px; }
.contact-form__label { display: block; font-size: 13px; font-weight: 600; color: var(--az-text); margin-bottom: 6px; }
.contact-form__input {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid #e5e7eb; border-radius: 7px;
  font-size: 14px; font-family: var(--az-font);
  background: #f9fafb; color: var(--az-text); outline: none;
  transition: border-color .2s;
}
.contact-form__input:focus { border-color: var(--az-blue); background: #fff; box-shadow: 0 0 0 3px rgba(30,111,255,.1); }
.contact-form__textarea { resize: vertical; min-height: 140px; }
.contact-form__submit {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 32px; background: var(--az-navy); color: #fff;
  border-radius: 7px; border: none; font-size: 15px; font-weight: 600;
  cursor: pointer; font-family: var(--az-font); transition: background .2s;
  width: fit-content; margin-top: 4px;
}
.contact-form__submit:hover { background: #1a2f55; }

.contact-success {
  background: #dcfce7; color: #16a34a; border: 1px solid #bbf7d0;
  border-radius: 8px; padding: 12px 16px; font-size: 14px;
  margin-bottom: 20px; display: flex; align-items: center; gap: 8px;
}

/* Support card */
.contact-support-card {
  background: #f8faff; border: 1px solid #dbeafe;
  border-radius: 12px; padding: 24px;
}
.contact-support-card__header {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 700; color: var(--az-text);
  margin-bottom: 24px; padding-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
}
.contact-support-item {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 20px;
}
.contact-support-item:last-child { margin-bottom: 0; }
.contact-support-item__icon {
  width: 38px; height: 38px; background: #FFFFFF; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-support-item__label {
  font-size: 10px; font-weight: 700; letter-spacing: .1em;
  color: #9ca3af; text-transform: uppercase; margin-bottom: 5px;
}
.contact-support-item__val {
  font-size: 14px; color: var(--az-blue); font-weight: 500;
  text-decoration: none; transition: color .2s;
}
.contact-support-item__val:hover { color: var(--az-blue-dark); text-decoration: underline; }

/* Responsive Contact */
@media (max-width: 768px) {
  .contact-body__inner { grid-template-columns: 1fr; }
  .contact-form__row   { grid-template-columns: 1fr; }
  .contact-hero__art   { display: none; }
}


/* ============================================================
   SHOP PAGES — EXACT FIGMA MATCH
   ============================================================ */

/* ── Breadcrumb (shared) ───────────────────────────────── */
.shop-breadcrumb {
  background: #fff;
  border-bottom: 1px solid #f0f1f3;
  padding: 12px 0;
}
.shop-breadcrumb__inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: #6b7280; flex-wrap: wrap;
}
.shop-breadcrumb__inner a { color: #6b7280; transition: color .2s; }
.shop-breadcrumb__inner a:hover { color: var(--az-blue); }
.shop-breadcrumb__inner i { font-size: 9px; color: #9ca3af; }
.shop-breadcrumb__inner span { color: var(--az-text); font-weight: 500; }

/* ============================================================
   MODE 1: OUR SHOP OVERVIEW
   ============================================================ */
.shop-overview-title {
  max-width: 1160px; margin: 0 auto;
  padding: 28px 24px 8px;
  font-size: 26px; font-weight: 700; color: var(--az-text);
  text-align: center;
}

/* Dark category banner */
.shop-cat-banner {
  background: linear-gradient(135deg, #0a1628 0%, #111c33 60%, #0a1628 100%);
  padding: 36px 24px;
}
.shop-cat-banner__inner {
  max-width: 1160px; margin: 0 auto;
}
.shop-cat-banner__title {
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 700; color: #fff; margin-bottom: 12px;
}
.shop-cat-banner__title--lg { font-size: clamp(28px, 4vw, 48px); }
.shop-cat-banner__desc {
  font-size: 14px; color: rgba(255,255,255,.7);
  line-height: 1.7; max-width: 380px;
}

/* Overview section (grid below each banner) */
.shop-overview-section {
  max-width: 1160px; margin: 0 auto;
  padding: 32px 24px;
}
.shop-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.shop-overview-cta { display: flex; justify-content: center; }

/* ============================================================
   MODE 2: FILTERED SHOP (sidebar + 3-col grid)
   ============================================================ */
.shop-cat-banner--hero { min-height: 160px; display: flex; align-items: center; }

.shop-filtered-layout {
  max-width: 1160px; margin: 0 auto;
  padding: 32px 24px 64px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: flex-start;
}

/* ── Sidebar ───────────────────────────────────────────── */
.shop-sidebar {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  position: sticky; top: 90px;
}
.shop-sidebar__section { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #f0f1f3; }
.shop-sidebar__section:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.shop-sidebar__head { display: flex; justify-content: space-between; align-items: center; }
.shop-sidebar__label { font-size: 15px; font-weight: 700; color: var(--az-text); }
.shop-sidebar__reset { font-size: 13px; color: #6b7280; text-decoration: none; transition: color .2s; }
.shop-sidebar__reset:hover { color: var(--az-blue); }
.shop-sidebar__title { font-size: 14px; font-weight: 600; color: var(--az-text); margin-bottom: 14px; }
.shop-sidebar__collapsible { display: flex; justify-content: space-between; align-items: center; }
.shop-sidebar__collapse-btn {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1.5px solid #d1d5db; background: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: #6b7280; transition: all .2s;
}
.shop-sidebar__collapse-btn:hover { background: var(--az-blue); color: #fff; border-color: var(--az-blue); }

/* Price Range Slider */
.shop-price-range { }
.shop-price-range__track {
  position: relative; height: 6px;
  background: #e5e7eb; border-radius: 3px; margin: 16px 0 10px;
}
.shop-price-range__fill {
  position: absolute; height: 100%;
  background: var(--az-blue); border-radius: 3px;
  left: 0; width: 50%; pointer-events: none;
}
.shop-range-input {
  position: absolute; width: 100%; height: 6px;
  background: transparent; -webkit-appearance: none;
  pointer-events: none; top: 0; left: 0;
}
.shop-range-input::-webkit-slider-thumb {
  -webkit-appearance: none; pointer-events: all;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--az-blue); cursor: pointer;
  border: 2px solid #fff; box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.shop-range-input::-moz-range-thumb {
  pointer-events: all; width: 16px; height: 16px; border-radius: 50%;
  background: var(--az-blue); cursor: pointer;
  border: 2px solid #fff;
}
.shop-price-range__labels {
  display: flex; justify-content: space-between;
  font-size: 13px; font-weight: 600; color: var(--az-text); margin-bottom: 6px;
}
.shop-price-range__note { font-size: 11px; color: #9ca3af; }

/* Strength checkboxes */
.shop-strength-list {
  display: flex; flex-direction: column; gap: 10px; margin-top: 12px;
}
.shop-strength-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: #374151; cursor: pointer;
}
.shop-strength-item input[type="checkbox"] {
  width: 16px; height: 16px; accent-color: var(--az-blue); cursor: pointer;
}

/* ── Toolbar ───────────────────────────────────────────── */
.shop-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.shop-toolbar__count { font-size: 15px; color: var(--az-text); }
.shop-toolbar__count strong { font-weight: 700; color: var(--az-blue); }
.shop-toolbar__sort { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #6b7280; }
.shop-sort-select {
  padding: 7px 28px 7px 10px;
  border: 1.5px solid #e5e7eb; border-radius: 7px;
  font-size: 13px; font-family: var(--az-font);
  color: var(--az-text); background: #fff; cursor: pointer; outline: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 8px center;
}

/* ── 3-Column Product Grid ─────────────────────────────── */
.shop-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.shop-grid-empty {
  grid-column: 1 / -1; text-align: center;
  padding: 80px 0; color: #9ca3af;
}
.shop-grid-empty i { font-size: 44px; display: block; margin-bottom: 14px; }
.shop-grid-empty a { color: var(--az-blue); font-weight: 600; margin-top: 8px; display: inline-block; }

/* ── Pagination ────────────────────────────────────────── */
.shop-pagination {
  display: flex; justify-content: center; align-items: center;
  gap: 6px; margin-top: 40px; padding-top: 32px;
  border-top: 1px solid #f0f1f3;
}
.shop-page-btn {
  min-width: 36px; height: 36px; border-radius: 8px;
  border: 1.5px solid #e5e7eb; background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 500; color: var(--az-text);
  text-decoration: none; cursor: pointer; transition: all .2s;
}
.shop-page-btn:hover { border-color: var(--az-blue); color: var(--az-blue); }
.shop-page-btn--active {
  background: var(--az-navy) !important;
  border-color: var(--az-navy) !important;
  color: #fff !important;
}
.shop-page-btn--nav { font-size: 12px; }
.shop-page-ellipsis { font-size: 14px; color: #9ca3af; padding: 0 4px; }

/* ── Responsive Shop ───────────────────────────────────── */
@media (max-width: 1024px) {
  .shop-overview-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-filtered-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
  .shop-grid-3col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .shop-overview-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-grid-3col { grid-template-columns: 1fr; }
  .shop-cat-banner__desc { max-width: 100%; }
}







/* ============================================================
   CHECKOUT PAGE — ORDER SUBMISSION FLOW
   ============================================================ */

/* Checkout messages */
.checkout-messages { max-width: 1100px; margin: 0 auto; padding: 8px 24px 0; }
.checkout-msg { padding: 12px 18px; border-radius: 8px; font-size: 14px; margin-bottom: 8px; }
.checkout-msg--error { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.checkout-msg--success { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }

/* Checkout form layout */
.checkout-form .cart-layout { max-width: 1100px; margin: 0 auto; }

/* Sections */
.checkout-section {
  background: #fff; border: 1px solid #e5e7eb;
  border-radius: 12px; padding: 28px;
  margin-bottom: 20px;
}
.checkout-section__title {
  font-size: 17px; font-weight: 700; color: var(--az-text);
  margin-bottom: 22px; display: flex; align-items: center; gap: 10px;
}
.checkout-section__title i { color: var(--az-blue); font-size: 16px; }

/* ── Checkout saved-address panel ──────────────────────────── */
.co-addr { margin-bottom: 24px; }

.co-addr__card {
  border: 1.5px solid #0D59F2;
  border-radius: 12px;
  padding: 18px 20px;
  background: linear-gradient(135deg,#f0f6ff 0%,#e8f1ff 100%);
  box-shadow: 0 0 0 4px rgba(13,89,242,.07);
  margin-bottom: 12px;
}
.co-addr__card-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
}
.co-addr__badge {
  display: inline-block; font-size: 10px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
  color: #0D59F2; background: #dbeafe;
  border-radius: 20px; padding: 3px 10px;
}
.co-addr__check {
  font-size: 12px; font-weight: 600; color: #15803d;
  display: flex; align-items: center; gap: 5px;
}
.co-addr__check i { font-size: 13px; }
.co-addr__name { font-size: 14px; font-weight: 700; color: #1a1a2e; margin-bottom: 4px; }
.co-addr__line { font-size: 13px; color: #4b5563; line-height: 1.6; }

.co-addr__change-btn {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: #0D59F2;
  background: none; border: none; cursor: pointer; padding: 0;
  margin-bottom: 10px; transition: color .2s;
}
.co-addr__change-btn:hover { color: #0050d0; }
.co-addr__change-btn #coChangeCaret { transition: transform .2s; }

.co-addr__others {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px; margin-bottom: 12px;
}
.co-addr__other {
  border: 1.5px solid #e5e7eb; border-radius: 10px;
  padding: 12px 14px; cursor: pointer;
  transition: border-color .2s, background .2s;
  background: #fff;
}
.co-addr__other:hover { border-color: #93c5fd; background: #f8fbff; }
.co-addr__other--active { border-color: #0D59F2; background: #eff6ff; }
.co-addr__other-badge {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .8px;
  text-transform: uppercase; color: #6b7280; background: #f3f4f6;
  border-radius: 20px; padding: 2px 8px; margin-bottom: 6px;
}
.co-addr__other-name { font-size: 13px; font-weight: 600; color: #1a1a2e; margin-bottom: 2px; }
.co-addr__other-line { font-size: 12px; color: #6b7280; }

.co-addr__new-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 13px; border-radius: 10px;
  border: 1.5px dashed #9ca3af; background: none; cursor: pointer;
  font-size: 14px; font-weight: 600; color: #6b7280;
  transition: border-color .2s, color .2s, background .2s;
}
.co-addr__new-btn:hover {
  border-color: #0D59F2; color: #0D59F2; background: #f0f6ff;
}
.co-addr__new-btn i { font-size: 15px; }

.co-addr__back-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: #0D59F2;
  background: none; border: none; cursor: pointer; padding: 0;
  margin-bottom: 20px; transition: color .2s;
}
.co-addr__back-btn:hover { color: #0050d0; }

/* ── Account creation toggle ────────────────────────────── */
.co-acct-section {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f3ff 100%);
  border: 1.5px solid #bfdbfe;
  position: relative;
  overflow: hidden;
}
.co-acct-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0D59F2 0%, #00A3FF 100%);
}
.co-acct-row {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  user-select: none;
}
.co-acct-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #0D59F2, #00A3FF);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #fff;
  box-shadow: 0 4px 12px rgba(13,89,242,.25);
}
.co-acct-body { flex: 1; min-width: 0; }
.co-acct-body__title {
  display: block;
  font-size: 14px; font-weight: 700; color: #1a1a2e;
  margin-bottom: 3px;
}
.co-acct-body__desc {
  display: block;
  font-size: 13px; color: #6b7280; line-height: 1.5;
}
.co-acct-toggle-wrap {
  flex-shrink: 0;
  display: flex; align-items: center; gap: 8px;
}
.co-acct-toggle-state {
  font-size: 11px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase;
  color: #0D59F2; min-width: 18px; text-align: right;
}
.co-acct-chk { display: none; }
.co-acct-pill {
  display: block;
  width: 50px; height: 28px;
  border-radius: 999px;
  background: #d1d5db;
  position: relative;
  transition: background .25s;
  cursor: pointer;
  box-shadow: inset 0 1px 3px rgba(0,0,0,.1);
}
.co-acct-pill::after {
  content: '';
  position: absolute;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  top: 3px; left: 3px;
  transition: left .25s, box-shadow .25s;
  box-shadow: 0 2px 6px rgba(0,0,0,.18);
}
.co-acct-chk:checked + .co-acct-pill {
  background: linear-gradient(90deg, #0D59F2 0%, #00A3FF 100%);
}
.co-acct-chk:checked + .co-acct-pill::after {
  left: 25px;
  box-shadow: 0 2px 6px rgba(13,89,242,.35);
}
.co-acct-note {
  display: flex; align-items: flex-start; gap: 10px;
  margin-top: 18px; padding: 13px 16px;
  background: rgba(13,89,242,.07);
  border: 1px solid rgba(13,89,242,.15);
  border-radius: 8px;
  font-size: 13px; color: #1e40af; line-height: 1.5;
}
.co-acct-note i { margin-top: 2px; flex-shrink: 0; color: #0D59F2; }
.co-acct-note--muted {
  background: #f9fafb;
  border-color: #e5e7eb;
  color: #4b5563;
}
.co-acct-note--muted i { color: #6b7280; }

/* Fields */
.checkout-field { margin-bottom: 16px; }
.checkout-field label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--az-text); margin-bottom: 6px;
}
.checkout-req { color: #ef4444; }
.checkout-error { font-size: 12px; color: #ef4444; display: block; margin-top: 4px; }

.checkout-field-row { display: flex; gap: 16px; margin-bottom: 16px; }
.checkout-field--half { flex: 1; margin-bottom: 0; }
.checkout-field--third { flex: 1; margin-bottom: 0; }

/* Payment notice */
.checkout-payment-note {
  font-size: 14px; color: #374151; line-height: 1.65;
  margin-bottom: 14px;
}
.checkout-payment-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}
.checkout-payment-option {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #dbeafe;
  border-radius: 10px;
  padding: 10px 12px;
  background: #f8fafc;
  cursor: pointer;
}
.checkout-payment-option input[type="radio"] {
  accent-color: var(--az-blue);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.checkout-payment-option__label {
  font-size: 13px;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.4;
}
.checkout-payment-note-box {
  display: flex; align-items: center; gap: 10px;
  background: #f8fafc; border: 1px solid #dbeafe;
  border-radius: 10px; padding: 14px 16px;
  color: #1f2937; font-size: 14px;
}
.checkout-payment-note-box i { color: var(--az-blue); }

/* Items preview in summary */
.checkout-items-preview { margin-bottom: 18px; }
.checkout-item-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid #f3f4f6;
}
.checkout-item-row:last-child { border-bottom: none; }
.checkout-item-row__img {
  width: 48px; height: 48px; border-radius: 8px;
  overflow: hidden; flex-shrink: 0; background: #f3f4f6;
}
.checkout-item-row__img img { width: 100%; height: 100%; object-fit: cover; }
.checkout-item-row__placeholder {
  width: 100%; height: 100%; display: flex;
  align-items: center; justify-content: center; color: #9ca3af;
}
.checkout-item-row__info { flex: 1; min-width: 0; }
.checkout-item-row__name {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--az-text); white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.checkout-item-row__strength {
  display: block; font-size: 11px; color: #9ca3af;
}
.checkout-item-row__qty {
  display: block; font-size: 11px; color: #6b7280;
}
.checkout-item-row__price {
  font-size: 14px; font-weight: 700; color: var(--az-text);
  flex-shrink: 0;
}

/* Promo applied */
.checkout-promo-applied {
  background: #f0fdf4; border: 1px solid #bbf7d0;
  border-radius: 8px; padding: 10px 14px;
  font-size: 13px; color: #16a34a;
  margin-bottom: 14px;
}

/* Secure note */
.checkout-secure-note {
  text-align: center; font-size: 12px; color: #9ca3af;
  margin-top: 12px;
}
.checkout-secure-note i { margin-right: 4px; }

/* Pay button disabled state */
.cart-summary__checkout-btn:disabled {
  opacity: .7; cursor: not-allowed;
}

@media (max-width: 580px) {
  .checkout-field-row { flex-direction: column; gap: 0; }
  .checkout-section { padding: 20px; }
  .checkout-payment-methods { grid-template-columns: 1fr; }
}

/* ============================================================
   PAYMENT INVOICE PAGE
   ============================================================ */
.pay-invoice-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 52px;
}
.pay-invoice-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 20px;
  margin-bottom: 20px;
  align-items: start;
}
.pay-invoice-panel {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
}
.pay-invoice-panel__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  color: var(--az-text);
  margin-bottom: 12px;
}
.pay-invoice-panel__title i {
  color: var(--az-blue);
}
.pay-invoice-panel__text {
  margin: 0;
  color: #374151;
  font-size: 14px;
  line-height: 1.7;
}
.pay-invoice-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pay-invoice-actions__form {
  margin: 0;
}
.pay-invoice-action-btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: var(--az-navy);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  padding: 10px 14px;
}
.pay-invoice-action-btn:hover {
  background: #162a4b;
}
.pay-invoice-action-btn--soft {
  background: #f3f4f6;
  color: #111827;
  border: 1px solid #e5e7eb;
}
.pay-invoice-action-btn--soft:hover {
  background: #e5e7eb;
}
.pay-invoice-status {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pay-invoice-status__label {
  font-size: 12px;
  font-weight: 700;
  color: #4b5563;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.pay-invoice-status__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
}
.pay-invoice-status__chip--ac {
  color: #166534;
  background: #dcfce7;
  border: 1px solid #86efac;
}
.pay-invoice-status__chip--de {
  color: #991b1b;
  background: #fee2e2;
  border: 1px solid #fecaca;
}
.pay-invoice-status__chip--pe {
  color: #1e40af;
  background: #dbeafe;
  border: 1px solid #93c5fd;
}
.pay-invoice-steps {
  margin-top: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  padding: 14px;
}
.pay-invoice-steps__title {
  margin: 0 0 10px;
  font-size: 14px;
  color: #111827;
}
.pay-invoice-steps__list {
  margin: 0;
  padding-left: 18px;
  color: #374151;
  font-size: 13px;
  line-height: 1.7;
}
.pay-invoice-warning {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 10px;
  padding: 10px 12px;
  color: #92400e;
  font-size: 12px;
  line-height: 1.6;
}
.pay-invoice-warning i {
  margin-top: 1px;
}
.pay-invoice-note {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #dbeafe;
  background: #f8fafc;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  color: #1f2937;
}
.pay-invoice-note i {
  color: var(--az-blue);
}
.pay-invoice-frame-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}
.pay-invoice-frame-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid #eef2f7;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}
.pay-invoice-frame-head__title {
  margin: 0;
  font-size: 14px;
  color: #111827;
}
.pay-invoice-frame-head__sub {
  margin: 4px 0 0;
  font-size: 12px;
  color: #6b7280;
}
.pay-invoice-open-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: var(--az-navy);
  border-radius: 999px;
  padding: 8px 12px;
}
.pay-invoice-open-btn:hover {
  background: #162a4b;
}
.pay-invoice-frame {
  width: 100%;
  min-height: 900px;
  border: 0;
  display: block;
  background: #fff;
}
.pay-invoice-email {
  max-width: 190px;
  overflow-wrap: anywhere;
  text-align: right;
}
.pay-invoice-empty {
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: #6b7280;
  font-size: 14px;
}
.pay-invoice-empty i {
  color: #f59e0b;
  font-size: 22px;
}
@media (max-width: 980px) {
  .pay-invoice-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .pay-invoice-wrap {
    padding: 0 14px 40px;
  }
  .pay-invoice-panel {
    padding: 18px;
  }
  .pay-invoice-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .pay-invoice-actions__form {
    width: 100%;
  }
  .pay-invoice-action-btn {
    width: 100%;
    justify-content: center;
  }
  .pay-invoice-frame-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .pay-invoice-frame {
    min-height: 780px;
  }
}

/* ============================================================
   CHECKOUT PAGE — EXACT FIGMA MATCH (legacy)
   ============================================================ */

/* ── Page Title ──────────────────────────────────────────── */
.co-title-row { text-align: center; padding: 28px 24px 0; }
.co-title     { font-size: 26px; font-weight: 700; color: var(--az-text); }

/* ── Two-column layout ───────────────────────────────────── */
.co-layout {
  max-width: 1100px; margin: 0 auto;
  padding: 24px 24px 56px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px; align-items: flex-start;
}

/* ── Form column sections ────────────────────────────────── */
.co-section {
  background: #fff; border: 1px solid #e5e7eb;
  border-radius: 12px; padding: 24px;
  margin-bottom: 20px;
}
.co-section__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.co-section__title {
  font-size: 15px; font-weight: 700; color: var(--az-text);
}
.co-autofill-btn {
  font-size: 13px; font-weight: 600; color: var(--az-blue);
  background: none; border: none; cursor: pointer;
  text-decoration: none; transition: color .2s;
}
.co-autofill-btn:hover { color: var(--az-blue-dark); text-decoration: underline; }

/* Form rows and groups */
.co-form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-bottom: 16px;
}
.co-form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 0; }
.co-form-group--full { grid-column: 1 / -1; margin-bottom: 16px; }
.co-label  { font-size: 13px; font-weight: 600; color: var(--az-text); }
.co-req    { color: #ef4444; }
.co-err    { font-size: 12px; color: #ef4444; }

/* Input style */
.checkout-input,
.co-section input[type="text"],
.co-section input[type="email"],
.co-section input[type="tel"],
.co-section input[type="number"],
.co-section input[type="password"],
.co-section textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid #e5e7eb; border-radius: 8px;
  font-size: 14px; font-family: var(--az-font);
  color: var(--az-text); background: #f9fafb; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.checkout-input:focus,
.co-section input:focus,
.co-section textarea:focus {
  border-color: var(--az-blue); background: #fff;
  box-shadow: 0 0 0 3px rgba(30,111,255,.1);
}
.checkout-input::placeholder,
.co-section input::placeholder { color: #9ca3af; }

/* ── Payment Method Buttons ──────────────────────────────── */
.co-pay-methods {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px;
}
.co-pay-btn {
  display: flex; align-items: center; justify-content: center;
  width: 80px; height: 48px;
  border: 1.5px solid #e5e7eb; border-radius: 8px;
  background: #fff; cursor: pointer;
  transition: all .2s; position: relative;
}
.co-pay-btn:hover   { border-color: var(--az-blue); }
.co-pay-btn--active {
  border-color: var(--az-blue);
  box-shadow: 0 0 0 3px rgba(30,111,255,.15);
}
.co-pay-btn--active::after {
  content: '✓';
  position: absolute; top: -8px; right: -8px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--az-blue); color: #fff;
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  line-height: 18px; text-align: center;
}
.co-pay-btn--amex { width: 90px; }

/* Mastercard circles */
.co-mc          { position: relative; width: 40px; height: 26px; }
.co-mc__l       { position: absolute; left:0;  top:50%; transform:translateY(-50%); width:24px; height:24px; border-radius:50%; background:#eb001b; opacity:.9; }
.co-mc__r       { position: absolute; right:0; top:50%; transform:translateY(-50%); width:24px; height:24px; border-radius:50%; background:#f79e1b; opacity:.9; }
.co-pay-text         { font-weight: 700; font-size: 13px; }
.co-pay-text--visa   { color:#1a1f71; font-size:17px; font-style:italic; }
.co-pay-text--brand { color:#0f172a; font-size:14px; letter-spacing:-.02em; }

/* Payment notice */
.co-payment-notice {
  display: flex; align-items: center; gap: 8px;
  background: #f0f4ff; border: 1px solid #bfdbfe;
  border-radius: 8px; padding: 12px 16px;
  font-size: 13px; color: #374151; margin-top: 12px;
}
.co-payment-notice i { color: var(--az-blue); }

/* ── Order Summary Column ────────────────────────────────── */
.co-summary-col { position: sticky; top: 90px; }
.co-summary {
  background: #fff; border: 1px solid #e5e7eb;
  border-radius: 12px; padding: 24px;
}
.co-summary__title { font-size: 16px; font-weight: 700; margin-bottom: 16px; }

/* Promo code */
.co-promo { display: flex; gap: 0; margin-bottom: 18px; }
.co-promo__input {
  flex: 1; padding: 10px 12px;
  border: 1.5px solid #d1d5db; border-right: none;
  border-radius: 7px 0 0 7px;
  font-size: 13px; font-family: var(--az-font);
  outline: none; color: var(--az-text); background: #fff;
  transition: border-color .2s;
}
.co-promo__input::placeholder { color: #9ca3af; }
.co-promo__input:focus { border-color: var(--az-blue); }
.co-promo__btn {
  padding: 10px 16px; background: #fff; color: var(--az-text);
  border: 1.5px solid #d1d5db; border-radius: 0 7px 7px 0;
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: all .2s;
}
.co-promo__btn:hover { background: var(--az-blue); color: #fff; border-color: var(--az-blue); }

/* Summary lines */
.co-summary__lines { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.co-summary__line  { display: flex; justify-content: space-between; font-size: 14px; color: #374151; }
.co-summary__line--green { color: #16a34a; font-weight: 500; }
.co-summary__divider { border-top: 1px solid #e5e7eb; margin: 4px 0 14px; }
.co-summary__total {
  display: flex; justify-content: space-between;
  font-size: 16px; font-weight: 800; color: var(--az-text);
  margin-bottom: 14px;
}

/* Terms */
.co-terms { font-size: 12px; color: #6b7280; margin-bottom: 14px; line-height: 1.5; }
.co-terms a { color: var(--az-blue); font-weight: 500; }

/* Place order button */
.co-place-btn {
  width: 100%; padding: 14px;
  background: var(--az-navy); color: #fff;
  border-radius: 8px; border: none;
  font-size: 15px; font-weight: 600;
  cursor: pointer; font-family: var(--az-font);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background .2s;
}
.co-place-btn:hover { background: #1a2f55; }

/* ============================================================
   ORDER CONFIRMATION POPUP — EXACT FIGMA
   ============================================================ */
.co-confirm-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
  padding: 24px;
}
.co-confirm-overlay.is-visible {
  opacity: 1; pointer-events: all;
}

.co-confirm-modal {
  background: #fff; border-radius: 16px;
  padding: 48px 40px;
  max-width: 440px; width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,.25);
  animation: coModalIn .35s ease forwards;
}
@keyframes coModalIn {
  from { transform: scale(.92) translateY(20px); opacity: 0; }
  to   { transform: scale(1)   translateY(0);    opacity: 1; }
}

.co-confirm-modal__close {
  position: absolute; top: 14px; right: 18px;
  font-size: 22px; color: #9ca3af; background: none; border: none;
  cursor: pointer; line-height: 1; transition: color .2s;
}
.co-confirm-modal__close:hover { color: var(--az-text); }

/* Check circle icon */
.co-confirm-modal__icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: #e8f5e9; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
}
.co-confirm-modal__icon i {
  font-size: 28px; color: #22c55e;
}

.co-confirm-modal__title {
  font-size: 18px; font-weight: 700; color: var(--az-text);
  margin-bottom: 16px; line-height: 1.3;
}
.co-confirm-modal__body {
  font-size: 13px; color: #6b7280; line-height: 1.75;
}
.co-confirm-modal__body a { color: var(--az-blue); font-weight: 500; }
.co-confirm-modal__body strong { color: var(--az-text); }

/* ── Responsive Checkout ─────────────────────────────────── */
@media (max-width: 900px) {
  .co-layout { grid-template-columns: 1fr; }
  .co-summary-col { position: static; }
}
@media (max-width: 580px) {
  .co-form-row    { grid-template-columns: 1fr; }
  .co-confirm-modal { padding: 32px 24px; }
  .co-pay-methods { gap: 7px; }
  .co-pay-btn     { width: 66px; height: 42px; }
}


/* ============================================================
   ORDER CONFIRMED PAGE
   ============================================================ */
.oconf-wrap {
  max-width: 680px; margin: 48px auto 56px;
  padding: 0 24px;
}
.oconf-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 52px 48px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,.08);
}
.oconf-card__icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: #dcfce7; margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  animation: oconfPop .5s cubic-bezier(.34,1.56,.64,1) forwards;
}
@keyframes oconfPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.oconf-card__icon i { font-size: 32px; color: #16a34a; }

.oconf-card__title {
  font-size: 22px; font-weight: 700; color: var(--az-text);
  margin-bottom: 18px; line-height: 1.3;
}
.oconf-card__body {
  font-size: 14px; color: #6b7280; line-height: 1.8;
  max-width: 520px; margin: 0 auto;
}
.oconf-card__link { color: var(--az-blue); font-weight: 500; }

/* Summary strip */
.oconf-summary {
  display: flex; justify-content: center; gap: 0;
  margin: 32px 0; border: 1px solid #e5e7eb; border-radius: 12px;
  overflow: hidden;
}
.oconf-summary__item {
  flex: 1; padding: 16px 12px; text-align: center;
  border-right: 1px solid #e5e7eb;
}
.oconf-summary__item:last-child { border-right: none; }
.oconf-summary__label {
  display: block; font-size: 11px; font-weight: 600;
  color: #9ca3af; text-transform: uppercase; letter-spacing: .07em;
  margin-bottom: 6px;
}
.oconf-summary__value {
  display: block; font-size: 14px; font-weight: 700; color: var(--az-text);
}
.oconf-summary__value--blue { color: var(--az-blue); }

/* CTA buttons */
.oconf-card__actions {
  display: flex; gap: 12px; justify-content: center;
  margin-top: 8px; flex-wrap: wrap;
}
.oconf-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 28px; border-radius: 8px;
  font-size: 15px; font-weight: 600;
  text-decoration: none; transition: all .2s;
}
.oconf-btn--primary { background: var(--az-navy); color: #fff; }
.oconf-btn--primary:hover { background: #1a2f55; }
.oconf-btn--outline { border: 2px solid var(--az-navy); color: var(--az-navy); }
.oconf-btn--outline:hover { background: var(--az-navy); color: #fff; }

@media (max-width: 600px) {
  .oconf-card { padding: 36px 24px; }
  .oconf-summary { flex-wrap: wrap; }
  .oconf-summary__item { flex: 1 1 50%; border-bottom: 1px solid #e5e7eb; }
  .oconf-card__actions { flex-direction: column; }
  .oconf-btn { width: 100%; }
}


/* ============================================================
   USER DROPDOWN MENU (Navbar)
   ============================================================ */
.az-user-menu { position: relative; display: inline-block; }

.az-user-menu__dropdown {
  position: absolute; top: calc(100% + 10px); right: 0;
  width: 220px; background: #fff;
  border: 1px solid #e5e7eb; border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
  z-index: 3000; padding: 6px 0;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease;
  opacity: 0;
  pointer-events: none;
}
.az-user-menu__dropdown.is-open {
  opacity: 1; pointer-events: all; transform: translateY(0);
}
.az-user-menu__info {
  padding: 14px 16px 10px;
}
.az-user-menu__name {
  display: block; font-size: 14px; font-weight: 700;
  color: var(--az-text); margin-bottom: 3px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.az-user-menu__email {
  display: block; font-size: 12px; color: #9ca3af;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.az-user-menu__divider {
  height: 1px; background: #f0f1f3; margin: 4px 0;
}
.az-user-menu__item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px; font-size: 14px; font-weight: 500;
  color: #374151; text-decoration: none;
  transition: background .15s, color .15s;
}
.az-user-menu__item i {
  width: 16px; text-align: center;
  font-size: 13px; color: #9ca3af;
}
.az-user-menu__item:hover { background: #f5f8ff; color: var(--az-blue); }
.az-user-menu__item:hover i { color: var(--az-blue); }
.az-user-menu__item--logout { color: #ef4444 !important; }
.az-user-menu__item--logout i { color: #ef4444 !important; }
.az-user-menu__item--logout:hover { background: #fef2f2 !important; color: #dc2626 !important; }



/* ============================================================
   TERMS & CONDITIONS / PRIVACY POLICY PAGE
   ============================================================ */

/* ── Hero Banner ─────────────────────────────────────────── */
.tc-hero {
  position: relative;
  height: 220px;
  background: linear-gradient(135deg, #071626 0%, #0d1f3c 60%, #071626 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

/* Background texture — faint writing/signing hands feel */
.tc-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(30,111,255,.12) 0%, transparent 60%),
    radial-gradient(ellipse at 75% 30%, rgba(30,111,255,.08) 0%, transparent 50%);
}

/* Frosted glass card effect (matching screenshot) */
.tc-hero::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 480px; height: 110px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  backdrop-filter: blur(8px);
}

.tc-hero__overlay {
  position: absolute; inset: 0;
  background: rgba(7,22,38,.55);
}

.tc-hero__content {
  position: relative; z-index: 2;
  text-align: center;
}

.tc-hero__title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700; color: #fff;
  letter-spacing: -.01em;
}

.tc-hero__title--accent { color: var(--az-blue); }

/* ── Body Content ────────────────────────────────────────── */
.tc-body {
  padding: 52px 24px 72px;
  background: #fff;
}

.tc-body__inner {
  max-width: 860px; margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 0;
}

/* Each numbered section */
.tc-section {
  padding: 22px 0;
  border-bottom: 1px solid #f0f1f3;
}
.tc-section:last-child { border-bottom: none; }

.tc-section__title {
  font-size: 15px; font-weight: 700;
  color: var(--az-text); margin-bottom: 8px;
}

.tc-section__text {
  font-size: 14px; color: #4b5563;
  line-height: 1.75; max-width: 820px;
}

/* Responsive */
@media (max-width: 600px) {
  .tc-hero { height: 180px; }
  .tc-hero::after { width: 90%; height: 90px; }
  .tc-body { padding: 36px 16px 56px; }
}


/* ============================================================
   STORE PANEL
   ============================================================ */
.panel-body {
  margin: 0; padding: 0;
  background: #f1f5f9;
  font-family: 'Inter', Arial, sans-serif;
  color: #1a1a2e;
}
.panel-wrap {
  display: flex;
  min-height: 100vh;
}

/* ── Sidebar ─────────────────────────────────────────────── */
.panel-sidebar {
  width: 230px;
  flex-shrink: 0;
  background: #203559;
  display: flex;
  flex-direction: column;
  padding: 0;
  position: sticky;
  top: 0;
  height: 100vh;
}
.panel-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 28px 24px 22px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.panel-logo__icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0D59F2, #00A3FF);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: #fff;
  flex-shrink: 0;
}
.panel-logo__name {
  font-size: 13px; font-weight: 800;
  color: #fff; letter-spacing: .3px;
}
.panel-logo__sub {
  font-size: 10px; font-weight: 600;
  color: rgba(255,255,255,.45);
  letter-spacing: 1.2px; text-transform: uppercase;
  margin-top: 1px;
}
.panel-nav {
  padding: 18px 12px;
  display: flex; flex-direction: column; gap: 4px;
}
.panel-nav__item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: background .2s, color .2s;
}
.panel-nav__item:hover { background: rgba(255,255,255,.07); color: #fff; }
.panel-nav__item--active { background: rgba(13,89,242,.35); color: #fff; }
.panel-nav__item i { width: 16px; text-align: center; font-size: 13px; }

/* ── Main ────────────────────────────────────────────────── */
.panel-main {
  flex: 1;
  min-width: 0;
  padding: 32px 36px 60px;
  overflow-x: auto;
}

/* ── Topbar ──────────────────────────────────────────────── */
.panel-topbar {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.panel-topbar__left {
  display: flex; align-items: center; gap: 16px;
}
.panel-topbar__title {
  font-size: 22px; font-weight: 800;
  color: #1a1a2e; margin: 0;
}
.panel-topbar__user {
  font-size: 12px; font-weight: 600;
  color: #6b7280;
  display: flex; align-items: center; gap: 6px;
}
.panel-back {
  font-size: 13px; font-weight: 600; color: #0D59F2;
  text-decoration: none; display: flex; align-items: center; gap: 6px;
}
.panel-back:hover { color: #0050d0; }

/* ── Stats ───────────────────────────────────────────────── */
.panel-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.panel-stat {
  background: #fff;
  border-radius: 12px;
  padding: 20px 22px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.panel-stat__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.panel-stat__icon--blue  { background: #eff6ff; color: #0D59F2; }
.panel-stat__icon--green { background: #f0fdf4; color: #16a34a; }
.panel-stat__icon--amber { background: #fffbeb; color: #d97706; }
.panel-stat__icon--navy  { background: #eef2ff; color: #203559; }
.panel-stat__val {
  font-size: 22px; font-weight: 800; color: #1a1a2e;
}
.panel-stat__label {
  font-size: 12px; color: #6b7280; font-weight: 500; margin-top: 2px;
}

/* ── Filters ─────────────────────────────────────────────── */
.panel-filters {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.panel-filters__search {
  position: relative; flex: 1; min-width: 220px;
}
.panel-filters__search i {
  position: absolute; left: 12px; top: 50%;
  transform: translateY(-50%);
  color: #9ca3af; font-size: 13px;
}
.panel-filters__search input {
  width: 100%; padding: 9px 12px 9px 34px;
  border: 1.5px solid #e5e7eb; border-radius: 8px;
  font-size: 13px; outline: none;
  transition: border .2s;
  box-sizing: border-box;
}
.panel-filters__search input:focus { border-color: #0D59F2; }
.panel-filters select {
  padding: 9px 12px; border: 1.5px solid #e5e7eb;
  border-radius: 8px; font-size: 13px;
  background: #fff; cursor: pointer; outline: none;
}
.panel-filters select:focus { border-color: #0D59F2; }

/* ── Buttons ─────────────────────────────────────────────── */
.panel-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px; border-radius: 8px;
  font-size: 13px; font-weight: 600;
  cursor: pointer; border: none; text-decoration: none;
  transition: opacity .2s, background .2s;
}
.panel-btn--blue {
  background: linear-gradient(90deg, #0D59F2 0%, #00A3FF 100%);
  color: #fff;
}
.panel-btn--blue:hover { opacity: .88; }
.panel-btn--ghost {
  background: #fff; color: #6b7280;
  border: 1.5px solid #e5e7eb;
}
.panel-btn--ghost:hover { border-color: #9ca3af; color: #374151; }
.panel-btn--full { width: 100%; justify-content: center; margin-top: 10px; }

/* ── Table ───────────────────────────────────────────────── */
.panel-table-wrap {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.panel-table {
  width: 100%; border-collapse: collapse;
  font-size: 13px;
}
.panel-table thead tr {
  background: #f8faff;
  border-bottom: 1.5px solid #e5e7eb;
}
.panel-table th {
  padding: 13px 16px;
  font-size: 11px; font-weight: 700;
  color: #6b7280; text-transform: uppercase; letter-spacing: .8px;
  text-align: left;
}
.panel-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #f1f5f9;
  color: #374151;
}
.panel-table tbody tr:last-child td { border-bottom: none; }
.panel-table tbody tr:hover { background: #fafbff; }
.panel-table__ref   { font-weight: 700; color: #0D59F2; font-family: monospace; }
.panel-table__email { color: #6b7280; font-size: 12px; }
.panel-table__center { text-align: center; }
.panel-table__amount { text-align: right; font-weight: 600; }
.panel-table__date  { color: #9ca3af; font-size: 12px; }
.panel-table__view  {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 600;
  color: #0D59F2; text-decoration: none;
}
.panel-table__view:hover { color: #0050d0; }
.panel-table__empty {
  text-align: center; padding: 48px !important;
  color: #9ca3af; font-size: 14px;
}

/* ── Badges ──────────────────────────────────────────────── */
.panel-badge {
  display: inline-block;
  padding: 3px 10px; border-radius: 20px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .4px; text-transform: uppercase;
}
.panel-badge--green { background: #dcfce7; color: #15803d; }
.panel-badge--amber { background: #fef9c3; color: #b45309; }
.panel-badge--blue  { background: #dbeafe; color: #1d4ed8; }
.panel-badge--navy  { background: #e0e7ff; color: #3730a3; }
.panel-badge--red   { background: #fee2e2; color: #dc2626; }
.panel-badge--muted { background: #f3f4f6; color: #6b7280; }
.panel-badge--lg    { font-size: 13px; padding: 5px 14px; }

/* ── Detail grid ─────────────────────────────────────────── */
.panel-detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 20px;
  align-items: start;
}
.panel-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  margin-bottom: 20px;
  overflow: hidden;
}
.panel-card__hd {
  padding: 16px 22px;
  font-size: 13px; font-weight: 700;
  color: #203559;
  border-bottom: 1px solid #f1f5f9;
  display: flex; align-items: center; gap: 8px;
}
.panel-card__hd i { color: #0D59F2; }

/* ── Items table ─────────────────────────────────────────── */
.panel-items-table {
  width: 100%; border-collapse: collapse; font-size: 13px;
}
.panel-items-table th {
  padding: 11px 22px;
  font-size: 11px; font-weight: 700;
  color: #9ca3af; text-transform: uppercase; letter-spacing: .8px;
  text-align: left; background: #f8faff;
}
.panel-items-table td {
  padding: 13px 22px;
  border-top: 1px solid #f1f5f9;
  color: #374151;
}

/* ── Pricing ─────────────────────────────────────────────── */
.panel-pricing {
  padding: 16px 22px;
  border-top: 1px solid #f1f5f9;
}
.panel-pricing__row {
  display: flex; justify-content: space-between;
  font-size: 13px; color: #6b7280;
  padding: 5px 0;
}
.panel-pricing__row--discount { color: #16a34a; }
.panel-pricing__row--total {
  font-size: 16px; font-weight: 800;
  color: #1a1a2e;
  border-top: 1.5px solid #e5e7eb;
  margin-top: 8px; padding-top: 12px;
}

/* ── Info grid ───────────────────────────────────────────── */
.panel-info-grid { padding: 6px 22px 16px; }
.panel-info-row {
  display: flex; align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 13px;
}
.panel-info-row:last-child { border-bottom: none; }
.panel-info-row__label {
  color: #9ca3af; font-weight: 600;
  flex-shrink: 0; min-width: 110px;
}
.panel-info-row__val { color: #1a1a2e; font-weight: 500; text-align: right; }
.panel-info-row__val--mono { font-family: monospace; font-size: 12px; }
.panel-info-row__val--break { word-break: break-all; }

/* ── Address ─────────────────────────────────────────────── */
.panel-address {
  padding: 16px 22px;
  font-size: 13px; color: #374151; line-height: 1.8;
}

/* ── Status form ─────────────────────────────────────────── */
.panel-status-current { padding: 16px 22px 4px; }
.panel-status-form { padding: 0 22px 20px; }
.panel-form-label {
  display: block; font-size: 12px; font-weight: 700;
  color: #6b7280; text-transform: uppercase; letter-spacing: .8px;
  margin-bottom: 8px; margin-top: 16px;
}
.panel-select {
  width: 100%; padding: 10px 12px;
  border: 1.5px solid #e5e7eb; border-radius: 8px;
  font-size: 13px; background: #fff; outline: none;
}
.panel-select:focus { border-color: #0D59F2; }

/* ── Links ───────────────────────────────────────────────── */
.panel-link {
  color: #0D59F2; font-weight: 600; font-size: 13px;
  text-decoration: none;
}
.panel-link:hover { color: #0050d0; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .panel-stats { grid-template-columns: repeat(2, 1fr); }
  .panel-detail-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .panel-sidebar { display: none; }
  .panel-main { padding: 20px 16px 48px; }
  .panel-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ── Panel login page ────────────────────────────────────── */
.panel-login-body {
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #0f1f3d 0%, #203559 60%, #0D59F2 100%);
}
.panel-login-wrap {
  width: 100%; max-width: 400px; padding: 24px;
}
.panel-login-card {
  background: #fff;
  border-radius: 16px;
  padding: 48px 40px 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  text-align: center;
}
.panel-login-logo {
  margin-bottom: 20px;
}
.panel-login-logo .panel-logo__icon {
  width: 56px; height: 56px; border-radius: 16px;
  font-size: 24px; display: inline-flex;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0D59F2, #00A3FF);
  color: #fff;
  box-shadow: 0 8px 24px rgba(13,89,242,.35);
}
.panel-login-title {
  font-size: 22px; font-weight: 800;
  color: #1a1a2e; margin: 0 0 6px;
}
.panel-login-sub {
  font-size: 13px; color: #9ca3af; margin: 0 0 28px;
}
.panel-login-error {
  background: #fee2e2; color: #dc2626;
  border-radius: 8px; padding: 11px 14px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
  text-align: left;
}
.panel-login-form { text-align: left; }
.panel-login-field { margin-bottom: 18px; }
.panel-login-field label {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700;
  color: #6b7280; text-transform: uppercase; letter-spacing: .8px;
  margin-bottom: 8px;
}
.panel-login-field input {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid #e5e7eb; border-radius: 8px;
  font-size: 14px; outline: none;
  transition: border .2s;
  box-sizing: border-box;
}
.panel-login-field input:focus { border-color: #0D59F2; }

/* Logout link in topbar */
.panel-topbar__logout {
  text-decoration: none;
  transition: color .2s;
}
.panel-topbar__logout:hover { color: #dc2626; }

/* Panel search clear button */
.panel-filters__clear {
  position: absolute; right: 10px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none; cursor: pointer;
  color: #9ca3af; font-size: 13px; padding: 4px;
  line-height: 1; transition: color .15s;
}
.panel-filters__clear:hover { color: #374151; }
