/** Shopify CDN: Minification failed

Line 1662:0 Unexpected "}"

**/
/* ==========================================================================
   GETURBRICK - Custom Product Page
   Minimal Premium Design with Scroll Gallery
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables - Extended for Product Page
   -------------------------------------------------------------------------- */

:root {
  /* Extended color palette */
  --color-black: #0a0a0a;
  --color-gray-900: #18181b;
  --color-gray-800: #27272a;
  --color-gray-700: #3f3f46;
  --color-gray-600: #52525b;
  --color-gray-500: #71717a;
  --color-gray-400: #a1a1aa;
  --color-gray-300: #d4d4d8;
  --color-gray-200: #e4e4e7;
  --color-gray-100: #f4f4f5;
  --color-gray-50: #fafafa;
  --color-white: #ffffff;
  
  /* Violet accent */
  --color-violet: #5B4FE9;
  --color-violet-dark: #4338ca;
  --color-violet-light: #EEEDFB;
  --color-violet-50: #F5F3FF;
  
  /* Status colors */
  --color-green: #16a34a;
  --color-green-light: #dcfce7;
  --color-cream: #F9F8F6;
  
  /* Font families */
  --font-tight: 'Inter Tight', 'DM Sans', sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', 'Consolas', monospace;
}

/* --------------------------------------------------------------------------
   Product Container - Main Layout
   -------------------------------------------------------------------------- */

.product-custom {
  width: 100%;
  max-width: var(--container-max-width, 100%);
  margin-inline: auto;
  padding-inline: clamp(10px, 3vw, 20px);
}

@media (min-width: 768px) {
  .product-page .container {
    padding-inline: 30px;
  }
}

@media (min-width: 1024px) {
  .product-page .container {
    padding-inline: 40px;
  }
}

@media (min-width: 1440px) {
  .product-page .container {
    padding-inline: 62px;
  }
}

@media (min-width: 768px) {
  .product-custom {
    padding-inline: 30px;
  }
}

@media (min-width: 1024px) {
  .product-custom {
    padding-inline-start: 0;
    padding-inline-end: 40px;
    max-width: 1680px;
    margin-inline: auto;
    min-height: auto;
  }
}

/* Ultra-wide: cap width and center everything */
@media (min-width: 1920px) {
  .product-custom {
    padding-inline: 40px;
    max-width: 1800px;
  }
}

@media (min-width: 1440px) {
  .product-custom {
    padding-inline-start: 0;
    padding-inline-end: 60px;
    max-width: 1800px;
  }
}

@media (min-width: 1920px) {
  .product-custom {
    max-width: 1800px;
    padding-inline: 40px;
    margin-inline: auto;
  }

  .product-page .container {
    max-width: 2000px;
    padding-inline: 80px;
  }
}

.product-custom__container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media (min-width: 1024px) {
  .product-custom__container {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 40px;
    min-height: auto;
    align-items: start;
  }
}

@media (min-width: 1440px) {
  .product-custom__container {
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
  }
}

/* --------------------------------------------------------------------------
   Gallery - Scroll Single Image (Desktop) / Swipe (Mobile)
   Same technique as product cards: #f5f5f5 + mix-blend-mode: multiply
   -------------------------------------------------------------------------- */

.product-gallery {
  position: relative;
  background-color: #f5f5f5;
  border-radius: 0;
  width: 100%;
}

/* Mobile - square aspect ratio (NOT for duo/grid/hybrid/single layouts) */
@media (max-width: 1023px) {
  .product-gallery:not(.product-gallery--duo):not(.product-gallery--grid):not(.product-gallery--hybrid):not(.product-gallery--single) {
    aspect-ratio: 1;
    max-height: 100vw;
    /* No overflow hidden on mobile - let viewport handle scrolling */
  }

  .product-gallery--single {
    aspect-ratio: 1;
    max-height: 100vw;
    overflow: hidden;
  }
}

/* Desktop - fixed height, overflow hidden for fade effect (NOT for duo/grid/hybrid/single layouts) */
@media (min-width: 1024px) {
  .product-gallery:not(.product-gallery--duo):not(.product-gallery--grid):not(.product-gallery--hybrid):not(.product-gallery--single) {
    position: relative;
    aspect-ratio: 1;
    max-height: 700px;
    align-self: flex-start;
    overflow: hidden;
  }

  .product-gallery--single {
    position: relative;
    aspect-ratio: 3 / 4;
    max-height: 75vh;
    align-self: flex-start;
    overflow: hidden;
  }
}

/* ==========================================================================
   DUO LAYOUT (2 images) - Desktop: Side by side | Mobile: Swipe carousel
   ========================================================================== */

.product-gallery.product-gallery--duo {
  position: relative;
  background-color: transparent;
  width: 100%;
  flex-shrink: 0;
  flex-grow: 0;
  height: auto;
  min-height: 0;
  aspect-ratio: unset;
  max-height: none;
  overflow: visible;
}

