/** Shopify CDN: Minification failed

Line 965:18 Expected identifier but found whitespace
Line 965:25 Unexpected ";"

**/
/* ==========================================================================
   OFF SPIRE - Premium Shopify 2.0 Streetwear Theme
   Design System & Comprehensive Modular Stylesheet
   Inspired by Represent, Cole Buxton, Fear of God Essentials, Zara & Uniqlo
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens & Custom Properties
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette */
  --color-white: #FFFFFF;
  --color-off-white: #F9F9F8;
  --color-light-gray: #EAEAEA;
  --color-border: #E0E0E0;
  --color-beige: #ECE7DF;
  --color-beige-dark: #D8D1C5;
  --color-charcoal: #222222;
  --color-black: #000000;
  --color-accent: #111111;
  --color-sale: #000000;
  --color-success: #1E8E3E;
  
  /* Dynamic Semantic Colors (Editable via Liquid settings) */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F9F9F8;
  --text-primary: #000000;
  --text-muted: #666666;
  --accent-color: #000000;
  --border-color: #EAEAEA;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --heading-letter-spacing: 0.05em;
  --button-letter-spacing: 0.1em;

  /* Spacing Scale */
  --spacing-xxs: 0.25rem; /* 4px */
  --spacing-xs: 0.5rem;   /* 8px */
  --spacing-sm: 1rem;     /* 16px */
  --spacing-md: 1.5rem;   /* 24px */
  --spacing-lg: 2.5rem;   /* 40px */
  --spacing-xl: 4rem;     /* 64px */
  --spacing-xxl: 6rem;    /* 96px */

  /* Layout Boundaries */
  --container-max-width: 1440px;
  --container-padding: 1.5rem;
  --header-height: 80px;

  /* Transitions & Ease Functions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Elevation & Shadows */
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.04);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-drawer: -10px 0 40px rgba(0, 0, 0, 0.15);

  /* Border Radius */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --radius-full: 9999px;

  /* Z-Index Hierarchy */
  --z-sticky: 100;
  --z-header: 500;
  --z-backdrop: 900;
  --z-drawer: 1000;
  --z-modal: 1100;
  --z-toast: 1200;
}

/* --------------------------------------------------------------------------
   2. Modern Reset & Box Sizing
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#MainContent, main.content-for-layout {
  flex: 1 0 auto;
  min-height: 50vh;
}

body.drawer-open {
  overflow: hidden !important;
  touch-action: none;
}

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

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

button, input, select, textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

/* --------------------------------------------------------------------------
   3. Typography & Utility Hierarchy
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--heading-letter-spacing);
  line-height: 1.1;
  color: var(--text-primary);
}

h1, .h1 { font-size: clamp(2.2rem, 5vw, 4.5rem); }
h2, .h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3, .h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4, .h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }
h5, .h5 { font-size: 1rem; }
h6, .h6 { font-size: 0.85rem; letter-spacing: 0.12em; }

.text-subheading {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: var(--spacing-xs);
}

.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-uppercase { text-transform: uppercase; }

/* Container */
.page-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.page-container-full {
  width: 100%;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Skip link */
.skip-to-content-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-black);
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  z-index: 9999;
  transition: top var(--transition-fast);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.skip-to-content-link:focus {
  top: 10px;
}

/* --------------------------------------------------------------------------
   4. Buttons & Interactive Elements
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.2rem;
  font-family: var(--font-heading);
  font-size: 0.825rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--button-letter-spacing);
  border: 1px solid transparent;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.btn-primary {
  background-color: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.btn-primary:hover {
  background-color: var(--color-charcoal);
  border-color: var(--color-charcoal);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-black);
  border-color: var(--color-black);
}

.btn-secondary:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}

.btn-white {
  background-color: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
}

.btn-white:hover {
  background-color: var(--color-off-white);
  color: var(--color-black);
  transform: translateY(-1px);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

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

.btn-full {
  width: 100%;
}

.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.75rem;
}

.btn-lg {
  padding: 1.4rem 2.8rem;
  font-size: 0.9rem;
}

/* Button Ripple Effect */
.btn-ripple {
  position: relative;
  overflow: hidden;
}

.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: rippleAnimation 0.6s linear;
  pointer-events: none;
}

@keyframes rippleAnimation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* --------------------------------------------------------------------------
   5. Micro-Animations & Scroll Effects
   -------------------------------------------------------------------------- */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.img-zoom-wrapper {
  overflow: hidden;
  position: relative;
}

.img-zoom-wrapper img {
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-zoom-wrapper:hover img {
  transform: scale(1.05);
}

/* Skeleton Loading State */
.skeleton-loader {
  background: linear-gradient(90deg, var(--color-light-gray) 25%, var(--color-off-white) 50%, var(--color-light-gray) 75%);
  background-size: 200% 100%;
  animation: skeletonPulse 1.5s infinite;
  border-radius: var(--radius-sm);
}

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

/* --------------------------------------------------------------------------
   6. Header & Navigation Architecture
   -------------------------------------------------------------------------- */
.site-header-wrapper {
  position: relative;
  width: 100%;
  z-index: var(--z-header);
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  transition: transform var(--transition-smooth), background-color var(--transition-smooth), border-color var(--transition-smooth);
}

.site-header-wrapper.is-transparent {
  position: absolute;
  left: 0;
  right: 0;
  background-color: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  z-index: var(--z-header);
}

.site-header-wrapper.is-scrolled {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--color-white) !important;
  border-bottom-color: var(--color-border) !important;
  color: var(--color-black) !important;
  box-shadow: var(--shadow-subtle);
}

.site-header-wrapper.header-hidden {
  transform: translateY(-100%);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.header-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: currentColor;
  transition: width var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 40px;
  height: 40px;
  color: inherit;
  transition: opacity var(--transition-fast);
}

.header-icon-btn:hover {
  opacity: 0.7;
}

.cart-count-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background-color: var(--color-black);
  color: var(--color-white);
  font-size: 0.65rem;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.is-transparent:not(.is-scrolled) .cart-count-badge {
  background-color: var(--color-white);
  color: var(--color-black);
}

/* Mega Menu */
.has-megamenu {
  position: static;
}

.megamenu-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--color-white);
  color: var(--color-black);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-medium);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
  padding: 3rem 0;
}

.has-megamenu:hover .megamenu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.megamenu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.megamenu-column-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
}

.megamenu-links li {
  margin-bottom: 0.6rem;
}

.megamenu-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.megamenu-links a:hover {
  color: var(--color-black);
}

.megamenu-promo-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.megamenu-promo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.megamenu-promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  color: var(--color-white);
}

/* Mobile Nav Toggle */
.mobile-menu-toggle {
  display: none;
}

/* --------------------------------------------------------------------------
   7. Announcement Bar
   -------------------------------------------------------------------------- */
.announcement-bar {
  background-color: var(--color-black);
  color: var(--color-white);
  font-size: 0.725rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.6rem 1rem;
  text-align: center;
  position: relative;
  z-index: calc(var(--z-header) + 1);
}

.announcement-slider {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* --------------------------------------------------------------------------
   8. Global Drawers & Modals (Cart, Search, Quick View, Size Guide)
   -------------------------------------------------------------------------- */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: var(--z-backdrop);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.drawer-backdrop.is-active {
  opacity: 1;
  visibility: visible;
}

.site-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 460px;
  background-color: var(--color-white);
  z-index: var(--z-drawer);
  box-shadow: var(--shadow-drawer);
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.site-drawer.is-active {
  transform: translateX(0);
}

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

.drawer-title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.drawer-close-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color var(--transition-fast);
}

.drawer-close-btn:hover {
  background-color: var(--color-light-gray);
}

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

.drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--color-border);
  background-color: var(--color-off-white);
}

/* Free Shipping Progress Bar */
.free-shipping-container {
  margin-bottom: 1.25rem;
}

.free-shipping-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
}

.free-shipping-bar-bg {
  width: 100%;
  height: 6px;
  background-color: var(--color-light-gray);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.free-shipping-bar-fill {
  height: 100%;
  background-color: var(--color-black);
  width: 0%;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Cart Line Item */
.cart-drawer-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--color-light-gray);
}

