:root {
  /* Core Brand Colors */
  --avs-blue: #149bd7;
  --avs-blue-dark: #075f9d;
  --avs-blue-deep: #063755;
  --avs-blue-light: #1aaee7;
  --avs-ink: #0d1520;
  --avs-ink-soft: #1f2d3d;
  --avs-text-muted: #586879;
  --avs-cream: #eef5fb;
  --avs-accent: #0f89c2;
  --avs-border: #dfeaf3;
  --avs-border-strong: #c8d9e8;
  --avs-silver: #f4f8fc;
  --avs-surface: #ffffff;
  --avs-surface-alt: #f4f9fd;
  --avs-sale: #f5d242;
  --avs-success: #13795b;
  --avs-warning: #b85b00;
  --avs-error: #b42318;

  /* Premium Gradients */
  --gradient-premium: linear-gradient(135deg, #149bd7 0%, #075f9d 100%);
  --gradient-subtle: linear-gradient(180deg, rgba(20,155,215,0.04) 0%, rgba(20,155,215,0) 100%);
  
  /* Radius Scale */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  
  /* Shadow System */
  --shadow-xs: 0 1px 2px rgba(13,21,32,0.04);
  --shadow-sm: 0 2px 8px rgba(13,21,32,0.06), 0 1px 3px rgba(13,21,32,0.04);
  --shadow-md: 0 8px 24px rgba(13,21,32,0.08), 0 2px 8px rgba(13,21,32,0.04);
  --shadow-lg: 0 16px 40px rgba(13,21,32,0.12), 0 4px 12px rgba(13,21,32,0.05);
  --shadow-blue: 0 12px 28px rgba(7,95,157,0.18);
  --shadow-premium: 0 20px 48px rgba(7,95,157,0.22);

  /* Motion & Transitions */
  --transition: 0.2s cubic-bezier(0.4,0,0.2,1);
  --transition-smooth: 0.3s cubic-bezier(0.22,1,0.36,1);
  --transition-premium: 0.88s cubic-bezier(0.22,1,0.36,1);

  /* Layout */
  --container-width: 1240px;
  
  /* Typography Scale */
  --font-size-display: 3.5rem;
  --font-size-h1: 2.8rem;
  --font-size-h2: 2.2rem;
  --font-size-h3: 1.8rem;
  --font-size-h4: 1.4rem;
  --font-size-body-large: 1.125rem;
  --font-size-body: 1rem;
  --font-size-small: 0.875rem;
  --font-size-label: 0.75rem;
  
  /* Spacing Scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 28px;
  --space-8: 32px;
  --space-9: 36px;
  --space-10: 40px;
  --space-12: 48px;
  --space-14: 56px;
  --space-16: 64px;
}

/* ═══════════════════════════════════════════════════════════ */
/* ANIMATION SYSTEM - Premium Micro-interactions              */
/* ═══════════════════════════════════════════════════════════ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

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

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 20px 48px rgba(7, 95, 157, 0.15);
  }
  50% {
    box-shadow: 0 20px 48px rgba(7, 95, 157, 0.35);
  }
}

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

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

/* ═══════════════════════════════════════════════════════════ */
/* ANIMATION UTILITY CLASSES                                   */
/* ═══════════════════════════════════════════════════════════ */

/* Entrance Animations */
.animate-fade-in-up {
  animation: fadeInUp 0.6s var(--transition-smooth) forwards;
}

.animate-fade-in-down {
  animation: fadeInDown 0.6s var(--transition-smooth) forwards;
}

.animate-fade-in {
  animation: fadeIn 0.5s var(--transition) forwards;
}

.animate-slide-in-left {
  animation: slideInLeft 0.6s var(--transition-smooth) forwards;
}

.animate-slide-in-right {
  animation: slideInRight 0.6s var(--transition-smooth) forwards;
}

.animate-scale-in {
  animation: scaleIn 0.4s var(--transition) forwards;
}

/* Attention Getters */
.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-glow {
  animation: glow 2s ease-in-out infinite;
}

.animate-bounce {
  animation: bounce 1s ease-in-out infinite;
}

.animate-spin {
  animation: spinLoader 1s linear infinite;
}

/* Stagger animations for lists */
.animate-stagger > * {
  animation: fadeInUp 0.6s var(--transition-smooth) forwards;
}

.animate-stagger > *:nth-child(1) { animation-delay: 0.1s; }
.animate-stagger > *:nth-child(2) { animation-delay: 0.2s; }
.animate-stagger > *:nth-child(3) { animation-delay: 0.3s; }
.animate-stagger > *:nth-child(4) { animation-delay: 0.4s; }
.animate-stagger > *:nth-child(5) { animation-delay: 0.5s; }

/* ═══════════════════════════════════════════════════════════ */
/* MICRO-INTERACTIONS - Button & Form States                  */
/* ═══════════════════════════════════════════════════════════ */

/* Button Hover & Active Effects */
button, a.btn, input[type="button"], input[type="submit"] {
  transition: all var(--transition) ease;
  position: relative;
  overflow: hidden;
}

button:hover:not(:disabled),
a.btn:hover,
input[type="button"]:hover,
input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 21, 32, 0.12);
}

button:active:not(:disabled),
a.btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(13, 21, 32, 0.08);
}

/* Input Focus States */
input, textarea, select {
  transition: all var(--transition) ease;
}

input:focus, textarea:focus, select:focus {
  box-shadow: 0 0 0 3px rgba(20, 155, 215, 0.1), 0 0 0 1px #0f89c2;
}

input::placeholder {
  transition: color var(--transition) ease;
}

input:focus::placeholder {
  color: transparent;
}

/* ═══════════════════════════════════════════════════════════ */
/* CARD & PRODUCT ANIMATIONS                                   */
/* ═══════════════════════════════════════════════════════════ */

.product-card, article[class*="card"], [class*="card-item"] {
  transition: all var(--transition-smooth) ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(13, 21, 32, 0.12);
}

.product-card:active {
  transform: translateY(-2px);
}

/* Gradient overlay animation on hover */
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(20, 155, 215, 0) 0%, rgba(20, 155, 215, 0.1) 100%);
  opacity: 0;
  transition: opacity var(--transition-smooth) ease;
  pointer-events: none;
}

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

/* ═══════════════════════════════════════════════════════════ */
/* PAGE TRANSITION ANIMATIONS                                  */
/* ═══════════════════════════════════════════════════════════ */

/* Page fade-in on load */
main {
  animation: fadeIn 0.4s var(--transition) ease-out;
}

/* Section reveal animations */
section {
  opacity: 1;
}

section.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all var(--transition-premium) cubic-bezier(0.22, 1, 0.36, 1);
}

section.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════ */
/* LOADING & SKELETON STATES                                   */
/* ═══════════════════════════════════════════════════════════ */

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(20, 155, 215, 0.2);
  border-radius: 50%;
  border-top-color: #0f89c2;
  animation: spinLoader 0.8s linear infinite;
}

/* ═══════════════════════════════════════════════════════════ */
/* SUCCESS & ERROR ANIMATIONS                                  */
/* ═══════════════════════════════════════════════════════════ */

.toast-success {
  animation: slideInRight 0.4s var(--transition-smooth);
}

.toast-error {
  animation: slideInRight 0.4s var(--transition-smooth);
}

.form-success-checkmark {
  animation: scaleIn 0.5s var(--transition);
}

/* ═══════════════════════════════════════════════════════════ */
/* SMOOTH SCROLL BEHAVIOR                                      */
/* ═══════════════════════════════════════════════════════════ */

html {
  scroll-behavior: smooth;
}

html {
    padding: 20px 0;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--avs-ink);
  background: linear-gradient(180deg, #f5f9fd 0%, #f9fbfd 20%, #ffffff 38%, #ffffff 100%);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  display: block;
}

main > section,
main > article,
main > div {
  scroll-margin-top: 96px;
}

::selection {
  background: rgba(20, 155, 215, 0.18);
  color: var(--avs-ink);
}

.motion-enhanced .ux-reveal {
  opacity: 0;
  filter: blur(2px);
  transform: translateY(18px);
  transition:
    opacity 0.88s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.88s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.88s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--ux-delay, 0ms);
  will-change: opacity, transform, filter;
}

.motion-enhanced .ux-reveal.ux-visible {
  opacity: 1;
  filter: none;
  transform: none;
}

.motion-enhanced .legal-page.ux-reveal,
.motion-enhanced .legal-page .ux-reveal {
  opacity: 1;
  filter: none;
  transform: none;
}

.btn,
.add-to-cart-btn,
.view-details-btn,
.product-coming-soon-btn,
.contact-chip,
.contact-hero-link,
.footer-social-link,
.floating-whatsapp {
  position: relative;
}

/* Strong, consistent keyboard focus treatment for interactive controls */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #0f89c2;
  outline-offset: 2px;
}

.support-dropdown summary:focus-visible,
.store-menu-primary > a:focus-visible,
.store-menu-primary .menu-group > a:focus-visible,
.store-menu-secondary a:focus-visible,
.menu-panel a:focus-visible,
.cart-toggle:focus-visible,
.view-details-btn:focus-visible,
.add-to-cart-btn:focus-visible,
.product-coming-soon-btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(15, 137, 194, 0.22);
}

.btn::before,
.add-to-cart-btn::before,
.product-coming-soon-btn::before,
.contact-hero-link::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  content: "";
  inset: 0 auto 0 -42%;
  pointer-events: none;
  position: absolute;
  transform: skewX(-18deg);
  width: 34%;
}

.btn:hover::before,
.add-to-cart-btn:hover::before,
.product-coming-soon-btn:hover::before,
.contact-hero-link:hover::before {
  animation: ux-sheen 0.8s ease;
}

.footer-social-link,
.contact-chip,
.track-card,
.bulk-process-card,
.bulk-assurance,
.bulk-hero-card,
.shop-toolbar,
.story-products .story-copy,
.footer-brand,
.footer-column {
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1), border-color var(--transition);
}

.footer-social-link:hover,
.contact-chip:hover,
.track-card:hover,
.bulk-process-card:hover,
.bulk-assurance:hover,
.bulk-hero-card:hover,
.shop-toolbar:hover,
.story-products .story-copy:hover {
  transform: translateY(-3px);
}

.floating-whatsapp {
  animation: ux-float 3.8s ease-in-out infinite;
}