/* ===== DESKTOP VERSION: Side by side ===== */
.product-gallery__duo--desktop {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Hide mobile carousel on desktop */
.product-gallery__duo-carousel {
  display: none;
}

@media (max-width: 1023px) {
  /* Hide desktop version on mobile */
  .product-gallery__duo--desktop {
    display: none;
  }
  
  /* Show mobile carousel */
  .product-gallery__duo-carousel {
    display: block;
    position: relative;
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
    background-color: #f5f5f5;
    overflow: hidden;
  }
}

.product-gallery__duo-item {
  position: relative;
  background-color: #f5f5f5;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

.product-gallery__duo-item .product-gallery__image {
  /* Override the generic absolute positioning */
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  padding: 16px;
}

/* ===== MOBILE CAROUSEL ===== */
.product-gallery__duo-track {
  display: flex;
  transition: transform 0.3s ease-out;
  touch-action: pan-y;
}

.product-gallery__duo-slide {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 1;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-gallery__duo-slide .product-gallery__image {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  padding: 24px;
}

/* Dots indicator */
.product-gallery__duo-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.product-gallery__duo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.product-gallery__duo-dot.is-active {
  background-color: rgba(0, 0, 0, 0.8);
  transform: scale(1.2);
}

/* Fullscreen button in carousel */
.product-gallery__duo-carousel .product-gallery__fullscreen-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  left: auto;
  z-index: 10;
}

/* Badges positioning for DUO */
/* DUO Badges - Desktop only (top right) */
.product-gallery--duo .product-gallery__badges--desktop {
  position: absolute;
  top: 12px;
  right: 60px;
  left: auto;
  z-index: 10;
}

/* Hide desktop badges on mobile/tablet - same breakpoint as carousel visibility */
@media (max-width: 1023px) {
  .product-gallery--duo .product-gallery__badges--desktop {
    display: none !important;
  }
}

/* DUO Badges - Mobile only (bottom right in carousel) */
.product-gallery--duo .product-gallery__badges--bottom-right,
.product-gallery--grid .product-gallery__badges--bottom-right,
.product-gallery--grid .product-gallery__badges--main-bottom-right {
  position: absolute;
  bottom: 16px;
  right: 16px;
  top: auto;
  left: auto;
  z-index: 10;
  display: none; /* Hidden by default (desktop) */
}

/* Show mobile badges only on mobile/tablet */
@media (max-width: 1023px) {
  .product-gallery--duo .product-gallery__badges--bottom-right,
  .product-gallery--grid .product-gallery__badges--main-bottom-right {
    display: flex !important;
  }
}

/* ==========================================================================
   GRID LAYOUT (3 images) - Main image + 2 secondary side by side
   ========================================================================== */

.product-gallery.product-gallery--grid {
  display: flex;
  flex-direction: column;
  gap: 16px; /* More space between images */
  background-color: transparent;
  aspect-ratio: auto;
  max-height: none;
  overflow: visible;
  width: 100%;
  /* No sticky - content scrolls normally */
  position: relative;
}

@media (max-width: 1023px) {
  .product-gallery.product-gallery--grid {
    aspect-ratio: auto;
    max-height: none;
    gap: 12px;
  }
}

@media (min-width: 1024px) {
  .product-gallery.product-gallery--grid {
    aspect-ratio: auto;
    max-height: none;
    overflow: visible;
    /* No sticky position - let parent column handle layout */
    position: relative;
    align-self: flex-start;
    gap: 16px;
  }
}

/* Main image container - 3-image layout, 20% taller than 4:3 */
.product-gallery__main {
  position: relative;
  width: 100%;
  background-color: #f5f5f5;
  aspect-ratio: 10 / 9;
  cursor: pointer;
}

@media (max-width: 767px) {
  .product-gallery__main {
    aspect-ratio: 5 / 6; /* Portrait on mobile, 20% taller than square */
  }
}

.product-gallery__main .product-gallery__image {
  /* Override the generic absolute positioning */
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply !important; /* Force blend to remove white bg */
}

/* Fullscreen button - Simple + icon, no background */
.product-gallery__fullscreen-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 44px; /* Min touch target */
  height: 44px;
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 10;
  opacity: 0.6;
  /* Better touch target */
  -webkit-tap-highlight-color: transparent;
}

.product-gallery__fullscreen-btn:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Active state for mobile */
.product-gallery__fullscreen-btn:active {
  opacity: 1;
  transform: scale(0.95);
}

/* Hide the expand SVG, we'll use CSS for + */
.product-gallery__fullscreen-btn svg {
  display: none;
}

/* Create + icon with pseudo-elements */
.product-gallery__fullscreen-btn::before,
.product-gallery__fullscreen-btn::after {
  content: '';
  position: absolute;
  background-color: #000;
}

/* Horizontal line */
.product-gallery__fullscreen-btn::before {
  width: 20px;
  height: 2px;
}

/* Vertical line */
.product-gallery__fullscreen-btn::after {
  width: 2px;
  height: 20px;
}

/* Mobile adjustments for fullscreen button */
@media (max-width: 767px) {
  .product-gallery__fullscreen-btn {
    bottom: 12px;
    right: 12px;
    opacity: 0.7; /* More visible on mobile */
  }
}

/* Secondary images container - side by side */
.product-gallery__secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 767px) {
  .product-gallery__secondary {
    gap: 12px;
  }
}

.product-gallery__secondary-item {
  position: relative;
  background-color: #f5f5f5;
  aspect-ratio: 4/3; /* Match typical product image ratio */
  cursor: pointer;
  overflow: hidden;
  transition: opacity 0.2s ease;
}

.product-gallery__secondary-item:hover {
  opacity: 0.85;
}

.product-gallery__secondary-item .product-gallery__image {
  /* Override the generic absolute positioning */
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply !important; /* Force blend to remove white bg */
}

/* Secondary container needs relative positioning for badges */
.product-gallery__secondary {
  position: relative;
}

/* GETURBRICK - Component: Gallery Thumbnails (360° + extra images) */
.product-gallery__thumbs-wrapper {
  position: relative;
  background-color: #f5f5f5;
}

.product-gallery__thumbs {
  display: flex;
  align-items: center;
  gap: 0;
  background-color: #f5f5f5;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.product-gallery__thumbs::-webkit-scrollbar {
  display: none;
}

/* Thumb navigation arrows */
.product-gallery__thumbs-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  z-index: 5;
  padding: 0;
  color: var(--color-text);
  transition: opacity 0.2s ease;
}

.product-gallery__thumbs-arrow--prev {
  left: 0;
  background: linear-gradient(to right, #f5f5f5 60%, transparent);
}

.product-gallery__thumbs-arrow--next {
  right: 0;
  background: linear-gradient(to left, #f5f5f5 60%, transparent);
}

.product-gallery__thumbs-arrow.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.product-gallery__thumbs-arrow svg {
  width: 16px;
  height: 16px;
}

.product-gallery__thumb {
  position: relative;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  padding: var(--spacing-xs);
  border: none;
  background-color: #f5f5f5;
  cursor: pointer;
  overflow: hidden;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.product-gallery__thumb::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.product-gallery__thumb.is-active {
  opacity: 1;
}

.product-gallery__thumb.is-active::after {
  transform: scaleX(1);
}

.product-gallery__thumb:hover {
  opacity: 0.85;
}

.product-gallery__thumb-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Only apply blend on 360° thumb (product images on white bg) */
.product-gallery__thumb[data-thumb-type="360"] .product-gallery__thumb-image {
  mix-blend-mode: multiply;
}

/* 360° badge on thumb — only shown when gallery has multiple 360 images */
.product-gallery--has-360 .product-gallery__thumb[data-thumb-type="360"]::before {
  content: '360°';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.85);
  padding: 1px 6px;
  border-radius: 2px;
  line-height: 1.4;
  pointer-events: none;
}

/* Extra thumbs: darken blend to match viewport + extras grid */
.product-gallery__thumb[data-thumb-type="extra"] .product-gallery__thumb-image {
  object-fit: contain;
  mix-blend-mode: darken;
}

/* Extra image preview in main viewport */
.product-gallery__extra-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: darken;
}

.product-gallery__extra-preview--contain {
  object-fit: contain;
}

/* When showing extra, white bg + reduced height viewport */
.product-gallery--hybrid.is-showing-extra .product-gallery__viewport--hybrid {
  background-color: #ffffff;
  aspect-ratio: 1 / 1;
  max-height: 600px;
}

/* Extra images — cursor set dynamically by JS (left=prev, right=next) */

/* Extra image navigation arrows — removed, hover on thumbs instead */
.product-gallery__extra-nav {
  display: none !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: background 0.2s ease, transform 0.2s ease;
}

.product-gallery__extra-nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
}

.product-gallery__extra-nav svg {
  width: 18px;
  height: 18px;
  color: var(--color-text);
}

.product-gallery__extra-nav--prev { left: 12px; }
.product-gallery__extra-nav--next { right: 12px; }


/* Extra counter — "1 / 3" */
.product-gallery__extra-counter {
  display: none;
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  padding: 4px 12px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  color: #fff;
  pointer-events: none;
}


@media (max-width: 767px) {
  .product-gallery__extra-nav { width: 32px; height: 32px; }
  .product-gallery__extra-nav--prev { left: 8px; }
  .product-gallery__extra-nav--next { right: 8px; }
  .product-gallery__extra-nav svg { width: 14px; height: 14px; }
}