.cart-item-image {
  width: 80px;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background-color: var(--color-off-white);
}

.cart-item-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.cart-item-variant {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.cart-item-price {
  font-size: 0.85rem;
  font-weight: 600;
}

.quantity-picker {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  height: 32px;
  background: #FFFFFF;
}

.quantity-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  transition: background-color 0.15s ease, transform 0.1s ease, color 0.15s ease;
  user-select: none;
  -webkit-user-select: none;
  cursor: pointer;
}

.quantity-btn:hover {
  background-color: rgba(0, 0, 0, 0.06);
}

.quantity-btn:active {
  transform: scale(0.88);
}

.quantity-input, .cart-qty-input, .main-cart-qty-input {
  width: 36px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 800;
  display: inline-block;
  transition: transform 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.qty-pop {
  animation: qtyPopAnimation 0.22s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes qtyPopAnimation {
  0% { transform: scale(1); }
  50% { transform: scale(1.28); color: var(--color-black, #111); }
  100% { transform: scale(1); }
}

.cart-item-removing {
  opacity: 0 !important;
  transform: scale(0.95) translateX(-12px) !important;
  max-height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  overflow: hidden !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Search Drawer */
.search-drawer {
  max-width: 100%;
  height: auto;
  bottom: auto;
  transform: translateY(-100%);
}

.search-drawer.is-active {
  transform: translateY(0);
}

.search-input-wrapper {
  position: relative;
  margin-top: 1rem;
}

.search-input {
  width: 100%;
  padding: 1rem 3rem 1rem 1.25rem;
  font-size: 1.1rem;
  font-family: var(--font-heading);
  border: 1px solid var(--color-black);
  border-radius: var(--radius-sm);
}

.search-submit-btn {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

/* Modals (Quick View, Size Guide, Custom Popups) Animation System */
.site-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%) scale(0.92);
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  background-color: var(--color-white);
  z-index: var(--z-modal);
  box-shadow: 0 24px 60px -12px rgba(0, 0, 0, 0.35), 0 0 1px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.42s cubic-bezier(0.175, 0.885, 0.32, 1.25), opacity 0.35s ease, visibility 0.35s ease;
  overflow-y: auto;
}

.site-modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 600px) {
  .site-modal {
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    border-radius: 20px 20px 0 0;
    transform: translateY(100%) scale(0.98);
  }
  .site-modal.is-active {
    transform: translateY(0) scale(1);
  }
}

.site-modal.is-active > * {
  animation: modalContentFadeUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both;
}

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

.modal-close-btn,
.modal-close-btn-custom {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 100 !important;
  width: 40px;
  height: 40px;
  background-color: #F4F4F0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer !important;
  pointer-events: auto !important;
  touch-action: manipulation;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.modal-close-btn:hover,
.modal-close-btn:focus,
.modal-close-btn-custom:hover,
.modal-close-btn-custom:focus {
  background-color: #E8E8E2;
  transform: scale(1.08);
}

/* Universal SVG Pointer-Events Override for All Close Icons */
[data-drawer-close] svg,
[data-modal-close] svg,
[data-quick-add-close] svg,
[data-lightbox-close] svg,
.modal-close-btn svg,
.modal-close-btn-custom svg,
.quick-add-modal__close svg,
.drawer-close-btn svg,
.filter-drawer__close svg,
.lightbox-close-btn svg,
[data-drawer-close] svg *,
[data-modal-close] svg *,
[data-quick-add-close] svg *,
[data-lightbox-close] svg *,
.modal-close-btn svg *,
.modal-close-btn-custom svg *,
.quick-add-modal__close svg *,
.drawer-close-btn svg *,
.filter-drawer__close svg *,
.lightbox-close-btn svg * {
  pointer-events: none !important;
}
  justify-content: center;
  box-shadow: var(--shadow-subtle);
}

/* --------------------------------------------------------------------------
   9. Product Card Component
   -------------------------------------------------------------------------- */
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card-media {
  position: relative;
  aspect-ratio: 3/4;
  background-color: var(--color-off-white);
  overflow: hidden;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.product-card-img.secondary-img {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.product-card:hover .product-card-img.primary-img.has-secondary {
  opacity: 0;
}

.product-card:hover .product-card-img.secondary-img {
  opacity: 1;
  transform: scale(1.04);
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background-color: var(--color-black);
  color: var(--color-white);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
}

.product-badge.sale {
  background-color: var(--color-sale);
}

.product-card-quick-add {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  transform: translateY(15px);
  opacity: 0;
  transition: all var(--transition-fast);
  z-index: 3;
}

.product-card:hover .product-card-quick-add {
  transform: translateY(0);
  opacity: 1;
}

.product-card-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.product-card-vendor {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.product-card-title {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-card-price {
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price-regular {
  color: var(--text-primary);
}

.price-compare {
  text-decoration: line-through;
  color: var(--text-muted);
  font-weight: 400;
}

.product-card-swatches {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.4rem;
}

.swatch-pill {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
}

/* --------------------------------------------------------------------------
   10. Section Layout Utilities
   -------------------------------------------------------------------------- */
.section-padding {
  padding-top: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
}

.section-padding-sm {
  padding-top: var(--spacing-md);
  padding-bottom: var(--spacing-md);
}

.section-header {
  margin-bottom: var(--spacing-lg);
}

.section-header.text-center {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.product-grid-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem 1.5rem;
}

/* Responsive Grid Breakpoints */
@media (max-width: 1200px) {
  .product-grid-layout {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
    --container-padding: 1rem;
    --spacing-xl: 3rem;
  }

  .header-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .product-grid-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem 0.8rem;
  }

  .site-drawer {
    max-width: 100%;
  }

  .btn {
    padding: 0.9rem 1.6rem;
    font-size: 0.775rem;
  }
}

@media (max-width: 480px) {
  .product-grid-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 0.5rem;
  }
}

/* --------------------------------------------------------------------------
   11. Single Product Detail Page (PDP) Layout
   -------------------------------------------------------------------------- */
.product-single-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 992px) {
  .product-single-container {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .product-gallery-sticky {
    position: relative !important;
    top: 0 !important;
  }
}

@media (min-width: 993px) {
  .product-gallery-sticky {
    position: sticky;
    top: 100px;
  }
}

/* --- Product Media Gallery Component --- */
.product-gallery {
  width: 100%;
}

.product-gallery-wrapper {
  display: grid;
  gap: 1rem;
  width: 100%;
}

.product-gallery--thumbnail_left .product-gallery-wrapper {
  grid-template-columns: 76px 1fr;
  align-items: start;
}

.product-gallery--thumbnail_bottom .product-gallery-wrapper {
  grid-template-columns: 1fr;
  display: flex;
  flex-direction: column-reverse;
}

.product-gallery--slider_only .product-gallery-thumbs-wrapper {
  display: none;
}

/* Thumbnails Strip */
.product-gallery-thumbs-wrapper {
  position: relative;
  width: 100%;
}

.product-gallery-thumbs {
  display: flex;
  gap: 0.75rem;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.product-gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.product-gallery--thumbnail_left .product-gallery-thumbs {
  flex-direction: column;
  max-height: 650px;
}

.product-gallery--thumbnail_bottom .product-gallery-thumbs {
  flex-direction: row;
}

.product-thumb-item {
  width: 100%;
  aspect-ratio: var(--gallery-aspect-ratio, 3/4);
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  background-color: var(--color-off-white);
  padding: 0;
  cursor: pointer;
  opacity: 0.65;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.product-gallery--thumbnail_bottom .product-thumb-item {
  width: 72px;
}

.product-thumb-item:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.product-thumb-item.is-active {
  opacity: 1;
  border-color: var(--color-black);
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  transform: scale(1.02);
}

.product-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Main Gallery Viewport & Slider */
.product-gallery-main {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--color-off-white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.product-gallery-slider {
  display: flex;
  width: 100%;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.product-gallery-slide {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: var(--gallery-aspect-ratio, 3/4);
  position: relative;
  overflow: hidden;
  user-select: none;
}

/* Hover Pan Zoom Container */
.product-gallery-zoom-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}

.product-gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center center;
  pointer-events: none;
}

.product-gallery-zoom-container.is-zoomed .product-gallery-image {
  transform: scale(2.2);
  cursor: zoom-out;
}

/* Gallery Navigation Buttons */
.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: var(--color-black);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 10;
  opacity: 0.85;
  pointer-events: auto;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.gallery-nav-btn:hover {
  opacity: 1;
  background: var(--color-black);
  color: var(--color-white);
  transform: translateY(-50%) scale(1.08);
}

.gallery-nav-btn--prev {
  left: 1rem;
}

.gallery-nav-btn--next {
  right: 1rem;
}

/* Lightbox Trigger Button */
.gallery-lightbox-trigger {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 10;
  opacity: 0.85;
  pointer-events: auto;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.gallery-lightbox-trigger:hover {
  opacity: 1;
  background: var(--color-black);
  color: var(--color-white);
  transform: scale(1.1);
}

/* Pagination Badge */
.gallery-pagination-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 6;
  pointer-events: none;
}

/* Lightbox Fullscreen Modal Styles */
.gallery-lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-lightbox-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.gallery-lightbox-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  color: #ffffff;
}

.gallery-lightbox-counter {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.85;
}

.gallery-lightbox-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lightbox-action-btn {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lightbox-action-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.08);
}

.gallery-lightbox-body {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem 2rem;
  overflow: hidden;
}

.gallery-lightbox-stage {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.gallery-lightbox-zoom-wrapper {
  max-width: 90%;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: center center;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  will-change: transform;
}

.gallery-lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.lightbox-nav-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  z-index: 15;
}

.lightbox-nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .product-gallery--thumbnail_left .product-gallery-wrapper {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column-reverse;
  }

  .product-gallery--thumbnail_left .product-gallery-thumbs {
    flex-direction: row;
    max-height: none;
  }

  .product-gallery--thumbnail_left .product-thumb-item {
    width: 72px;
  }

  .gallery-nav-btn {
    opacity: 1;
    pointer-events: auto;
  }

  .gallery-lightbox-trigger {
    opacity: 1;
  }

  .gallery-lightbox-body {
    padding: 0 0.5rem 1rem;
  }

  .lightbox-nav-btn {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
}

.product-single-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

.product-single-title {
  font-size: 2.2rem;
  line-height: 1.15;
}

.product-single-price {
  font-size: 1.35rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.inventory-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--color-success);
}

.inventory-badge.low-stock {
  color: var(--color-sale);
}

.inventory-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: currentColor;
  box-shadow: 0 0 0 0 currentColor;
  animation: pulseAnimation 2s infinite;
}

@keyframes pulseAnimation {
  0% { box-shadow: 0 0 0 0 rgba(30, 142, 62, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(30, 142, 62, 0); }
  100% { box-shadow: 0 0 0 0 rgba(30, 142, 62, 0); }
}

.variant-picker-section {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.variant-option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.size-guide-trigger {
  text-decoration: underline;
  cursor: pointer;
  color: var(--text-muted);
}

.variant-swatch-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.variant-swatch-btn {
  padding: 0.7rem 1.2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.variant-swatch-btn:hover,
.variant-swatch-btn.is-selected {
  border-color: var(--color-black);
  background-color: var(--color-black);
  color: var(--color-white);
}

.variant-swatch-btn.is-unavailable {
  opacity: 0.4;
  cursor: not-allowed;
  position: relative;
  overflow: hidden;
}
.variant-swatch-btn.is-unavailable::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -5%;
  width: 110%;
  height: 1px;
  background: currentColor;
  transform: rotate(-20deg);
  opacity: 0.5;
}

/* Collapsible Accordion Tabs */
.accordion-item {
  border-bottom: 1px solid var(--color-border);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.accordion-icon {
  transition: transform var(--transition-fast);
}

.accordion-item.is-active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth);
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.accordion-item.is-active .accordion-content {
  max-height: 500px;
  padding-bottom: 1.2rem;
}

/* Sticky Add to Cart Bar */
.sticky-atc-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 0.75rem 0;
  z-index: var(--z-sticky);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  transform: translateY(100%);
  transition: transform var(--transition-smooth);
}

.sticky-atc-bar.is-visible {
  transform: translateY(0);
}

.sticky-atc-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.sticky-atc-product-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
}

.sticky-atc-img {
  width: 44px;
  height: 44px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  border: 1px solid #EAEAE4;
}

.sticky-atc-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
}

.sticky-atc-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-black);
  margin: 0 0 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  line-height: 1.2;
}

.sticky-atc-price {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-black);
  white-space: nowrap;
}