.home-carousel-slide.is-active .home-carousel-content > * {
  animation: ux-content-rise 0.98s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.home-carousel-slide.is-active .home-carousel-content > *:nth-child(1) { animation-delay: 0.12s; }
.home-carousel-slide.is-active .home-carousel-content > *:nth-child(2) { animation-delay: 0.24s; }
.home-carousel-slide.is-active .home-carousel-content > *:nth-child(3) { animation-delay: 0.38s; }
.home-carousel-slide.is-active .home-carousel-content > *:nth-child(4) { animation-delay: 0.52s; }

.shop-category-card img,
.collection-card img,
.product-card img,
.brand-logo {
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

.product-card:hover img,
.collection-card:hover img,
.shop-category-card:hover img {
  transform: scale(1.04);
}

@keyframes ux-sheen {
  from {
    left: -42%;
  }
  to {
    left: 125%;
  }
}

@keyframes ux-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes ux-content-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 { line-height: 1.2; margin: 0 0 12px; }

a { color: var(--avs-blue-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(135deg, var(--avs-blue) 0%, #1e9ed8 100%);
  color: #fff;
  box-shadow: 0 10px 22px rgba(20,155,215,0.25);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--avs-blue-dark) 0%, #0d7ab7 100%);
  box-shadow: 0 14px 28px rgba(7,95,157,0.26);
}
.btn-primary:disabled {
  background: #a8d8ef;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}
.btn-secondary {
  background: rgba(255,255,255,0.9);
  color: var(--avs-ink);
  border-color: var(--avs-border-strong);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover {
  background: var(--avs-cream);
  border-color: var(--avs-blue);
}
.btn-block { width: 100%; }
.social-button,
.footer-social-link,
.shop-help-link,
.floating-whatsapp {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}
.social-icon {
  display: inline-block;
  flex-shrink: 0;
  height: 18px;
  width: 18px;
}
.sr-only {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.skip-link {
  background: #0b1118;
  border-radius: 8px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  left: 14px;
  padding: 8px 12px;
  position: fixed;
  top: -48px;
  transition: top 0.2s ease;
  z-index: 10080;
}

.skip-link:focus-visible {
  top: 12px;
}


/* Login Modal */
.login-modal {
  align-items: center;
  display: flex;
  height: 100vh;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.login-modal:not([hidden]) {
  display: flex;
}

.login-modal[hidden] {
  display: none;
}

.login-modal-overlay {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.login-modal-content {
  animation: login-modal-slide-in 0.3s ease-out;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  max-height: 90vh;
  max-width: 520px;
  overflow-y: auto;
  position: relative;
  width: 90%;
  z-index: 10000;
}

@keyframes login-modal-slide-in {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.login-modal-close {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  height: 32px;
  padding: 0;
  position: absolute;
  right: 16px;
  top: 16px;
  width: 32px;
  z-index: 10001;
}

.login-modal-close:hover {
  color: var(--avs-ink);
}

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

.login-modal-body {
  padding: 48px 32px;
  text-align: center;
}

.login-modal-logo {
  height: 60px;
  margin-bottom: 32px;
  width: auto;
}

.login-form-section h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
}

.login-form-subtitle {
  color: #888;
  font-size: 14px;
  font-style: italic;
  margin-bottom: 28px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.login-form-input {
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  padding: 12px 14px;
  width: 100%;
}

.login-form-input:focus {
  background: #fff;
  border-color: var(--avs-blue);
  outline: none;
}

.login-form-input::placeholder {
  color: #999;
}

.login-form-submit {
  background: linear-gradient(135deg, #0f89c2, #096da1);
  border: 1px solid #0b7bb1;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  min-height: 44px;
  padding: 12px;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

.login-form-submit:hover {
  background: linear-gradient(135deg, #0a74ad, #075e8c);
}

.login-form-submit:disabled {
  background: #9fcde6;
  cursor: not-allowed;
}

.login-form-terms {
  margin-top: 16px;
  text-align: left;
}

.checkbox-label {
  align-items: flex-start;
  color: #666;
  cursor: pointer;
  display: flex;
  font-size: 12px;
  gap: 8px;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  accent-color: var(--avs-blue);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 3px;
}

.checkbox-label a {
  color: var(--avs-blue-dark);
  font-weight: 800;
  text-decoration: underline;
}

.login-form-resend {
  margin-top: 20px;
  text-align: center;
}

.login-form-resend p {
  color: #666;
  font-size: 14px;
  margin: 0;
}

.login-form-resend a {
  color: var(--avs-blue);
  font-weight: 600;
  text-decoration: none;
}

.login-form-resend a:hover {
  text-decoration: underline;
}

.login-form-error {
  background: #fee;
  border: 1px solid #fcc;
  border-radius: 4px;
  color: #c33;
  font-size: 13px;
  margin-bottom: 16px;
  padding: 10px;
  text-align: left;
}

.login-form-success {
  background: #efe;
  border: 1px solid #cfc;
  border-radius: 4px;
  color: #3c3;
  font-size: 13px;
  margin-bottom: 16px;
  padding: 10px;
  text-align: left;
}

.login-form-loading {
  color: #999;
  font-size: 13px;
  margin-top: 8px;
}

/* Account modal */
.account-modal {
  align-items: center;
  display: flex;
  height: 100vh;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10010;
}

.account-modal[hidden] {
  display: none;
}

.account-modal-overlay {
  background: rgba(6, 17, 28, 0.58);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.account-modal-content {
  background: linear-gradient(160deg, #ffffff 0%, #f3f8fd 100%);
  border: 1px solid #d7e5f2;
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(8, 28, 47, 0.24);
  max-height: 92vh;
  max-width: 860px;
  overflow-y: auto;
  position: relative;
  width: min(92vw, 860px);
  z-index: 10011;
}

.account-modal-close {
  background: #fff;
  border: 1px solid #d4e4f0;
  border-radius: 999px;
  color: #244661;
  cursor: pointer;
  font-size: 22px;
  height: 36px;
  line-height: 1;
  position: absolute;
  right: 16px;
  top: 14px;
  width: 36px;
}

.account-modal-body {
  padding: 32px;
}

.account-kicker {
  color: #0f89c2;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.account-welcome,
.account-profile-hint,
.account-copy,
.account-empty {
  color: #4d6176;
  margin: 0;
}

.account-summary-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin: 18px 0 10px;
}

.account-chip {
  background: #fff;
  border: 1px solid #dbe8f4;
  border-radius: 14px;
  padding: 12px;
}

.account-chip p {
  color: #698298;
  font-size: 12px;
  margin: 0 0 4px;
}

.account-chip strong {
  color: #10253a;
  font-size: 14px;
  font-weight: 700;
}

.account-email-status {
  color: #5b7286;
  font-size: 12px;
  margin: 8px 0 0;
}

.account-email-status.is-verified {
  color: #0f766e;
  font-weight: 700;
}

.account-email-status.is-unverified {
  color: #a16207;
  font-weight: 700;
}

.account-email-verify-btn {
  margin-top: 8px;
  min-height: 34px;
  padding: 8px 12px;
}

.account-block {
  border-top: 1px solid #dbe8f4;
  margin-top: 20px;
  padding-top: 18px;
}

.account-block-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.account-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.account-form input,
.account-form select {
  background: #fff;
  border: 1px solid #cddceb;
  border-radius: 10px;
  font-size: 14px;
  margin-top: 6px;
  min-height: 42px;
  padding: 10px 12px;
  width: 100%;
}

.account-checkbox-row {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.account-checkbox-row input {
  margin: 0;
  min-height: auto;
  width: auto;
}

.account-address-list {
  display: grid;
  gap: 12px;
}

.account-address-card {
  background: #fff;
  border: 1px solid #dbe8f4;
  border-radius: 14px;
  padding: 12px;
}

.account-address-head {
  color: #0f89c2;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 0 0 6px;
  text-transform: uppercase;
}

.account-address-name,
.account-address-line,
.account-order-item {
  margin: 0;
}

.account-address-actions,
.account-form-actions,
.account-footer-actions,
.account-prompt-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.account-address-form {
  background: #f6fbff;
  border: 1px dashed #bfd9ea;
  border-radius: 12px;
  padding: 12px;
}

.account-prompt-card {
  max-width: 500px;
  padding: 28px;
}

.checkout-saved-address select {
  background: #fff;
  border: 1px solid #cddceb;
  border-radius: 10px;
  margin-top: 6px;
  min-height: 42px;
  padding: 8px 10px;
  width: 100%;
}

.checkout-save-address-row {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

@media (max-width: 720px) {
  .account-modal-content {
    width: 94vw;
  }

  .account-modal-body,
  .account-prompt-card {
    padding: 18px;
  }

  .account-address-actions,
  .account-form-actions,
  .account-footer-actions,
  .account-prompt-actions {
    flex-direction: column;
  }
}


.announcement-marquee {
  background: linear-gradient(90deg, rgba(5, 17, 29, 0.98) 0%, rgba(8, 45, 68, 0.98) 48%, rgba(5, 17, 29, 0.98) 100%);
  border-bottom: 1px solid rgba(111, 183, 221, 0.25);
  box-shadow: inset 0 1px 0 rgba(156, 222, 255, 0.18);
  color: #f4fbff;
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 3;
}

.announcement-marquee::before,
.announcement-marquee::after {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  z-index: 2;
}

.announcement-marquee::before {
  background: linear-gradient(90deg, rgba(5, 17, 29, 0.9), rgba(5, 17, 29, 0));
  left: 0;
}

.announcement-marquee::after {
  background: linear-gradient(270deg, rgba(5, 17, 29, 0.9), rgba(5, 17, 29, 0));
  right: 0;
}

.marquee-track {
  align-items: center;
  animation: announcement-scroll var(--announcement-duration, 30s) linear infinite;
  display: inline-flex;
  gap: 28px;
  min-height: 32px;
  padding: 0 18px;
  white-space: nowrap;
  width: max-content;
  will-change: transform;
}

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

.marquee-track span {
  flex: 0 0 auto;
}

.announcement-message {
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(10px, 0.8vw, 13px);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.announcement-separator {
  color: #73d5ff;
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  opacity: 0.9;
  transform: translateY(-1px);
}

@keyframes announcement-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 600px) {
  .announcement-marquee {
    min-height: 30px;
  }

  .announcement-marquee::before,
  .announcement-marquee::after {
    width: 26px;
  }

  .marquee-track {
    gap: 18px;
    min-height: 30px;
    padding: 0 12px;
  }

  .announcement-message {
    letter-spacing: 0.1em;
  }

  .announcement-separator {
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
    transform: none;
    white-space: normal;
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
  }

  .announcement-marquee:hover .marquee-track {
    animation-play-state: running;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-chip,
  .contact-chip-icon-shell,
  .contact-hero-cta,
  .contact-hero-cta-arrow,
  .get-in-touch-item {
    transition: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .cart-count.is-bump {
    animation: none;
  }
  .announcement-item {
    transition: none;
  }
  .marquee-track {
    animation: none;
  }
  .home-carousel-track { transition: none; }
  .site-header {
    animation: none;
  }
  .site-header::before {
    animation: none;
  }
  .main-nav a,
  .header-utility a,
  .brand-logo {
    transition: none;
  }
  .main-nav a::after {
    transition: none;
  }
  .motion-enhanced .ux-reveal {
    filter: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
  .floating-whatsapp,
  .home-carousel-content > *,
  .btn::before,
  .add-to-cart-btn::before,
  .product-coming-soon-btn::before,
  .contact-hero-link::before {
    animation: none;
  }
  .home-carousel-slide .home-carousel-content > *,
  .home-carousel-bg,
  .home-carousel .btn-primary::after,
  .carousel-control,
  .carousel-dots button {
    transition: none;
  }
  .home-carousel-slide.is-active .home-carousel-bg,
  .carousel-control:hover,
  .home-carousel .btn-primary:hover,
  .home-carousel .btn-primary:hover::after {
    transform: none;
  }
  .product-card,
  .product-card img {
    transition: none;
  }
  .product-card:hover {
    transform: none;
  }
}

/* Header */
.site-header {
  border-bottom: 1px solid rgba(130, 160, 183, 0.3);
  position: sticky;
  top: env(safe-area-inset-top, 0px);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: none;
  isolation: isolate;
  overflow: visible;
  z-index: 90;
  transition: box-shadow var(--transition), background var(--transition), border-color var(--transition);
}
.site-header::before {
  content: none;
}
.header-utility {
  background: var(--avs-ink);
  color: #fff;
}
.header-utility-inner {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  min-height: 36px;
}
.support-dropdown {
  position: relative;
}
.support-dropdown summary {
  color: rgba(255,255,255,0.9);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  list-style: none;
  text-transform: uppercase;
  user-select: none;
}
.support-dropdown summary::-webkit-details-marker {
  display: none;
}
.support-dropdown summary::after {
  content: " \25BE";
  font-size: 10px;
}
.support-dropdown[open] summary::after {
  content: " \25B4";
}
.support-dropdown-menu {
  background: #ffffff;
  border: 1px solid #d6e2ee;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 1px;
  min-width: 190px;
  padding: 6px;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 100;
}
.support-dropdown-menu a {
  border-radius: 8px;
  color: #1f2937;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 8px 10px;
  text-decoration: none;
  text-transform: none;
}
.support-dropdown-menu a:hover {
  background: #ebf5fd;
  color: #0c5a8a;
}
.header-utility a {
  color: rgba(255,255,255,0.85);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color var(--transition), transform var(--transition);
}
.header-utility a:hover {
  color: #fff;
  transform: translateY(-0.5px);
}
.header-utility .support-dropdown-menu a {
  color: #1f2937;
  font-size: 12px;
  letter-spacing: 0.01em;
  text-transform: none;
}
.header-utility .support-dropdown-menu a:hover {
  background: #ebf5fd;
  color: #0c5a8a;
  transform: none;
}
.login-trigger-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  padding: 0;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: color var(--transition);
}
.login-trigger-btn:hover {
  color: #fff;
  text-decoration: none;
}
.language-select {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 2px 6px;
}
.language-select:hover,
.language-select:focus-visible {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}
.language-select option {
  color: #1f2937;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 24px;
}

.header-brand-group {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  gap: 14px;
  min-width: 0;
}

.brand {
  align-items: center;
  color: var(--avs-ink);
  display: inline-flex;
  gap: 12px;
  min-width: 0;
  position: relative;
  text-decoration: none;
}

.brand::after {
  display: none;
}

.brand-logo {
  background: #fff;
  border: 1px solid rgba(212, 226, 236, 0.7);
  border-radius: 11px;
  box-shadow: 0 1px 3px rgba(13, 21, 32, 0.04);
  height: 48px;
  object-fit: contain;
  padding: 5px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  width: 48px;
}
.brand:hover .brand-logo,
.brand:focus-visible .brand-logo {
  border-color: rgba(20, 155, 215, 0.35);
  box-shadow: 0 2px 6px rgba(13, 21, 32, 0.06);
  transform: translateY(-0.5px);
}
.brand-name {
  color: #102335;
  font-size: clamp(20px, 1.55vw, 22px);
  font-weight: 800;
  letter-spacing: -0.012em;
  line-height: 1.1;
}

.header-finder-cta {
  align-items: center;
  background: linear-gradient(135deg, #0c7fb8 0%, #11a2d6 100%);
  border: 1px solid rgba(6, 93, 136, 0.8);
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(13, 97, 160, 0.12);
  color: #fff;
  display: inline-flex;
  flex-shrink: 0;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  min-height: 42px;
  padding: 9px 14px;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition), background var(--transition), border-color var(--transition);
}

.header-finder-cta:hover,
.header-finder-cta:focus-visible {
  background: linear-gradient(135deg, #0b6fa7 0%, #1098cf 100%);
  box-shadow: 0 12px 22px rgba(13, 97, 160, 0.18);
  filter: brightness(1.02);
  text-decoration: none;
  transform: translateY(-1px);
}

.header-finder-cta:active {
  transform: translateY(0);
}

.header-finder-cta .menu-icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  display: inline-flex;
  height: 18px;
  justify-content: center;
  width: 18px;
}

.header-finder-cta .menu-icon::before {
  font-size: 10px;
}

.header-finder-cta .menu-icon.i-foryou::before {
  content: "✦";
  font-size: 9px;
  line-height: 1;
}

.header-brand-divider {
  background: rgba(144, 171, 192, 0.36);
  display: block;
  height: 22px;
  width: 1px;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: 4px;
  justify-content: flex-start;
  min-width: 0;
  overflow-x: auto;
  padding-bottom: 0;
  scrollbar-width: none;
}
.main-nav::-webkit-scrollbar { display: none; }
.main-nav a {
  color: #4b5563;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: 8px;
  position: relative;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.main-nav a::after {
  background: linear-gradient(90deg, rgba(15, 137, 194, 0.92), rgba(19, 169, 216, 0.88) 70%, rgba(255, 183, 57, 0.85));
  border-radius: 999px;
  bottom: -5px;
  content: "";
  height: 2px;
  left: 10px;
  opacity: 0;
  position: absolute;
  right: 10px;
  transform: scaleX(0.3);
  transform-origin: center;
  transition: opacity var(--transition), transform var(--transition);
}
.main-nav a:hover {
  background: var(--avs-cream);
  color: var(--avs-ink);
  text-decoration: none;
  transform: translateY(-0.5px);
}
.main-nav a:hover::after,
.main-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}
.main-nav a.active { background: var(--avs-cream); color: var(--avs-blue-dark); }
.header-actions {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: 0;
}

.header-actions-divider {
  background: rgba(144, 171, 192, 0.34);
  display: block;
  height: 24px;
  width: 1px;
}

.header-search-toggle {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(190, 210, 226, 0.95);
  border-radius: 12px;
  color: #28465d;
  cursor: pointer;
  display: none;
  height: 44px;
  justify-content: center;
  min-width: 44px;
  padding: 0;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.header-search-toggle:hover {
  background: rgba(238, 246, 252, 0.95);
  border-color: rgba(20, 155, 215, 0.46);
  color: #0f5f8f;
}

.header-search {
  align-items: center;
  display: inline-flex;
  min-width: 0;
  position: relative;
}

.header-search-icon {
  color: #60768a;
  display: inline-flex;
  left: 14px;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.header-search input {
  background: #f5f9fc;
  border: 1px solid #c6d8e8;
  border-radius: 12px;
  color: var(--avs-ink);
  font-size: 13px;
  font-weight: 600;
  height: 44px;
  padding: 0 14px 0 38px;
  width: clamp(220px, 22vw, 280px);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.header-search input::placeholder {
  color: #6f8395;
  font-weight: 500;
}

.header-search input:hover {
  border-color: #a7bfd3;
}

.header-search input:focus {
  background: #fff;
  border-color: var(--avs-blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(20, 155, 215, 0.14);
}

.cart-toggle,
.nav-menu-toggle,
.site-header .btn-secondary {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(190, 210, 226, 0.95);
  border-radius: 12px;
  color: #21394d;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 8px;
  min-height: 44px;
  padding: 9px 13px;
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
}

.cart-toggle:hover,
.nav-menu-toggle:hover,
.site-header .btn-secondary:hover {
  background: rgba(236, 245, 251, 0.9);
  border-color: rgba(20, 155, 215, 0.45);
  box-shadow: none;
  color: #0e618f;
  text-decoration: none;
}

.cart-toggle[aria-expanded="true"],
.nav-menu-toggle[aria-expanded="true"] {
  background: rgba(230, 242, 252, 0.95);
  border-color: rgba(20, 155, 215, 0.58);
  color: #0e5f8e;
}

.cart-toggle {
  cursor: pointer;
  letter-spacing: 0.01em;
  text-transform: none;
}

.cart-icon {
  color: #36556d;
  display: inline-flex;
}

.cart-label {
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.cart-count {
  background: var(--avs-blue);
  color: #fff;
  border-radius: 999px;
  display: inline-grid;
  font-size: 11px;
  font-weight: 800;
  height: 22px;
  margin-left: 2px;
  min-width: 22px;
  padding: 0 6px;
  place-items: center;
}

.cart-count.is-bump {
  animation: bag-count-bump 200ms ease-out;
}

.store-menu-strip {
  display: none !important;
}

.nav-menu-toggle {
  cursor: pointer;
  gap: 9px;
}

.nav-menu-toggle-lines {
  background: #1a3349;
  border-radius: 3px;
  display: inline-block;
  height: 2px;
  position: relative;
  width: 15px;
}

.nav-menu-toggle-lines::before,
.nav-menu-toggle-lines::after {
  background: #1a3349;
  border-radius: 3px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 15px;
}

.nav-menu-toggle-lines::before {
  top: -5px;
}

.nav-menu-toggle-lines::after {
  top: 5px;
}

.nav-menu-toggle-text {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
}

@keyframes bag-count-bump {
  0% { transform: scale(1); }
  50% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

.site-nav-overlay {
  backdrop-filter: blur(2px);
  background: rgba(5, 15, 25, 0.45);
  inset: 0;
  position: fixed;
  z-index: 110;
}

.site-nav-drawer {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-left: 1px solid #d7e6f2;
  box-shadow: -18px 0 40px rgba(3, 24, 41, 0.18);
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
  max-width: 440px;
  overscroll-behavior: contain;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: transform 220ms ease-out;
  width: min(92vw, 440px);
  z-index: 120;
}

.site-nav-drawer.open {
  transform: translateX(0);
}

.site-nav-drawer-header {
  align-items: center;
  border-bottom: 1px solid #dbe8f2;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
}

.site-nav-brand {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: 0;
}

.site-nav-brand-logo {
  border-radius: 10px;
  height: 40px;
  object-fit: cover;
  width: 40px;
}

.site-nav-brand h2 {
  font-size: 14px;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}

.site-nav-brand p {
  color: #607286;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 2px 0 0;
  text-transform: uppercase;
}

.site-nav-close {
  align-items: center;
  background: #f3f8fc;
  border: 1px solid #d6e5f2;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  font-size: 24px;
  height: 44px;
  justify-content: center;
  line-height: 1;
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  width: 44px;
}

.site-nav-close:hover,
.site-nav-close:focus-visible {
  background: #eaf4fc;
  border-color: rgba(20, 155, 215, 0.5);
}

.site-nav-feature:focus-visible,
.site-nav-parent:focus-visible,
.site-nav-child:focus-visible,
.site-nav-row:focus-visible,
.site-nav-account:focus-visible,
.site-nav-close:focus-visible {
  outline: 2px solid rgba(15, 137, 194, 0.62);
  outline-offset: 2px;
}

.site-nav-drawer-scroll {
  -webkit-overflow-scrolling: touch;
  display: grid;
  flex: 1;
  gap: 22px;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 16px 18px 24px;
  scrollbar-gutter: stable;
}

.site-nav-feature {
  align-items: center;
  background: linear-gradient(135deg, rgba(232, 244, 252, 0.96), rgba(248, 252, 255, 1));
  border: 1px solid rgba(20, 155, 215, 0.24);
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(14, 69, 102, 0.08);
  display: grid;
  gap: 12px;
  grid-template-columns: auto 1fr auto;
  padding: 14px 15px;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.site-nav-feature:hover,
.site-nav-feature:focus-visible {
  background: linear-gradient(135deg, rgba(225, 240, 251, 1), rgba(244, 250, 255, 1));
  border-color: rgba(20, 155, 215, 0.42);
  box-shadow: 0 18px 32px rgba(14, 69, 102, 0.12);
  text-decoration: none;
  transform: translateY(-1px);
}

.site-nav-feature-mark,
.site-nav-feature-arrow {
  color: #0f79b6;
  font-size: 16px;
  font-weight: 900;
}

.site-nav-feature-copy {
  display: grid;
  gap: 3px;
}

.site-nav-feature-copy strong {
  color: #13283b;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav-feature-copy span {
  color: #5e7082;
  font-size: 12px;
  font-weight: 700;
}

.site-nav-drawer-nav {
  display: grid;
  gap: 24px;
}

.site-nav-group {
  display: grid;
  gap: 10px;
}

.site-nav-group h3 {
  color: #0f4b6d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  margin: 0;
  text-transform: uppercase;
}

.site-nav-accordion {
  border-bottom: 1px solid rgba(214, 228, 239, 0.84);
  padding-bottom: 6px;
}

.site-nav-parent {
  align-items: center;
  background: transparent;
  border: none;
  color: #20374d;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  min-height: 58px;
  padding: 8px 0;
  text-align: left;
  transition: color var(--transition), transform var(--transition);
  width: 100%;
}

.site-nav-parent:hover,
.site-nav-parent:focus-visible,
.site-nav-parent.is-active {
  color: #0d5d8f;
  transform: translateX(2px);
}

.site-nav-parent-main {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: 0;
}

.site-nav-parent-copy {
  display: grid;
  gap: 3px;
}

.site-nav-parent-copy strong {
  color: #15283a;
  font-size: 16px;
  font-weight: 800;
}

.site-nav-parent-copy small {
  color: #607386;
  font-size: 12px;
  font-weight: 700;
}

.site-nav-parent-badge {
  background: rgba(247, 218, 116, 0.18);
  border: 1px solid rgba(216, 151, 46, 0.32);
  border-radius: 999px;
  color: #8b5a10;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 5px 8px;
  text-transform: uppercase;
}

.site-nav-chevron {
  color: #4c6277;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 700;
  transition: transform 220ms ease, color 220ms ease;
}

.site-nav-parent.is-open .site-nav-chevron {
  color: #0d5d8f;
  transform: rotate(90deg);
}

.site-nav-panel {
  display: grid;
  gap: 2px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 0 0 24px;
  transition: max-height 220ms ease, opacity 180ms ease, padding-top 220ms ease;
}

.site-nav-panel.is-open {
  opacity: 1;
  padding-top: 4px;
}

.site-nav-child,
.site-nav-row {
  align-items: center;
  border-radius: 12px;
  color: #324b62;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  justify-content: space-between;
  min-height: 44px;
  padding: 8px 10px;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.site-nav-child:hover,
.site-nav-child:focus-visible,
.site-nav-row:hover,
.site-nav-row:focus-visible {
  background: rgba(234, 244, 252, 0.9);
  color: #0d5d8f;
  text-decoration: none;
  transform: translateX(2px);
}

.site-nav-child-strong,
.site-nav-row-strong {
  color: #133b5a;
  font-weight: 800;
}

.site-nav-row {
  border-bottom: 1px solid rgba(214, 228, 239, 0.84);
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}

.site-nav-row:last-child {
  border-bottom: none;
}

.site-nav-row-arrow {
  color: #5d7185;
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 800;
}

.site-nav-child[aria-current="page"],
.site-nav-row[aria-current="page"],
.site-nav-child.is-active,
.site-nav-row.is-active {
  background: rgba(234, 244, 252, 0.96);
  color: #0d5d8f;
}

.site-nav-parent-premium .site-nav-parent-copy strong {
  color: #5b3e0a;
}

.site-nav-footer {
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(219, 232, 242, 0.94);
  display: grid;
  gap: 12px;
  padding: 14px 18px calc(16px + env(safe-area-inset-bottom, 0px));
}

.site-nav-account {
  align-items: center;
  background: #f7fafd;
  border: 1px solid #d6e5f2;
  border-radius: 14px;
  color: #20374d;
  cursor: pointer;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 10px 14px;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.site-nav-account:hover,
.site-nav-account:focus-visible {
  background: #eef6fc;
  border-color: rgba(20, 155, 215, 0.44);
  color: #0d5d8f;
}

.site-nav-language {
  align-items: center;
  color: #52677c;
  display: flex;
  font-size: 12px;
  font-weight: 700;
  justify-content: space-between;
  padding: 2px 2px;
}

.site-nav-language .language-select {
  background: #f7fafd;
  border: 1px solid #d6e5f2;
  border-radius: 8px;
  color: #20374d;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
}

.site-nav-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.site-nav-footer-links a {
  color: #52677c;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav-footer-links a:hover,
.site-nav-footer-links a:focus-visible {
  color: #0d5d8f;
}

.site-nav-signoff {
  color: #64788b;
  display: grid;
  gap: 4px;
  margin: 0;
}

.site-nav-signoff strong {
  color: #13283b;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav-signoff span {
  font-size: 11px;
  font-weight: 700;
}

.menu-icon {
  border-radius: 50%;
  display: inline-block;
  flex: 0 0 10px;
  height: 10px;
  width: 10px;
}

.menu-icon.i-foryou {
  background: radial-gradient(circle at 32% 35%, #89d5f3 0 30%, #0a84bf 68%);
}

.menu-icon.i-bats {
  background: linear-gradient(145deg, #f1c98a, #bf7c33);
}

.menu-icon.i-accessories {
  background: linear-gradient(145deg, #6f8a9d, #3c4f61);
}

.menu-icon.i-premium {
  background: linear-gradient(145deg, #f7da74, #d8972e);
}

.menu-icon.i-team {
  background: linear-gradient(145deg, #5cb685, #257e54);
}

.menu-icon.i-help {
  background: linear-gradient(145deg, #9fa8ff, #5b66c4);
}

body.nav-drawer-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .site-nav-drawer,
  .site-nav-parent,
  .site-nav-feature,
  .site-nav-row,
  .site-nav-child,
  .site-nav-panel,
  .site-nav-chevron,
  .site-nav-close,
  .site-nav-account {
    transition: none;
  }
}

/* Home carousel */
.home-carousel {
  background: linear-gradient(180deg, #081724 0%, #0b2c43 38%, #0e4b6e 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.home-carousel-viewport { overflow: hidden; }
.home-carousel-track {
  display: flex;
  transition: transform 0.65s ease;
  will-change: transform;
}
.home-carousel-slide {
  align-items: center;
  background: var(--slide-bg);
  display: flex;
  flex: 0 0 100%;
  isolation: isolate;
  min-height: clamp(620px, 72vh, 820px);
  overflow: hidden;
  padding: 74px 0 124px;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}
.home-carousel-slide::before {
  background: var(--slide-overlay, linear-gradient(95deg, rgba(3,20,32,0.94) 0%, rgba(3,20,32,0.82) 34%, rgba(3,20,32,0.44) 60%, rgba(3,20,32,0.1) 100%));
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}
.home-carousel-slide::after {
  background: radial-gradient(circle at 84% 48%, rgba(176, 224, 255, 0.18), rgba(176, 224, 255, 0) 58%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}
.home-carousel-bg {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: var(--slide-bg-pos, center);
  opacity: var(--slide-image-opacity, 0.62);
  position: absolute;
  width: 100%;
  z-index: 0;
  transition: opacity 0.45s ease, transform 0.9s ease;
  filter: saturate(1.04) contrast(1.03);
}
.home-carousel-content {
  position: relative;
  z-index: 3;
  max-width: min(680px, 60%);
  text-shadow: 0 2px 22px rgba(2, 14, 22, 0.48);
}
.carousel-kicker {
  background: rgba(10, 30, 45, 0.42);
  border: 1px solid rgba(173, 221, 248, 0.38);
  border-radius: 999px;
  color: #eaf7ff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Sora", "Manrope", "Inter", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
  margin: 0 0 18px;
  padding: 9px 14px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.carousel-kicker::before {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  background: linear-gradient(135deg, rgba(138,216,255,0.62), rgba(138,216,255,0.92));
  border: 1px solid rgba(138,216,255,0.8);
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.7), 0 0 0 3px rgba(138,216,255,0.08);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.home-carousel h1,
.home-carousel h2 {
  color: #ffffff;
  font-family: "Sora", "Manrope", "Inter", sans-serif;
  font-size: clamp(42px, 5.1vw, 74px);
  line-height: 0.98;
  margin-bottom: 14px;
  max-width: 700px;
  letter-spacing: -0.052em;
  font-weight: 900;
}
.home-carousel p:not(.carousel-kicker) {
  color: rgba(236,247,255,0.97);
  font-size: clamp(17px, 1.55vw, 21px);
  margin: 0 0 26px;
  max-width: 600px;
  line-height: 1.58;
  font-weight: 500;
}
.carousel-meta {
  align-items: center;
  color: rgba(198, 227, 245, 0.95);
  display: flex;
  flex-wrap: wrap;
  font-size: 11px;
  font-weight: 800;
  gap: 8px 12px;
  letter-spacing: 0.09em;
  margin: -8px 0 26px;
  text-transform: uppercase;
}
.carousel-meta span {
  align-items: center;
  display: inline-flex;
  gap: 12px;
}
.carousel-meta span:not(:last-child)::after {
  color: rgba(198, 227, 245, 0.68);
  content: "•";
}
.carousel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.carousel-actions .btn {
  min-height: 46px;
  padding: 11px 18px;
}
.home-carousel .btn-primary {
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #edf8ff 100%);
  border: 1px solid rgba(255, 255, 255, 0.88);
  color: #083658;
  display: inline-flex;
  gap: 8px;
  box-shadow: 0 12px 24px rgba(8, 18, 30, 0.24);
}
.home-carousel .btn-primary::after {
  content: "→";
  font-size: 13px;
  transition: transform 0.2s ease;
}
.home-carousel .btn-primary:hover {
  background: #ffffff;
  box-shadow: 0 16px 30px rgba(8, 18, 30, 0.28);
  transform: translateY(-2px);
}
.home-carousel .btn-primary:hover::after {
  transform: translateX(4px);
}
.home-carousel .btn-secondary {
  background: rgba(9, 33, 50, 0.44);
  border-color: rgba(198, 230, 248, 0.38);
  color: #fff;
  backdrop-filter: blur(7px);
}
.home-carousel .btn-secondary:hover {
  background: rgba(13, 43, 66, 0.66);
  border-color: rgba(210, 236, 250, 0.58);
}
.carousel-control {
  align-items: center;
  background: rgba(237, 246, 253, 0.22);
  border: 1px solid rgba(220, 238, 250, 0.42);
  border-radius: 50%;
  color: #f1f9ff;
  cursor: pointer;
  display: flex;
  font-size: 30px;
  height: 50px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  z-index: 3;
  box-shadow: 0 12px 26px rgba(5, 15, 25, 0.3);
  backdrop-filter: blur(6px);
  transition: background var(--transition), transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.carousel-control:hover {
  background: rgba(245, 252, 255, 0.34);
  border-color: rgba(240, 249, 255, 0.62);
  box-shadow: 0 16px 32px rgba(5, 15, 25, 0.34);
  transform: translateY(calc(-50% - 1px));
}
.carousel-control-prev { left: 24px; }
.carousel-control-next { right: 24px; }
.carousel-footer {
  align-items: center;
  bottom: 26px;
  display: flex;
  gap: 14px;
  justify-content: center;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 3;
}
.carousel-status {
  align-items: baseline;
  color: rgba(226, 244, 255, 0.92);
  display: inline-flex;
  font-family: "Sora", "Manrope", "Inter", sans-serif;
  font-size: 12px;
  font-weight: 800;
  gap: 5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.carousel-status span:nth-child(2) {
  color: rgba(215, 236, 248, 0.62);
}
.carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  pointer-events: auto;
}
.carousel-dots button {
  background: rgba(213, 233, 246, 0.38);
  border: 1px solid rgba(223, 240, 250, 0.22);
  border-radius: 999px;
  cursor: pointer;
  height: 5px;
  padding: 0;
  width: 18px;
  transition: background var(--transition), width var(--transition), border-color var(--transition);
}
.carousel-dots button.active {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.88);
  width: 42px;
}

.home-carousel.is-enhanced .home-carousel-slide .home-carousel-content > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.home-carousel.is-enhanced .home-carousel-slide.is-active .home-carousel-content > * {
  opacity: 1;
  transform: none;
}
.home-carousel.is-enhanced .home-carousel-slide.is-active .home-carousel-bg {
  transform: scale(1.03);
}
.home-carousel.is-enhanced .home-carousel-slide .home-carousel-content > *:nth-child(1) { transition-delay: 60ms; }
.home-carousel.is-enhanced .home-carousel-slide .home-carousel-content > *:nth-child(2) { transition-delay: 120ms; }
.home-carousel.is-enhanced .home-carousel-slide .home-carousel-content > *:nth-child(3) { transition-delay: 180ms; }
.home-carousel.is-enhanced .home-carousel-slide .home-carousel-content > *:nth-child(4) { transition-delay: 220ms; }
.home-carousel.is-enhanced .home-carousel-slide .home-carousel-content > *:nth-child(5) { transition-delay: 260ms; }

/* Shop */
.shop-section { padding: 36px 0 26px; }
.section-note { color: var(--avs-text-muted); margin-bottom: 28px; font-size: 14px; }
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  min-width: 0;
}
.section-heading h2 {
  color: var(--avs-ink);
  font-family: "Sora", "Manrope", "Inter", sans-serif;
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  margin: 0;
  position: relative;
}
.section-heading h2::after {
  background: linear-gradient(90deg, rgba(20,155,215,0.72), rgba(20,155,215,0));
  border-radius: 999px;
  content: "";
  display: block;
  height: 3px;
  margin-top: 10px;
  width: 58px;
}
.section-link {
  color: var(--avs-blue-dark);
  font-size: 14px;
  font-weight: 800;
}
.eyebrow {
  color: var(--avs-accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 10px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  background: linear-gradient(135deg, rgba(20,155,215,0.2), rgba(20,155,215,0.5));
  border: 1px solid rgba(20,155,215,0.45);
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.75), 0 0 0 3px rgba(20,155,215,0.08);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.quick-shop-section {
  padding: 34px 0 8px;
  scroll-margin-top: 112px;
}
.shortcut-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.shortcut-grid a {
  background: var(--avs-silver);
  border: 1.5px solid var(--avs-border);
  border-radius: var(--radius);
  color: var(--avs-ink);
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  min-height: 120px;
  padding: 20px;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  flex: 1 1 calc(25% - 12px) !important;
  min-width: 200px;
}
.shortcut-grid a:hover {
  background: var(--avs-cream);
  border-color: var(--avs-blue);
  box-shadow: var(--shadow-blue);
  transform: translateY(-2px);
}
.shortcut-grid a.active {
  background: var(--avs-cream);
  border-color: var(--avs-blue);
  box-shadow: var(--shadow-blue);
}
.shortcut-grid span {
  color: var(--avs-accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.shortcut-grid strong {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.category-section { padding: 46px 0 8px; scroll-margin-top: 84px; }
.shop-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.shop-category-card {
  align-items: stretch;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,250,254,0.98));
  border: 1.5px solid rgba(166, 194, 216, 0.72);
  border-radius: 18px;
  cursor: pointer;
  display: grid;
  grid-template-columns: 116px 1fr;
  min-height: 154px;
  overflow: hidden;
  padding: 0;
  text-align: left;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition), background var(--transition);
  box-shadow: 0 10px 22px rgba(14, 33, 52, 0.04);
}
.shop-category-card:hover,
.shop-category-card.active {
  border-color: rgba(20,155,215,0.7);
  box-shadow: 0 18px 30px rgba(15, 137, 194, 0.12);
  transform: translateY(-3px);
}
.shop-category-card.coming-soon-card {
  background: linear-gradient(180deg, rgba(245,250,255,1), rgba(233,242,251,1));
}
.shop-category-card.coming-soon-card span {
  color: var(--avs-blue-dark);
}
.shop-category-card img {
  width: 100%;
  height: 100%;
  background: var(--avs-cream);
  object-fit: cover;
}
.shop-category-card div { padding: 16px; }
.shop-category-card span {
  color: var(--avs-accent);
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.shop-category-card h3 { font-size: 18px; margin-bottom: 8px; }
.shop-category-card p { color: #4b5563; font-size: 14px; margin: 0; }
.collection-section { padding: 46px 0 10px; scroll-margin-top: 84px; }

/* Premium Brand Credibility Section */
.av-why-section {
  background: linear-gradient(135deg, rgba(20,155,215,0.08) 0%, rgba(20,155,215,0.04) 100%);
  padding: var(--space-16) 0;
  margin: var(--space-12) 0;
  border-top: 1px solid rgba(20,155,215,0.12);
  border-bottom: 1px solid rgba(20,155,215,0.12);
}

.why-content { max-width: 1240px; margin: 0 auto; padding: 0 var(--space-6); }

.why-header { text-align: center; margin-bottom: var(--space-12); }
.why-header h2 { 
  font-size: var(--font-size-h2);
  margin: 0 0 var(--space-3) 0;
  color: var(--avs-ink);
  font-weight: 700;
}
.why-intro {
  font-size: var(--font-size-body-large);
  color: var(--avs-text-muted);
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.why-card {
  background: var(--avs-surface);
  border: 1px solid var(--avs-border);
  border-radius: var(--radius);
  padding: var(--space-8);
  text-align: center;
  transition: all var(--transition-smooth);
}

.why-card:hover {
  border-color: var(--avs-accent);
  box-shadow: var(--shadow-blue);
  transform: translateY(-4px);
}

.why-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: var(--space-4);
  opacity: 0.8;
}

.why-card h3 {
  font-size: var(--font-size-h4);
  margin: 0 0 var(--space-3) 0;
  color: var(--avs-ink);
  font-weight: 600;
}

.why-card p {
  font-size: var(--font-size-small);
  color: var(--avs-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* Find My Bat Signature Experience Section */
.av-find-my-bat-hero {
  background: linear-gradient(135deg, rgba(20, 155, 215, 0.1) 0%, rgba(20, 155, 215, 0.05) 100%);
  color: var(--avs-ink);
  padding: var(--space-10) 0;
  margin: var(--space-12) 0;
  border-radius: var(--radius-xl);
  overflow: visible;
  position: relative;
  border: 1px solid rgba(20, 155, 215, 0.12);
}

.find-my-bat-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-12);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.find-my-bat-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.find-my-bat-text h2 {
  font-size: clamp(28px, 4vw, 36px);
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--avs-ink);
}

.find-my-bat-kicker {
  font-size: var(--font-size-label);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  opacity: 0.7;
  margin: 0;
  font-weight: 600;
  color: var(--avs-blue);
}

.find-my-bat-description {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.6;
  margin: 0;
  max-width: 480px;
  color: var(--avs-text-muted);
}

.find-my-bat-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.btn-find-my-bat {
  align-self: flex-start;
  padding: 11px 24px !important;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-find-my-bat:hover {
  transform: translateX(3px);
}

.find-my-bat-microcopy {
  font-size: 12px;
  color: var(--avs-text-muted);
  margin: 0;
  opacity: 0.7;
}

.find-my-bat-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: auto;
}

.find-my-bat-panel {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(20, 155, 215, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-8);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(20, 155, 215, 0.08);
  animation: slideInUp 0.6s ease-out 0.2s both;
}

.find-my-bat-panel-header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid rgba(20, 155, 215, 0.1);
}

.find-my-bat-panel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--avs-blue);
  color: white;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.find-my-bat-panel-header h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: var(--avs-ink);
}

.find-my-bat-panel-header p {
  font-size: 13px;
  margin: 2px 0 0;
  color: var(--avs-text-muted);
  opacity: 0.8;
}

.find-my-bat-factors {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.find-my-bat-factors li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.factor-icon {
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1.4;
}

.find-my-bat-factors strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--avs-ink);
  margin: 0;
}

.find-my-bat-factors span {
  display: block;
  font-size: 12px;
  color: var(--avs-text-muted);
  opacity: 0.75;
  margin: 2px 0 0;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .find-my-bat-panel {
    animation: none;
  }
}
  animation: float-subtle 3s ease-in-out infinite;
}

@keyframes float-subtle {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.coming-soon-section {
  background: linear-gradient(180deg, #f2f7fd 0%, #e7f1fb 100%);
  border: 1px solid #d4e3f0;
  border-radius: var(--radius);
  margin-top: 18px;
  padding: 32px 22px 18px;
  scroll-margin-top: 84px;
}
.coming-soon-section .section-note {
  margin-bottom: 0;
  max-width: 720px;
}
.coming-soon-section .product-card-coming-soon {
  background: linear-gradient(180deg, #f8fbff 0%, #eff6fd 100%);
  border-color: #bdd8ec;
}
.coming-soon-section .product-card-coming-soon .product-image-wrap::after {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0) 0%, rgba(17, 24, 39, 0.22) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}
.collection-all {
  background: #fff;
  border: 1px solid var(--avs-border);
  border-radius: 8px;
  color: var(--avs-ink);
  cursor: pointer;
  font-weight: 700;
  padding: 10px 14px;
}
.collection-all:hover,
.collection-all.active {
  border-color: var(--avs-blue);
  color: var(--avs-blue-dark);
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.collection-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,250,254,0.98));
  border: 1.5px solid rgba(166, 194, 216, 0.72);
  border-radius: 18px;
  cursor: pointer;
  overflow: hidden;
  padding: 0 0 16px;
  text-align: left;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition), background var(--transition);
  box-shadow: 0 10px 22px rgba(14, 33, 52, 0.04);
}
.collection-card:hover,
.collection-card.active {
  border-color: rgba(20,155,215,0.7);
  box-shadow: 0 18px 30px rgba(15, 137, 194, 0.12);
  transform: translateY(-3px);
}
.collection-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--avs-cream);
  object-fit: cover;
}
.collection-card span {
  color: var(--avs-accent);
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 14px 14px 6px;
  text-transform: uppercase;
}
.collection-card h3 { font-size: 18px; margin: 0 14px 8px; }
.collection-card p { color: #4b5563; font-size: 14px; margin: 0 14px; }

.featured-section {
  display: grid;
  gap: 28px;
  min-width: 0;
  padding: 42px 0 8px;
}
.featured-block {
  border-top: 1px solid rgba(16, 24, 32, 0.78);
  min-width: 0;
  padding-top: 24px;
  position: relative;
}
.product-grid.product-grid-featured {
  align-items: stretch;
  display: flex;
  gap: 18px;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  padding: 0 4px 12px 0;
  scroll-snap-type: x proximity;
  width: 100%;
}
.product-grid.product-grid-featured .product-card {
  flex: 0 0 320px;
  margin-bottom: 4px;
  scroll-snap-align: start;
}
.kit-builder-section {
  align-items: center;
  background: linear-gradient(135deg, var(--avs-blue-deep) 0%, #0a4f73 100%);
  border-radius: var(--radius);
  color: #fff;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 42px 0 0;
  padding: 28px 30px;
  box-shadow: var(--shadow-blue);
  position: relative;
  overflow: hidden;
}
.kit-builder-section::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.kit-builder-section .eyebrow { color: #bfe7fb; }
.kit-builder-section h2 {
  font-size: 28px;
  max-width: 620px;
  letter-spacing: -0.01em;
}
.kit-builder-section p:not(.eyebrow) {
  color: rgba(219,230,238,0.9);
  margin: 0;
  max-width: 680px;
}
.kit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.kit-actions .btn-secondary {
  background: rgba(255,255,255,0.12);
  border-color: rgba(143,201,234,0.5);
  color: #fff;
  backdrop-filter: blur(8px);
}
.kit-actions .btn-secondary:hover {
  background: rgba(255,255,255,0.22);
}
.google-review-section {
  border-top: 1px solid var(--avs-border);
  padding: 48px 0 8px;
  scroll-margin-top: 84px;
}
.google-review-heading {
  align-items: center;
}
.google-review-summary {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  margin-top: 22px;
}
.google-score-card,
.google-review-card {
  background: #ffffff;
  border: 1px solid var(--avs-border);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}
.google-score-card {
  align-content: center;
  display: grid;
  gap: 8px;
  padding: 24px 20px;
  text-align: center;
}
.google-stars {
  color: #f5b400;
  font-size: 26px;
  letter-spacing: 0.12em;
  line-height: 1;
}
.google-score-card strong {
  color: #0f2436;
  font-size: 42px;
  line-height: 1;
}
.google-score-card span {
  color: #536170;
  font-size: 14px;
  font-weight: 700;
}
.google-review-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.google-review-card {
  display: grid;
  gap: 12px;
  padding: 16px 16px 18px;
}
.google-review-meta {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.google-badge {
  background: #e7f3ff;
  border: 1px solid rgba(47, 130, 246, 0.18);
  border-radius: 999px;
  color: #1a4fb3;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 5px 8px;
  text-transform: uppercase;
}
.google-stars-small {
  color: #f5b400;
  font-size: 13px;
  letter-spacing: 0.08em;
}
.google-review-card p {
  color: #374759;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
.google-review-card strong {
  color: #14314e;
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.reviews-section {
  border-top: 1px solid var(--avs-border);
  padding: 48px 0 8px;
  scroll-margin-top: 84px;
}
@media (max-width: 768px) {
  .google-review-summary {
    grid-template-columns: 1fr;
  }
  .google-review-grid {
    grid-template-columns: 1fr;
  }
}
.reviews-heading {
  align-items: center;
}
.reviews-heading .section-note {
  margin-bottom: 0;
  max-width: 620px;
}
.review-summary {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  margin: 22px 0 14px;
}
.review-score-card,
.review-rating-bars,
.review-card,
.review-empty {
  background: #ffffff;
  border: 1px solid var(--avs-border);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.review-score-card {
  display: grid;
  gap: 8px;
  padding: 20px;
}
.review-score-card span {
  color: #5e6d7b;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.review-score-card strong {
  color: #0c2538;
  font-size: 42px;
  line-height: 1;
}
.review-score-card p {
  color: #536170;
  font-size: 14px;
  margin: 0;
}
.review-rating-bars {
  display: grid;
  gap: 10px;
  padding: 18px;
}
.review-bar-row {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: 58px minmax(0, 1fr) 36px;
}
.review-bar-row span,
.review-bar-row strong {
  color: #4e5e6e;
  font-size: 13px;
  font-weight: 800;
}
.review-bar-row strong {
  text-align: right;
}
.review-bar-track {
  background: #e7eff6;
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
}
.review-bar-fill {
  background: linear-gradient(90deg, #0f89c2, #f0b429);
  display: block;
  height: 100%;
}
.reviews-toolbar {
  display: flex;
  justify-content: flex-end;
  margin: 14px 0;
}
.reviews-sort-label {
  color: #405165;
  display: grid;
  font-size: 12px;
  font-weight: 800;
  gap: 6px;
  min-width: 210px;
  text-transform: uppercase;
}
.reviews-sort-label select {
  background: #fff;
  border: 1px solid var(--avs-border);
  border-radius: 8px;
  color: var(--avs-ink);
  font-size: 14px;
  min-height: 42px;
  padding: 8px 10px;
  text-transform: none;
}
.review-list {
  display: grid;
  gap: 14px;
}
.review-card {
  display: grid;
  gap: 10px;
  padding: 18px;
}
.review-card-header {
  align-items: flex-start;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}
.review-card-header strong {
  color: #122335;
  display: block;
  font-size: 16px;
}
.review-stars {
  align-items: center;
  color: #aab6c1;
  display: inline-flex;
  gap: 2px;
  letter-spacing: 0;
  line-height: 1;
}
.review-stars .filled {
  color: #e2a719;
}
.review-card h3 {
  color: #0e1f31;
  font-size: 18px;
  margin: 0;
}
.review-card p {
  color: #374759;
  margin: 0;
}
.review-verified {
  background: #e8f7f1;
  border: 1px solid #bde5d5;
  border-radius: 999px;
  color: #13795b;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 900;
  padding: 5px 8px;
  text-transform: uppercase;
}
.review-card-meta {
  color: #66788a;
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 700;
  gap: 8px 14px;
}
.review-photo {
  border: 1px solid var(--avs-border);
  border-radius: 8px;
  height: 92px;
  object-fit: cover;
  width: 92px;
}
.review-empty {
  color: #586879;
  font-weight: 700;
  padding: 22px;
  text-align: center;
}
.review-error {
  color: #b42318;
}
.review-load-row {
  display: flex;
  justify-content: center;
  padding: 18px 0 0;
}
.review-modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 18px;
  position: fixed;
  z-index: 10050;
}
.review-modal[hidden] {
  display: none;
}
.review-modal-overlay {
  background: rgba(6, 19, 29, 0.58);
  inset: 0;
  position: absolute;
}
.review-modal-dialog {
  background: #ffffff;
  border: 1px solid #dbe8f1;
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(9, 29, 42, 0.28);
  max-height: 92vh;
  max-width: 720px;
  overflow-y: auto;
  padding: 28px;
  position: relative;
  width: min(100%, 720px);
  z-index: 1;
}
.review-modal-close {
  align-items: center;
  background: #f4f8fb;
  border: 1px solid #d8e5ef;
  border-radius: 50%;
  color: #293847;
  cursor: pointer;
  display: inline-flex;
  font-size: 28px;
  height: 36px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  position: absolute;
  right: 16px;
  top: 16px;
  width: 36px;
}
.review-modal-head {
  margin-bottom: 18px;
  padding-right: 38px;
}
.review-modal-head h2 {
  font-size: 26px;
}
.review-modal-head p:not(.eyebrow) {
  color: #526272;
  margin: 0;
}
.review-form {
  display: grid;
  gap: 14px;
}
.review-form label,
.review-rating-field {
  color: #334457;
  display: grid;
  font-size: 13px;
  font-weight: 800;
  gap: 7px;
}
.review-form input,
.review-form select,
.review-form textarea {
  background: #fff;
  border: 1px solid #cfdde8;
  border-radius: 8px;
  color: var(--avs-ink);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  min-height: 42px;
  padding: 10px 12px;
}
.review-form textarea {
  min-height: 116px;
  resize: vertical;
}
.review-photo-field > small {
  color: #5b6e81;
  font-size: 12px;
  font-weight: 700;
}
.review-photo-help {
  color: #5b6e81;
  font-size: 12px;
  font-weight: 700;
  margin: -2px 0 0;
}
.review-photo-preview {
  align-items: center;
  display: inline-flex;
  gap: 12px;
}
.review-photo-preview img {
  border: 1px solid #d4e3ef;
  border-radius: 8px;
  height: 76px;
  object-fit: cover;
  width: 76px;
}
.review-photo-preview p {
  color: #3b4d60;
  font-size: 12px;
  font-weight: 700;
  margin: 0;
  max-width: 380px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.review-photo-remove {
  align-self: flex-start;
  min-height: 34px;
  padding: 8px 14px;
}
.review-rating-field {
  border: 1px solid #d9e5ef;
  border-radius: 8px;
  margin: 0;
  padding: 12px;
}
.review-rating-field legend {
  padding: 0 6px;
}
.review-rating-input {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.review-rating-input label {
  display: inline-grid;
}
.review-rating-input input {
  opacity: 0;
  position: absolute;
}
.review-rating-input span {
  background: #f7fbfe;
  border: 1px solid #d4e3ef;
  border-radius: 999px;
  color: #304355;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  min-height: 36px;
  padding: 8px 12px;
}
.review-rating-input input:checked + span {
  background: #fff7e6;
  border-color: #e7b84c;
  color: #7a4d00;
}
.review-rating-input input:focus-visible + span {
  outline: 2px solid #0f89c2;
  outline-offset: 2px;
}
.review-honeypot {
  left: -10000px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
}
.review-form-message {
  color: #526272;
  font-size: 13px;
  font-weight: 800;
  margin: 0;
  min-height: 18px;
}
.review-form-message.success {
  color: #13795b;
}
.review-form-message.error {
  color: #b42318;
}
.review-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
body.review-modal-open {
  overflow: hidden;
}
.shop-section { scroll-margin-top: 84px; }
.shop-header-row {
  align-items: end;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.95), rgba(244, 249, 253, 0.95)),
    radial-gradient(circle at 90% 16%, rgba(20, 155, 215, 0.07), transparent 38%);
  border: 1px solid rgba(184, 207, 226, 0.82);
  border-radius: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 18px;
  margin-bottom: 12px;
  overflow: hidden;
  padding: 12px 18px;
  position: relative;
  box-shadow: 0 6px 18px rgba(6, 55, 85, 0.06);
}
.shop-header-row::before {
  background: linear-gradient(180deg, rgba(20, 155, 215, 0.92), rgba(7, 95, 157, 0.82));
  border-radius: 999px;
  content: "";
  height: 36px;
  left: 18px;
  opacity: 0.3;
  position: absolute;
  top: -12px;
  width: 2px;
}
.shop-header-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}
.shop-header-eyebrow {
  margin-bottom: 0;
  letter-spacing: 0.14em;
}
.shop-header-row h1 {
  color: #102236;
  font-family: "Sora", "Manrope", "Inter", sans-serif;
  font-size: clamp(28px, 2.55vw, 34px);
  letter-spacing: -0.035em;
  line-height: 1.06;
  margin: 0;
  text-transform: none;
}
.shop-header-row .section-note {
  color: #425467;
  font-size: 14px;
  line-height: 1.42;
  margin: 0;
  max-width: 58ch;
}
.shop-summary-row {
  align-items: start;
  display: grid;
  gap: 8px 12px;
  grid-template-columns: minmax(0, 1fr) auto;
  min-width: 0;
}
.shop-header-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.shop-filter-result-bar {
  align-items: center;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
}
.shop-filter-result-bar[hidden] {
  display: none;
}
.shop-filter-result-label {
  align-items: center;
  appearance: none;
  background: #ebf6ff;
  border: 1px solid #bfd9eb;
  border-radius: 999px;
  color: #0f5278;
  cursor: pointer;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  min-height: 30px;
  padding: 6px 10px;
}
.shop-filter-result-label::after {
  content: ' x';
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  margin-left: 8px;
}
.shop-filter-clear-btn {
  background: transparent;
  border: none;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  color: #1f4a68;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  min-height: 24px;
  padding: 0;
}
.shop-filter-clear-btn:hover {
  border-bottom-color: rgba(31, 74, 104, 0.48);
}
.shop-filter-clear-btn:focus-visible {
  outline: 2px solid rgba(15, 127, 181, 0.55);
  outline-offset: 2px;
}
.shop-toolbar {
  align-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(245,249,253,0.98));
  border: 1px solid var(--avs-border);
  border-radius: var(--radius);
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  margin: 0 0 12px;
  padding: 12px 14px;
  box-shadow: var(--shadow-xs);
  position: relative;
  overflow: hidden;
}
.shop-toolbar::after {
  content: "";
  position: absolute;
  inset: -30% auto auto -20%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(20,155,215,0.08), transparent 65%);
  pointer-events: none;
}
.search-field {
  color: var(--avs-ink-soft);
  display: none;
  flex-direction: column;
  font-size: 12px;
  font-weight: 800;
  gap: 6px;
  letter-spacing: 0;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.search-field input {
  border: 1px solid var(--avs-border-strong);
  border-radius: 12px;
  color: var(--avs-ink);
  font-size: 15px;
  letter-spacing: 0;
  min-height: 44px;
  padding: 10px 12px;
  text-transform: none;
  background: #fff;
  box-shadow: inset 0 1px 1px rgba(13,21,32,0.02);
}
.quick-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
}
.quick-filter {
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--avs-border-strong);
  border-radius: 999px;
  color: var(--avs-ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  min-height: 38px;
  padding: 8px 12px;
  transition: all var(--transition);
}
.quick-filter:hover,
.quick-filter.active {
  background: linear-gradient(180deg, rgba(234,246,253,1), rgba(227,241,249,0.9));
  border-color: rgba(20,155,215,0.8);
  color: var(--avs-blue-dark);
  box-shadow: 0 8px 18px rgba(15,137,194,0.12);
}
.quick-filter-link {
  align-items: center;
  display: inline-flex;
  text-decoration: none;
}
.quick-filter-link:hover {
  text-decoration: none;
}
.quick-filter:hover,
.quick-filter.active {
  background: #eaf6fd;
  border-color: var(--avs-blue);
  color: var(--avs-blue-dark);
  box-shadow: 0 8px 18px rgba(15,137,194,0.12);
}
.search-field input:focus,
.quick-filter:focus-visible {
  box-shadow: 0 0 0 3px rgba(15, 137, 194, 0.18);
}

.product-meta {
  align-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(236,247,253,0.96));
  border: 1px solid rgba(20,155,215,0.28);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.72);
  color: #0a577f;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  gap: 7px;
  letter-spacing: 0.06em;
  margin: 0;
  max-width: 100%;
  min-height: 30px;
  padding: 5px 11px;
  text-transform: uppercase;
  transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.product-meta::before {
  background:
    linear-gradient(90deg, currentColor 0 0) center / 10px 1.5px no-repeat,
    linear-gradient(90deg, currentColor 0 0) center 35% / 10px 1.5px no-repeat,
    linear-gradient(90deg, currentColor 0 0) center 65% / 10px 1.5px no-repeat;
  border: 1px solid currentColor;
  border-radius: 5px;
  content: "";
  flex-shrink: 0;
  height: 12px;
  opacity: 0.92;
  width: 12px;
}
.product-meta:hover {
  background: linear-gradient(180deg, #ffffff, rgba(236,247,253,1));
  border-color: rgba(20,155,215,0.44);
  box-shadow: 0 6px 14px rgba(7,95,157,0.1);
  transform: translateY(-1px);
}
.product-meta:empty {
  display: none;
}

@media (prefers-reduced-motion: no-preference) {
  .shop-header-row {
    animation: shopHeaderReveal 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }
}
@keyframes shopHeaderReveal {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-grid {
  align-items: stretch;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}
.product-grid.search-active .product-card.search-match {
  border-color: rgba(20, 155, 215, 0.58);
  box-shadow: 0 12px 26px rgba(15, 137, 194, 0.14);
}
.product-grid.search-active .product-card.search-match .product-card-body h3 {
  color: #0d5d8f;
}
.product-empty {
  border: 1px dashed var(--avs-border-strong);
  border-radius: var(--radius);
  grid-column: 1 / -1;
  padding: 28px;
  text-align: center;
  background: rgba(244,248,252,0.8);
}
.product-empty h3 { font-size: 20px; }
.product-empty p {
  color: var(--avs-text-muted);
  margin: 0 auto 18px;
  max-width: 520px;
}
.search-result-focus {
  animation: search-result-pulse 1.2s ease;
}
@keyframes search-result-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(15, 137, 194, 0.42);
    transform: translateY(0);
  }
  42% {
    box-shadow: 0 0 0 8px rgba(15, 137, 194, 0.18);
    transform: translateY(-2px);
  }
  100% {
    box-shadow: var(--shadow-sm);
    transform: translateY(0);
  }
}
.product-card {
  --promotion-zone-height: 58px;
  border: 1.5px solid var(--avs-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(249,252,255,0.99));
  box-shadow: var(--shadow-md);
  transition: border-color var(--transition-smooth), transform var(--transition-smooth), box-shadow var(--transition-smooth), background var(--transition-smooth);
  position: relative;
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,155,215,0) 0%, rgba(20,155,215,0.02) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-smooth);
  z-index: 1;
}
.product-card:hover {
  border-color: rgba(20,155,215,0.85);
  box-shadow: var(--shadow-premium);
  transform: translateY(-6px);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfe 100%);
}
.product-card:hover::before {
  opacity: 1;
}
.product-image-wrap {
  background: linear-gradient(180deg, #eef3f8 0%, #f8fbff 100%);
  position: relative;
}
.product-image-scroll {
  aspect-ratio: 3 / 4;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.product-image-scroll::-webkit-scrollbar { display: none; }
.product-image-scroll:focus {
  outline: 2px solid var(--avs-blue);
  outline-offset: -2px;
}
.product-image-track {
  display: flex;
  height: 100%;
}
.product-card img {
  aspect-ratio: 3 / 4;
  background: #eef2f5;
  display: block;
  flex: 0 0 100%;
  height: 100%;
  object-fit: cover;
  scroll-snap-align: start;
  width: 100%;
}
.product-gallery-dots {
  align-items: center;
  bottom: 10px;
  display: flex;
  gap: 5px;
  justify-content: center;
  left: 50%;
  padding: 4px 7px;
  position: absolute;
  transform: translateX(-50%);
  z-index: 2;
}
.product-gallery-dots span {
  background: rgba(16, 24, 32, 0.28);
  border-radius: 999px;
  height: 6px;
  width: 6px;
}
.product-gallery-dots span.active {
  background: var(--avs-blue);
  width: 18px;
}
.product-gallery-hint {
  background: rgba(16, 24, 32, 0.78);
  border-radius: 999px;
  bottom: 10px;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  position: absolute;
  right: 10px;
  text-transform: uppercase;
  z-index: 2;
}
.product-badge {
  background: linear-gradient(135deg, #ffce4d 0%, #f39f0a 100%);
  border: 1px solid rgba(183, 110, 13, 0.22);
  border-radius: 999px;
  color: #1f1300;
  font-size: 10px;
  font-weight: 900;
  left: 12px;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  position: absolute;
  text-transform: uppercase;
  top: 12px;
  box-shadow: 0 8px 18px rgba(243, 159, 10, 0.22);
}
.product-card-coming-soon .product-badge {
  background: var(--avs-sale);
  color: var(--avs-ink);
}
.product-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
  padding: 12px 12px 13px;
}
.product-card-identity {
  display: grid;
  gap: 6px;
}
.product-card-body h3 {
  display: -webkit-box;
  font-family: "Sora", "Manrope", "Inter", sans-serif;
  font-size: 17px;
  line-height: 1.25;
  margin: 0;
  overflow: hidden;
  letter-spacing: -0.03em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.product-card-compare {
  align-items: center;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(20, 155, 215, 0.35);
  border-radius: 999px;
  color: var(--avs-blue-dark);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 7px 10px;
  position: absolute;
  right: 44px;
  text-transform: uppercase;
  top: 10px;
  z-index: 3;
}
.product-card-compare.active {
  background: #14263e;
  border-color: #14263e;
  color: #fff;
}
.product-card-wishlist,
.wishlist-toggle {
  align-items: center;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  color: #5e6774;
  cursor: pointer;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  gap: 6px;
  justify-content: center;
  min-height: 28px;
  padding: 6px 10px;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 3;
}
.product-card-wishlist.active,
.wishlist-toggle.active {
  background: rgba(237, 71, 86, 0.12);
  border-color: rgba(237, 71, 86, 0.35);
  color: #d92d4d;
}
.product-card-wishlist {
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.08);
}
.product-category { font-size: 12px; text-transform: uppercase; letter-spacing: 0; color: var(--avs-accent); font-weight: 700; }
.product-desc {
  color: #4b5563;
  display: -webkit-box;
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.product-card-promotion {
  align-items: flex-start;
  display: flex;
  min-height: var(--promotion-zone-height);
}
.product-offer-highlight {
  background: linear-gradient(120deg, #fff8ef 0%, #fff3df 100%);
  border: 1px solid #edcf9d;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(153, 94, 20, 0.12);
  color: #694004;
  display: grid;
  gap: 3px;
  margin-top: 0;
  overflow: hidden;
  padding: 8px 10px;
  position: relative;
  width: 100%;
  border-left: 3px solid rgba(165, 96, 9, 0.62);
}
.product-offer-highlight strong {
  align-items: center;
  display: inline-flex;
  gap: 5px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.product-offer-icon {
  font-size: 10px;
  line-height: 1;
}
.product-offer-highlight span {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}
.product-specs,
.size-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.product-card-attributes {
  align-content: flex-start;
  display: flex;
  min-height: 34px;
}
.product-stock-note {
  color: #374151;
  font-size: 12px;
  font-weight: 650;
  margin: 0;
}
.product-specs span,
.size-list span {
  background: #f7fafc;
  border: 1px solid #d3e3ef;
  border-radius: 999px;
  color: #374151;
  font-size: 11px;
  font-weight: 700;
  min-height: 24px;
  padding: 3px 8px;
  display: inline-flex;
  align-items: center;
}
.size-list span {
  background: var(--avs-cream);
  border-color: var(--avs-border);
}
.product-card-commerce {
  display: grid;
  gap: 5px;
}
.product-pricing { display: flex; flex-direction: column; gap: 4px; margin-top: 0; min-height: 49px; }
.product-mrp { color: #7b8696; font-size: 12px; font-weight: 600; }
.product-mrp span { text-decoration: line-through; text-decoration-thickness: 1px; }
.product-price-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.product-price { font-size: 20px; font-weight: 800; letter-spacing: -0.01em; color: #0f172a; }
.discount-badge {
  background: #edf7fd;
  border: 1px solid #c8e4f5;
  border-radius: 999px;
  color: var(--avs-blue-dark);
  font-size: 11px;
  font-weight: 750;
  padding: 2px 7px;
}
.product-controls {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  margin-top: auto;
  padding-top: 4px;
}
.product-card-actions {
  margin-top: auto;
}
.view-details-btn {
  background: #f8fbff;
  border: 1px solid #9bb8ce;
  border-radius: var(--radius);
  color: var(--avs-ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  min-height: 40px;
  padding: 8px 10px;
  text-transform: uppercase;
}
.view-details-btn:hover {
  background: #edf6fd;
  border-color: var(--avs-blue);
  color: var(--avs-blue-dark);
}
.product-primary-action {
  display: flex;
  align-items: center;
  gap: 10px;
}
.quantity-stepper {
  display: inline-grid;
  grid-template-columns: 36px minmax(36px, 1fr) 36px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--avs-border);
  border-radius: 8px;
  background: #fff;
}
.quantity-stepper button {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--avs-cream);
  color: var(--avs-ink);
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.quantity-stepper button:hover {
  background: #d9edf8;
  color: var(--avs-blue-dark);
}
.quantity-count {
  min-width: 36px;
  padding: 0 8px;
  text-align: center;
  font-weight: 700;
}
.product-quantity { width: 150px; max-width: 100%; }
.qty-input {
  width: 56px;
  padding: 8px;
  border: 1px solid var(--avs-border);
  border-radius: 8px;
  text-align: center;
}
.add-to-cart-btn { flex: 1; background: #0a1118; color: #fff; border: none; border-radius: 999px; padding: 10px 16px; font-weight: 700; font-size: 12px; letter-spacing: 0.04em; cursor: pointer; min-height: 40px; text-transform: uppercase; transition: background var(--transition), box-shadow var(--transition), transform var(--transition); }
.add-to-cart-btn:hover { background: #063755; box-shadow: var(--shadow-blue); transform: translateY(-1px); }
.product-coming-soon-btn {
  background: #f8fbff;
  border: 1px solid #9bb8ce;
  border-radius: var(--radius);
  color: #1b4662;
  display: inline-flex;
  flex: 1;
  font-size: 13px;
  font-weight: 800;
  justify-content: center;
  min-height: 40px;
  padding: 10px;
  text-align: center;
  text-transform: uppercase;
}
.product-coming-soon-btn:hover {
  background: #edf6fd;
  border-color: #6d99b6;
  color: #0d3f61;
  text-decoration: none;
}

.product-card-compact {
  --promotion-zone-height: 0px;
}

@media (max-width: 900px) {
  .product-card {
    --promotion-zone-height: 0px;
  }

  .product-card-promotion:not(.has-offer) {
    display: none;
  }
}

/* ============================================================
   Shop / Product Listing page — scoped premium redesign.
   Everything below targets ONLY .shop-page-container,
   .shop-product-grid and .shop-product-card (added exclusively
   in shop.html + productCard({ variant: 'shop' })).
   It does NOT alter .product-grid.product-grid-featured (Home),
   .product-card-compact, Find My Bat, Product Detail, Cart, or
   any other shared product-card usage.
   ============================================================ */
.shop-page-container {
  max-width: 1400px;
}

.shop-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px 24px;
}

@media (max-width: 1180px) {
  .shop-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 18px;
  }
}

@media (max-width: 860px) {
  .shop-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 16px;
  }
}

@media (max-width: 560px) {
  .shop-product-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }
}

.shop-product-card {
  --promotion-zone-height: 32px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.2s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.2s ease;
}
.shop-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
  border-color: rgba(20, 155, 215, 0.4);
}
.shop-product-card:active {
  transform: translateY(-1px);
}

/* Consistent, contained image viewport (no cropping, same height per row) */
.shop-product-card .product-image-wrap {
  background: #f3f6fa;
}
.shop-product-card .product-image-scroll {
  aspect-ratio: 1 / 1;
}
.shop-product-card img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #f3f6fa;
  padding: 16px;
}

/* Compact top-row controls over the image */
.shop-product-card .product-badge {
  top: 10px;
  left: 10px;
  font-size: 9.5px;
  padding: 4px 9px;
}
.shop-product-card .product-card-compare {
  top: 10px;
  right: 42px;
  font-size: 10px;
  padding: 5px 9px;
  background: rgba(255, 255, 255, 0.92);
}
.shop-product-card .product-card-wishlist {
  top: 10px;
  right: 10px;
  min-height: 26px;
  padding: 6px 8px;
}

/* Information hierarchy: category → title → description → specs → stock */
.shop-product-card .product-category {
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.05em;
  color: #7b8696;
}
.shop-product-card .product-card-body h3 {
  font-size: 17.5px;
  font-weight: 800;
  color: #0f172a;
}
.shop-product-card .product-desc {
  color: #8a93a1;
  font-size: 12.5px;
}
.shop-product-card .product-specs span {
  font-size: 10.5px;
  padding: 3px 8px;
  min-height: 22px;
}
.shop-product-card .product-stock-note {
  font-size: 11.5px;
  font-weight: 600;
  color: #6b7280;
}
.shop-product-card .product-stock-note.product-low-stock {
  color: #b45309;
  font-weight: 750;
}

/* Compact single-line promotional callout (detail text via tooltip) */
.shop-product-card .product-card-promotion {
  min-height: var(--promotion-zone-height);
}
.shop-offer-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(120deg, #fff8ef 0%, #fff3df 100%);
  border: 1px solid #edcf9d;
  color: #694004;
  font-size: 11px;
  font-weight: 750;
  cursor: default;
}
.shop-offer-chip span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Pricing hierarchy: selling price dominant, MRP muted, discount compact */
.shop-product-card .product-price {
  font-size: 21px;
  font-weight: 850;
}
.shop-product-card .product-mrp {
  font-size: 11.5px;
}
.shop-product-card .discount-badge {
  font-weight: 800;
}

/* Equal-width, equal-height CTAs anchored to the bottom */
.shop-product-card .product-controls {
  gap: 8px;
}
.shop-product-card .view-details-btn,
.shop-product-card .add-to-cart-btn,
.shop-product-card .product-coming-soon-btn {
  min-height: 42px;
  border-radius: 10px;
}
.shop-product-card .product-primary-action,
.shop-product-card .add-to-cart-btn,
.shop-product-card .product-coming-soon-btn {
  width: 100%;
}

@media (max-width: 560px) {
  .shop-product-card img {
    padding: 12px;
  }
  .shop-product-card .product-card-body h3 {
    font-size: 16.5px;
  }
}

.recent-sale-popup {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(13, 21, 32, 0.08);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(13, 21, 32, 0.2);
  display: grid;
  gap: 10px;
  grid-template-columns: 64px minmax(0, 1fr);
  left: 20px;
  max-width: calc(100vw - 40px);
  min-height: 102px;
  opacity: 0;
  overflow: hidden;
  padding: 10px 40px 10px 10px;
  pointer-events: none;
  position: fixed;
  top: auto;
  bottom: 22px;
  transform: translateY(18px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  width: 332px;
  z-index: 70;
}

.recent-sale-popup.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.recent-sale-image {
  aspect-ratio: 1;
  background: var(--avs-silver);
  border-radius: 6px;
  height: 64px;
  object-fit: cover;
  width: 64px;
}

.recent-sale-content {
  min-width: 0;
}

.recent-sale-buyer {
  color: #20242d;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 6px;
}

.recent-sale-content h3 {
  color: #20242d;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
  text-transform: uppercase;
}

.recent-sale-meta {
  align-items: center;
  color: #20242d;
  display: flex;
  flex-wrap: wrap;
  font-size: 11px;
  gap: 8px;
  margin-top: 8px;
}

.recent-sale-verified {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.recent-sale-verified::before {
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "✓";
  display: inline-grid;
  font-size: 11px;
  font-weight: 900;
  height: 16px;
  line-height: 1;
  place-items: center;
  width: 16px;
}

.recent-sale-close {
  align-items: center;
  background: transparent;
  border: none;
  border-radius: 50%;
  color: #20242d;
  cursor: pointer;
  display: inline-flex;
  font-size: 34px;
  height: 36px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  position: absolute;
  right: 14px;
  top: 14px;
  width: 36px;
}

.recent-sale-close:hover {
  background: #f2f6fa;
}

.recent-sale-progress {
  animation: recent-sale-progress 7.2s linear forwards;
  background: #20242d;
  bottom: 0;
  height: 4px;
  left: 0;
  position: absolute;
  transform-origin: left center;
  width: 100%;
}

@keyframes recent-sale-progress {
  from { transform: scaleX(1); }
  to { transform: scaleX(0); }
}

@media (max-width: 640px) {
  .recent-sale-popup {
    bottom: max(16px, calc(env(safe-area-inset-bottom, 0px) + 12px));
    gap: 10px;
    grid-template-columns: 62px minmax(0, 1fr);
    left: 16px;
    max-width: calc(100vw - 32px);
    min-height: 92px;
    padding: 9px 38px 11px 9px;
    width: calc(100vw - 32px);
  }

  .recent-sale-image {
    height: 62px;
    width: 62px;
  }

  .recent-sale-buyer {
    font-size: 13px;
    margin-bottom: 4px;
  }

  .recent-sale-content h3 {
    font-size: 14px;
    line-height: 1.35;
  }

  .recent-sale-meta {
    font-size: 12px;
    gap: 8px;
    margin-top: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .recent-sale-popup {
    transition: none;
  }

  .recent-sale-progress {
    animation: none;
    transform: scaleX(1);
  }
}

/* Story and contact */
.story-section,
.contact-section {
  border-top: 1px solid var(--avs-border);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  padding: 52px 0;
  scroll-margin-top: 84px;
}
.story-section h2,
.contact-section h2 {
  font-size: 30px;
  max-width: 460px;
}
.story-copy p,
.contact-section p {
  color: #374151;
  margin: 0 0 14px;
}
.story-copy h3 {
  color: #0f172a;
  font-size: 20px;
  margin: 20px 0 10px;
}
.story-premium {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  padding: 34px 0 42px;
}
.story-hero {
  display: grid;
  gap: 10px;
}
.story-hero h1 {
  color: #0a1d2d;
  display: grid;
  gap: 4px;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  margin: 0;
}
.story-highlight {
  color: var(--avs-blue);
}
.story-products h2 {
  max-width: none;
}
.story-intro-copy {
  max-width: 980px;
}
.story-intro-copy p {
  color: #314255;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  margin: 0 0 14px;
  max-width: 790px;
}
.story-specs {
  display: grid;
  gap: 18px;
}
.story-specs-header {
  display: grid;
  gap: 8px;
}
.story-specs-header h2 {
  color: #0b2133;
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  letter-spacing: -0.04em;
  margin: 0;
}
.story-feature-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.story-feature-item {
  background: #ffffff;
  border: 1px solid rgba(20, 50, 78, 0.12);
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(15, 30, 46, 0.05);
  display: grid;
  gap: 8px;
  min-height: 168px;
  padding: 16px 14px 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.story-feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(15, 30, 46, 0.08);
}
.story-feature-icon {
  align-items: center;
  background: linear-gradient(145deg, rgba(10, 120, 208, 0.12), rgba(13, 29, 46, 0.03));
  border: 1px solid rgba(10, 120, 208, 0.18);
  border-radius: 12px;
  color: var(--avs-blue);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}
.story-feature-icon svg {
  height: 19px;
  width: 19px;
}
.story-feature-item strong {
  color: #102c43;
  font-size: 0.83rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-transform: uppercase;
}
.story-feature-item span {
  color: #52657a;
  font-size: 0.92rem;
  line-height: 1.5;
}
.story-philosophy,
.story-av-message {
  background: linear-gradient(180deg, rgba(244, 250, 255, 0.8), rgba(255,255,255,0.9));
  border: 1px solid rgba(18, 59, 86, 0.1);
  border-radius: 18px;
  padding: 24px 22px;
}
.story-philosophy {
  display: grid;
  gap: 10px;
}
.story-philosophy h3 {
  color: #0a1d2d;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  letter-spacing: -0.04em;
  line-height: 1.12;
  margin: 0;
}
.story-philosophy p,
.story-av-message p {
  color: #3d4f61;
  line-height: 1.7;
  margin: 0;
}
.story-av-message {
  background: linear-gradient(180deg, #071d2d 0%, #0d2b40 100%);
  border-color: rgba(117, 202, 255, 0.18);
  box-shadow: 0 18px 34px rgba(8, 29, 45, 0.15);
  display: grid;
  gap: 14px;
  padding: 30px 24px;
}
.story-emotion-line {
  color: #ddf2ff;
  font-size: clamp(1.35rem, 2.2vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.25;
}
.story-av-message p {
  color: rgba(219, 235, 243, 0.9);
}
.story-av-message strong {
  color: #7fe0ff;
  font-size: clamp(1.15rem, 2vw, 1.8rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  text-transform: none;
}
.story-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.story-points span {
  background: var(--avs-cream);
  border: 1px solid var(--avs-border);
  border-radius: 999px;
  color: var(--avs-ink);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 12px;
}
@media (max-width: 1024px) {
  .story-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .story-feature-grid {
    grid-template-columns: 1fr;
  }
  .story-philosophy,
  .story-av-message {
    padding: 20px 16px;
  }
}
.team-showcase {
  align-items: center;
  background: linear-gradient(180deg, #f8fcff 0%, #f2f8fd 100%);
  border: 1px solid #d3e3ef;
  border-radius: 28px;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  margin: 0 0 22px;
  padding: 62px 36px;
}
.team-showcase-copy {
  min-width: 0;
}
.team-showcase-copy h2 {
  color: #0a1e31;
  font-family: "Sora", "Manrope", "Inter", sans-serif;
  font-size: clamp(42px, 3.2vw, 52px);
  letter-spacing: -0.045em;
  line-height: 1.06;
  margin: 0 0 16px;
  max-width: 11ch;
}
.team-showcase-copy p:not(.eyebrow) {
  color: #3d5164;
  font-size: 17px;
  line-height: 1.62;
  margin: 0;
  max-width: 58ch;
}
.team-showcase-cta {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  margin-top: 24px;
  min-height: 48px;
  padding: 12px 24px;
}
.team-showcase-cta:hover .team-showcase-cta-arrow,
.team-showcase-cta:focus-visible .team-showcase-cta-arrow {
  transform: translateX(3px);
}
.team-showcase-cta-arrow {
  display: inline-flex;
  font-size: 16px;
  transition: transform var(--transition);
}
.team-showcase-visual {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  min-height: 240px;
}
.team-showcase-visual[hidden] {
  display: none;
}
.team-showcase.no-team-visual {
  grid-template-columns: minmax(0, 1fr);
}
.team-showcase-portrait {
  border: 1px solid #cfe0ed;
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(11, 44, 67, 0.08);
  display: block;
  min-width: 0;
  overflow: hidden;
  position: relative;
}
.team-showcase-portrait img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  width: 100%;
}
.team-showcase-portrait:hover img,
.team-showcase-portrait:focus-visible img {
  transform: scale(1.03);
}
.team-showcase-portrait-featured {
  grid-row: 1 / span 2;
  min-height: 312px;
}
.team-showcase-portrait-small {
  min-height: 148px;
}
.team-showcase-portrait-meta {
  background: linear-gradient(180deg, rgba(7, 22, 35, 0) 0%, rgba(7, 22, 35, 0.72) 100%);
  color: #fff;
  display: grid;
  gap: 2px;
  inset: auto 0 0;
  padding: 12px;
  position: absolute;
}
.team-showcase-portrait-meta strong {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}
.team-showcase-portrait-meta span {
  color: rgba(230, 244, 255, 0.94);
  font-size: 11px;
  font-weight: 600;
}
.contact-section {
  align-items: start;
  background:
    radial-gradient(520px 260px at 10% -8%, rgba(20, 155, 215, 0.09), transparent 74%),
    radial-gradient(420px 220px at 96% 100%, rgba(6, 55, 85, 0.07), transparent 72%),
    #fff;
  border: 1px solid #d9e8f3;
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 30px rgba(8, 37, 58, 0.06);
  margin-bottom: 22px;
  padding: 34px;
  position: relative;
}
.contact-concierge-copy h2 {
  color: #091a2a;
  font-family: "Sora", "Manrope", "Inter", sans-serif;
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0 0 14px;
  max-width: 14ch;
}
.contact-concierge-copy .contact-concierge-lead {
  color: #33485b;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
  max-width: 58ch;
}
.contact-concierge-trust {
  color: #4e6679;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 0 0 4px;
  text-transform: uppercase;
}
.concierge-eyebrow {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}
.concierge-eyebrow-mark {
  background: linear-gradient(145deg, #c8e6f9, #a6d6f1);
  border: 1px solid #96c9e6;
  display: inline-block;
  height: 10px;
  transform: rotate(45deg);
  width: 10px;
}
.contact-actions {
  align-self: stretch;
  display: grid;
  gap: 16px;
  justify-self: stretch;
  max-width: 100%;
  width: 100%;
}
.contact-hero-card {
  background: linear-gradient(136deg, #0a5c8a 0%, #0d78ad 58%, #149bd7 100%);
  border: 1px solid rgba(9, 92, 138, 0.88);
  border-radius: 20px;
  box-shadow: 0 16px 30px rgba(9, 89, 133, 0.24);
  color: #f5fcff;
  display: grid;
  gap: 8px;
  padding: 18px;
  position: relative;
}
.contact-hero-card h3 {
  color: #ffffff;
  font-family: "Sora", "Manrope", "Inter", sans-serif;
  font-size: clamp(27px, 2.6vw, 34px);
  line-height: 1.12;
  margin: 0;
  max-width: 12ch;
}
.contact-hero-card p {
  color: #e8f7ff;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}
.contact-hero-kicker {
  color: #dff3ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}
.contact-hero-note {
  border-top: 1px solid rgba(211, 240, 255, 0.3);
  color: #dff3ff;
  font-size: 12px;
  font-weight: 800;
  margin-top: 4px;
  padding-top: 10px;
  text-transform: uppercase;
}
.contact-hero-cta {
  align-items: center;
  align-self: start;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  color: #0a5f90;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  gap: 8px;
  margin-top: 2px;
  min-height: 44px;
  padding: 10px 12px;
  text-transform: uppercase;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}
.contact-hero-cta .social-icon {
  height: 18px;
  width: 18px;
}
.contact-hero-cta:hover {
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(7, 67, 100, 0.2);
  text-decoration: none;
  transform: translateY(-1px);
}
.contact-hero-cta-arrow {
  font-size: 15px;
  transition: transform 220ms ease;
}
.contact-hero-cta:hover .contact-hero-cta-arrow,
.contact-hero-cta:focus-visible .contact-hero-cta-arrow {
  transform: translateX(4px);
}
.contact-chip-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}
.contact-chip {
  align-items: center;
  background: linear-gradient(180deg, #ffffff, #f9fcff);
  border: 1px solid #d4e3f0;
  border-radius: 18px;
  color: var(--avs-ink);
  display: flex;
  gap: 16px;
  min-height: 96px;
  height: 100%;
  padding: 16px 18px;
  text-decoration: none;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}
.contact-chip:hover {
  background: #eef7fe;
  border-color: #9ecbe5;
  box-shadow: 0 8px 18px rgba(12, 66, 98, 0.08);
  text-decoration: none;
  transform: translateY(-2px);
}
.contact-chip-icon-shell {
  align-items: center;
  background: #edf6fd;
  border: 1px solid #cae0ef;
  border-radius: 999px;
  color: #0d5f8c;
  display: inline-flex;
  flex-shrink: 0;
  height: 42px;
  justify-content: center;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
  width: 42px;
}
.contact-chip:hover .contact-chip-icon-shell,
.contact-chip:focus-visible .contact-chip-icon-shell {
  background: #e3f3ff;
  border-color: #9ecce8;
  transform: translateX(1px);
}
.contact-chip-icon {
  height: 20px;
  width: 20px;
}
.contact-chip strong {
  display: block;
  font-size: clamp(17px, 1.15vw, 24px);
  line-height: 1.15;
}
.contact-chip-label {
  color: #5a6f80;
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .contact-chip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .contact-chip-grid {
    grid-template-columns: 1fr;
  }
  .contact-chip {
    min-height: 82px;
    padding: 14px 16px;
  }
}
/* Get in touch list */
.get-in-touch {
  margin-top: 22px;
}
.get-in-touch-title {
  color: #2e4456;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.get-in-touch-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.get-in-touch-item {
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #d8e7f2;
  border-radius: 16px;
  color: var(--avs-ink);
  display: flex;
  font-size: 14px;
  gap: 10px;
  min-height: 72px;
  padding: 10px 12px;
  text-decoration: none;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.get-in-touch-item:hover {
  background: #edf7fe;
  border-color: #98cbe7;
  box-shadow: 0 10px 18px rgba(10, 55, 84, 0.07);
  text-decoration: none;
}
.get-in-touch-item:focus-visible,
.contact-chip:focus-visible,
.contact-hero-cta:focus-visible {
  outline: 2px solid rgba(15, 127, 181, 0.6);
  outline-offset: 2px;
}
.get-in-touch-icon-shell {
  align-items: center;
  background: #eef6fd;
  border: 1px solid #cbdfef;
  border-radius: 999px;
  color: #0f5f8d;
  display: inline-flex;
  flex-shrink: 0;
  height: 38px;
  justify-content: center;
  width: 38px;
}
.get-in-touch-icon {
  height: 18px;
  width: 18px;
}
.get-in-touch-copy {
  color: #334759;
  display: grid;
  gap: 2px;
}
.get-in-touch-channel {
  color: #587084;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.get-in-touch-copy strong {
  color: #0f2231;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}
.get-in-touch-copy span:last-child {
  color: #51687a;
  font-size: 12px;
  font-weight: 700;
}

.floating-whatsapp {
  align-items: center;
  background: #137a3f;
  border-radius: 999px;
  bottom: 18px;
  box-shadow: 0 12px 26px rgba(19, 122, 63, 0.28);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  padding: 12px 16px;
  position: fixed;
  right: 18px;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 50;
}
.cart-open .floating-whatsapp,
.cart-drawer.open ~ .floating-whatsapp,
.checkout-modal.open ~ .floating-whatsapp,
.product-detail-modal.open ~ .floating-whatsapp {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  visibility: hidden;
}
.floating-whatsapp .social-icon {
  background: #fff;
  border-radius: 50%;
  height: 22px;
  width: 22px;
}
.floating-whatsapp:hover {
  background: #0f6634;
  text-decoration: none;
}

/* Legal pages */
.legal-page {
  background:
    linear-gradient(180deg, #f7fbfe 0%, #ffffff 24%),
    #ffffff;
  color: var(--avs-ink);
}

.legal-hero {
  background:
    linear-gradient(135deg, rgba(6, 55, 85, 0.95), rgba(20, 155, 215, 0.86)),
    url("../assets/products/av-limited-edition-photo.webp") center/cover;
  color: #ffffff;
}

.legal-hero-inner {
  padding: 70px 20px 74px;
}

.legal-hero .eyebrow {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 12px;
}

.legal-hero h1 {
  color: #ffffff;
  font-size: 44px;
  line-height: 1.08;
  margin-bottom: 14px;
}

.legal-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin: 0;
  max-width: 760px;
}

.legal-hero span {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  font-size: 14px;
  margin-top: 18px;
}

.legal-layout {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: 250px minmax(0, 1fr);
  padding-bottom: 58px;
  padding-top: 38px;
}

.legal-summary {
  background: #ffffff;
  border: 1px solid var(--avs-border);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  position: sticky;
  top: 124px;
}

.legal-summary h2 {
  color: var(--avs-blue-deep);
  font-size: 14px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.legal-summary a {
  border-radius: 8px;
  color: #415164;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 10px;
}

.legal-summary a:hover {
  background: var(--avs-cream);
  color: var(--avs-blue-dark);
  text-decoration: none;
}

.legal-content {
  display: grid;
  gap: 16px;
}

.legal-section {
  background: #ffffff;
  border: 1px solid var(--avs-border);
  border-left: 4px solid var(--avs-blue);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  padding: 24px;
}

.legal-section h2 {
  color: var(--avs-blue-deep);
  font-size: 22px;
  margin-bottom: 12px;
}

.legal-section h3 {
  color: #183449;
  font-size: 17px;
  margin: 18px 0 8px;
}

.legal-section p {
  color: #4b5a6a;
  margin: 0;
}

.legal-section p + p {
  margin-top: 12px;
}

.legal-detail-list {
  background: #f7fbfe;
  border: 1px solid #d8e8f3;
  border-radius: 10px;
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 16px;
}

.legal-detail-list p {
  color: #253649;
  margin: 0;
}

.legal-detail-list a {
  font-weight: 800;
}

.legal-contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.legal-contact-list a {
  background: var(--avs-cream);
  border: 1px solid var(--avs-border);
  border-radius: 999px;
  color: var(--avs-blue-dark);
  font-size: 14px;
  font-weight: 800;
  padding: 9px 13px;
}

.legal-contact-list a:hover {
  background: var(--avs-blue);
  color: #ffffff;
  text-decoration: none;
}

/* Offer and footer */
.member-band {
  background:
    radial-gradient(640px 280px at 8% 8%, rgba(255, 214, 170, 0.26), transparent 66%),
    radial-gradient(560px 240px at 92% 92%, rgba(89, 221, 255, 0.2), transparent 68%),
    linear-gradient(122deg, #542300 0%, #b34800 42%, #ff8a00 74%, #14a6c7 100%);
  color: #ecf7ff;
  margin-top: 48px;
  overflow: hidden;
  position: relative;
}
.member-band::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}
.member-band-inner {
  align-items: center;
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 248, 236, 0.34);
  border-radius: 22px;
  box-shadow: 0 18px 36px rgba(84, 34, 0, 0.26);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 26px auto;
  padding: 30px 28px;
  position: relative;
  z-index: 1;
}
.member-band .eyebrow {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: #f2fbff;
  display: inline-flex;
  font-size: 11px;
  letter-spacing: 0.1em;
  margin-bottom: 9px;
  padding: 7px 11px;
}
.member-band .eyebrow::before {
  background: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.7);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.8), 0 0 0 3px rgba(255,255,255,0.08);
}
.member-band h2 {
  color: #ffffff;
  font-family: "Sora", "Manrope", "Inter", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.08;
  margin-bottom: 8px;
  text-wrap: balance;
  text-transform: uppercase;
}
.member-band p {
  color: rgba(239, 250, 255, 0.92);
  font-size: 15px;
  margin: 0;
  max-width: 660px;
}
.member-band .btn-primary {
  background: linear-gradient(135deg, #ffffff, #eaf7ff);
  border: 1px solid rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 20px rgba(95, 38, 0, 0.28);
  color: #7a3300;
}
.member-band .btn-primary:hover {
  background: #fff5e9;
  box-shadow: 0 12px 24px rgba(95, 38, 0, 0.34);
  color: #5b2600;
}
.member-band .social-icon {
  filter: saturate(1.2);
}
.site-footer { background: #0d1520; color: #d1d5db; margin-top: 0; }
.footer-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  padding: 48px 20px 36px;
}
.footer-brand p {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  margin: 10px 0 6px;
}
.footer-brand span {
  color: #b6c2cf;
  display: block;
  font-size: 14px;
  max-width: 300px;
}
.footer-logo { height: 34px; width: 34px; border-radius: 6px; object-fit: cover; }
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-column h3 {
  color: #fff;
  font-size: 13px;
  margin: 0 0 6px;
  text-transform: uppercase;
}
.site-footer a { color: #d1d5db; font-size: 14px; }
.site-footer a:hover { color: #fff; }
.site-footer .social-icon {
  height: 17px;
  width: 17px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #9ca3af;
  font-size: 13px;
  padding: 14px 20px 18px;
}

/* Cart drawer */
.cart-overlay {
  backdrop-filter: blur(1.5px);
  background: rgba(6, 22, 36, 0.46);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 320ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 90;
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cart-drawer {
  background: #ffffff;
  border-left: 1px solid rgba(180, 201, 220, 0.45);
  border-radius: 22px 0 0 22px;
  bottom: 0;
  box-shadow: -16px 0 40px rgba(7, 23, 39, 0.14);
  display: flex;
  flex-direction: column;
  height: 100dvh;
  max-width: 540px;
  overscroll-behavior: contain;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  width: min(520px, 100vw);
  z-index: 100;
}
.cart-drawer.open {
  transform: translateX(0);
}
.cart-drawer-header {
  align-items: center;
  border-bottom: 1px solid rgba(153, 182, 207, 0.32);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  min-height: 94px;
  padding: 16px 20px;
}
.cart-drawer-heading {
  min-width: 0;
}
.cart-drawer-heading .eyebrow {
  color: #5f7081;
  font-size: 10px;
  margin-bottom: 4px;
}
.cart-drawer-heading .eyebrow::before {
  width: 14px;
}
.cart-drawer-heading h2 {
  font-size: 22px;
  line-height: 1.1;
  margin: 0;
}
.cart-close {
  align-items: center;
  background: #f5f9fd;
  border: 1px solid #d5e4ef;
  border-radius: 999px;
  color: #24384d;
  cursor: pointer;
  display: inline-flex;
  flex-shrink: 0;
  font-size: 24px;
  height: 42px;
  justify-content: center;
  line-height: 1;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  width: 42px;
}
.cart-close:hover {
  background: #eaf4fc;
  border-color: rgba(20, 155, 215, 0.46);
  transform: translateY(-1px);
}
.cart-close:focus-visible,
.cart-item-remove:focus-visible,
.cart-empty-link:focus-visible,
.cart-quantity button:focus-visible,
.checkout-empty-link:focus-visible {
  outline: 2px solid rgba(15, 137, 194, 0.78);
  outline-offset: 2px;
}
.cart-items {
  -webkit-overflow-scrolling: touch;
  background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 16px 20px max(20px, env(safe-area-inset-bottom, 0px));
  scrollbar-gutter: stable;
}

.cart-items.has-single-item {
  gap: 18px;
}

.cart-items::-webkit-scrollbar {
  width: 8px;
}

.cart-items::-webkit-scrollbar-thumb {
  background: #c5d6e5;
  border-radius: 999px;
}
.cart-items.is-empty {
  justify-content: center;
}
.cart-item {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(207, 221, 232, 0.92);
  border-radius: 12px;
  display: grid;
  gap: 14px;
  grid-template-columns: auto minmax(0, 1fr);
  padding: 14px;
  box-shadow: 0 10px 20px rgba(16, 31, 48, 0.05);
}
.cart-item img {
  width: 102px;
  height: 112px;
  object-fit: cover;
  border-radius: 10px;
  background: var(--avs-cream);
}
.cart-item-info {
  min-width: 0;
}
.cart-item-info .name {
  color: #102235;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
}
.cart-item-type {
  color: var(--avs-blue-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 0 4px;
  text-transform: uppercase;
}
.cart-item-info .meta {
  color: #667889;
  font-size: 13px;
  font-weight: 700;
  margin-top: 4px;
}
.cart-item-pricing {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.cart-item-unit-price {
  color: #5d6d7c;
  font-size: 12px;
  font-weight: 700;
}
.cart-item-total {
  color: #0f1f31;
  font-size: 16px;
}
.cart-item-actions {
  align-items: center;
  display: flex;
  gap: 12px;
  grid-column: 1 / -1;
  justify-content: space-between;
}
.cart-quantity {
  background: #f8fbfe;
  border-color: #d8e6f1;
  grid-template-columns: 36px minmax(40px, 1fr) 36px;
}
.cart-quantity button {
  background: transparent;
  color: #153149;
  font-size: 18px;
  height: 36px;
  width: 36px;
}
.cart-quantity button:hover:not(:disabled) {
  background: #eaf4fc;
}
.cart-quantity button:disabled {
  color: #a3afba;
  cursor: not-allowed;
}
.cart-quantity .quantity-count {
  font-size: 13px;
  font-weight: 800;
  min-width: 40px;
  padding: 0 6px;
}
.cart-item-remove {
  background: none;
  border: none;
  color: #b42318;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 8px 0;
  touch-action: manipulation;
  text-transform: uppercase;
}
.cart-summary {
  background: linear-gradient(180deg, #f9fcff 0%, #f3f8fd 100%);
  border-top: 1px solid rgba(153, 182, 207, 0.32);
  box-shadow: 0 -10px 22px rgba(11, 29, 45, 0.06);
  flex-shrink: 0;
  padding: 18px 20px calc(22px + env(safe-area-inset-bottom, 0px));
}
.cart-summary .row {
  align-items: center;
  display: flex;
  font-size: 15px;
  font-weight: 800;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cart-summary-note {
  color: #67798a;
  font-size: 12px;
  line-height: 1.45;
  margin: 0 0 14px;
}
.cart-minimum-order-notice {
  background: rgba(255, 244, 225, 0.9);
  border: 1px solid rgba(217, 141, 27, 0.35);
  border-radius: 10px;
  color: #a15c05;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 12px;
  padding: 9px 12px;
}
.cart-summary .btn-primary {
  min-height: 48px;
}
.cart-trust {
  color: #64778a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 12px 0 0;
  text-align: center;
  text-transform: uppercase;
}
.cart-trust::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 6px;
  vertical-align: -1px;
  border-radius: 999px;
  background: linear-gradient(180deg, #0f89c2, #0b6d9f);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.92);
}
.cart-empty-state {
  align-items: center;
  display: grid;
  gap: 12px;
  margin: auto;
  padding: 18px 6px;
  text-align: center;
}
.cart-empty-illustration {
  align-items: center;
  background: radial-gradient(circle at top, rgba(20, 155, 215, 0.14), rgba(255, 255, 255, 0.96) 70%);
  border: 1px solid rgba(185, 215, 233, 0.9);
  border-radius: 24px;
  color: #0c6b9f;
  display: inline-flex;
  height: 94px;
  justify-content: center;
  margin: 0 auto;
  width: 94px;
}
.cart-empty-illustration svg {
  height: 48px;
  width: 48px;
}
.cart-empty-state h3 {
  font-size: 22px;
  line-height: 1.1;
  margin: 0;
}
.cart-empty-state p {
  color: #5b6d7d;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 260px;
}
.cart-empty-actions {
  display: grid;
  gap: 10px;
  max-width: 290px;
  width: 100%;
}

.cart-single-support {
  align-items: center;
  background: #f6fbff;
  border: 1px dashed #c6dcef;
  border-radius: 12px;
  display: grid;
  gap: 8px;
  justify-items: center;
  margin-top: 2px;
  padding: 14px 12px;
  text-align: center;
}

.cart-single-support p {
  color: #4f6378;
  font-size: 13px;
  margin: 0;
}

.cart-single-support-actions {
  display: flex;
  gap: 10px;
}

.cart-single-support-actions button {
  background: #ffffff;
  border: 1px solid #c2d7e8;
  border-radius: 999px;
  color: #184262;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  min-height: 32px;
  padding: 7px 12px;
  text-transform: uppercase;
}

.cart-single-support-actions button:hover {
  background: #eef6fd;
}
.cart-empty-link {
  background: none;
  border: none;
  color: var(--avs-blue-dark);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  margin: 0 auto;
  padding: 6px 10px;
  touch-action: manipulation;
  text-transform: uppercase;
}
body.product-detail-open {
  overflow: hidden;
}
body.cart-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .cart-drawer {
    border-radius: 20px 0 0 20px;
    width: min(82vw, 540px);
  }
}

@media (max-width: 768px) {
  .cart-drawer {
    border-radius: 18px 0 0 18px;
    width: min(88vw, 540px);
  }
  .cart-drawer-header {
    min-height: 80px;
    padding: 14px 16px;
  }
  .cart-items {
    padding: 14px 16px max(18px, env(safe-area-inset-bottom, 0px));
  }
  .cart-summary {
    padding: 14px 16px calc(18px + env(safe-area-inset-bottom, 0px));
  }
  .cart-item {
    grid-template-columns: 88px minmax(0, 1fr);
    padding: 12px;
  }
  .cart-item img {
    height: 98px;
    width: 88px;
  }
}

@media (max-width: 640px) {
  .cart-drawer {
    border-left: none;
    border-radius: 0;
    max-width: 100vw;
    width: 100vw;
  }
}

@media (max-width: 480px) {
  .cart-drawer {
    border-left: none;
    border-radius: 0;
    height: 100dvh;
    max-width: 100vw;
    width: 100vw;
  }
  .cart-drawer-header {
    min-height: 74px;
    padding: 12px 14px;
  }
  .cart-items {
    padding: 12px 14px max(16px, env(safe-area-inset-bottom, 0px));
  }
  .cart-summary {
    padding: 14px 14px calc(18px + env(safe-area-inset-bottom, 0px));
  }
  .cart-item {
    gap: 10px;
    grid-template-columns: 78px minmax(0, 1fr);
    padding: 10px;
  }
  .cart-item img {
    height: 90px;
    width: 78px;
  }
  .cart-item-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .cart-quantity {
    width: 100%;
  }
  .cart-item-remove {
    text-align: left;
  }
  .cart-single-support-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }
}

/* Checkout modal */
.checkout-overlay {
  background: rgba(6, 16, 28, 0.45);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 220ms ease-out;
  z-index: 1000;
}

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

.checkout-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1001;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.checkout-modal.open { display: flex; }
.checkout-modal-inner {
  background: #fff;
  border: 1px solid rgba(203, 220, 236, 0.9);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  max-height: calc(100dvh - 32px);
  max-width: min(1040px, calc(100vw - 32px));
  overflow: hidden;
  pointer-events: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  width: min(100%, 1040px);
  opacity: 1;
}

.checkout-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(214, 228, 239, 0.95);
  display: flex;
  justify-content: space-between;
  left: 0;
  min-height: 84px;
  padding: 14px 20px;
  position: sticky;
  top: 0;
  z-index: 2;
}

.checkout-header-copy {
  align-items: center;
  display: flex;
  gap: 12px;
}

.checkout-header-kicker {
  background: rgba(22, 132, 194, 0.1);
  border: 1px solid rgba(19, 123, 180, 0.18);
  border-radius: 999px;
  color: var(--avs-blue-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0;
  padding: 7px 10px;
  text-transform: uppercase;
}

.checkout-header-copy > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.checkout-header h2 {
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.03em;
  margin: 0;
}

.checkout-header-copy p {
  color: var(--avs-text-muted);
  font-size: 13px;
  margin: 0;
}

.checkout-body {
  -webkit-overflow-scrolling: touch;
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 20px;
  scrollbar-color: rgba(114, 136, 157, 0.55) transparent;
  scrollbar-width: thin;
}

.checkout-body::-webkit-scrollbar {
  width: 8px;
}

.checkout-body::-webkit-scrollbar-thumb {
  background: rgba(109, 132, 153, 0.52);
  border-radius: 999px;
}

.checkout-body::-webkit-scrollbar-track {
  background: transparent;
}

.checkout-form {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.9fr);
  gap: 20px;
  align-items: start;
}

.checkout-main-stack {
  display: grid;
  gap: 18px;
}

.checkout-section {
  background: var(--avs-surface);
  border: 1px solid rgba(214, 228, 239, 0.95);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  padding: 18px;
}

.checkout-section-head {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.checkout-section-number {
  align-items: center;
  background: rgba(20, 155, 215, 0.09);
  border: 1px solid rgba(20, 155, 215, 0.18);
  border-radius: 10px;
  color: var(--avs-blue-dark);
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  height: 30px;
  justify-content: center;
  letter-spacing: 0.1em;
  min-width: 38px;
}

.checkout-section-head h3 {
  color: var(--avs-ink);
  font-size: 18px;
  letter-spacing: -0.02em;
  margin: 0;
}

.checkout-section-head p {
  color: var(--avs-text-muted);
  font-size: 12px;
  margin: 3px 0 0;
}

.checkout-grid {
  display: grid;
  gap: 14px;
}

.checkout-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.checkout-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkout-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.checkout-field--compact {
  align-self: end;
}

.checkout-field label,
.checkout-saved-address label {
  color: var(--avs-ink-soft);
  font-size: 12px;
  font-weight: 700;
}

#checkoutForm input,
#checkoutForm select {
  width: 100%;
  border: 1.5px solid var(--avs-border);
  border-radius: 12px;
  background: #fff;
  color: var(--avs-ink);
  font-size: 14px;
  min-height: 44px;
  padding: 10px 12px;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

#checkoutForm input::placeholder {
  color: #7a8ea2;
}

#checkoutForm input:hover,
#checkoutForm select:hover {
  border-color: rgba(20, 155, 215, 0.42);
}

#checkoutForm input:focus,
#checkoutForm select:focus {
  border-color: var(--avs-blue);
  box-shadow: 0 0 0 4px rgba(20, 155, 215, 0.12);
  outline: none;
}

#checkoutForm input[aria-invalid="true"],
#checkoutForm select[aria-invalid="true"] {
  border-color: var(--avs-error);
  box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.08);
}

.checkout-single-error {
  color: var(--avs-error);
  font-size: 11px;
  font-weight: 700;
  min-height: 16px;
  margin-top: 2px;
}

.checkout-meta-grid {
  margin-top: 14px;
}

.checkout-save-address-row {
  align-items: center;
  background: rgba(244, 248, 252, 0.82);
  border: 1px solid rgba(205, 222, 236, 0.9);
  border-radius: 12px;
  display: flex;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
}

.checkout-save-address-row input {
  min-height: 16px;
  width: 16px;
}

.checkout-save-address-row span {
  color: var(--avs-ink-soft);
  font-size: 13px;
  font-weight: 600;
}

.checkout-saved-address {
  margin-bottom: 14px;
}

.checkout-sidebar {
  position: sticky;
  top: 18px;
}

.checkout-side-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid rgba(214, 228, 239, 0.95);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  padding: 18px;
}

.checkout-summary-header {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.checkout-summary-kicker {
  color: var(--avs-blue-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 6px;
  text-transform: uppercase;
}

.checkout-summary-header h3 {
  color: var(--avs-ink);
  font-size: 18px;
  letter-spacing: -0.02em;
  margin: 0;
}

.checkout-summary-count {
  background: rgba(20, 155, 215, 0.08);
  border: 1px solid rgba(20, 155, 215, 0.12);
  border-radius: 999px;
  color: var(--avs-blue-dark);
  display: inline-flex;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 8px;
  text-transform: uppercase;
}

.checkout-order-lines {
  border-top: 1px solid rgba(216, 230, 241, 0.9);
  border-bottom: 1px solid rgba(216, 230, 241, 0.9);
  margin-bottom: 14px;
  padding: 12px 0;
}

.checkout-order-empty {
  color: var(--avs-text-muted);
  font-size: 13px;
  margin: 0;
}

.checkout-summary {
  display: grid;
  gap: 8px;
  margin: 0;
}

.checkout-summary .row {
  align-items: baseline;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: var(--avs-ink-soft);
}

.checkout-summary .row.total {
  border-top: 1px solid rgba(214, 228, 239, 0.95);
  color: var(--avs-ink);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-top: 4px;
  padding-top: 12px;
}

.checkout-currency-note {
  color: #2e5875;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 10px 0 0;
  text-transform: uppercase;
}

.checkout-coupon {
  background: rgba(244, 248, 252, 0.72);
  border: 1px solid rgba(211, 225, 236, 0.9);
  border-radius: 14px;
  padding: 14px;
}

.checkout-coupon-row {
  align-items: center;
  display: flex;
  gap: 8px;
}

.checkout-coupon-row input {
  flex: 1;
  margin-top: 0;
}

.checkout-coupon-status {
  color: var(--avs-text-muted);
  font-size: 12px;
  margin: 10px 0 0;
  min-height: 16px;
}

.checkout-coupon-status.is-success {
  color: var(--avs-success);
  font-weight: 700;
}

.checkout-coupon-status.is-error {
  color: var(--avs-error);
  font-weight: 700;
}

.checkout-coupon-remove {
  background: none;
  border: 0;
  color: var(--avs-blue-dark);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  margin-top: 8px;
  padding: 0;
  text-decoration: underline;
}

.checkout-offers {
  border-top: 1px solid rgba(214, 228, 239, 0.9);
  margin-top: 12px;
  padding-top: 12px;
}

.checkout-offers-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.checkout-offers-title {
  color: var(--avs-ink-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}

.checkout-offers-title span {
  color: var(--avs-blue-dark);
}

.checkout-offers-toggle {
  background: none;
  border: none;
  color: var(--avs-blue-dark);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  padding: 0;
}

.checkout-offers-list {
  display: grid;
  gap: 8px;
}

.checkout-offer-card {
  background: #fff;
  border: 1px solid rgba(209, 223, 236, 0.9);
  border-radius: 12px;
  padding: 10px 11px;
}

.checkout-offer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.checkout-offer-code {
  color: var(--avs-ink);
  font-size: 13px;
  font-weight: 900;
}

.checkout-offer-badge {
  background: rgba(20, 155, 215, 0.08);
  border: 1px solid rgba(20, 155, 215, 0.18);
  border-radius: 999px;
  color: var(--avs-blue-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  text-transform: uppercase;
}

.checkout-offer-desc,
.checkout-offer-conditions,
.checkout-offer-expiry,
.checkout-offer-savings,
.checkout-offer-unlock {
  color: var(--avs-text-muted);
  font-size: 12px;
  margin: 4px 0 0;
}

.checkout-offer-bottom {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 8px;
}

.checkout-offer-savings {
  color: var(--avs-success);
  font-weight: 800;
}

.checkout-offer-apply,
.checkout-offer-applied {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-offer-apply {
  background: rgba(20, 155, 215, 0.08);
  border: 1px solid rgba(20, 155, 215, 0.2);
  border-radius: 999px;
  color: var(--avs-blue-dark);
  cursor: pointer;
  min-height: 28px;
  min-width: 72px;
  padding: 5px 10px;
}

.checkout-offer-applied {
  color: var(--avs-success);
}

.checkout-better-offer {
  color: var(--avs-text-muted);
  font-size: 12px;
  margin: 8px 0 0;
}

.checkout-savings-note {
  color: var(--avs-success);
  font-size: 12px;
  font-weight: 700;
  margin: 12px 0 0;
}

.checkout-minimum-order-notice {
  background: rgba(255, 244, 225, 0.9);
  border: 1px solid rgba(217, 141, 27, 0.35);
  border-radius: 10px;
  color: #a15c05;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 12px;
  padding: 10px 12px;
}

.shipping-result {
  background: rgba(236, 249, 242, 0.9);
  border: 1px solid rgba(125, 172, 146, 0.32);
  border-radius: 12px;
  color: var(--avs-ink-soft);
  font-size: 12px;
  margin-top: 12px;
  padding: 10px 12px;
}

.shipping-result.is-free-shipping {
  background: rgba(235, 250, 240, 0.96);
  border-color: rgba(33, 146, 86, 0.26);
}

.shipping-result strong {
  color: var(--avs-success);
}

.shipping-breakdown-line {
  display: inline-block;
  margin: 2px 0;
  font-weight: 700;
}

.checkout-international-note {
  background: rgba(244, 248, 252, 0.8);
  border: 1px solid rgba(207, 223, 236, 0.92);
  border-radius: 12px;
  color: var(--avs-ink-soft);
  font-size: 12px;
  margin-top: 12px;
  padding: 10px 12px;
}

.checkout-international-note strong {
  color: var(--avs-blue-dark);
  display: block;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.checkout-trust-strip {
  display: grid;
  gap: 6px;
  margin: 14px 0 10px;
  padding-top: 10px;
}

.checkout-trust-strip span {
  color: var(--avs-ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.checkout-pay-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  min-height: 54px;
  width: 100%;
  text-align: left;
}

.checkout-pay-btn strong {
  font-size: 16px;
  letter-spacing: -0.02em;
}

.secure-note {
  color: var(--avs-text-muted);
  font-size: 12px;
  margin: 8px 0 0;
  text-align: center;
}

.checkout-close {
  align-items: center;
  background: rgba(243, 248, 252, 0.92);
  border: 1px solid rgba(203, 220, 236, 0.9);
  border-radius: 50%;
  color: #264862;
  cursor: pointer;
  display: inline-flex;
  font-size: 26px;
  height: 40px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  width: 40px;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.checkout-close:hover,
.checkout-close:focus-visible {
  background: rgba(233, 244, 252, 0.94);
  border-color: rgba(20, 155, 215, 0.4);
  box-shadow: 0 0 0 4px rgba(20, 155, 215, 0.08);
}

@media (max-width: 900px) {
  .checkout-form {
    grid-template-columns: 1fr;
  }

  .checkout-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .checkout-modal {
    padding: 0;
  }

  .checkout-modal-inner {
    border-radius: 0;
    max-height: 100dvh;
    max-width: 100vw;
    width: 100vw;
  }

  .checkout-header {
    padding: 12px 14px;
  }

  .checkout-header-copy {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  .checkout-body {
    padding: 14px;
  }

  .checkout-section {
    padding: 14px;
  }

  .checkout-grid-3,
  .checkout-grid-2 {
    grid-template-columns: 1fr;
  }

  .checkout-coupon-row {
    flex-direction: column;
    align-items: stretch;
  }

  .checkout-pay-btn {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .checkout-close,
  #checkoutForm input,
  #checkoutForm select,
  .checkout-section,
  .checkout-offers-list,
  .checkout-offer-card,
  .checkout-offer-apply,
  .shipping-result {
    transition: none;
  }
}

.payment-progress-overlay {
  align-items: center;
  background: rgba(6, 16, 28, 0.55);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 16px;
  position: fixed;
  z-index: 1050;
}

.payment-progress-overlay[hidden] {
  display: none;
}

.payment-progress-inner {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: min(420px, calc(100vw - 32px));
  padding: 28px 24px;
  text-align: center;
}

.payment-progress-spinner {
  border: 4px solid rgba(20, 155, 215, 0.2);
  border-top-color: #149bd7;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  animation: payment-progress-spin 0.8s linear infinite;
}

.payment-progress-inner p {
  color: #1f2937;
  font-weight: 600;
  margin: 0;
}

@keyframes payment-progress-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .payment-progress-spinner {
    animation: none;
  }
}

.order-success-overlay {
  background: rgba(6, 16, 28, 0.45);
  inset: 0;
  opacity: 1;
  position: fixed;
  z-index: 1002;
}

.order-success-overlay[hidden] {
  display: none;
}

.order-success-modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 16px;
  position: fixed;
  z-index: 1003;
}

.order-success-modal[hidden] {
  display: none;
}

.order-success-inner {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  max-height: calc(100dvh - 32px);
  max-width: min(640px, calc(100vw - 32px));
  overflow: hidden;
  width: min(100%, 640px);
}

.order-success-header {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #dbe7f0;
  display: flex;
  justify-content: space-between;
  min-height: 64px;
  padding: 12px 18px;
}

.order-success-header h2 {
  font-size: 24px;
  margin: 0;
}

.order-success-body {
  -webkit-overflow-scrolling: touch;
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 14px 18px 18px;
}

.checkout-close {
  align-items: center;
  background: #f2f8fc;
  border: 1px solid #d4e4ef;
  border-radius: 999px;
  color: #29445d;
  cursor: pointer;
  display: inline-flex;
  font-size: 26px;
  height: 38px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  width: 38px;
}

.checkout-close:focus-visible {
  outline: 2px solid rgba(15, 137, 194, 0.78);
  outline-offset: 2px;
}

#checkoutForm fieldset { border: none; padding: 0; margin: 0 0 20px; }
#checkoutForm legend { font-weight: 700; margin-bottom: 10px; padding: 0; font-size: 15px; }
#checkoutForm label { display: block; font-size: 13px; color: #374151; margin-bottom: 12px; font-weight: 500; }
#checkoutForm input, #checkoutForm select {
  width: 100%; padding: 10px 12px; margin-top: 4px;
  border: 1.5px solid var(--avs-border); border-radius: 10px; font-size: 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
#checkoutForm input:focus, #checkoutForm select:focus {
  border-color: var(--avs-blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(20,155,215,0.1);
}
.field-row { display: flex; gap: 12px; }
.field-row label { flex: 1; }
.checkout-coupon {
  border: 1px solid #dbe7f0;
  border-radius: 10px;
  margin: 0 0 14px;
  padding: 10px 12px;
}
.checkout-coupon-label {
  color: #334c62;
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 8px;
}
.checkout-coupon-row {
  align-items: center;
  display: flex;
  gap: 8px;
}
.checkout-coupon-row input {
  flex: 1;
  margin-top: 0;
}
.checkout-coupon-row .btn {
  min-height: 38px;
  min-width: 92px;
  padding: 8px 12px;
}
.checkout-coupon-status {
  color: #496174;
  font-size: 12px;
  margin: 8px 0 0;
}
.checkout-coupon-status.is-success {
  color: #0f6f4b;
  font-weight: 700;
}
.checkout-coupon-status.is-error {
  color: #b42318;
  font-weight: 700;
}
.checkout-coupon-remove {
  background: none;
  border: none;
  color: #0f5f8c;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  margin: 8px 0 0;
  padding: 0;
  text-decoration: underline;
}
.checkout-coupon-remove[hidden] {
  display: none;
}
.checkout-offers {
  border-top: 1px solid #e2edf6;
  margin-top: 10px;
  padding-top: 10px;
}
.checkout-offers-head {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 8px;
}
.checkout-offers-title {
  color: #1d3b52;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  margin: 0;
  text-transform: uppercase;
}
.checkout-offers-title span {
  color: #0f6c9f;
  margin-left: 4px;
}
.checkout-offers-toggle {
  background: none;
  border: none;
  color: #0f5f8c;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  padding: 0;
}
.checkout-offers-list {
  display: grid;
  gap: 8px;
  max-height: 1200px;
  opacity: 1;
  overflow: hidden;
  transition: max-height 200ms cubic-bezier(0.22, 1, 0.36, 1), opacity 200ms ease;
}
.checkout-offers-list.is-collapsed {
  max-height: 230px;
}
.checkout-offer-card {
  background: #ffffff;
  border: 1px solid #d8e7f2;
  border-radius: 10px;
  display: grid;
  gap: 4px;
  min-height: 88px;
  padding: 10px;
}
.checkout-offer-card[hidden] {
  display: none;
}
.checkout-offer-top {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: space-between;
}
.checkout-offer-code {
  color: #0e2f45;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.03em;
}
.checkout-offer-title {
  color: #0f6c9f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.checkout-offer-badge {
  background: #e8f4fd;
  border: 1px solid #b8d9ee;
  border-radius: 999px;
  color: #0b5d8d;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  text-transform: uppercase;
}
.checkout-offer-desc,
.checkout-offer-conditions,
.checkout-offer-expiry,
.checkout-offer-savings,
.checkout-offer-unlock {
  font-size: 12px;
  margin: 0;
}

.checkout-offer-empty {
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: #f5f8fb;
  border: 1px dashed rgba(14, 36, 59, 0.2);
  color: #34516a;
  font-size: 0.9rem;
  line-height: 1.45;
}
.checkout-offer-desc,
.checkout-offer-conditions,
.checkout-offer-expiry {
  color: #54697c;
}
.checkout-offer-bottom {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: space-between;
}
.checkout-offer-savings {
  color: #155f45;
  font-weight: 800;
}
.checkout-offer-unlock {
  color: #8a4f00;
  font-weight: 700;
}
.checkout-offer-apply {
  background: #f4f9fd;
  border: 1px solid #bfd9ea;
  border-radius: 999px;
  color: #0d4f76;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  min-height: 30px;
  min-width: 74px;
  padding: 5px 12px;
  text-transform: uppercase;
}
.checkout-offer-apply:hover {
  background: #eaf4fc;
}
.checkout-offer-applied {
  color: #14714f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.checkout-better-offer {
  color: #355067;
  font-size: 12px;
  margin: 8px 0 0;
}
.checkout-better-offer button {
  background: none;
  border: none;
  color: #0f5f8c;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  margin-left: 8px;
  padding: 0;
  text-decoration: underline;
}
.checkout-savings-note {
  color: #2c4f66;
  font-size: 12px;
  margin: -8px 0 12px;
}
.shipping-result {
  background: var(--avs-cream);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 13px;
  margin-bottom: 16px;
}
.shipping-result.is-free-shipping {
  background: #edf9f2;
  border: 1px solid #cde8da;
  color: #173b56;
}
.shipping-result.is-free-shipping strong {
  color: #12623f;
}
.checkout-international-note {
  background: #f6fbff;
  border: 1px solid #cfe4f5;
  border-radius: 10px;
  color: #21405c;
  font-size: 12px;
  line-height: 1.55;
  margin: 0 0 16px;
  padding: 12px 14px;
}
.checkout-international-note strong {
  color: #0d5d8f;
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.checkout-international-note p {
  margin: 0;
}
.checkout-international-note p + p {
  margin-top: 6px;
}
.checkout-summary { margin: 16px 0; }
.checkout-summary .row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 6px; }
.checkout-summary .row.total { font-weight: 700; font-size: 16px; border-top: 1px solid var(--avs-border); padding-top: 8px; margin-top: 8px; }
.secure-note { font-size: 12px; color: #6b7280; text-align: center; margin-top: 10px; }
.order-confirmation {
  display: grid;
  gap: 12px;
  padding: 4px 2px 8px;
  text-align: left;
}

.order-success-hero {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 2px;
}

.order-success-icon {
  align-items: center;
  background: linear-gradient(135deg, rgba(20, 155, 215, 0.14), rgba(17, 124, 182, 0.1));
  border: 1px solid rgba(20, 155, 215, 0.38);
  border-radius: 999px;
  color: #0f6c99;
  display: inline-flex;
  font-size: 24px;
  font-weight: 900;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.order-success-kicker {
  color: #0f6a97;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

.order-confirmation h3 {
  color: #102235;
  font-size: 28px;
  line-height: 1.1;
  margin: 0;
  text-align: center;
}

.order-success-copy {
  color: #2d4255;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  text-align: center;
}

.order-success-copy-secondary {
  color: #53677a;
}

.order-payment-badge {
  align-items: center;
  background: #edf8f2;
  border: 1px solid #ccead9;
  border-radius: 12px;
  color: #176144;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  justify-content: space-between;
  padding: 10px 12px;
}

.order-payment-status {
  font-size: 13px;
  font-weight: 800;
}

.order-payment-amount {
  color: #0f3049;
  font-size: 14px;
  font-weight: 900;
}

.order-reference-card {
  background: #f8fbfe;
  border: 1px solid #d8e6f1;
  border-radius: 12px;
  padding: 12px;
}

.order-reference-label {
  color: #4f6578;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.order-reference-row {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: space-between;
}

.order-reference-code {
  background: #fff;
  border: 1px solid #d5e4ef;
  border-radius: 9px;
  color: #102538;
  display: inline-block;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 800;
  max-width: 100%;
  overflow-wrap: anywhere;
  padding: 8px 10px;
}

.order-reference-copy {
  background: #ffffff;
  border: 1px solid #c6dae8;
  border-radius: 9px;
  color: #0d5f8b;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  min-height: 34px;
  min-width: 66px;
  padding: 0 10px;
}

.order-reference-copy:focus-visible,
.checkout-help-link:focus-visible {
  outline: 2px solid rgba(15, 137, 194, 0.78);
  outline-offset: 2px;
}

.order-copy-status {
  color: #1f6d4f;
  font-size: 12px;
  font-weight: 700;
  margin: 8px 0 0;
  min-height: 16px;
}

.order-next-steps {
  border-top: 1px solid #e0ebf3;
  padding-top: 12px;
}

.order-next-steps h4 {
  color: #102c41;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.order-next-steps ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.order-next-steps li {
  display: grid;
  gap: 2px;
}

.order-next-steps li strong {
  color: #153750;
  font-size: 13px;
}

.order-next-steps li span {
  color: #5a6f81;
  font-size: 13px;
  line-height: 1.45;
}

.order-confirmation-actions {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.checkout-help-link {
  color: #0f638f;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.checkout-help-link:hover {
  text-decoration: underline;
}
.price-strike {
  color: #6b7280;
  margin-right: 6px;
  text-decoration: line-through;
}
.price-free {
  color: #0f766e;
  font-weight: 800;
}
.price-final {
  color: #0f172a;
  font-weight: 800;
}

body.checkout-open {
  overflow: hidden;
}

body.order-success-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .checkout-modal {
    align-items: stretch;
    padding: 0;
  }

  .checkout-modal-inner {
    border-radius: 0;
    height: 100dvh;
    max-height: 100dvh;
    max-width: 100vw;
    width: 100vw;
  }

  .checkout-header {
    min-height: 58px;
    padding: 10px 14px;
  }

  .checkout-header h2 {
    font-size: 21px;
  }

  .checkout-body {
    padding: 14px;
  }

  .checkout-coupon-row {
    align-items: stretch;
    flex-direction: column;
  }

  .checkout-coupon-row .btn {
    width: 100%;
  }

  .order-success-modal {
    align-items: stretch;
    padding: 0;
  }

  .order-success-inner {
    border-radius: 0;
    height: 100dvh;
    max-height: 100dvh;
    max-width: 100vw;
    width: 100vw;
  }

  .order-success-header {
    min-height: 58px;
    padding: 10px 14px;
  }

  .order-success-header h2 {
    font-size: 21px;
  }

  .order-success-body {
    padding: 14px;
  }

  .order-confirmation h3 {
    font-size: 24px;
  }

  .order-reference-row {
    align-items: stretch;
    flex-direction: column;
  }

  .order-reference-copy {
    width: 100%;
  }
}

/* Bulk order page */
.bulk-page {
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  padding-bottom: 56px;
  padding-top: 26px;
  position: relative;
}
.bulk-page::before {
  background:
    radial-gradient(720px 320px at -4% 8%, rgba(20, 155, 215, 0.16), transparent 72%),
    radial-gradient(680px 260px at 105% 32%, rgba(6, 55, 85, 0.14), transparent 70%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}
.bulk-hero {
  background:
    radial-gradient(1000px 440px at 0% -18%, rgba(255, 255, 255, 0.24), transparent 58%),
    linear-gradient(130deg, #043656 0%, #06578a 46%, #149bd7 100%);
  border: 1px solid rgba(10, 68, 102, 0.55);
  border-radius: 24px;
  box-shadow: 0 22px 44px rgba(5, 58, 90, 0.22);
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  margin-bottom: 18px;
  overflow: hidden;
  padding: 32px;
  position: relative;
}
.bulk-hero::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}
.bulk-hero-copy h1 {
  color: #ffffff;
  font-family: "Sora", "Manrope", "Inter", sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.3rem);
  line-height: 1.1;
  margin-bottom: 14px;
  max-width: 760px;
}
.bulk-hero-copy p {
  color: rgba(245, 252, 255, 0.94);
  font-size: 17px;
  margin: 0 0 16px;
  max-width: 760px;
}
.bulk-hero-copy .eyebrow {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: #f6fbff;
  display: inline-flex;
  font-size: 11px;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  padding: 8px 12px;
}
.bulk-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.bulk-pill-row span {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 12px;
  text-transform: uppercase;
}
.bulk-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.bulk-hero-actions .btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.95);
}
.bulk-hero-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(4, 45, 70, 0.14);
  padding: 20px;
  position: relative;
  z-index: 1;
}
.bulk-hero-card h2 {
  color: #0b2f46;
  font-size: 22px;
  margin-bottom: 12px;
}
.bulk-hero-card ul {
  margin: 0 0 16px;
  padding-left: 18px;
}
.bulk-hero-card li {
  color: #243746;
  margin-bottom: 8px;
}
.bulk-process {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 0 18px;
}
.bulk-process-card {
  background: linear-gradient(180deg, #ffffff, #f8fcff);
  border: 1px solid #d7e8f5;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  padding: 18px;
}
.bulk-process-card span {
  background: #e8f4fe;
  border-radius: 999px;
  color: #0b5a85;
  display: inline-flex;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  padding: 7px 10px;
}
.bulk-process-card h3 {
  color: #0f2231;
  font-size: 20px;
  margin-bottom: 8px;
}
.bulk-process-card p {
  color: #385164;
  font-size: 14px;
  margin: 0;
}
.bulk-form-section {
  background: linear-gradient(180deg, #ffffff, #fbfeff);
  border: 1px solid #cfe4f2;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  padding: 26px;
}
.bulk-form-head {
  align-items: flex-start;
  border-bottom: 1px solid #e5f0f7;
  margin-bottom: 18px;
  padding-bottom: 16px;
}
.bulk-response-note {
  background: #e8f5ff;
  border: 1px solid #bfddf4;
  border-radius: 999px;
  color: #0d557d;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 12px;
  text-transform: uppercase;
}
.bulk-form-layout {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.34fr);
}
.bulk-form label {
  color: #2f4050;
  display: block;
  font-size: 13px;
  font-weight: 700;
}
.bulk-form input,
.bulk-form select,
.bulk-form textarea {
  background: #fdfefe;
  border: 1px solid #cddfeb;
  border-radius: 12px;
  color: #0f2231;
  font-size: 14px;
  margin-top: 5px;
  padding: 11px 12px;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  width: 100%;
}
.bulk-form input:focus,
.bulk-form select:focus,
.bulk-form textarea:focus {
  background: #ffffff;
  border-color: #149bd7;
  box-shadow: 0 0 0 3px rgba(20, 155, 215, 0.12);
  outline: none;
}
.bulk-form textarea {
  resize: vertical;
}
.bulk-grid {
  display: grid;
  gap: 13px;
  margin-bottom: 13px;
}
.bulk-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.bulk-grid.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.bulk-products-fieldset {
  background: #f9fcff;
  border: 1px solid #d7e8f4;
  border-radius: 14px;
  margin: 0 0 13px;
  padding: 14px;
}
.bulk-products-fieldset legend {
  color: #204155;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0 8px;
  text-transform: uppercase;
}
.bulk-checkbox-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.bulk-checkbox-grid label {
  align-items: center;
  background: #ffffff;
  border: 1px solid #d7e5ef;
  border-radius: 10px;
  display: flex;
  font-size: 13px;
  font-weight: 600;
  gap: 8px;
  min-height: 44px;
  padding: 8px 10px;
}
.bulk-checkbox-grid input[type='checkbox'] {
  accent-color: var(--avs-blue);
  margin: 0;
  width: auto;
}
.bulk-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}
.bulk-form-actions .btn {
  flex: 1;
  min-height: 46px;
  min-width: 210px;
  text-align: center;
}
.bulk-form-status {
  color: #304556;
  font-size: 14px;
  margin: 12px 0 0;
}
.bulk-form-status.success {
  color: #0f766e;
  font-weight: 700;
}
.bulk-form-status.error {
  color: #b91c1c;
  font-weight: 700;
}
.required {
  color: #c2410c;
}
.bulk-assurance {
  background: linear-gradient(180deg, #f5fbff, #ecf6fd);
  border: 1px solid #c8e2f2;
  border-radius: 16px;
  padding: 16px;
}
.bulk-assurance h3 {
  color: #103850;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 20px;
  margin-bottom: 10px;
}
.bulk-assurance ul {
  margin: 0;
  padding-left: 18px;
}
.bulk-assurance li {
  color: #2f5065;
  font-size: 14px;
  margin-bottom: 10px;
}
.bulk-assurance-note {
  background: #ffffff;
  border: 1px solid #cfe4f2;
  border-radius: 12px;
  margin-top: 12px;
  padding: 12px;
}
.bulk-assurance-note strong {
  color: #0e3953;
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.bulk-assurance-note p {
  color: #355469;
  font-size: 13px;
  margin: 0;
}
.bulk-reveal {
  animation: bulk-fade-rise 0.62s ease both;
}
.bulk-process.bulk-reveal {
  animation-delay: 0.08s;
}
.bulk-form-section.bulk-reveal {
  animation-delay: 0.16s;
}
@keyframes bulk-fade-rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .bulk-reveal {
    animation: none;
  }
}

/* Track order page */
.track-page {
  margin: 0 auto;
  max-width: 1140px;
  padding-bottom: 38px;
  padding-top: 16px;
}
.track-hero {
  background:
    radial-gradient(circle at top right, rgba(20, 155, 215, 0.16), transparent 48%),
    linear-gradient(180deg, #fbfdff, #f6fbff);
  border: 1px solid #d5e5f2;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 12px;
  padding: 15px 18px 16px;
  position: relative;
}
.track-hero::before {
  background: linear-gradient(90deg, #0d3f67, #1595cf);
  border-radius: 999px;
  content: "";
  height: 2px;
  left: 18px;
  position: absolute;
  top: 0;
  width: 98px;
}
.track-hero-badge {
  align-items: center;
  color: #19567d;
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  gap: 8px;
  letter-spacing: 0.08em;
  margin-bottom: 7px;
  text-transform: uppercase;
}
.track-hero-icon {
  background: linear-gradient(180deg, #ffffff, #def0fb);
  border: 1px solid #9ec8e1;
  border-radius: 999px;
  display: inline-flex;
  height: 20px;
  justify-content: center;
  position: relative;
  width: 20px;
}
.track-hero-icon::before,
.track-hero-icon::after {
  content: "";
  position: absolute;
}
.track-hero-icon::before {
  border: 1px solid #0f6d9f;
  border-radius: 999px;
  height: 10px;
  top: 4px;
  width: 10px;
}
.track-hero-icon::after {
  background: #0f6d9f;
  border-radius: 999px;
  height: 4px;
  right: 3px;
  top: 3px;
  width: 4px;
}
.track-hero h1 {
  color: #0f2b41;
  font-size: clamp(28px, 2.9vw, 36px);
  letter-spacing: -0.01em;
  line-height: 1.06;
  margin-bottom: 6px;
}
.track-hero p {
  color: #35546a;
  font-size: 14px;
  margin: 0;
}
.track-lookup-wrap {
  margin-bottom: 10px;
}
.track-card {
  background: linear-gradient(180deg, #ffffff, #fcfeff);
  border: 1px solid #d2e3f1;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 20px;
}
.track-card h2 {
  color: #0f2f47;
  font-size: 23px;
  margin-bottom: 7px;
}
.track-lookup-card {
  margin: 0 auto;
  max-width: 840px;
}
.track-lookup-header p {
  color: #496277;
  margin: 0;
}
.track-lookup-security-note {
  align-items: center;
  background: #f3f9ff;
  border: 1px solid #d7e8f6;
  border-radius: 10px;
  color: #3f6077;
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  gap: 8px;
  margin-top: 10px;
  padding: 6px 10px;
}
.track-lock-dot {
  background: #e1f0fb;
  border: 1px solid #9ec7df;
  border-radius: 999px;
  display: inline-flex;
  height: 13px;
  position: relative;
  width: 13px;
}
.track-lock-dot::before,
.track-lock-dot::after {
  content: "";
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}
.track-lock-dot::before {
  border: 1px solid #0f6999;
  border-bottom: none;
  border-radius: 999px 999px 0 0;
  height: 4px;
  top: 1px;
  width: 6px;
}
.track-lock-dot::after {
  background: #0f6999;
  border-radius: 2px;
  height: 5px;
  top: 6px;
  width: 6px;
}
.track-lookup-compact {
  align-items: center;
  background: linear-gradient(180deg, #f6fbff, #eef8ff);
  border: 1px solid #c7dfef;
  border-radius: 12px;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 12px 14px;
}
.track-lookup-compact-kicker {
  color: #48657c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  margin: 0 0 3px;
  text-transform: uppercase;
}
.track-lookup-compact-meta {
  color: #102f46;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 3px;
  overflow-wrap: anywhere;
}
.track-lookup-compact-status {
  margin: 0;
}
.track-form {
  margin-top: 8px;
}
.track-form label {
  color: #213a4f;
  display: grid;
  font-size: 13px;
  font-weight: 700;
  gap: 6px;
  margin-bottom: 12px;
}
.track-label-text {
  color: #173951;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.track-label-note {
  color: #5a7082;
  font-size: 11px;
  font-weight: 700;
  margin-top: -3px;
}
.track-form-helper {
  color: #4f677a;
  font-size: 12px;
  font-weight: 600;
  margin: 2px 0 12px;
}
.track-field-help {
  color: #5a7083;
  font-size: 11px;
  line-height: 1.4;
  margin-top: -1px;
}
.track-form input {
  background: #ffffff;
  border: 1px solid #cadcea;
  border-radius: 9px;
  color: #102b41;
  font-size: 14px;
  min-height: 46px;
  padding: 10px 13px;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  width: 100%;
}
.track-form input:hover {
  border-color: #9cc4dd;
}
.track-form input:focus-visible {
  background: #fbfeff;
  border-color: #1082ba;
  box-shadow: 0 0 0 3px rgba(16, 130, 186, 0.15);
  outline: none;
}
.track-form-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.track-form .btn {
  margin-top: 2px;
}
.track-form .btn.is-loading {
  pointer-events: none;
}
.track-form .btn.is-loading::after {
  animation: track-spin 0.8s linear infinite;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  border-right-color: #ffffff;
  content: "";
  height: 14px;
  width: 14px;
}
.track-form-status {
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  margin: 8px 0 0;
  min-height: 20px;
  padding: 0;
}
.track-form-status.success {
  background: #edf9f3;
  border: 1px solid #cceadb;
  color: #176a49;
  padding: 8px 10px;
}
.track-form-status.error {
  background: #fef2f2;
  border: 1px solid #f7d0d0;
  color: #a32424;
  padding: 8px 10px;
}
.track-result-empty {
  align-items: flex-start;
  border: 1px dashed #c3d9ea;
  border-radius: 14px;
  color: #5a7183;
  display: grid;
  gap: 4px;
  margin: 0 auto;
  max-width: 840px;
  padding: 14px 15px;
}
.track-empty-icon {
  background: linear-gradient(180deg, #ffffff, #e7f3fd);
  border: 1px solid #b8d5e8;
  border-radius: 10px;
  display: inline-flex;
  height: 30px;
  margin-bottom: 2px;
  position: relative;
  width: 30px;
}
.track-empty-icon::before {
  border: 1px solid #0f6999;
  border-radius: 2px;
  content: "";
  height: 10px;
  left: 9px;
  position: absolute;
  top: 10px;
  width: 12px;
}
.track-empty-icon::after {
  background: #0f6999;
  content: "";
  height: 2px;
  left: 9px;
  position: absolute;
  top: 14px;
  width: 12px;
}
.track-result-empty h3 {
  color: #15364d;
  font-size: 17px;
  margin: 0;
}
.track-result-empty p {
  margin: 0;
}
.track-result-card {
  animation: track-card-in 0.32s ease;
  background: #fff;
  border: 1px solid #cee1ee;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 18px;
}
.track-status-hero {
  align-items: flex-start;
  border-bottom: 1px solid #dae8f2;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding-bottom: 14px;
}
.track-status-kicker {
  color: #0f638f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin: 0 0 6px;
  text-transform: uppercase;
}
.track-status-copy h2 {
  color: #0f273c;
  font-size: 26px;
  line-height: 1.1;
  margin: 0 0 7px;
}
.track-status-copy p {
  color: #375165;
  margin: 0;
}
.track-order-reference {
  color: #526a7e;
  font-size: 13px;
  margin-top: 6px;
  overflow-wrap: anywhere;
}
.track-order-reference strong {
  color: #102b40;
}
.track-status-side {
  flex: 0 0 auto;
}
.track-status-badge {
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 6px 11px;
  text-transform: uppercase;
}
.track-status-badge.created {
  background: #eaf3fa;
  border-color: #cfe0ee;
  color: #215171;
}
.track-status-badge.paid {
  background: #eaf8f1;
  border-color: #cae8d9;
  color: #126848;
}
.track-status-badge.packed,
.track-status-badge.dispatched {
  background: #ecf6fe;
  border-color: #d2e7f8;
  color: #0f628f;
}
.track-status-badge.delivered {
  background: #eaf9f0;
  border-color: #c7e8d6;
  color: #156a47;
}
.track-status-badge.verification_failed,
.track-status-badge.cancelled {
  background: #fef2f2;
  border-color: #f4d4d4;
  color: #b91c1c;
}
.track-status-badge.created,
.track-status-badge.paid,
.track-status-badge.packed,
.track-status-badge.dispatched,
.track-status-badge.delivered,
.track-status-badge.verification_failed,
.track-status-badge.cancelled,
.track-status-badge.default {
  white-space: nowrap;
}
.track-progress-wrap {
  margin-top: 15px;
}
.track-key-facts {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 12px;
}
.track-key-fact {
  background: #f8fcff;
  border: 1px solid #d6e7f4;
  border-radius: 10px;
  padding: 10px;
}
.track-key-fact span {
  color: #5d7283;
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
  text-transform: uppercase;
}
.track-key-fact strong {
  color: #112d43;
  display: block;
  font-size: 14px;
  overflow-wrap: anywhere;
}
.track-status-inline-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.track-status-badge.default {
  background: #edf6fd;
  border-color: #d4e7f6;
  color: #124f73;
}
.track-content-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 0.32fr);
  margin-top: 14px;
}
.track-main-column,
.track-side-column {
  display: grid;
  gap: 12px;
}
.track-panel {
  background: #fafdff;
  border: 1px solid #d5e5f1;
  border-radius: 12px;
  padding: 14px;
}
.track-panel h3 {
  color: #143a56;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.track-items {
  display: grid;
  gap: 10px;
}
.track-item-row {
  align-items: center;
  background: #ffffff;
  border: 1px solid #d6e6f1;
  border-radius: 10px;
  display: flex;
  gap: 10px;
  min-height: 84px;
  padding: 10px 12px;
}
.track-item-media {
  flex: 0 0 auto;
}
.track-item-media img {
  border: 1px solid #d5e4ef;
  border-radius: 8px;
  display: block;
  height: 78px;
  object-fit: contain;
  width: 78px;
}
.track-item-copy {
  min-width: 0;
}
.track-item-row h4 {
  color: #10283d;
  font-size: 15px;
  margin: 0 0 4px;
  overflow-wrap: anywhere;
  text-transform: none;
}
.track-item-variant {
  color: #3f576a;
  font-size: 13px;
  margin: 0;
}
.track-item-meta {
  color: #536c80;
  font-size: 13px;
  margin: 4px 0 0;
}
.track-subtle {
  color: #64748b;
  font-size: 12px;
}
.track-address p {
  color: #233c4f;
  margin: 0 0 6px;
}
.track-address p:last-child {
  margin-bottom: 0;
}
.track-shipping-list {
  margin: 0;
  padding: 0;
}
.track-shipping-list p {
  color: #2c485e;
  font-size: 13px;
  margin: 0 0 6px;
}
.track-shipping-list p:last-child {
  margin-bottom: 0;
}
.track-summary-panel .track-summary-row {
  align-items: center;
  color: #244159;
  display: flex;
  font-size: 14px;
  justify-content: space-between;
  min-height: 36px;
}
.track-summary-panel .track-summary-row span {
  color: #4f6678;
}
.track-summary-panel .track-summary-row.total {
  border-top: 1px solid #dbe8f2;
  color: #10283d;
  margin-top: 4px;
  padding-top: 6px;
}
.track-summary-panel .track-summary-row.total strong {
  font-size: 18px;
}
.track-payment-state {
  color: #546b7d;
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 6px;
}
.track-payment-state.is-paid {
  color: #146846;
}
.track-payment-state.is-pending {
  color: #8b5711;
}
.track-payment-amount {
  color: #0f2a40;
  font-size: 22px;
  font-weight: 800;
  margin: 6px 0;
}
.track-payment-ref {
  color: #4f677a;
  font-size: 13px;
  margin: 0;
  overflow-wrap: anywhere;
}
.track-inline-copy {
  background: #fff;
  border: 1px solid #c7dbea;
  border-radius: 8px;
  color: #0e5f8b;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  margin-left: 6px;
  min-height: 30px;
  padding: 0 8px;
}
.track-inline-copy:focus-visible,
.track-lookup-compact .btn:focus-visible,
.track-form .btn:focus-visible {
  outline: 2px solid rgba(15, 127, 181, 0.5);
  outline-offset: 2px;
}
.track-timeline {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.track-step {
  align-items: flex-start;
  display: grid;
  gap: 8px;
  grid-template-columns: 10px minmax(0, 1fr);
  padding-right: 8px;
  position: relative;
}
.track-step::after {
  background: #d5e4ef;
  content: "";
  height: 2px;
  left: 14px;
  position: absolute;
  right: -4px;
  top: 9px;
}
.track-step:last-child::after {
  display: none;
}
.track-step .dot {
  background: #b6c5cf;
  border: 2px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #b6c5cf;
  height: 10px;
  margin-top: 4px;
  width: 10px;
}
.track-step.done .dot {
  background: #1184bc;
  box-shadow: 0 0 0 1px #1184bc;
}
.track-step.done::after {
  background: #1184bc;
}
.track-step.current .dot {
  background: #1184bc;
  box-shadow: 0 0 0 1px #1184bc, 0 0 0 4px rgba(17, 132, 188, 0.14);
}
.track-step.pending .dot {
  background: #bfcdd6;
  box-shadow: 0 0 0 1px #bfcdd6;
}
.track-step strong {
  color: #173a56;
  display: block;
  font-size: 13px;
  line-height: 1.3;
}
.track-step p {
  color: #5f7485;
  font-size: 11px;
  line-height: 1.35;
  margin: 0;
}
.track-support-strip {
  align-items: center;
  border-top: 1px solid #dce9f3;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 12px;
}
.track-support-strip p {
  color: #334d61;
  margin: 0;
}

@keyframes track-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes track-card-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .track-key-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Product detail modal */
.product-detail-overlay {
  background: rgba(0, 0, 0, 0.35);
  z-index: 100;
}
.product-detail-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 101;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 16px;
}
.product-detail-modal.open { display: flex; }
.product-detail-inner {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 32px);
  max-height: calc(100dvh - 32px);
  max-width: min(1120px, calc(100vw - 32px));
  overflow: hidden;
  position: relative;
  width: min(1120px, calc(100vw - 32px));
}
.product-detail-toolbar {
  align-items: center;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(207, 221, 232, 0.9);
  display: flex;
  flex-shrink: 0;
  gap: 12px;
  justify-content: space-between;
  padding: 14px 18px;
  position: sticky;
  top: 0;
  z-index: 4;
}
.product-detail-toolbar h2 {
  font-size: 15px;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}
.product-detail-content {
  -webkit-overflow-scrolling: touch;
  flex: 1;
  min-height: 0;
  min-width: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 18px 18px calc(18px + env(safe-area-inset-bottom, 0px));
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(79, 107, 130, 0.55) transparent;
}
.product-detail-content::-webkit-scrollbar {
  width: 10px;
}
.product-detail-content::-webkit-scrollbar-thumb {
  background: rgba(79, 107, 130, 0.42);
  border: 2px solid rgba(255, 255, 255, 0.96);
  border-radius: 999px;
}
.product-detail-content::-webkit-scrollbar-track {
  background: transparent;
}
.product-detail-close {
  align-items: center;
  background: #f3f8fc;
  border: 1px solid #d5e4ef;
  border-radius: 999px;
  color: var(--avs-ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 28px;
  height: 40px;
  justify-content: center;
  line-height: 1;
  position: static;
  width: 40px;
  z-index: 5;
}
.product-detail-close:hover {
  background: #eef5fb;
}
.product-detail-layout {
  display: grid;
  gap: 18px;
  min-width: 0;
}
.product-detail-hero {
  align-items: start;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
}
.product-detail-main {
  align-content: start;
  display: grid;
  gap: 12px;
  min-width: 0;
}
.product-detail-head-row {
  align-items: flex-start;
  display: flex;
  gap: 14px;
  justify-content: space-between;
}
.product-detail-tail {
  display: grid;
  gap: 14px;
}
.product-detail-tail .product-detail-section {
  margin-bottom: 0;
}
.product-detail-visual {
  display: grid;
  gap: 12px;
  align-content: start;
  align-self: start;
  position: sticky;
  top: 0;
}
.product-detail-image-zoom {
  align-items: center;
  background: #eef2f5;
  border: 1px solid var(--avs-border);
  border-radius: 14px;
  cursor: zoom-in;
  display: flex;
  justify-content: center;
  max-height: min(68vh, 700px);
  max-height: min(68dvh, 700px);
  min-height: clamp(240px, 32vw, 480px);
  overflow: hidden;
  opacity: 1;
  padding: 12px;
  position: relative;
  visibility: visible;
}
.product-detail-image-zoom.is-zoomed {
  cursor: zoom-out;
}
.product-detail-image {
  background: #eef2f5;
  border-radius: 10px;
  display: block;
  filter: none;
  height: auto;
  max-height: min(60vh, 620px);
  max-height: min(60dvh, 620px);
  max-width: 100%;
  object-fit: contain;
  opacity: 1;
  transition: transform 0.28s ease, filter 0.28s ease;
  transform-origin: center center;
  visibility: visible;
  width: 100%;
}
.product-detail-image-zoom:hover .product-detail-image,
.product-detail-image-zoom.is-zoomed .product-detail-image {
  transform: scale(1.14);
}
.product-detail-gallery {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
}
.product-detail-thumb {
  align-items: center;
  background: #fff;
  border: 1px solid var(--avs-border);
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  min-height: 78px;
  overflow: hidden;
  padding: 0;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.product-detail-thumb:hover,
.product-detail-thumb.active {
  border-color: rgba(20,155,215,0.7);
  box-shadow: 0 8px 18px rgba(15,137,194,0.12);
  transform: translateY(-1px);
}
.product-detail-thumb img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.product-detail-kicker {
  color: var(--avs-accent);
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.product-detail-head h3 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  margin-bottom: 8px;
}
.product-detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.product-detail-badge {
  background: #edf6fd;
  border: 1px solid #bfe1f7;
  border-radius: 999px;
  color: #0f4e72;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  text-transform: uppercase;
}
.product-detail-actions-inline {
  display: flex;
  flex-shrink: 0;
  justify-content: flex-end;
  margin: 0;
}
.wishlist-toggle {
  position: static;
}
.product-detail-stock {
  color: #466174;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: -2px 0 0;
  text-transform: uppercase;
}
.product-detail-desc {
  color: #4b5563;
  line-height: 1.55;
  margin: 8px 0 14px;
}
.product-detail-desc-full {
  font-size: 14px;
  margin: 0;
  max-width: 980px;
}
.product-detail-section {
  border: 1px solid var(--avs-border);
  border-radius: 14px;
  margin: 0 0 12px;
  padding: 12px 13px;
}
.product-detail-section-compact {
  padding: 11px 12px;
}
.product-detail-section-wide {
  padding: 14px 15px;
}
.product-detail-section-muted {
  background: #f6fafc;
}
.section-heading-row {
  margin-bottom: 8px;
}
.section-heading-row h4 {
  font-size: 15px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.product-highlight-list {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}
.product-highlight-list li {
  background: #f4f9fd;
  border: 1px solid #dfeaf4;
  border-radius: 10px;
  color: #1f2937;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 10px;
  position: relative;
  padding-left: 32px;
}
.product-highlight-list li::before {
  background: #0d7ac6;
  border-radius: 50%;
  content: "";
  height: 8px;
  left: 14px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.product-best-for {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-best-for span {
  background: #fff7eb;
  border: 1px solid #f1d49a;
  border-radius: 999px;
  color: #7a4b00;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
}
.product-detail-offer {
  background: radial-gradient(circle at 5% 5%, #fff8ea 0%, #ffe9cb 48%, #ffdca4 100%);
  border: 1px solid #f0c277;
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(181, 111, 13, 0.2);
  margin: 0 0 14px;
  padding: 14px;
}
.product-detail-offer .offer-tag {
  color: #8f4b00;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin: 0 0 4px;
  text-transform: uppercase;
}
.product-detail-offer h4 {
  color: #472300;
  font-size: 17px;
  line-height: 1.2;
  margin: 0 0 5px;
}
.product-detail-offer p {
  color: #6a3900;
  font-size: 13px;
  font-weight: 600;
  margin: 0;
}
.variant-selector {
  margin: 0;
}
.variant-group + .variant-group {
  margin-top: 10px;
}
.variant-group-head {
  align-items: baseline;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin: 0 0 8px;
}
.variant-group-label {
  color: #1f2937;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.variant-group-value {
  color: #4b5563;
  font-size: 12px;
  font-weight: 800;
}
.variant-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.variant-chip {
  align-items: center;
  background: #eef2f5;
  border: 1px solid #d5dbe2;
  border-radius: 10px;
  color: #1f2937;
  cursor: pointer;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition), color var(--transition), transform var(--transition);
}
.variant-chip.active {
  background: #eaf6fd;
  border-color: rgba(20,155,215,0.8);
  box-shadow: 0 8px 18px rgba(15,137,194,0.12);
  color: #0d5d8f;
}
.variant-chip:hover:not(.disabled) {
  border-color: rgba(20,155,215,0.56);
  transform: translateY(-1px);
}
.variant-chip-label {
  display: inline-block;
}
.variant-chip-check {
  color: currentColor;
  display: none;
  font-size: 12px;
  font-weight: 900;
}
.variant-chip.active .variant-chip-check {
  display: inline-block;
}
.variant-chip.disabled {
  background: #f7f9fb;
  color: #8b9199;
  cursor: not-allowed;
  position: relative;
}
.variant-chip.disabled::after {
  content: '';
  border-top: 2px solid #98a1ab;
  left: 8px;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: rotate(-50deg);
}
.jersey-size-selector {
  margin: 0;
}
.jersey-size-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.jersey-size-chip {
  align-items: center;
  background: #eef2f5;
  border: 1px solid #d5dbe2;
  border-radius: 10px;
  color: #1f2937;
  cursor: pointer;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  justify-content: center;
  min-height: 38px;
  min-width: 48px;
  padding: 8px 14px;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition), color var(--transition), transform var(--transition);
}
.jersey-size-chip.active {
  background: #eaf6fd;
  border-color: rgba(20,155,215,0.8);
  box-shadow: 0 8px 18px rgba(15,137,194,0.12);
  color: #0d5d8f;
}
.jersey-size-chip:hover {
  border-color: rgba(20,155,215,0.56);
  transform: translateY(-1px);
}
.product-detail-price {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.product-detail-price .price {
  font-size: 24px;
  font-weight: 900;
}
.product-detail-price .mrp {
  color: #6b7280;
  font-size: 14px;
  text-decoration: line-through;
}
.product-detail-purchase {
  background: linear-gradient(180deg, rgba(248, 251, 254, 0.94), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(207, 221, 232, 0.92);
  border-radius: 16px;
  padding: 12px;
}
.product-detail-purchase-summary {
  display: grid;
  gap: 8px;
  margin-bottom: 10px;
}
.product-detail-purchase-summary > div {
  align-items: baseline;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
.product-detail-purchase-summary-label {
  color: #5a6f82;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.product-detail-purchase-summary strong {
  color: #102636;
  font-size: 14px;
  font-weight: 800;
  text-align: right;
}
.product-detail-in-bag {
  background: #eaf6fd;
  border: 1px solid #c2deef;
  border-radius: 999px;
  color: #0f5f8f;
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  margin: 2px 0 0;
  padding: 5px 10px;
  width: fit-content;
}
.product-detail-qty-row {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 8px;
}
.product-detail-qty-label {
  color: #1f3344;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}
.product-detail-actions .btn {
  flex: 1;
  min-width: 180px;
}
.product-detail-actions .product-quantity {
  flex: 0 0 auto;
  min-width: 140px;
}
.product-detail-add-bag-btn {
  background: #f3f9fe;
  border: 1px solid #7cb5d8;
  color: #0c4f76;
}
.product-detail-add-bag-btn:hover {
  background: #e7f4fd;
  border-color: #4f95c1;
}
.product-detail-buy-now-btn {
  background: #0a2f4a;
  border-color: #0a2f4a;
  color: #ffffff;
}
.product-detail-buy-now-btn:hover {
  background: #0f4264;
  border-color: #0f4264;
}
.product-detail-purchase-message {
  font-size: 12px;
  font-weight: 700;
  margin: 10px 0 0;
}
.product-detail-purchase-message.success {
  color: #126f56;
}
.product-detail-purchase-message.error {
  color: #b42318;
}
.product-detail-assurance {
  color: #5b6f82;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 10px 0 0;
  text-transform: uppercase;
}
.product-spec-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}
.product-spec-grid-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.product-spec-grid div {
  background: #f8fafc;
  border: 1px solid #dfeaf4;
  border-radius: 10px;
  padding: 10px 12px;
}
.product-spec-grid dt {
  color: #667085;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.product-spec-grid dd {
  color: #1f2937;
  font-size: 13px;
  font-weight: 700;
  margin: 0;
}
.product-inline-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.product-related-grid {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}
.product-mini-card {
  background: #fff;
  border: 1px solid var(--avs-border);
  border-radius: 12px;
  display: grid;
  gap: 10px;
  overflow: hidden;
}
.product-mini-card img {
  aspect-ratio: 1;
  display: block;
  object-fit: cover;
  width: 100%;
}
.product-mini-card div {
  padding: 0 10px 12px;
}
.product-mini-card h5 {
  font-size: 14px;
  line-height: 1.35;
  margin: 0 0 4px;
}
.product-mini-card p {
  color: #374151;
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 8px;
}
.inline-link-btn {
  background: none;
  border: none;
  color: var(--avs-blue-dark);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  padding: 0;
}

@media (max-width: 980px) {
  .shop-section {
    padding: 24px 0 20px;
  }
  .shop-header-row {
    border-radius: 14px;
    gap: 10px 12px;
    grid-template-columns: 1fr;
    padding: 12px 14px;
  }
  .shop-header-row h1 {
    font-size: clamp(25px, 4.5vw, 32px);
  }
  .shop-header-row .section-note {
    font-size: 14px;
    max-width: 62ch;
  }
  .shop-summary-row {
    align-items: start;
    gap: 8px 10px;
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .shop-header-actions {
    justify-content: flex-start;
  }
  .product-meta {
    font-size: 12px;
    min-height: 30px;
  }
  .home-carousel-slide {
    min-height: clamp(560px, 70vh, 700px);
    padding: 66px 0 112px;
  }
  .home-carousel-content {
    max-width: min(680px, 72%);
  }
  .home-carousel h1 {
    font-size: clamp(38px, 6.2vw, 62px);
  }
  .home-carousel p:not(.carousel-kicker) {
    font-size: 17px;
    max-width: 560px;
  }
  .carousel-control {
    height: 46px;
    width: 46px;
  }
  .carousel-control-prev {
    left: 16px;
  }
  .carousel-control-next {
    right: 16px;
  }
  .product-detail-hero {
    grid-template-columns: 1fr;
  }
  .product-detail-visual {
    position: static;
  }
  .header-utility-inner { justify-content: flex-end; }
  .header-inner {
    align-items: center;
    gap: 12px;
    min-height: 72px;
    padding: 0 20px;
  }
  .brand { justify-content: flex-start; }
  .main-nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    width: 100%;
  }
  .store-menu-inner {
    min-height: 50px;
    padding: 7px 20px;
  }
  .header-actions {
    justify-content: flex-end;
    width: auto;
  }
  .header-search input { width: clamp(210px, 26vw, 240px); }
  .shortcut-grid a { flex: 1 1 calc(50% - 8px) !important; }
  .member-band-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .bulk-hero {
    grid-template-columns: 1fr;
    padding: 26px;
  }
  .bulk-hero-copy h1 {
    font-size: 34px;
  }
  .bulk-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .bulk-form-layout {
    grid-template-columns: 1fr;
  }
  .bulk-grid.three-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .bulk-checkbox-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .track-hero h1 {
    font-size: 32px;
  }
  .track-content-grid {
    grid-template-columns: 1fr;
  }
  .track-timeline {
    gap: 8px;
    grid-template-columns: 1fr;
  }
  .track-step {
    grid-template-columns: 10px 1fr;
    padding-right: 0;
  }
  .track-step::after {
    height: calc(100% - 8px);
    left: 4px;
    right: auto;
    top: 16px;
    width: 2px;
  }
  .track-step:last-child::after {
    display: none;
  }
  .legal-layout {
    grid-template-columns: 1fr;
  }
  .legal-summary {
    position: static;
  }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-actions {
    justify-self: stretch;
    max-width: none;
  }
  .review-summary {
    grid-template-columns: 1fr;
  }
  .team-showcase {
    gap: 22px;
    grid-template-columns: minmax(0, 1fr);
    padding: 46px 24px;
  }
  .team-showcase-copy h2 {
    font-size: clamp(34px, 5.2vw, 40px);
    max-width: 12ch;
  }
  .team-showcase-copy p:not(.eyebrow) {
    font-size: 16px;
    max-width: 60ch;
  }
  .team-showcase-visual {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    min-height: 0;
    width: 100%;
  }
  .team-showcase-portrait-featured {
    min-height: 266px;
  }
  .team-showcase-portrait-small {
    min-height: 126px;
  }
  .product-detail-hero { grid-template-columns: 1fr; }
  .product-detail-head h3 { font-size: clamp(24px, 4vw, 34px); }
  .product-detail-image-zoom {
    max-height: min(52vh, 520px);
    max-height: min(52dvh, 520px);
    min-height: clamp(220px, 44vw, 420px);
  }
  .product-spec-grid-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .header-inner {
    gap: 12px;
    min-height: 68px;
    padding: 0 16px;
  }
  .header-brand-group {
    gap: 10px;
  }
  .header-brand-divider {
    display: none;
  }
  .header-finder-cta {
    font-size: 10px;
    min-height: 38px;
    padding: 8px 12px;
  }
  .header-search input {
    width: clamp(150px, 22vw, 220px);
  }
}

@media (max-width: 600px) {
  .header-utility-inner {
    flex-wrap: nowrap;
    gap: 8px;
    justify-content: space-between;
    min-height: 40px;
    padding: 6px 16px;
  }
  .support-dropdown summary,
  .login-trigger-btn {
    font-size: 10px;
  }
  .support-dropdown-menu {
    min-width: 176px;
  }
  .header-inner {
    align-items: center;
    flex-direction: row;
    gap: 10px;
    min-height: 64px;
    padding: 0 16px;
  }
  .header-brand-group {
    flex: 1 1 auto;
    gap: 8px;
    min-width: 0;
  }
  .brand {
    flex: 1 1 auto;
    gap: 9px;
    min-width: 0;
  }
  .brand::after {
    display: none;
  }
  .brand-logo {
    border-radius: 10px;
    height: 42px;
    padding: 4px;
    width: 42px;
  }
  .brand-name {
    font-size: clamp(17px, 4.9vw, 20px);
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .header-brand-divider,
  .header-finder-cta {
    display: none;
  }
  .store-menu-inner {
    min-height: 48px;
    padding: 7px 14px;
  }
  .support-dropdown-menu {
    left: 0;
    right: auto;
  }
  .main-nav { display: none; }
  .header-actions {
    align-items: center;
    display: flex;
    flex: 1;
    flex-direction: row;
    gap: 8px;
    justify-content: flex-end;
    min-width: 0;
  }
  .header-actions-divider {
    display: none;
  }
  .header-search-toggle {
    display: inline-flex;
  }
  .header-search {
    display: none;
  }
  body.header-search-open .header-search {
    display: inline-flex;
    left: 16px;
    position: absolute;
    right: 16px;
    top: calc(100% + 8px);
    z-index: 92;
  }
  body.header-search-open .header-search input {
    background: #fff;
    box-shadow: 0 8px 18px rgba(10, 42, 66, 0.1);
    width: 100%;
  }
  body.header-search-open .header-search-toggle {
    background: rgba(230, 242, 252, 0.95);
    border-color: rgba(20, 155, 215, 0.58);
    color: #0e5f8e;
  }
  .site-header .btn-secondary,
  .cart-toggle {
    min-height: 40px;
    min-width: 40px;
    padding: 8px 10px;
  }
  .cart-label {
    display: none;
  }
  .cart-count {
    height: 20px;
    min-width: 20px;
    padding: 0 5px;
  }
  .nav-menu-toggle {
    min-height: 40px;
    min-width: 40px;
    padding: 8px 10px;
  }
  .nav-menu-toggle-text {
    display: none;
  }
  .finder-cta {
    font-size: 11px;
    gap: 7px;
    min-height: 38px;
    padding: 7px 11px;
  }
  .site-nav-drawer {
    max-width: 100%;
    width: 100vw;
  }
  .site-nav-drawer-scroll {
    gap: 18px;
    padding: 14px 14px 18px;
  }
  .site-nav-drawer-header,
  .site-nav-footer {
    padding-left: 14px;
    padding-right: 14px;
  }
  .site-nav-parent {
    min-height: 56px;
  }
  .site-nav-parent,
  .site-nav-row,
  .site-nav-child {
    min-height: 46px;
  }
  .bulk-page {
    padding-top: 16px;
  }
  .track-page {
    padding-top: 14px;
  }
  .track-hero {
    padding: 16px;
  }
  .track-hero::before {
    left: 16px;
    width: 88px;
  }
  .track-hero h1 {
    font-size: 28px;
  }
  .track-card,
  .track-result-card {
    padding: 14px;
  }
  .track-lookup-compact {
    align-items: stretch;
    flex-direction: column;
  }
  .track-form-grid {
    grid-template-columns: 1fr;
  }
  .track-status-hero {
    flex-direction: column;
    gap: 8px;
  }
  .track-status-copy h2 {
    font-size: 24px;
  }
  .track-item-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .track-item-media img {
    height: 72px;
    width: 72px;
  }
  .track-summary-panel .track-summary-row.total strong {
    font-size: 17px;
  }
  .track-payment-amount {
    font-size: 20px;
  }
  .track-support-strip {
    align-items: stretch;
    flex-direction: column;
  }
  .track-support-strip .btn {
    width: 100%;
  }
  .legal-hero-inner {
    padding: 42px 16px 46px;
  }
  .legal-hero h1 {
    font-size: 34px;
  }
  .legal-hero p {
    font-size: 16px;
  }
  .legal-layout {
    padding-top: 22px;
  }
}

/* =====================================================
   CATEGORY NAVIGATION - Highlighting & Active States
   ===================================================== */

/**
 * Section Highlight Effect
 * Applied to destination elements when navigated via category menu
 * Creates temporary AV-themed highlight with subtle animation
 */
#mainContent.section-highlighted {
  position: relative;
  animation: categoryHighlightFadeIn 320ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  border-radius: var(--radius);
}

@keyframes categoryHighlightFadeIn {
  0% {
    background-color: rgba(26, 174, 231, 0.08);
    box-shadow: 0 0 0 0 rgba(26, 174, 231, 0.3), 
                inset 0 0 0 1px rgba(20, 155, 215, 0.2);
  }
  50% {
    background-color: rgba(26, 174, 231, 0.12);
    box-shadow: 0 0 24px 4px rgba(26, 174, 231, 0.2),
                inset 0 0 0 2px rgba(20, 155, 215, 0.3);
  }
  100% {
    background-color: transparent;
    box-shadow: 0 0 0 0 rgba(26, 174, 231, 0);
  }
}

/* Respect user's reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  #mainContent.section-highlighted {
    animation: none;
    background-color: rgba(26, 174, 231, 0.06);
  }
}

/**
 * Active Menu Item State
 * Applied to navigation items that correspond to current product category
 * Provides visual feedback that the category is active/filtered
 */
.site-nav-child.active-category,
[data-shop-filter].active-category,
[data-shop-collection].active-category,
[data-shop-category-nav].active-category {
  background-color: rgba(20, 155, 215, 0.08);
  color: var(--avs-blue-dark);
  font-weight: 600;
  border-left: 3px solid var(--avs-blue);
  padding-left: calc(24px - 3px);
}

.site-nav-child.active-category::after {
  content: '✓';
  display: inline-block;
  margin-left: 6px;
  color: var(--avs-blue);
  font-weight: 700;
}

/* Active button state for collection/filter buttons */
button[data-shop-filter].active-category,
button[data-shop-collection].active-category {
  background: linear-gradient(135deg, rgba(20, 155, 215, 0.12) 0%, rgba(20, 155, 215, 0.06) 100%);
  color: var(--avs-blue-dark);
  border: 2px solid var(--avs-blue-light);
  box-shadow: 0 4px 16px rgba(20, 155, 215, 0.12);
}

/* Accessibility: focus visible on active items */
.active-category:focus-visible {
  outline: 2px solid var(--avs-blue);
  outline-offset: 2px;
}

/* Highlight for category cards */
.shop-category-card.active-category {
  background: linear-gradient(135deg, rgba(20, 155, 215, 0.06) 0%, rgba(20, 155, 215, 0.02) 100%);
  border: 2px solid var(--avs-blue-light);
  box-shadow: var(--shadow-blue);
}

/**
 * Mobile-specific active category styling
 */
@media (max-width: 900px) {
  .site-nav-child.active-category {
    padding: 8px 12px 8px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 4px;
  }

  button[data-shop-filter].active-category,
  button[data-shop-collection].active-category {
    font-weight: 600;
  }
}

@media (max-width: 600px) {
  .legal-section {
    padding: 18px;
  }
  .legal-section h2 {
    font-size: 19px;
  }
  .legal-contact-list {
    flex-direction: column;
  }
  .legal-contact-list a {
    text-align: center;
  }
  .bulk-hero {
    border-radius: 16px;
    padding: 18px;
  }
  .bulk-hero-copy h1 {
    font-size: 30px;
  }
  .bulk-hero-copy p {
    font-size: 15px;
  }
  .bulk-hero-actions {
    flex-direction: column;
  }
  .bulk-hero-actions .btn {
    width: 100%;
  }
  .bulk-process {
    grid-template-columns: 1fr;
  }
  .bulk-process-card h3 {
    font-size: 18px;
  }
  .bulk-form-section {
    padding: 16px;
  }
  .bulk-grid.two-col,
  .bulk-grid.three-col,
  .bulk-checkbox-grid {
    grid-template-columns: 1fr;
  }
  .bulk-form-actions {
    flex-direction: column;
  }
  
  /* New Premium Sections Mobile */
  .av-why-section {
    padding: var(--space-10) 0;
    margin: var(--space-8) 0;
  }
  
  .why-header h2 {
    font-size: 1.8rem;
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }
  
  .av-find-my-bat-hero {
    padding: var(--space-10) 0;
    margin: var(--space-8) 0;
    border-radius: var(--radius-lg);
  }
  
  .find-my-bat-content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  
  .find-my-bat-text h2 {
    font-size: 1.8rem;
  }

  .find-my-bat-panel {
    padding: var(--space-6) var(--space-6);
  }

  .find-my-bat-factors {
    gap: var(--space-4);
  }
  .bulk-form-actions .btn {
    width: 100%;
  }
  .contact-chip strong { font-size: 16px; }
  .product-detail-modal {
    align-items: stretch;
    padding: 0;
  }
  .product-detail-inner {
    border-radius: 0;
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    max-width: 100vw;
    width: 100vw;
  }
  .product-detail-toolbar {
    padding: 12px 14px;
  }
  .product-detail-content {
    padding: 12px 14px calc(16px + env(safe-area-inset-bottom, 0px));
  }
  .product-detail-head-row {
    flex-direction: column;
  }
  .product-detail-head { margin-top: 6px; }
  .product-detail-actions-inline {
    justify-content: flex-start;
    margin: 0;
  }
  .product-detail-image-zoom {
    cursor: default;
    max-height: 40vh;
    max-height: 40dvh;
    min-height: 180px;
    padding: 10px;
  }
  .product-detail-image,
  .product-detail-image-zoom:hover .product-detail-image,
  .product-detail-image-zoom.is-zoomed .product-detail-image {
    max-height: 36vh;
    max-height: 36dvh;
    transform: none;
  }
  .product-detail-section {
    padding: 12px;
  }
  .product-highlight-list,
  .product-spec-grid {
    grid-template-columns: 1fr;
  }
  .product-detail-actions {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 14px;
    bottom: 0;
    box-shadow: 0 -12px 30px rgba(15, 23, 42, 0.08);
    gap: 8px;
    margin: 12px 0 0;
    padding: 10px;
    position: sticky;
    z-index: 8;
  }
  .product-detail-actions .btn,
  .product-detail-actions .product-quantity {
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
  }
  .product-detail-qty-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .product-detail-qty-row .product-quantity {
    width: 100%;
  }
  .product-detail-qty-row .quantity-stepper {
    grid-template-columns: 42px 1fr 42px;
    width: 100%;
  }
  .product-detail-qty-row .quantity-stepper button {
    height: 40px;
    width: 42px;
  }
  .product-detail-actions .btn:last-child {
    flex-basis: 100%;
  }
  .product-detail-actions .product-quantity {
    min-width: 0;
  }
  .product-detail-actions .product-quantity button,
  .product-detail-actions .product-quantity .quantity-count {
    min-height: 40px;
  }
  .home-carousel-slide {
    min-height: 620px;
    padding: 72px 0 118px;
  }
  .home-carousel-slide::before {
    background: var(--slide-overlay-mobile, linear-gradient(180deg, rgba(6, 55, 85, 0.74), rgba(7, 95, 157, 0.56)));
  }
  .home-carousel-bg {
    object-position: var(--slide-bg-pos-mobile, var(--slide-bg-pos, center));
    opacity: var(--slide-image-opacity-mobile, var(--slide-image-opacity, 0.64));
  }
  .home-carousel-content {
    max-width: min(100%, 92%);
  }
  .home-carousel h1 {
    font-size: clamp(34px, 9.8vw, 44px);
    margin-bottom: 10px;
  }
  .home-carousel p:not(.carousel-kicker) {
    font-size: 15px;
    line-height: 1.52;
    margin-bottom: 18px;
    max-width: 100%;
  }
  .carousel-meta {
    font-size: 10px;
    gap: 6px 10px;
    margin: -4px 0 20px;
  }
  .carousel-actions { flex-direction: column; }
  .carousel-actions .btn {
    min-height: 44px;
    text-align: center;
    width: 100%;
  }
  .carousel-control {
    bottom: 96px;
    height: 40px;
    top: auto;
    transform: none;
    width: 40px;
  }
  .carousel-control-prev { left: 18px; }
  .carousel-control-next { right: 18px; }
  .carousel-footer {
    bottom: 30px;
    gap: 10px;
  }
  .carousel-status {
    font-size: 10px;
    letter-spacing: 0.1em;
  }
  .carousel-dots button {
    height: 4px;
    width: 16px;
  }
  .carousel-dots button.active {
    width: 32px;
  }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .reviews-heading .btn,
  .review-form-actions .btn {
    text-align: center;
    width: 100%;
  }
  .reviews-toolbar {
    justify-content: stretch;
  }
  .reviews-sort-label {
    min-width: 0;
    width: 100%;
  }
  .review-card-header {
    flex-direction: column;
  }
  .review-bar-row {
    grid-template-columns: 50px minmax(0, 1fr) 28px;
  }
  .review-modal {
    align-items: flex-start;
    padding: 10px;
  }
  .review-modal-dialog {
    max-height: 96vh;
    padding: 22px 16px;
  }
  .review-modal-head h2 {
    font-size: 22px;
  }
  .shop-section {
    padding: 18px 0 16px;
  }
  .shop-header-row {
    border-radius: 12px;
    margin-bottom: 12px;
    padding: 11px 12px;
  }
  .shop-header-row::before {
    left: 14px;
    top: -14px;
  }
  .shop-header-row h1 {
    font-size: clamp(23px, 6.5vw, 28px);
  }
  .shop-header-row .section-note {
    font-size: 14px;
    max-width: 100%;
  }
  .shop-summary-row {
    align-items: flex-start;
    gap: 7px;
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .shop-header-actions {
    justify-content: flex-start;
  }
  .shop-filter-result-label,
  .shop-filter-clear-btn {
    min-height: 28px;
  }
  .shop-filter-result-label {
    font-size: 11px;
  }
  .shop-filter-clear-btn {
    font-size: 12px;
  }
  .product-meta {
    font-size: 11px;
    gap: 6px;
    justify-self: start;
    min-height: 28px;
    padding: 5px 10px;
    white-space: normal;
  }
  .shop-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

@media (prefers-reduced-motion: reduce) {
  .product-meta {
    transition: none;
  }
}
  .quick-filter-group { justify-content: flex-start; }
  .product-grid.product-grid-featured .product-card { flex-basis: 260px; }
  .kit-builder-section { grid-template-columns: 1fr; }
  .kit-actions { justify-content: flex-start; }
  .shop-category-card { grid-template-columns: 96px 1fr; }
  .collection-all { width: 100%; }
  .quick-shop-section,
  .category-section,
  .collection-section,
  .featured-section {
    padding-top: 28px;
  }
  .story-section,
  .contact-section { grid-template-columns: 1fr; }
  .contact-section {
    border-radius: 18px;
    gap: 18px;
    padding: 20px 16px;
  }
  .contact-concierge-copy h2 {
    font-size: clamp(30px, 9vw, 38px);
    max-width: 100%;
  }
  .contact-concierge-copy .contact-concierge-lead {
    font-size: 15px;
    line-height: 1.52;
  }
  .contact-concierge-trust {
    font-size: 11px;
    line-height: 1.5;
  }
  .contact-hero-card {
    border-radius: 18px;
    padding: 16px;
  }
  .contact-hero-card h3 {
    font-size: clamp(24px, 7.4vw, 31px);
  }
  .contact-hero-cta {
    width: 100%;
  }
  .get-in-touch-item {
    min-height: 70px;
  }
  .team-showcase {
    border-radius: 18px;
    gap: 18px;
    padding: 28px 16px;
  }
  .team-showcase-copy h2 {
    font-size: clamp(28px, 8.5vw, 34px);
    margin-bottom: 12px;
  }
  .team-showcase-copy p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.56;
  }
  .team-showcase-cta {
    margin-top: 18px;
    min-height: 46px;
    padding: 11px 20px;
  }
  .team-showcase-visual {
    gap: 10px;
    grid-template-columns: 1fr 1fr;
  }
  .team-showcase-portrait {
    border-radius: 14px;
  }
  .team-showcase-portrait-featured {
    min-height: 210px;
  }
  .team-showcase-portrait-small {
    min-height: 100px;
  }
  .team-showcase-portrait-meta {
    padding: 10px;
  }
  .contact-actions {
    grid-template-columns: 1fr;
    justify-self: stretch;
    max-width: none;
  }
  .member-band h2 { font-size: 24px; }

}

  @media (max-width: 600px) {
    .announcement-marquee {
      padding-top: env(safe-area-inset-top, 0px);
    }

    .header-utility-inner {
      min-height: 34px;
      padding: 4px 16px;
    }

    .header-inner {
      gap: 8px;
      min-height: 62px;
      padding: 0 12px;
    }

    .header-brand-group {
      flex: 1 1 auto;
      min-width: 0;
      overflow: hidden;
    }

    .brand {
      flex: 1 1 auto;
      min-width: 0;
      overflow: hidden;
    }

    .brand-logo {
      height: 44px;
      width: 44px;
    }

    .brand-name {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .header-actions {
      flex: 0 0 auto;
      flex-shrink: 0;
      gap: 6px;
      margin-left: auto;
      min-width: fit-content;
    }

    .header-search-toggle,
    .cart-toggle,
    .nav-menu-toggle {
      flex-shrink: 0;
      height: 42px;
      min-height: 42px;
      min-width: 42px;
      padding: 0;
      position: relative;
      width: 42px;
    }

    .cart-label,
    .nav-menu-toggle-text {
      display: none;
    }

    .cart-count {
      height: 18px;
      margin: 0;
      min-width: 18px;
      padding: 0 4px;
      position: absolute;
      right: -3px;
      top: -4px;
      z-index: 3;
    }

    body.header-search-open .header-search {
      left: 12px;
      right: 12px;
    }

    html,
    body {
      overflow-x: hidden;
    }
  }

  @media (max-width: 480px) {
    .header-utility {
      display: none;
    }

    .header-actions {
      gap: 5px;
    }

    .header-search-toggle,
    .cart-toggle,
    .nav-menu-toggle {
      height: 40px;
      min-height: 40px;
      min-width: 40px;
      width: 40px;
    }

    .brand-logo {
      height: 44px;
      padding: 4px;
      width: 44px;
    }

    .brand-name {
      font-size: clamp(14px, 4.4vw, 16px);
      max-width: 110px;
    }

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

  @media (max-width: 400px) {
    .header-inner {
      padding-left: 10px;
      padding-right: 10px;
    }

    .header-brand-group {
      max-width: calc(100% - 100px);
    }

    .brand-name {
      max-width: 88px;
    }
  }

  @media (max-width: 340px) {
    .brand-name {
      display: none;
    }
  }