/* Extra slide animation — rules are after base .product-gallery__slide rules below */

/* Hide fullscreen btn on 360° mode, show on extra mode */
.product-gallery--hybrid .product-gallery__fullscreen-btn--hybrid {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.product-gallery--hybrid.is-showing-extra .product-gallery__fullscreen-btn--hybrid,
.product-gallery--hybrid:not(.product-gallery--has-360) .product-gallery__fullscreen-btn--hybrid {
  opacity: 0.6;
  pointer-events: auto;
}

.product-gallery--hybrid.is-showing-extra .product-gallery__fullscreen-btn--hybrid:hover,
.product-gallery--hybrid:not(.product-gallery--has-360) .product-gallery__fullscreen-btn--hybrid:hover {
  opacity: 1;
}

@media (max-width: 767px) {
  .product-gallery__thumb {
    width: 60px;
    height: 60px;
  }
}

/* GETURBRICK - Component: Extra Images Grid (lifestyle/on-feet/official) */
.product-gallery__extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.product-gallery__extras--single {
  grid-template-columns: 1fr;
}

.product-gallery__extras-item {
  position: relative;
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  cursor: pointer;
  overflow: hidden;
  transition: opacity 0.2s ease;
}

.product-gallery__extras-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.product-gallery__extras-item:hover {
  opacity: 0.85;
}

.product-gallery__extras-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  mix-blend-mode: darken;
}

@media (max-width: 767px) {
  .product-gallery__extras {
    gap: var(--spacing-sm);
  }
}

/* TRIO Layout: Fullscreen button in main image - bottom RIGHT */
.product-gallery--grid .product-gallery__main .product-gallery__fullscreen-btn {
  right: 16px;
  left: auto;
}

@media (max-width: 767px) {
  .product-gallery--grid .product-gallery__main .product-gallery__fullscreen-btn {
    right: 12px;
    left: auto;
  }
}

/* TRIO Layout: Badges positioning */
/* Main image badges - bottom right (shown on mobile) */
.product-gallery__badges--main-bottom-right {
  position: absolute;
  bottom: 16px;
  right: 16px;
  top: auto !important;
  left: auto !important;
  z-index: 10;
  display: none; /* Hidden by default, shown on mobile */
}

@media (max-width: 1023px) {
  .product-gallery__badges--main-bottom-right {
    display: flex !important;
  }
}

/* Secondary section badges - bottom right (shown on desktop) */
.product-gallery__badges--secondary-bottom-right {
  position: absolute;
  bottom: 12px;
  right: 12px;
  top: auto !important;
  left: auto !important;
  z-index: 10;
}

@media (max-width: 1023px) {
  .product-gallery__badges--secondary-bottom-right {
    display: none !important;
  }
}

/* ==========================================================================
   HYBRID LAYOUT (360° images + 2 secondary below)
   ========================================================================== */

.product-gallery.product-gallery--hybrid {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  background-color: transparent;
  aspect-ratio: auto;
  max-height: none;
  overflow: visible;
  width: 100%;
}

@media (min-width: 1024px) {
  .product-gallery.product-gallery--hybrid {
    align-self: flex-start;
  }
}

/* Hybrid viewport - contains 360° images, fixed height */
.product-gallery__viewport--hybrid {
  position: relative !important;
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 55vh;
  background-color: #f5f5f5;
  overflow: hidden;
  cursor: grab;
}

/* No grab cursor when showing extra images or no 360 */
.product-gallery--hybrid.is-showing-extra .product-gallery__viewport--hybrid {
  cursor: pointer;
}

.product-gallery--hybrid:not(.product-gallery--has-360) .product-gallery__viewport--hybrid {
  cursor: default;
}

/* Taller viewport for products with extra images - 360° mode */
.product-gallery--hybrid[data-has-extras] .product-gallery__viewport--hybrid {
  aspect-ratio: 1 / 1;
  max-height: 55vh;
}

@media (min-width: 1024px) {
  .product-gallery--hybrid[data-has-extras] .product-gallery__viewport--hybrid {
    aspect-ratio: 3 / 4;
    max-height: 75vh;
  }
}


.product-gallery__viewport--hybrid:active {
  cursor: grabbing;
}

.product-gallery--hybrid.is-showing-extra .product-gallery__viewport--hybrid:active {
  cursor: pointer;
}

.product-gallery--hybrid:not(.product-gallery--has-360) .product-gallery__viewport--hybrid:active {
  cursor: default;
}

/* Slides inside hybrid viewport - stacked absolutely, NO fade transition for 360° */
.product-gallery__viewport--hybrid .product-gallery__slide:not(.product-gallery__slide--extra) {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: none !important; /* Force instant switch for 360° rotation */
}

.product-gallery__viewport--hybrid .product-gallery__slide:not(.product-gallery__slide--extra).is-active {
  opacity: 1;
  visibility: visible;
  transition: none !important;
}

/* Extra slides — translateX slide animation (same as hero-slider) */
.product-gallery--hybrid .product-gallery__viewport--hybrid .product-gallery__slide.product-gallery__slide--extra {
  position: absolute;
  inset: 0;
  opacity: 1;
  visibility: hidden;
  z-index: 1;
  will-change: transform;
  pointer-events: none;
}

.product-gallery--hybrid .product-gallery__viewport--hybrid .product-gallery__slide.product-gallery__slide--extra.is-active {
  visibility: visible;
  z-index: 2;
  transform: translateX(0);
  pointer-events: auto;
}