.sticky-atc-btn {
  background: #000000;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.75rem 1.35rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.sticky-atc-btn:hover {
  opacity: 0.9;
}

.sticky-atc-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.sticky-qty-picker {
  height: 42px;
  width: 90px;
  border: 1.5px solid #E0E0E0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.35rem;
  background: #FFFFFF;
  flex-shrink: 0;
}
.sticky-qty-btn {
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-black);
  cursor: pointer;
  width: 22px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sticky-qty-input {
  width: 26px;
  text-align: center;
  border: none;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-black);
  background: transparent;
  outline: none;
  -moz-appearance: textfield;
}

.pdp-qty-input::-webkit-outer-spin-button,
.pdp-qty-input::-webkit-inner-spin-button,
.sticky-qty-input::-webkit-outer-spin-button,
.sticky-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ATC Button Animated States */
.sticky-atc-btn, .pdp-atc-btn {
  position: relative;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-atc-btn.is-loading, .pdp-atc-btn.is-loading {
  opacity: 0.8;
  cursor: wait;
}

.sticky-atc-btn.is-added, .pdp-atc-btn.is-added {
  background-color: #0D652D !important;
  color: #FFFFFF !important;
  animation: atcPulse 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes atcPulse {
  0% { transform: scale(0.96); }
  50% { transform: scale(1.04); }
  100% { transform: scale(1); }
}

/* --------------------------------------------------------------------------
   12. Comprehensive Mobile Responsive Overrides
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .megamenu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Footer Mobile */
  .site-footer > .page-container > div:first-child {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }

  /* Section Grids Mobile */
  .before-after-section > .page-container > div,
  .brand-story-section > .page-container > div,
  .main-contact-section > .page-container > div,
  .featured-product-section > .page-container > div {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .instagram-feed-section > .page-container > div:last-child {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }

  .testimonials-section > .page-container > div:last-child {
    grid-template-columns: 1fr !important;
  }

  .image-comparison-container {
    aspect-ratio: 4/3 !important;
  }

  /* Product Page Mobile */
  .product-single-title {
    font-size: 1.6rem !important;
  }

  .product-gallery-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    flex-direction: row;
    gap: 0.75rem;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
  }

  .product-gallery-item {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }

  .sticky-atc-inner h4 {
    display: none;
  }

  .sticky-atc-inner {
    gap: 0.5rem;
  }

  .sticky-atc-inner button {
    width: 100%;
  }

  /* Hero Banner Mobile */
  .hero-slide-item h1 {
    font-size: clamp(2rem, 8vw, 3.2rem) !important;
  }

  .hero-slide-item p {
    font-size: 0.95rem !important;
  }

  .hero-dots {
    bottom: 1.25rem !important;
  }
}

@media (max-width: 480px) {
  .announcement-bar {
    font-size: 0.65rem;
    padding: 0.5rem 0.75rem;
  }

  .header-logo {
    font-size: 1.3rem;
  }

  .btn-lg {
    padding: 1.1rem 1.8rem;
    font-size: 0.8rem;
  }
}

/* ==========================================================================
   Filter Drawer & Collection Filters
   ========================================================================== */

.filter-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 360px;
  max-width: 100vw;
  height: 100%;
  background: var(--color-white);
  z-index: var(--z-drawer);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-drawer);
}
.filter-drawer.is-active { transform: translateX(0); }
.filter-drawer__inner { display: flex; flex-direction: column; height: 100%; overflow: hidden; }
.filter-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}
.filter-drawer__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.filter-drawer__active-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: var(--color-black);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 50%;
  margin-left: 0.5rem;
}
.filter-drawer__close {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--color-off-white);
  border: none; border-radius: 50%; cursor: pointer;
  transition: background 0.2s;
}
.filter-drawer__close:hover { background: var(--color-light-gray); }
.filter-drawer__form { flex: 1; overflow-y: auto; padding: 0.5rem 0; -webkit-overflow-scrolling: touch; }
.filter-empty { padding: 2rem 1.5rem; color: var(--text-muted); font-size: 0.9rem; }
.filter-group { border-bottom: 1px solid var(--color-border); }
.filter-group__toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 1rem 1.5rem;
  background: none; border: none; cursor: pointer; text-align: left; gap: 0.5rem;
}
.filter-group__toggle:hover { background: var(--color-off-white); }
.filter-group__name {
  font-family: var(--font-heading);
  font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; flex: 1;
}
.filter-group__count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 20px; height: 20px; padding: 0 5px;
  background: var(--color-black); color: #fff;
  font-size: 0.65rem; font-weight: 700; border-radius: 10px;
}
.filter-group__chevron { transition: transform 0.25s ease; flex-shrink: 0; }
.filter-group__toggle[aria-expanded="false"] .filter-group__chevron { transform: rotate(-90deg); }
.filter-group__body { overflow: hidden; max-height: 600px; transition: max-height 0.3s ease, opacity 0.3s ease; opacity: 1; }
.filter-group__body.is-collapsed { max-height: 0; opacity: 0; }
.filter-list { list-style: none; margin: 0; padding: 0.25rem 1.5rem 1rem; }
.filter-list__item { margin-bottom: 0.1rem; }
.filter-checkbox { display: flex; align-items: center; gap: 0.65rem; padding: 0.5rem 0.5rem; cursor: pointer; user-select: none; border-radius: 6px; transition: background-color 0.15s ease; }
.filter-checkbox.is-active { background-color: #F4F4EE; }
.filter-checkbox__input { position: absolute; opacity: 0; width: 0; height: 0; }
.filter-checkbox__box {
  width: 18px; height: 18px;
  border: 1.5px solid var(--color-border); border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; background: #fff;
  transition: background 0.15s, border-color 0.15s;
}
.filter-checkbox__box svg { opacity: 0; stroke: #fff; transition: opacity 0.15s; }
.filter-checkbox__input:checked + .filter-checkbox__box,
.filter-checkbox.is-active .filter-checkbox__box { background: #000000 !important; border-color: #000000 !important; }
.filter-checkbox__input:checked + .filter-checkbox__box svg,
.filter-checkbox.is-active .filter-checkbox__box svg { opacity: 1 !important; stroke: #FFFFFF !important; }
.filter-checkbox__input:disabled ~ .filter-checkbox__label { opacity: 0.4; }
.filter-checkbox__label { font-size: 0.88rem; line-height: 1.3; color: #333333; }
.filter-checkbox.is-active .filter-checkbox__label { font-weight: 800 !important; color: #000000 !important; }
.filter-checkbox__count { color: var(--text-muted); font-size: 0.8rem; }
.filter-price { padding: 0.5rem 1.5rem 1.25rem; }
.filter-price__inputs { display: flex; align-items: center; gap: 0.75rem; }
.filter-price__field { flex: 1; }
.filter-price__label { display: block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 0.35rem; }
.filter-price__input { width: 100%; padding: 0.55rem 0.75rem; border: 1.5px solid var(--color-border); border-radius: var(--radius-md); font-size: 0.88rem; transition: border-color 0.2s; }
.filter-price__input:focus { outline: none; border-color: var(--color-black); }
.filter-price__dash { color: var(--text-muted); margin-top: 1.2rem; font-size: 0.85rem; }
.filter-drawer__footer {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--color-border);
  flex-shrink: 0; background: #fff;
}
.filter-btn {
  display: flex; align-items: center; justify-content: center;
  padding: 0.75rem 1rem;
  font-family: var(--font-heading);
  font-size: 0.78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  border-radius: var(--radius-sm); cursor: pointer;
  border: none; text-decoration: none; transition: opacity 0.2s;
}
.filter-btn--clear { background: var(--color-off-white); color: var(--color-black); border: 1.5px solid var(--color-border); }
.filter-btn--clear:hover { background: var(--color-light-gray); }
.filter-btn--clear.filter-btn--disabled { opacity: 0.4; pointer-events: none; }
.filter-btn--apply { background: var(--color-black); color: #fff; }
.filter-btn--apply:hover { opacity: 0.85; }
.filter-active-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--color-black); color: #fff;
  font-size: 0.6rem; font-weight: 700; border-radius: 9px; margin-left: 0.4rem;
}
.filter-pill {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  background: var(--color-black); color: #fff;
  font-family: var(--font-heading); font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  border-radius: 100px; text-decoration: none; transition: opacity 0.2s;
}
.filter-pill:hover { opacity: 0.75; }
.filter-pill--clear { background: var(--color-off-white); color: var(--color-black); border: 1px solid var(--color-border); }
.filter-pill--clear:hover { background: var(--color-light-gray); opacity: 1; }
@media (max-width: 480px) { .filter-drawer { width: 100vw; } }

/* Quick Add Modal & Select Options Popup Animations */
.quick-add-modal {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
}

.quick-add-modal.is-active {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

@media (min-width: 600px) {
  .quick-add-modal { align-items: center; }
}

.quick-add-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.quick-add-modal.is-active .quick-add-modal__overlay {
  opacity: 1;
}

.quick-add-modal__panel {
  position: relative;
  background: #ffffff;
  border-radius: 20px 20px 0 0;
  padding: 2rem 1.5rem 1.75rem;
  width: 100%;
  max-width: 480px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px -12px rgba(0, 0, 0, 0.35), 0 0 1px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transform: translateY(100%) scale(0.96);
  opacity: 0;
  transition: transform 0.42s cubic-bezier(0.175, 0.885, 0.32, 1.25), opacity 0.35s ease;
}

@media (min-width: 600px) {
  .quick-add-modal__panel {
    border-radius: 20px;
    max-height: 85vh;
    transform: translateY(30px) scale(0.9);
  }
}

.quick-add-modal.is-active .quick-add-modal__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Staggered Opening Content Animation */
.quick-add-modal.is-active .quick-add-modal__product {
  animation: qaModalItemSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both;
}
.quick-add-modal.is-active .quick-add-modal__options {
  animation: qaModalItemSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.14s both;
}
.quick-add-modal.is-active .quick-add-modal__quantity-section {
  animation: qaModalItemSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both;
}
.quick-add-modal.is-active .quick-add-modal__atc {
  animation: qaModalItemSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both;
}

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

.quick-add-modal__close,
.modal-close-btn,
.modal-close-btn-custom,
.drawer-close-btn,
.filter-drawer__close,
.lightbox-close-btn {
  position: absolute !important;
  top: 0.85rem !important;
  right: 0.85rem !important;
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  background: #F4F4F0 !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 999999 !important;
  pointer-events: auto !important;
  touch-action: manipulation !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
}

.quick-add-modal__close:hover,
.quick-add-modal__close:focus,
.modal-close-btn:hover,
.modal-close-btn:focus,
.modal-close-btn-custom:hover,
.modal-close-btn-custom:focus {
  background: #E4E4DC !important;
  transform: scale(1.08) !important;
  color: var(--color-black) !important;
}

/* Expanded hit-target pseudo-element extending 10px beyond the 42px circle */
.quick-add-modal__close::before,
.modal-close-btn::before,
.modal-close-btn-custom::before,
.drawer-close-btn::before,
.filter-drawer__close::before {
  content: '' !important;
  position: absolute !important;
  inset: -10px !important;
  border-radius: 50% !important;
  pointer-events: auto !important;
}

.quick-add-modal__product {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 0.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  padding-right: 3.5rem !important; /* Keep product title/info clear of top-right close button */
  border-bottom: 1px solid var(--color-border);
  position: relative;
  z-index: 1;
}
.quick-add-modal__image-wrap { width: 70px; flex-shrink: 0; border-radius: 6px; overflow: hidden; background: var(--color-off-white); }
.quick-add-modal__image-wrap img { width: 100%; display: block; aspect-ratio: 3/4; object-fit: cover; }
.quick-add-modal__vendor { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin: 0 0 0.2rem; }
.quick-add-modal__title { font-family: var(--font-heading); font-size: 1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; margin: 0 0 0.3rem; line-height: 1.25; }
.quick-add-modal__price { font-size: 1rem; font-weight: 800; margin: 0; }
.quick-add-modal__options { margin-bottom: 1.25rem; }
.qa-option-group { margin-bottom: 1rem; }
.qa-option-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-black); margin-bottom: 0.6rem; }
.qa-swatch-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.qa-swatch-btn { padding: 0.55rem 1rem; border: 1.5px solid var(--color-border); border-radius: var(--radius-sm); font-size: 0.8rem; font-weight: 600; cursor: pointer; background: #fff; transition: all 0.15s; }
.qa-swatch-btn:hover { border-color: var(--color-black); }
.qa-swatch-btn.qa-selected { background: var(--color-black); border-color: var(--color-black); color: #fff; }
.qa-swatch-btn--color.qa-selected { background: #ffffff !important; border-color: #000000 !important; box-shadow: 0 0 0 2px #000000 !important; color: #000000 !important; font-weight: 700 !important; }
.qa-swatch-btn.qa-unavailable { opacity: 0.35; cursor: not-allowed; position: relative; overflow: hidden; }
.qa-swatch-btn.qa-unavailable::after { content: ''; position: absolute; top: 50%; left: -5%; width: 110%; height: 1px; background: currentColor; transform: rotate(-20deg); }
.quick-add-modal__atc { width: 100%; height: 50px; font-size: 0.82rem; margin-bottom: 0.75rem; }
.quick-add-modal__atc:disabled { opacity: 0.5; cursor: not-allowed; }
.quick-add-modal__details-link { display: block; text-align: center; font-size: 0.8rem; font-weight: 600; color: var(--text-muted); text-decoration: underline; }
.quick-add-modal__details-link:hover { color: var(--color-black); }

/* Genie Effect & Cart Icon Pulse Keyframes */
@keyframes genieCartIconPulse {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.35) rotate(-10deg);
  }
  60% {
    transform: scale(1.15) rotate(6deg);
  }
  100% {
    transform: scale(1);
  }
}

.genie-cart-bounce {
  animation: genieCartIconPulse 0.55s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

/* ==========================================================================
   Product Details Page (PDP) - Reference Design Styles
   ========================================================================== */

/* 1. Bestseller Tag Badge */
.pdp-bestseller-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: #E6F4EA;
  color: #0D652D;
  font-family: var(--font-heading);
  font-size: 0.725rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
}
.pdp-badge-dot {
  width: 6px;
  height: 6px;
  background-color: #0D652D;
  border-radius: 50%;
  display: inline-block;
}

/* 2. Product Title */
.pdp-product-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 800;
  color: var(--color-black);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0;
}

/* 3. Pricing Row */
.pdp-price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.pdp-price-current {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-black);
}
.pdp-price-compare {
  font-size: 0.95rem;
  color: #888888;
  text-decoration: line-through;
  font-weight: 500;
}
.pdp-discount-badge {
  background-color: #E6F4EA;
  color: #0D652D;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  border: 1px solid #CEEAD6;
}
.pdp-savings-badge {
  background-color: #E6F4EA;
  color: #0D652D;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.15rem 0.55rem;
  border-radius: 100px;
}

/* 4. Google Reviews Rating Badge */
.pdp-reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-white);
  border: 1px solid #E0E0E0;
  border-radius: 100px;
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  width: fit-content;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.google-icon {
  flex-shrink: 0;
}
.pdp-rating-num {
  font-weight: 800;
  color: var(--color-black);
}
.pdp-stars {
  color: #F4B400;
  letter-spacing: 1px;
  font-size: 0.85rem;
}
.pdp-reviews-count {
  color: var(--text-muted);
  font-weight: 500;
}
.verified-check {
  margin-left: 0.1rem;
}

/* 5. Product Description & Collapsible Fade Toggle */
.pdp-description-wrapper {
  position: relative;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid #EAEAEA;
}
.pdp-description-content {
  max-height: 85px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  font-size: 0.9rem;
  color: #4A5568;
  line-height: 1.65;
}
.pdp-description-wrapper.is-expanded .pdp-description-content {
  max-height: 1200px;
}
.pdp-description-inner p {
  margin: 0 0 0.6rem;
}
.pdp-description-inner p:last-child {
  margin-bottom: 0;
}
.pdp-description-inner ul {
  margin: 0.5rem 0;
  padding-left: 1.1rem;
  list-style-type: disc;
}
.pdp-description-inner li {
  margin-bottom: 0.3rem;
  color: #2D3748;
  font-weight: 500;
}
.pdp-description-inner strong {
  color: #1A202C;
  font-weight: 700;
}
.pdp-description-fade {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  height: 45px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 75%, rgba(255, 255, 255, 1) 100%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.pdp-description-wrapper.is-expanded .pdp-description-fade {
  opacity: 0;
  visibility: hidden;
}
.pdp-description-toggle {
  background: none;
  border: none;
  padding: 0.4rem 0 0;
  margin-top: 0.2rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #000000;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s ease;
}
.pdp-description-toggle:hover {
  color: var(--color-black);
  opacity: 0.8;
}
.pdp-toggle-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.pdp-description-wrapper.is-expanded .pdp-toggle-arrow {
  transform: rotate(180deg);
}

/* 6. Option Sections (Size & Color Swatches) */
.pdp-option-section,
.pdp-size-section {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}
.pdp-option-section:last-child,
.pdp-size-section:last-child {
  margin-bottom: 0;
}
.pdp-option-header,
.pdp-size-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pdp-option-label,
.pdp-size-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-black);
  text-transform: uppercase;
}
.pdp-option-selected-val {
  font-weight: 800;
  color: var(--color-black);
  margin-left: 0.25rem;
}
.pdp-size-guide-link {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--color-black);
  text-decoration: underline;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.pdp-size-guide-link:hover {
  opacity: 0.7;
}