.product-gallery--hybrid .product-gallery__viewport--hybrid .product-gallery__slide.product-gallery__slide--extra.is-sliding {
  visibility: visible;
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-gallery--hybrid .product-gallery__viewport--hybrid .product-gallery__slide.product-gallery__slide--extra.is-exiting {
  visibility: visible;
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hybrid layout: Gray background + multiply blend to remove white bg */
.product-gallery__viewport--hybrid {
  background-color: #f5f5f5;
}

.product-gallery__viewport--hybrid .product-gallery__image {
  mix-blend-mode: multiply !important; /* Force blend to remove white bg */
}

/* Secondary images in hybrid layout - gray bg + multiply blend */
.product-gallery--hybrid .product-gallery__secondary-item {
  background-color: #f5f5f5;
}

.product-gallery--hybrid .product-gallery__secondary-item .product-gallery__image {
  mix-blend-mode: multiply !important; /* Force blend to remove white bg */
  object-fit: contain; /* Show full image without cropping */
  width: 100%;
  height: 100%;
}

/* Visible image counter on 360° viewport */
.product-gallery__counter--visible {
  display: block !important;
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 10;
  padding: 6px 12px;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  color: #fff;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.5px;
  font-family: var(--font-body);
  pointer-events: none;
}

@media (max-width: 767px) {
  .product-gallery__counter--visible {
    bottom: 12px;
    right: 12px;
    font-size: 11px;
    padding: 4px 10px;
  }
}

/* 360° indicator for hybrid layout */
.product-gallery__360-indicator--hybrid {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 10;
}

@media (max-width: 767px) {
  .product-gallery__360-indicator--hybrid {
    bottom: 12px;
    left: 12px;
  }
}

/* Secondary images row in hybrid layout */
.product-gallery__secondary--hybrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
  position: relative;
}

@media (max-width: 767px) {
  .product-gallery__secondary--hybrid {
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
  }
}

/* Fullscreen button for hybrid layout - bottom right of viewport */
.product-gallery__fullscreen-btn--hybrid {
  position: absolute;
  bottom: 16px;
  right: 16px;
  left: auto;
  top: auto;
  z-index: 20;
}

@media (max-width: 767px) {
  .product-gallery__fullscreen-btn--hybrid {
    bottom: 12px;
    right: 12px;
  }
}

/* Make sure the 360 indicator is above the viewport in hybrid */
.product-gallery--hybrid .product-gallery__360-indicator {
  /* Already positioned absolutely from the generic styles */
}

.product-gallery__viewport {
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
}

/* Desktop: absolute positioning for fade transitions */
@media (min-width: 1024px) {
  .product-gallery__viewport {
    position: absolute;
    inset: 0;
    overflow: hidden;
    cursor: grab;
  }
  
  .product-gallery__viewport:active {
    cursor: grabbing;
  }
}

/* Mobile: Same as desktop - stacked slides for 360 effect */
@media (max-width: 1023px) {
  .product-gallery__viewport {
    position: absolute;
    inset: 0;
    overflow: hidden;
    touch-action: pan-y; /* Allow vertical scroll only, pinch-zoom disabled — tap to open lightbox instead */
  }
}

/* Gallery slide - contains image */
.product-gallery__slide {
  position: relative;
  cursor: grab;
  background-color: #f5f5f5;
  overflow: hidden;
  user-select: none;
}

.product-gallery__slide:active {
  cursor: grabbing;
}

/* Single image - no grab cursor, no swipe */
.product-gallery--single,
.product-gallery--single .product-gallery__slide,
.product-gallery--single .product-gallery__viewport {
  cursor: default;
  touch-action: pan-y;
}

.product-gallery--single:active,
.product-gallery--single .product-gallery__slide:active,
.product-gallery--single .product-gallery__viewport:active {
  cursor: default;
}

/* Single image - use same absolute stacking as other layouts */
.product-gallery--single .product-gallery__viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.product-gallery--single .product-gallery__slide {
  position: absolute;
  inset: 0;
  opacity: 1;
  visibility: visible;
}

.product-gallery--single .product-gallery__image {
  position: absolute;
  top: 0;
  left: 0;
  transform: none;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--spacing-lg);
}

/* Mobile: same as desktop - stacked absolutely for 360 effect */
@media (max-width: 1023px) {
  .product-gallery__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: none; /* Instant switch for 360° rotation */
  }

  .product-gallery__slide.is-active {
    opacity: 1;
    visibility: visible;
  }

  /* Single image override - ensure visible */
  .product-gallery--single .product-gallery__slide,
  .product-gallery--single .product-gallery__slide.is-active {
    opacity: 1;
    visibility: visible;
  }

  /* Single image mobile - fill the square, no padding */
  .product-gallery--single .product-gallery__image {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

/* Desktop: slides are stacked absolutely, instant switch (no fade for 360 effect) */
@media (min-width: 1024px) {
  .product-gallery__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: none; /* Instant switch for 360° rotation */
  }

  .product-gallery__slide.is-active {
    opacity: 1;
    visibility: visible;
  }

  /* Single image override - ensure visible */
  .product-gallery--single .product-gallery__slide,
  .product-gallery--single .product-gallery__slide.is-active {
    opacity: 1;
    visibility: visible;
  }
}

/* Image - max size, centered, blend white to gray */
.product-gallery__image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

@media (min-width: 1024px) {
  .product-gallery__image {
    padding: 24px;
  }

  .product-gallery--single .product-gallery__image {
    padding: 0;
  }
}

/* Badges container - top right corner, horizontal layout (default for scroll/360 layout) */
/* right: 60px leaves room for the 40px wishlist button + 8px gap */
.product-gallery__badges {
  position: absolute;
  top: 12px;
  right: 60px;
  left: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  height: 40px;
  z-index: 100;
}

/* Override for bottom-right positioning (mobile DUO and TRIO) */
.product-gallery__badges.product-gallery__badges--bottom-right {
  top: auto;
  left: auto;
  bottom: 16px;
  right: 16px;
}

/* Product badges in gallery */
.product-gallery__badges .badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 14px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  line-height: 1;
  white-space: nowrap;
}

.product-gallery__badges .badge--delivery {
  background-color: #5B4FE9;
  color: #ffffff;
  border-radius: 8px;
}

.product-gallery__badges .badge--delivery svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.product-gallery__badges .badge--new {
  background-color: #ffffff;
  color: #71717a;
  border: 1px solid #e4e4e7;
  border-radius: 8px;
}

.product-gallery__badges .badge--promo {
  background-color: #dc2626;
  color: #ffffff;
  border-radius: 8px;
}

/* Progress bar - hidden (replaced by 360 indicator) */
.product-gallery__progress {
  display: none;
}

.product-gallery__progress-fill {
  display: none;
}

/* 360° Indicator - bottom center with rotation hint */
.product-gallery__360-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 20px;
  z-index: 10;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: opacity 0.4s ease, transform 0.4s ease;
  cursor: grab;
}

.product-gallery__360-indicator:active {
  cursor: grabbing;
}

.product-gallery__360-indicator.is-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(10px);
  pointer-events: none;
}

.product-gallery__360-icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotate360Hint 2.5s ease-in-out infinite;
}

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

.product-gallery__360-label {
  font-family: var(--font-body);
}

/* Subtle rotation animation to hint at 360 interaction */
@keyframes rotate360Hint {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-15deg);
  }
  75% {
    transform: rotate(15deg);
  }
}

/* Counter (hidden) */
.product-gallery__counter {
  display: none !important;
}

/* Dots navigation - hidden everywhere (progress bar used instead for 360 effect) */
.product-gallery__dots {
  display: none;
}

.product-gallery__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-gray-300);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.product-gallery__dot.is-active {
  background-color: var(--color-black);
  transform: scale(1.2);
}

.product-gallery__dot:hover {
  background-color: var(--color-gray-500);
}

/* --------------------------------------------------------------------------
   Gallery Fullscreen Modal - Click anywhere to close, drag to navigate
   -------------------------------------------------------------------------- */

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 9999; /* Above everything including header */
  background-color: rgba(255, 255, 255, 0.98);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
  cursor: zoom-out;
}

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

/* Lift gallery-col stacking context above everything when modal is open */
body.gallery-modal-open .product-custom__gallery-col {
  overflow: visible !important;
  max-height: none !important;
  z-index: var(--z-modal, 400) !important;
}

.gallery-modal__content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  user-select: none;
}

.gallery-modal__content:active {
  cursor: grabbing;
}

/* Single image modal - no grab cursor */
.gallery-modal.is-single .gallery-modal__content,
.gallery-modal.is-single .gallery-modal__content:active {
  cursor: default;
}

.gallery-modal__content {
  background-color: #f5f5f5;
}

.gallery-modal__image {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  mix-blend-mode: darken;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  will-change: transform;
  /* No transition by default - drag follows cursor instantly */
  transition: opacity 0.15s ease;
}