/* Color Swatches Grid */
.pdp-color-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.pdp-color-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem 0.45rem 0.55rem;
  background: var(--color-white);
  border: 1.5px solid #E2E8F0;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: #2D3748;
  position: relative;
  user-select: none;
}
.pdp-color-btn:hover {
  border-color: var(--color-black);
  transform: translateY(-1px);
}
.pdp-color-btn.is-selected {
  border-color: #000000;
  background: #FFFFFF;
  box-shadow: 0 0 0 2px #000000;
  color: #000000;
  font-weight: 700;
}
.pdp-color-btn.is-unavailable {
  opacity: 0.5;
  text-decoration: line-through;
  cursor: not-allowed;
}

.pdp-color-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #FFFFFF;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.18);
  flex-shrink: 0;
  display: inline-block;
  position: relative;
  transition: transform 0.2s ease;
}
.pdp-color-btn:hover .pdp-color-dot,
.pdp-color-btn.is-selected .pdp-color-dot {
  transform: scale(1.15);
}

.pdp-color-name {
  line-height: 1;
}

/* Size Grid */
.pdp-size-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.pdp-size-btn {
  height: 48px;
  background: var(--color-white);
  border: 1.5px solid #E0E0E0;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-black);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.pdp-size-btn:hover {
  border-color: var(--color-black);
}
.pdp-size-btn.is-selected {
  background: var(--color-black);
  border-color: var(--color-black);
  color: var(--color-white);
}
.pdp-size-btn.is-unavailable {
  opacity: 0.4;
  text-decoration: line-through;
  background: #F5F5F5;
  cursor: not-allowed;
}