/* Animate image when modal opens */
.gallery-modal.is-open .gallery-modal__image {
  opacity: 1;
}

/* Snap transition for drag release and slide navigation */
.gallery-modal__image.is-snapping {
  transition: transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.15s ease;
}

/* Counter - top center */
.gallery-modal__counter {
  position: absolute;
  top: var(--spacing-md);
  left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  padding: 4px 14px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  color: #fff;
}

/* Close button - top right */
.gallery-modal__close {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  z-index: 10;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text);
  transition: opacity 0.2s ease;
}

.gallery-modal__close:hover {
  opacity: 0.6;
}

/* Navigation arrows - subtle chevrons */
.gallery-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: #000;
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.2s ease, background-color 0.2s ease;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gallery-modal__nav:hover {
  opacity: 0.85;
  background-color: #fff;
}

.gallery-modal__nav--prev {
  left: 20px;
}

.gallery-modal__nav--next {
  right: 20px;
}

.gallery-modal__nav svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

/* Hide arrows on single image or mobile */
.gallery-modal.is-single .gallery-modal__nav {
  display: none;
}

@media (max-width: 767px) {
  .gallery-modal__nav {
    display: none;
  }
}

/* Hide dots - no indicator needed */
.gallery-modal__dots {
  display: none;
}

.gallery-modal__dot {
  display: none;
}

/* Mobile optimizations for gallery modal */
@media (max-width: 767px) {
  .gallery-modal {
    background-color: rgba(255, 255, 255, 1); /* Solid white on mobile */
  }
  
  .gallery-modal__content {
    padding: 16px;
  }
  
  .gallery-modal__image {
    max-width: 100%;
    max-height: 85vh;
  }
  
  /* Hint text for mobile - tap to close */
  .gallery-modal::after {
    content: attr(data-tap-to-close);
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: var(--color-gray-400);
    opacity: 0;
    animation: fadeInHint 0.5s ease 1s forwards;
  }
  
  @keyframes fadeInHint {
    to {
      opacity: 1;
    }
  }
}

/* --------------------------------------------------------------------------
   Product Info Section
   -------------------------------------------------------------------------- */

.product-info {
  padding: 4px clamp(10px, 3vw, 16px) 16px;
  background-color: var(--color-white);
}

@media (min-width: 768px) {
  .product-info {
    padding: 20px 16px;
  }
}

@media (min-width: 1024px) {
  .product-info {
    padding: 0;
    border-left: none;
    max-height: none;
    overflow-y: visible;
    max-width: 500px;
    margin-inline: auto;
  }
}
  
  .product-info::-webkit-scrollbar {
    width: 6px;
  }
  
  .product-info::-webkit-scrollbar-track {
    background: transparent;
  }
  
  .product-info::-webkit-scrollbar-thumb {
    background-color: var(--color-gray-300);
    border-radius: 3px;
  }
}

@media (min-width: 1440px) {
  .product-info {
    padding: 0;
    max-width: 540px;
    margin-inline: auto;
  }
}

/* Breadcrumb row */
.product-breadcrumb-row {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: 0;
}

/* Wishlist Button - Top right of gallery, same line as badges */
.product-wishlist--mobile {
  display: flex;
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 101;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.product-breadcrumb-row .product-breadcrumb {
  margin-bottom: 0;
}

/* Tighten the generic breadcrumb snippet when used inside the product header */
.product-breadcrumb-row .breadcrumb-wrapper {
  margin: 0;
  padding: 0;
}

.product-breadcrumb-row .breadcrumb {
  padding: 0;
  margin: 0;
}

/* Product Breadcrumb - Friendly style - Scrollable on mobile */
.product-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 4px;
  margin-bottom: 8px;
  font-size: 11px;
  color: var(--color-text-secondary, #666);
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  max-width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2px;
  margin-left: -16px;
  margin-right: -16px;
  padding-left: 16px;
  padding-right: 16px;
}

.product-breadcrumb::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .product-breadcrumb {
    font-size: var(--font-size-sm);
    gap: 5px;
    overflow: visible;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

.product-breadcrumb__link {
  color: var(--color-text-secondary, #666);
  text-decoration: none;
  transition: color 0.2s ease;
  flex-shrink: 0;
  white-space: nowrap;
}

.product-breadcrumb__link:hover {
  color: var(--color-accent, #5B4FE9);
}

.product-breadcrumb__chevron {
  width: 10px;
  height: 10px;
  color: var(--color-text-muted, #999);
  flex-shrink: 0;
}

.product-breadcrumb__current {
  color: var(--color-text-secondary, #666);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Header row: Title row + Wishlist on same line */
.product-info__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2px var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

/* Vendor + Title - wrap if needed */
.product-title-row {
  flex: 1;
  min-width: 0;
  display: block;
  line-height: 0.85;
  margin: 0;
  padding: 0;
}

.product-info__header > .product-breadcrumb-row {
  margin: 0;
  padding: 0;
}

.product-info__header > .product-breadcrumb-row + .product-title-row {
  margin-top: -4px;
}

/* Vendor (brand) - clickable link, inline with title */
.product-vendor {
  display: inline-block;
  position: relative;
  font-family: var(--font-family);
  font-size: 30px;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s ease;
  vertical-align: baseline;
}

.product-vendor::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-text);
  transition: width 0.3s ease;
}

.product-vendor:hover {
  color: var(--color-gray-600);
}

.product-vendor:hover::after {
  width: 100%;
}

/* Wishlist button - simple icon without circle */
.product-wishlist {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  color: var(--color-gray-400);
}

.product-wishlist:hover {
  color: var(--color-violet);
}

.product-wishlist.is-active {
  color: var(--color-violet);
}

.product-wishlist svg {
  width: 22px;
  height: 22px;
  transition: transform 0.2s ease;
}

.product-wishlist:hover svg {
  transform: scale(1.1);
}

.product-wishlist.is-active svg {
  fill: currentColor;
}

/* Product title - inline with vendor, wraps naturally */
.product-title {
  display: inline !important;
  font-family: var(--font-family);
  font-size: 30px;
  font-weight: 700;
  line-height: inherit;
  color: var(--color-text);
  margin: 0;
  vertical-align: baseline;
}

.product-title .highlight {
  position: relative;
  display: inline;
  background: linear-gradient(to top, var(--color-violet-light) 25%, transparent 25%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  animation: highlight-in 0.6s ease 0.3s forwards;
}

@keyframes highlight-in {
  to {
    background-size: 100% 100%;
  }
}

/* Product Badges (on product page) */
.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  margin-bottom: 4px;
}

/* SKU */
.product-sku {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-gray-400);
  margin-bottom: var(--spacing-sm);
}

/* Price */
.product-price-wrapper {
  margin-bottom: var(--spacing-sm);
}

.product-price-prefix {
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-gray-400);
  margin-right: 6px;
}

.product-price {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  font-weight: 600; /* Semi-bold like product cards */
  color: #000; /* Pure black */
}

@media (min-width: 768px) {
  .product-price {
    font-size: 18px;
  }
}

.product-price--compare {
  font-size: 18px;
  font-weight: 400;
  color: #999; /* Keep gray for struck-through price */
  text-decoration: line-through;
  margin-left: var(--spacing-sm);
}

.product-price__from {
  font-size: 15px;
  font-weight: 400;
  color: #666; /* Keep gray for prefix (but should be hidden) */
  margin-right: 4px;
}

/* --------------------------------------------------------------------------
   Size Selector
   -------------------------------------------------------------------------- */

.size-selector {
  margin-bottom: var(--spacing-sm);
}

/* Header: TAILLES EN + EU/US/UK + Guide des tailles */
.size-selector__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}

.size-selector__header-left {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.size-selector__label {
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-black);
}

/* Size unit toggle (EU/US/UK/CM) */
.size-selector__units {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.size-unit {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray-500);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s ease;
}

.size-unit:hover {
  color: var(--color-black);
}

.size-unit.is-active {
  color: var(--color-black);
  font-weight: 600;
}

/* Size guide link - in header */
.size-selector__guide {
  font-size: 14px;
  color: #000;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.size-selector__guide:hover {
  color: #5B4FE9; /* Accent violet */
}

/* Size grid */
.size-selector__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

/* Size option button - individual borders, fixed height */
.size-option {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 4px;
  min-height: 62px;
  background-color: var(--color-white);
  border: 1.5px solid var(--color-black);
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  overflow: hidden;
}

@media (hover: hover) and (pointer: fine) {
  .size-option:hover:not(.is-unavailable):not(.is-active) {
    background-color: var(--color-gray-50);
    border-color: var(--color-black);
    box-shadow: 0 0 0 1px var(--color-black);
  }
}

/* Selected state - black background, black border */
.size-option.is-active {
  background-color: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
  box-shadow: none;
}

/* Unavailable state - clickable for back-in-stock notify */
.size-option.is-unavailable {
  cursor: pointer;
  border-color: var(--color-gray-200);
  background-color: var(--color-gray-50);
}

.size-option.is-unavailable:hover {
  border-color: var(--color-gray-400);
}

.size-option.is-unavailable .size-option__size {
  color: var(--color-gray-400);
}

.size-option.is-unavailable .size-option__price {
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
}

.size-option__notify-hint {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 10px;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
  white-space: nowrap;
}

/* Mobile: hide "Me rappeler" text, show only bell icon */
@media (max-width: 767px) {
  .size-option__notify-hint > span {
    display: none;
  }
}

.size-option.is-unavailable:hover .size-option__notify-hint {
  color: var(--color-text);
}

.size-option.is-unavailable.is-active .size-option__notify-hint {
  color: rgba(255, 255, 255, 0.9);
}

/* Unavailable + active (selected sold-out size) */
.size-option.is-unavailable.is-active {
  background-color: var(--color-black);
  border-color: var(--color-black);
}

.size-option.is-unavailable.is-active .size-option__size {
  color: var(--color-white);
}

.size-option.is-unavailable.is-active .size-option__price {
  color: rgba(255, 255, 255, 0.6);
}

/* Express 48H indicator - violet dot */
.size-option__express-dot {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 8px;
  height: 8px;
  background-color: var(--color-violet);
  border-radius: 50%;
}

@keyframes expressDotPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

.size-option.is-active .size-option__express-dot {
  background-color: #A78BFA;
  animation: none;
}

/* Size Selector Legend */
.size-selector__legend {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 12px;
  margin-bottom: 16px;
}

.size-selector__legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  cursor: help;
}

.size-selector__legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.size-selector__legend-dot--express {
  background-color: var(--color-violet); /* Violet dot */
}

.size-selector__legend-dot--standard {
  background-color: #000; /* Pure black dot */
}

.size-selector__legend-text {
  font-size: 12px;
  font-weight: 300;
  color: #000;
}

/* Legend tooltips */
.size-selector__legend-item[data-tooltip]::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 12px;
  background-color: #ffffff;
  color: var(--color-black);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  white-space: normal;
  width: max-content;
  max-width: min(280px, calc(100vw - 40px));
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 100;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--color-border, #e5e5e5);
  text-align: center;
}