/* Quick Add Modal Color Dot Styling */
.qa-swatch-btn--color {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.75rem 0.4rem 0.5rem;
  border-radius: 18px;
}
.qa-color-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.15);
  flex-shrink: 0;
  display: inline-block;
}

/* 7. Available Offers Carousel */
.pdp-offers-container {
  margin-top: 0.75rem;
  padding-top: 0.5rem;
}
.pdp-offers-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pdp-offers-title-group {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.pdp-offers-heading {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-black);
}
.pdp-offers-subtext {
  font-size: 0.78rem;
  color: #777777;
  margin-top: 0.2rem;
  margin-bottom: 0.85rem;
}
.pdp-offers-nav {
  display: flex;
  gap: 0.35rem;
}
.offers-nav-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #E0E0E0;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: #333;
  line-height: 1;
  transition: all 0.2s;
}
.offers-nav-btn:hover {
  border-color: #000;
  background: #f5f5f5;
}
.pdp-offers-slider {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  overflow-y: hidden;
  touch-action: pan-x pan-y;
  scroll-snap-type: x proximity;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.pdp-offers-slider::-webkit-scrollbar {
  display: none;
}
.pdp-offer-card {
  flex: 0 0 210px;
  scroll-snap-align: start;
  border: 1px solid #E5E5E5;
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pdp-offer-card--prepaid {
  border-color: #CEEAD6;
  background: #F4FBF6;
}
.pdp-offer-badges {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.4rem;
}
.offer-badge {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  text-transform: uppercase;
}
.offer-badge--green {
  background: #E6F4EA;
  color: #0D652D;
}
.offer-badge--orange {
  background: #FEF7E0;
  color: #B06000;
}
.pdp-offer-title {
  font-family: var(--font-heading);
  font-size: 0.825rem;
  font-weight: 800;
  color: var(--color-black);
  margin: 0 0 0.25rem;
  line-height: 1.25;
}
.pdp-offer-sub {
  font-size: 0.725rem;
  color: #777777;
  margin: 0 0 0.6rem;
}
.pdp-offer-auto {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.725rem;
  font-weight: 700;
  color: #0D652D;
  margin-top: auto;
}
.pdp-coupon-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px dashed #CCCCCC;
  background: #F9F9F9;
  border-radius: 6px;
  padding: 0.25rem 0.25rem 0.25rem 0.6rem;
  margin-top: auto;
}
.coupon-code {
  font-family: var(--font-heading);
  font-size: 0.775rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--color-black);
}
.coupon-copy-btn {
  background: #0D652D;
  color: #FFFFFF;
  border: none;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.7rem;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.coupon-copy-btn:hover {
  opacity: 0.88;
}

/* 8. Action Row (Quantity + Full Black Add to Cart & Buy It Now) */
.pdp-action-row {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.5rem;
}
.pdp-action-top {
  display: flex;
  gap: 0.75rem;
  width: 100%;
}
.pdp-buy-now-btn {
  width: 100%;
  height: 52px;
  background: #000000;
  color: #FFFFFF;
  border: 1.5px solid #000000;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.pdp-buy-now-btn:hover {
  background: #111111;
  border-color: #111111;
  opacity: 0.95;
}
.pdp-buy-now-btn:disabled,
.pdp-buy-now-btn.is-disabled,
#QuickAddBuyNowBtn:disabled,
#QuickAddBuyNowBtn.is-disabled {
  background: #EAEAE4 !important;
  color: #888888 !important;
  border-color: #EAEAE4 !important;
  cursor: not-allowed !important;
  opacity: 0.75 !important;
  pointer-events: none !important;
  box-shadow: none !important;
}
.pdp-qty-picker {
  height: 52px;
  width: 100px;
  border: 1.5px solid #E0E0E0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.5rem;
  background: #FFFFFF;
  flex-shrink: 0;
}
.pdp-qty-btn {
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-black);
  cursor: pointer;
  width: 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdp-qty-input {
  width: 32px;
  text-align: center;
  border: none;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-black);
  background: transparent;
  outline: none;
}
.pdp-atc-btn {
  flex: 1;
  height: 52px;
  background: #000000;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.925rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: opacity 0.2s;
}
.pdp-atc-btn:hover {
  opacity: 0.92;
}

/* 9. 100% Secure Payment Guarantee Banner */
.pdp-secure-banner {
  background: #EDF8F1;
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}
.pdp-secure-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.pdp-shield-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdp-secure-text {
  font-size: 0.85rem;
  line-height: 1.2;
  color: #0D652D;
}
.pdp-secure-text strong {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
}
.pdp-payment-icons {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}
.pay-logo-card,
.pay-logo-badge {
  background: #FFFFFF;
  border: 1px solid #D2EBD9;
  border-radius: 6px;
  padding: 0.35rem 0.65rem;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.725rem;
  font-weight: 800;
  color: #1E293B;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
  transition: transform 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.pay-logo-card:hover,
.pay-logo-badge:hover {
  transform: translateY(-1px);
  border-color: #0D652D;
}
.pay-logo-card svg,
.pay-logo-badge svg {
  display: block;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .product-single-container {
    grid-template-columns: 1fr !important;
    gap: 1.75rem !important;
  }
  .pdp-secure-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .pdp-trust-bar {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }
}

/* 10. Top Trust Perks Bar */
.pdp-trust-bar {
  background: #F8F9FA;
  border: 1px solid #EAEAEA;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  align-items: center;
  margin-top: 0.75rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.775rem;
  font-weight: 700;
  color: var(--color-black);
}
.trust-item svg {
  flex-shrink: 0;
}

/* 11. "Build your own combo" Banner */
.pdp-combo-banner {
  background: #EBF3EE;
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 0.85rem;
  flex-wrap: wrap;
}
.combo-banner-content {
  flex: 1;
  min-width: 250px;
}
.combo-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #0D652D;
  font-family: var(--font-heading);
  font-size: 0.675rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.combo-dot {
  width: 6px;
  height: 6px;
  background-color: #0D652D;
  border-radius: 50%;
  display: inline-block;
}
.combo-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-black);
  margin: 0 0 0.35rem;
  line-height: 1.2;
}
.combo-desc {
  font-size: 0.85rem;
  color: #555555;
  margin: 0 0 0.85rem;
  line-height: 1.45;
}
.combo-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.combo-pill {
  background: #FFFFFF;
  border: 1px solid #D2E3D8;
  border-radius: 100px;
  padding: 0.3rem 0.75rem;
  font-size: 0.725rem;
  font-weight: 700;
  color: var(--color-black);
}
.combo-action-btn {
  background: #000000;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.825rem;
  font-weight: 700;
  padding: 0.85rem 1.4rem;
  border-radius: 100px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.combo-action-btn:hover {
  opacity: 0.88;
}

/* 12. WhatsApp Custom Order Section */
.pdp-whatsapp-section {
  margin-top: 0.85rem;
  text-align: center;
}
.pdp-whatsapp-btn {
  width: 100%;
  height: 52px;
  border: 1.5px solid #0D652D;
  background: #FFFFFF;
  color: #0D652D;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.pdp-whatsapp-btn:hover {
  background: #0D652D;
  color: #FFFFFF;
}
.pdp-whatsapp-btn:hover svg {
  fill: #FFFFFF;
}
.pdp-whatsapp-subtext {
  font-size: 0.775rem;
  color: #777777;
  margin-top: 0.45rem;
}

/* 13. Specifications Accordions Card */
.pdp-accordions-card {
  background: #FFFFFF;
  border: 1px solid #EAEAEA;
  border-radius: 16px;
  padding: 0.25rem 1.25rem;
  margin-top: 1.25rem;
}
.pdp-accordions-card .accordion-item {
  border-bottom: 1px solid #F0F0F0;
}
.pdp-accordions-card .accordion-item:last-child {
  border-bottom: none;
}
.pdp-accordions-card .accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  cursor: pointer;
}
.accordion-header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.accordion-icon-bg {
  width: 36px;
  height: 36px;
  background: #F5F5F5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.accordion-title-text {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--color-black);
  text-transform: uppercase;
}
.accordion-plus-icon {
  font-size: 1.2rem;
  font-weight: 400;
  color: #888888;
  transition: transform 0.2s ease;
}
.accordion-item.is-active .accordion-plus-icon {
  transform: rotate(45deg);
}

/* ==========================================================================
   Size Guide Modal - Reference Match Styles
   ========================================================================== */
.size-guide-modal-custom {
  max-width: 560px !important;
  border-radius: 20px !important;
  padding: 0 !important;
  background: #FFFFFF !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25) !important;
}

.modal-close-btn-custom {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 32px;
  height: 32px;
  background: #F0F0F0;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #333333;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease;
}
.modal-close-btn-custom:hover {
  background: #E0E0E0;
}

.size-chart-modal-inner {
  padding: 2.25rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.size-chart-subtitle {
  font-family: var(--font-heading);
  font-size: 0.725rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #888888;
  text-transform: uppercase;
  display: block;
}

.size-chart-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-black);
  margin: 0.15rem 0 0.25rem;
}