.size-selector__legend-item[data-tooltip]:hover::before {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 767px) {
  .size-selector__legend-item[data-tooltip]::before {
    left: 0;
    transform: none;
    max-width: min(220px, calc(100vw - 60px));
    text-align: left;
  }
}

/* Size label - Slightly bolder than price */
.size-option__size {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: #000;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.size-option.is-active .size-option__size {
  color: var(--color-white);
}

/* Price - Lighter than size */
.size-option__price {
  font-size: 11px;
  font-weight: 500;
  color: #000;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  margin-top: 3px;
}

.size-option.is-active .size-option__price {
  color: rgba(255, 255, 255, 0.9); /* 90% white (slightly dimmed) */
}

/* Unavailable price text */
.size-option__price--unavailable {
  font-size: 10px;
  font-weight: 400; /* Regular for unavailable */
  letter-spacing: -0.02em;
  color: #666; /* Gray for unavailable */
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Legend: Express 48H / Standard */
.size-selector__legend {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-sm);
}

.size-selector__legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--color-gray-600);
  position: relative;
  cursor: pointer;
}

/* Tooltip for legend items */
.size-selector__legend-item[data-tooltip]::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  transform: translateY(4px);
  padding: 8px 12px;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  white-space: normal;
  width: max-content;
  max-width: 220px;
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 100;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.size-selector__legend-item[data-tooltip]::after {
  content: '';
  position: absolute;
  bottom: calc(100% + 2px);
  left: 16px;
  transform: translateY(4px);
  border: 5px solid transparent;
  border-top-color: var(--color-black);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 100;
  pointer-events: none;
}