.size-chart-caption {
  font-size: 0.875rem;
  color: #777777;
  margin: 0;
}

/* Measurement Table */
.size-chart-table-wrap {
  border: 1px solid #E5E5E5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

.size-chart-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 0.875rem;
}

.size-chart-table th {
  background: #000000;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.725rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.85rem 0.5rem;
  text-transform: uppercase;
}

.size-chart-table td {
  padding: 0.8rem 0.5rem;
  border-bottom: 1px solid #EAEAEA;
  color: #333333;
  font-weight: 500;
}

.size-chart-table tr:last-child td {
  border-bottom: none;
}

.size-chart-table td.size-col {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-black);
}

.size-chart-table tr.highlight-row {
  background-color: #F6F6F6;
  font-weight: 700;
  position: relative;
}

.size-chart-table tr.highlight-row td {
  font-weight: 800;
  color: var(--color-black);
}

.size-chart-table tr.highlight-row td.size-col {
  border-left: 3px solid #000000;
}

/* How to Measure Card */
.size-chart-measure-card {
  background: #F9F9F9;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.measure-card-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.measure-card-title {
  font-family: var(--font-heading);
  font-size: 0.725rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #777777;
  text-transform: uppercase;
}

.measure-text {
  font-size: 0.775rem;
  color: #555555;
  line-height: 1.45;
  margin: 0;
}

.measure-text strong {
  font-family: var(--font-heading);
  color: var(--color-black);
  font-weight: 800;
}

.measure-card-note {
  font-family: var(--font-heading);
  font-size: 0.675rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #888888;
  margin-top: 0.4rem;
  text-transform: uppercase;
}

.measure-card-diagram {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Fit Tip Card */
.size-chart-fit-tip {
  background: #F9F9F9;
  border-radius: 12px;
  padding: 1rem 1.25rem;
}

.fit-tip-title {
  font-family: var(--font-heading);
  font-size: 0.725rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #777777;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.25rem;
}

.fit-tip-text {
  font-size: 0.825rem;
  color: #333333;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .size-chart-modal-inner {
    padding: 1.75rem 1.25rem 1.5rem;
  }
  .size-chart-measure-card {
    flex-direction: column-reverse;
    align-items: center;
  }
}

@media (max-width: 992px) {
  .main-product-section {
    padding-top: 0.5rem !important;
    overflow-x: hidden !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  /* Container & Grid Layout */
  .product-single-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.25rem !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }
  .product-single-details {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }
  .product-gallery-sticky {
    position: relative !important;
    top: 0 !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
}

@media (max-width: 768px) {
  
  /* Media Gallery Mobile Layout */
  .product-gallery--thumbnail_left .product-gallery-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
  }
  .product-gallery--thumbnail_left .product-gallery-thumbs-wrapper {
    order: 2;
    width: 100%;
  }
  .product-gallery--thumbnail_left .product-gallery-main {
    order: 1;
    border-radius: 10px;
  }
  .product-gallery--thumbnail_left .product-gallery-thumbs {
    flex-direction: row !important;
    max-height: none !important;
    overflow-x: auto !important;
    padding-bottom: 0.25rem;
    gap: 0.5rem;
  }
  .product-gallery--thumbnail_left .product-thumb-item {
    width: 64px !important;
    aspect-ratio: 3/4 !important;
    flex-shrink: 0;
  }

  /* Typography & Pricing */
  .pdp-product-title {
    font-size: 1.45rem !important;
    line-height: 1.25 !important;
  }
  .pdp-price-current {
    font-size: 1.25rem !important;
  }
  .pdp-price-compare {
    font-size: 0.85rem !important;
  }
  .pdp-discount-badge, .pdp-savings-badge {
    font-size: 0.7rem !important;
    padding: 0.1rem 0.4rem !important;
  }

  /* Size Selector Grid */
  .pdp-size-grid {
    gap: 0.5rem !important;
  }
  .pdp-size-btn {
    height: 44px !important;
    font-size: 0.85rem !important;
  }

  /* Available Offers Carousel */
  .pdp-offer-card {
    flex: 0 0 84% !important;
  }

  /* Action Row & Buttons */
  .pdp-action-row {
    gap: 0.5rem !important;
  }
  .pdp-qty-picker {
    width: 88px !important;
    height: 48px !important;
  }
  .pdp-atc-btn {
    height: 48px !important;
    font-size: 0.875rem !important;
  }

  /* Trust Perks Bar */
  .pdp-trust-bar {
    grid-template-columns: 1fr !important;
    gap: 0.65rem !important;
    padding: 0.85rem 1rem !important;
  }

  /* Combo Banner */
  .pdp-combo-banner {
    padding: 1.25rem 1.15rem !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 1rem !important;
  }
  .combo-title {
    font-size: 1.3rem !important;
  }
  .combo-desc {
    font-size: 0.825rem !important;
  }
  .combo-action-btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 0.75rem 1rem !important;
  }

  /* Payment Guarantee Banner */
  .pdp-secure-banner {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.85rem !important;
    padding: 1rem 1.15rem !important;
  }
  .pay-logo-card {
    height: 28px !important;
    padding: 0.2rem 0.5rem !important;
  }

  /* Sticky ATC Bar Mobile */
  .sticky-atc-inner {
    gap: 0.5rem !important;
  }
  .sticky-atc-inner h4 {
    max-width: 140px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    font-size: 0.75rem !important;
  }
}

@media (max-width: 600px) {
  .pdp-size-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
  .pdp-reviews-badge {
    padding: 0.25rem 0.6rem !important;
    font-size: 0.725rem !important;
  }
  .size-chart-table th, .size-chart-table td {
    padding: 0.6rem 0.25rem !important;
    font-size: 0.75rem !important;
  }

  /* Mobile Sticky Footer Bar 2-Line Layout */
  .sticky-atc-bar {
    padding: 0.65rem 0 !important;
  }
  .sticky-atc-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
    width: 100% !important;
  }
  .sticky-atc-product-info {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    gap: 0.65rem !important;
    flex: 0 0 auto !important;
    min-width: 0 !important;
  }
  .sticky-atc-img {
    width: 36px !important;
    height: 36px !important;
    border-radius: 4px !important;
    flex-shrink: 0 !important;
  }
  .sticky-atc-meta {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    min-width: 0 !important;
  }
  .sticky-atc-title {
    display: block !important;
    font-size: 0.8rem !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 100% !important;
    margin: 0 !important;
    color: #111111 !important;
  }
  .sticky-atc-price {
    display: none !important;
  }
  .sticky-atc-actions {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    width: 100% !important;
    flex: 0 0 auto !important;
  }
  .sticky-qty-picker {
    width: 90px !important;
    height: 40px !important;
    padding: 0 0.35rem !important;
    flex-shrink: 0 !important;
    border-radius: 8px !important;
  }
  .sticky-qty-btn {
    width: 24px !important;
    font-size: 0.95rem !important;
  }
  .sticky-qty-input {
    width: 26px !important;
    font-size: 0.85rem !important;
  }
  .sticky-atc-btn {
    flex: 1 !important;
    width: 100% !important;
    height: 40px !important;
    padding: 0 1rem !important;
    font-size: 0.825rem !important;
    font-weight: 900 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    border-radius: 8px !important;
    justify-content: center !important;
    align-items: center !important;
    display: inline-flex !important;
    white-space: nowrap !important;
  }
  .sticky-atc-btn [data-sticky-btn-price] {
    display: inline !important;
  }
}

/* ==========================================================================
   13. Custom 1-Page Checkout System Styles (Vultaro / Off Spire Reference)
   ========================================================================== */
/* Hide main store header & footer when on custom checkout page */
.template-page-checkout #shopify-section-header,
.template-page-checkout #shopify-section-announcement-bar,
.template-page-checkout #shopify-section-header-group,
.template-page-checkout #shopify-section-footer,
.template-page-checkout #shopify-section-footer-group,
.template-page-checkout .site-header,
.template-page-checkout .announcement-bar,
.template-page-checkout .site-footer {
  display: none !important;
}

.main-checkout-wrapper {
  background-color: #F5F5F1;
  min-height: 100vh;
  padding-bottom: 4rem;
}

/* Header */
.checkout-header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #EAEAE4;
  padding: 1.15rem 0;
  margin-bottom: 2rem;
}

.checkout-return-link:hover {
  opacity: 0.75;
}

.checkout-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.checkout-logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--color-black);
}
.checkout-security-badges {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #555555;
}
.security-badge {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.security-badge--green {
  color: #0D652D;
}
.security-divider {
  color: #CCCCCC;
}
.checkout-help-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.825rem;
  font-weight: 600;
  color: #333333;
}

/* Free Shipping Alert Banner */
.checkout-shipping-alert {
  background: #EAF7EE;
  border: 1px solid #C5EAD0;
  border-radius: 12px;
  padding: 1.15rem 1.25rem 0.85rem;
  margin-bottom: 1.75rem;
}
.shipping-alert-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.shipping-alert-icon {
  font-size: 1.3rem;
}
.shipping-alert-text {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  color: #1B4329;
}
.shipping-alert-text strong {
  font-size: 0.925rem;
  color: #0D652D;
}
.shipping-progress-bar {
  height: 5px;
  background: #CBEAD5;
  border-radius: 4px;
  overflow: hidden;
}
.shipping-progress-fill {
  height: 100%;
  width: 100%;
  background: #0D652D;
  border-radius: 4px;
  transition: width 0.4s ease;
}

/* Grid Layout */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1.75rem;
  align-items: start;
}
.checkout-left-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Cards */
.checkout-card {
  background: #FFFFFF;
  border: 1px solid #E6E6DF;
  border-radius: 16px;
  padding: 1.75rem 1.6rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.025);
}
.checkout-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.card-title-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #000000;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-black);
  margin: 0;
}

/* Notification Pills Toggle */
.update-toggle-group {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.toggle-label {
  font-size: 0.775rem;
  color: #777777;
}
.toggle-pills {
  background: #F0F0EB;
  padding: 3px;
  border-radius: 20px;
  display: flex;
  gap: 2px;
}
.toggle-pill {
  background: transparent;
  border: none;
  padding: 0.35rem 0.75rem;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #666666;
  cursor: pointer;
  transition: all 0.2s ease;
}
.toggle-pill.is-active {
  background: #FFFFFF;
  color: #000000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Form Fields */
.checkout-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-field--full {
  grid-column: span 2;
}
.form-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #555555;
}
.checkout-input, .checkout-select {
  height: 48px;
  border: 1px solid #E0E0D8;
  border-radius: 10px;
  padding: 0 1rem;
  font-size: 0.875rem;
  color: #111111;
  background-color: #FFFFFF;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.checkout-input:focus, .checkout-select:focus {
  border-color: #000000;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}
.checkbox-field {
  margin-top: 1.25rem;
}
.custom-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  user-select: none;
  font-size: 0.85rem;
  color: #333333;
}
.custom-checkbox input {
  accent-color: #000000;
  width: 18px;
  height: 18px;
}

/* Order Summary Card */
.summary-card {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}
.summary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.summary-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
}
.summary-count-badge {
  font-size: 0.775rem;
  color: #777777;
}

/* Line Items */
.summary-items-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}
.summary-line-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.summary-item-img-wrapper {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #EAEAE0;
  flex-shrink: 0;
}
.summary-item-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.summary-qty-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #000000;
  color: #FFFFFF;
  font-size: 0.675rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.summary-item-info {
  flex: 1;
  min-width: 0;
}
.summary-item-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #111111;
  margin: 0 0 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.summary-item-meta {
  font-size: 0.75rem;
  color: #777777;
}
.summary-item-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
}
.summary-item-price .current-price {
  font-size: 0.875rem;
  font-weight: 800;
  color: #111111;
}
.summary-item-price .compare-price {
  font-size: 0.75rem;
  color: #999999;
  text-decoration: line-through;
}

/* Callout inside summary */
.summary-shipping-callout {
  background: #EAF7EE;
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
  font-size: 0.785rem;
  color: #0D652D;
  font-weight: 600;
}

/* Totals Table */
.summary-totals-table {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.totals-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: #444444;
}
.totals-row--discount .totals-value {
  color: #0D652D;
  font-weight: 700;
}
.totals-value--bold {
  font-weight: 800;
  color: #111111;
}
.totals-divider {
  height: 1px;
  background: #EAEAE4;
  margin: 0.4rem 0;
}
.totals-row--grand {
  font-size: 1.1rem;
  font-weight: 800;
  color: #111111;
}
.totals-row--grand .totals-value {
  font-size: 1.25rem;
}
.savings-highlight-bar {
  font-size: 0.825rem;
  font-weight: 700;
  color: #0D652D;
  margin-top: 0.25rem;
}

/* Payment Section */
.checkout-payment-section {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 0.5rem;
}
.payment-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.payment-section-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
}
.recommended-badge {
  background: #EAF7EE;
  color: #0D652D;
  font-size: 0.725rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 12px;
}
.payment-methods-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.payment-option-card {
  border: 1.5px solid #E2E2DC;
  border-radius: 12px;
  padding: 1.15rem 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #FFFFFF;
}
.payment-option-card.is-selected {
  border: 2px solid #000000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}
.option-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.option-radio-wrapper {
  position: relative;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.option-radio-wrapper input {
  accent-color: #000000;
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
}
.option-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.option-title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.option-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: #111111;
}
.option-badge-tag {
  background: #EB001B;
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  letter-spacing: 0.5px;
}
.option-subtext {
  font-size: 0.775rem;
  color: #666666;
}
.payment-logos-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  background: #EBF6EE;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  margin-top: 0.85rem;
}
.pay-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.06);
}

/* Submit Button */
.checkout-submit-btn {
  width: 100%;
  height: 54px;
  background: #000000;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  margin-top: 0.5rem;
}
.checkout-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.22);
}

/* Mobile Responsiveness for Checkout */
@media (max-width: 992px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  .checkout-header-inner {
    flex-wrap: wrap;
    gap: 0.85rem;
  }
  .checkout-security-badges {
    font-size: 0.775rem;
  }
}

@media (max-width: 768px) {
  .template-page-checkout .main-checkout-wrapper,
  .template-page-checkout .checkout-body {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .checkout-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    width: 100% !important;
  }

  .checkout-left-col {
    gap: 1rem !important;
    width: 100% !important;
  }

  .checkout-card {
    padding: 1.15rem 0.9rem !important;
    border-radius: 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .checkout-card-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.65rem !important;
    margin-bottom: 1.15rem !important;
  }

  .card-title-group {
    width: 100% !important;
  }

  .card-title {
    font-size: 1.05rem !important;
    word-break: break-word !important;
  }

  .update-toggle-group {
    width: 100% !important;
    align-items: flex-start !important;
    flex-direction: row !important;
    justify-content: space-between !important;
  }

  .checkout-form-grid {
    grid-template-columns: 1fr !important;
    gap: 0.85rem !important;
  }

  .form-field--full {
    grid-column: span 1 !important;
  }

  .checkout-input, .checkout-select {
    height: 44px !important;
    font-size: 0.85rem !important;
    padding: 0 0.75rem !important;
  }

  .payment-option-card {
    padding: 0.85rem 0.75rem !important;
    border-radius: 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .option-title-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.35rem !important;
  }

  .option-name {
    font-size: 0.875rem !important;
    word-break: break-word !important;
  }

  .pdp-payment-icons {
    gap: 0.35rem !important;
    justify-content: flex-start !important;
  }

  .pay-logo-badge {
    height: 26px !important;
    padding: 0.15rem 0.4rem !important;
    font-size: 0.675rem !important;
  }

  .checkout-trust-card .trust-grid {
    grid-template-columns: 1fr !important;
    gap: 0.85rem !important;
  }

  .summary-line-item {
    gap: 0.65rem !important;
  }

  .summary-item-title {
    font-size: 0.825rem !important;
    white-space: normal !important;
    word-break: break-word !important;
  }

  .main-checkout-wrapper {
    padding-bottom: 2rem;
  }
}

/* Cart Calculation & Free Shipping Bar Transition */
.free-shipping-bar-fill {
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