.size-selector__legend-item[data-tooltip]:hover::before,
.size-selector__legend-item[data-tooltip]:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Mobile tooltip - responsive positioning to prevent overflow */
@media (max-width: 767px) {
  .size-selector__legend-item[data-tooltip]::before {
    max-width: min(220px, calc(100vw - 40px));
    text-align: left;
  }
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.legend-dot--express {
  background-color: var(--color-violet);
}

.legend-dot--standard {
  background-color: transparent;
  border: 1.5px solid var(--color-gray-400);
}

/* Extra small screens - keep 3 columns but with smaller gap */
@media (max-width: 374px) {
  .size-selector__grid {
    --grid-cols: 3;
    gap: 6px;
  }
}

/* --------------------------------------------------------------------------
   Low Stock Indicator
   -------------------------------------------------------------------------- */

/* GETURBRICK - Component: Low Stock Indicator */
.gub-low-stock {
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.gub-low-stock__text {
  display: block;
  font-size: 13px;
  font-weight: 300;
  color: var(--color-black);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.gub-low-stock__bar {
  width: 100%;
  height: 2px;
  background-color: var(--color-gray-200);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.gub-low-stock__bar-fill {
  height: 100%;
  background-color: var(--color-black);
  border-radius: var(--radius-full);
  transition: width 0.3s ease;
}

/* --------------------------------------------------------------------------
   Delivery Selector
   -------------------------------------------------------------------------- */

.delivery-selector {
  margin-bottom: var(--spacing-sm);
  /* No width/max-width/margin - same as size-selector (full width) */
}

/* Legend + Delivery Label Row */
.delivery-legend-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--spacing-sm);
}

.delivery-legend-row__dots {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

@media (min-width: 768px) {
  .delivery-legend-row__dots {
    gap: var(--spacing-lg);
  }
}

.delivery-legend-row__label {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-black);
}

.delivery-selector__options {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Delivery option */
.delivery-option {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  padding: 10px 12px;
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-300);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}

.delivery-option:hover:not(.is-disabled) {
  border-color: var(--color-gray-400);
}

.delivery-option.is-active {
  border-color: var(--color-black);
  border-width: 1.5px;
  padding: 9.5px 11.5px;
}

.delivery-option.is-active.delivery-option--express {
  background-color: var(--color-violet-50);
  border-color: var(--color-violet);
}

/* Disabled state - grayed out when express not available */
.delivery-option.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.delivery-option.is-disabled .delivery-option__title,
.delivery-option.is-disabled .delivery-option__subtitle,
.delivery-option.is-disabled .delivery-option__price {
  color: var(--color-gray-400);
}

.delivery-option.is-disabled .delivery-badge {
  background-color: var(--color-gray-300);
}

.delivery-option.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.delivery-option.is-hidden {
  display: none;
}

/* Locked state - no size selected yet */
.delivery-selector.is-locked .delivery-selector__options {
  opacity: 0.35;
  pointer-events: none;
}

.delivery-selector.is-locked .delivery-option {
  cursor: not-allowed;
}

.delivery-selector.is-locked .delivery-option.is-active {
  border-color: var(--color-gray-300);
  border-width: 1px;
  padding: 10px 12px;
}

.delivery-selector.is-locked .delivery-option.is-active .delivery-option__radio {
  border-color: var(--color-gray-300);
}

.delivery-selector.is-locked .delivery-option.is-active .delivery-option__radio::after {
  display: none;
}

.delivery-selector__hint {
  display: none; /* Hidden */
}

/* Radio indicator */
.delivery-option__radio {
  width: 18px;
  height: 18px;
  border: 2px solid var(--color-gray-300);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s ease;
  margin-top: 2px;
}

.delivery-option.is-active .delivery-option__radio {
  border-color: var(--color-black);
}

.delivery-option.is-active.delivery-option--express .delivery-option__radio {
  border-color: var(--color-violet);
}

.delivery-option.is-active .delivery-option__radio::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: var(--color-black);
  border-radius: 50%;
}

.delivery-option.is-active.delivery-option--express .delivery-option__radio::after {
  background-color: var(--color-violet);
}

/* Delivery content */
.delivery-option__content {
  flex: 1;
  display: block;
  text-align: left;
}

.delivery-option__title {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 13px;
  font-weight: 600;
  color: #000;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.3;
}

/* Express title violet when active */
.delivery-option.is-active.delivery-option--express .delivery-option__title {
  color: var(--color-violet);
}

.delivery-option__subtitle {
  display: block;
  font-size: 12px;
  color: var(--color-text-secondary);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  margin-top: -2px;
  text-align: left;
}

/* Estimated delivery date */
.delivery-option__date {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--color-text-secondary);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  margin-top: 1px;
  text-align: left;
}

.delivery-option.is-active.delivery-option--express .delivery-option__date {
  color: var(--color-violet);
}

/* Express subtitle violet when active */
.delivery-option.is-active.delivery-option--express .delivery-option__subtitle {
  color: var(--color-violet);
}

/* Smaller 48H badge in delivery selector */
.delivery-option .badge-48h {
  font-size: 10px;
  padding: 2px 6px;
  gap: 2px;
}

.delivery-option .badge-48h svg {
  width: 0.7em;
  height: 0.7em;
}

/* Delivery price - shown when at least one option is available */
.delivery-option__price {
  display: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-black);
  white-space: nowrap;
  margin-left: auto;
  align-self: flex-start;
  margin-top: 2px;
}

.delivery-selector.has-both-prices .delivery-option__price {
  display: block;
}

.delivery-option--express .delivery-option__price {
  color: var(--color-violet);
}

/* Delivery selector */
.delivery-selector {
  position: relative;
  z-index: 10;
}


/* --------------------------------------------------------------------------
   Add to Cart Button
   -------------------------------------------------------------------------- */

.product-form {
  margin-bottom: var(--spacing-sm);
}

.btn-add-cart {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: 14px 20px;
  background-color: var(--color-black);
  color: var(--color-white);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-add-cart:hover:not(:disabled) {
  background-color: var(--color-accent);
  color: #fff;
  transform: translateY(-1px);
}

.btn-add-cart:active:not(:disabled) {
  transform: translateY(0);
}

.btn-add-cart:disabled {
  background-color: var(--color-gray-300);
  cursor: not-allowed;
}

.btn-add-cart__price {
  opacity: 0.8;
  font-weight: 400;
}

.btn-add-cart__separator {
  opacity: 0.3;
}

/* Loading state */
.btn-add-cart.is-loading {
  pointer-events: none;
}

.btn-add-cart__spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--color-white);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

/* ============================================
   GETURBRICK - Component: Back in Stock Notify
   ============================================ */

.gub-notify {
  margin-top: var(--spacing-md);
}

.gub-notify__label {
  font-size: var(--font-size-xs);
  font-weight: 300;
  color: var(--color-text);
  margin: 0 0 var(--spacing-sm);
  line-height: 1.4;
}

.gub-notify__form {
  display: flex;
}

.gub-notify__input-wrap {
  display: flex;
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.gub-notify__input-wrap:focus-within {
  border-color: var(--color-primary);
}

.gub-notify__input {
  flex: 1;
  padding: 8px 12px;
  font-size: var(--font-size-xs);
  font-family: inherit;
  font-weight: var(--font-weight-normal);
  border: none;
  background-color: transparent;
  color: var(--color-text);
  outline: none;
  min-width: 0;
}

.gub-notify__input::placeholder {
  color: var(--color-text-muted);
}

.gub-notify__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-normal);
  font-family: inherit;
  line-height: 1;
  background-color: var(--color-primary);
  color: var(--color-bg);
  border: none;
  border-radius: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.gub-notify__btn svg {
  flex-shrink: 0;
  width: 13px;
  height: 13px;
}

.gub-notify__btn:hover {
  background-color: var(--color-primary-hover);
}

.gub-notify__btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.gub-notify__btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.gub-notify__success {
  margin: var(--spacing-xs) 0 0;
  font-size: var(--font-size-xs);
  font-weight: 300;
  color: var(--color-text);
}

.gub-notify__error {
  margin: var(--spacing-xs) 0 0;
  font-size: var(--font-size-xs);
  font-weight: 300;
  color: #dc2626;
}

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

/* Success state */
.btn-add-cart.is-success {
  background-color: var(--color-green);
}

/* --------------------------------------------------------------------------
   Trust Badges - Below Add to Cart button
   -------------------------------------------------------------------------- */

.trust-badges {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px var(--spacing-sm);
  margin-top: 10px;
  margin-bottom: 16px;
  padding-top: 10px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #000; /* Pure black */
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400; /* Regular (not bold) */
  white-space: nowrap;
}

.trust-badge svg {
  width: 14px;
  height: 14px;
  color: var(--color-violet);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Accordions
   -------------------------------------------------------------------------- */

.product-accordions {
  border-top: 1px solid var(--color-gray-300);
  margin-top: var(--spacing-xl); /* 32px instead of 8px - more breathing room */
}

.product-accordion {
  border-bottom: 1px solid var(--color-gray-300);
}

.product-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.product-accordion__title {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-black);
  letter-spacing: 0;
  text-transform: none;
}

/* Icon: + and - instead of chevron */
.product-accordion__icon {
  width: 16px;
  height: 16px;
  color: var(--color-black);
  position: relative;
  transition: none;
}

/* Hide the SVG chevron */
.product-accordion__icon svg {
  display: none;
}

/* Create + icon with pseudo-elements */
.product-accordion__icon::before,
.product-accordion__icon::after {
  content: '';
  position: absolute;
  background-color: #333;
  transition: transform 0.2s ease;
}

/* Horizontal line (always visible) */
.product-accordion__icon::before {
  width: 12px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Vertical line (hidden when open) */
.product-accordion__icon::after {
  width: 1px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* When open, hide vertical line to show - */
.product-accordion.is-open .product-accordion__icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.product-accordion__content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-accordion__body {
  transform: translateY(-6px);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-accordion.is-open .product-accordion__content {
  max-height: 3000px;
  opacity: 1;
}

.product-accordion.is-open .product-accordion__body {
  transform: translateY(0);
}

/* Smoother + → × icon morph */
.product-accordion__icon::before,
.product-accordion__icon::after {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Preview: Show 2 lines with gradient fade to white */
.product-accordion__preview {
  position: relative;
  padding-bottom: 4px;
  font-size: 14px;
  line-height: 1.5;
  color: #999;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* Text gradient fade effect */
  background: linear-gradient(
    to bottom,
    #999 0%,
    #bbb 60%,
    rgba(255, 255, 255, 0) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500; /* Medium weight for better readability */
}

.product-accordion.is-open .product-accordion__preview {
  display: none;
}

.product-accordion__body {
  padding-top: 8px;
  padding-bottom: 20px;
  font-size: 14px;
  line-height: 1.6;
  color: #000; /* Pure black */
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500; /* Medium weight for all accordion content */
}

.product-accordion__body p {
  margin-bottom: var(--spacing-sm);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  color: #000;
}

.product-accordion__body p:last-child {
  margin-bottom: 0;
}

.product-accordion__body ul {
  margin-top: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  padding-left: var(--spacing-lg);
  list-style: disc;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  color: #000;
}

.product-accordion__body li {
  margin-bottom: var(--spacing-xs);
  font-size: 14px;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  color: #000;
}

.product-accordion__body li:last-child {
  margin-bottom: 0;
}

.product-accordion__body a {
  color: #000; /* Pure black for links */
  text-decoration: underline;
  text-underline-offset: 2px;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500; /* Medium weight on links */
}

.product-accordion__body a:hover {
  color: #5B4FE9; /* Accent color on hover */
}

/* Neutralize bold tags in ALL accordion body content (not just description) */
.product-accordion__body strong,
.product-accordion__body b {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500; /* Medium weight instead of bold */
}

/* Exception: Keep bold for meta labels (SKU, Couleur, Date de sortie) */
.product-accordion__meta strong {
  font-weight: 600; /* Keep bold for labels */
}

/* Accordion Image */
.product-accordion__image {
  width: var(--accordion-img-size, 100%);
  margin: var(--spacing-md) 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.product-accordion__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Accordion Footer Link */
.product-accordion__link {
  margin-top: var(--spacing-sm);
}

.product-accordion__link a {
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
}

/* Description wrapper */
.product-accordion__description {
  margin-bottom: 0;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500; /* Medium weight for all text */
  color: #000; /* Pure black */
}

.product-accordion__description p {
  margin-bottom: var(--spacing-sm);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  color: #000;
}

.product-accordion__description p:last-child {
  margin-bottom: 0;
}

/* Neutralize bold tags in product descriptions (from Shopify editor) */
.product-accordion__description strong,
.product-accordion__description b {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500; /* Medium weight instead of bold */
  color: #000; /* Pure black */
}

/* Meta info display in description (SKU, Couleur, etc.) */
.product-accordion__meta {
  margin: 0 0 4px 0 !important;
  padding: 0;
  font-size: 14px;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #000; /* Pure black */
  line-height: 1.4;
  font-weight: 500; /* Medium weight */
}

.product-accordion__meta:last-of-type {
  margin-bottom: 0 !important;
}

/* Spacing between description and SKU/Couleur */
.product-accordion__description + .product-accordion__meta {
  margin-top: 32px !important;
}

.product-accordion__meta strong {
  color: var(--color-black);
  font-weight: 600;
}

/* Legacy class - keep for backwards compatibility */
.product-accordion__sku {
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-sm);
  border-top: 1px solid var(--color-gray-200);
  font-size: 12px;
  font-family: var(--font-body);
  color: var(--color-gray-500);
  letter-spacing: 0.3px;
}

/* SEO-enhanced accordion elements */
.product-accordion__notice {
  margin-top: var(--spacing-md);
  padding: var(--spacing-sm) var(--spacing-md);
  background-color: #fef9e7;
  border-left: 3px solid #f1c40f;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 14px;
  color: #7d6608;
}

.product-accordion__highlight {
  margin: var(--spacing-md) 0;
  padding: var(--spacing-sm) var(--spacing-md);
  background: linear-gradient(90deg, #f0fdf4 0%, #dcfce7 100%);
  border-radius: var(--radius-sm);
  color: #166534;
  font-weight: 600;
  text-align: center;
}

.product-accordion__shipping-option {
  margin: var(--spacing-sm) 0;
  padding: var(--spacing-sm) var(--spacing-md);
  background-color: var(--color-gray-100);
  border-radius: var(--radius-sm);
}

.product-accordion__shipping-option p {
  margin-bottom: var(--spacing-xs);
}

.product-accordion__shipping-option ul {
  margin-left: var(--spacing-sm);
  margin-bottom: 0;
}

.product-accordion__payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.product-accordion__payment-icons > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.product-accordion__payment-icons svg,
.product-accordion__payment-icons img {
  height: 24px;
  width: auto;
  opacity: 0.8;
}


/* --------------------------------------------------------------------------
   Error/Notification States
   -------------------------------------------------------------------------- */

.product-error {
  display: none;
  padding: var(--spacing-sm) var(--spacing-md);
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
  font-size: 13px;
  color: var(--color-error);
}

.product-error.is-visible {
  display: block;
}

/* --------------------------------------------------------------------------
   Responsive Adjustments
   -------------------------------------------------------------------------- */

@media (max-width: 767px) {
  .product-info {
    padding-bottom: 24px;
  }
}

/* --------------------------------------------------------------------------
   Print Styles
   -------------------------------------------------------------------------- */

@media print {
  .product-gallery__progress,
  .product-gallery__counter,
  .product-gallery__dots,
  .product-wishlist,
  .btn-add-cart,
  .delivery-selector,
  .trust-badges {
    display: none !important;
  }
}

