/* ============================================
   BOUTIQUE SECRETS MARRE - UI/UX Pro Mobile-first
   ============================================ */

:root {
  /* Couleurs - Palette Mer & Bretagne raffinée */
  --color-deep: #0c3b5c;
  --color-ocean: #16537a;
  --color-coastal: #1e6b9e;
  --color-foam: #a8d4ed;
  --color-sand: #f0e8de;
  --color-cream: #faf8f5;
  --color-white: #ffffff;
  --color-gold: #c9a227;
  --color-gold-hover: #b8921f;
  --color-text: #1a2d3d;
  --color-text-muted: #5a7589;
  --color-border: #e2eaf0;

  /* Typographie */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Espacements (système 4px) */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;

  /* Rayons */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;

  /* Ombres */
  --shadow-sm: 0 1px 3px rgba(12, 59, 92, 0.06);
  --shadow: 0 4px 12px rgba(12, 59, 92, 0.08);
  --shadow-md: 0 8px 24px rgba(12, 59, 92, 0.1);
  --shadow-lg: 0 16px 40px rgba(12, 59, 92, 0.12);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.2s;

  /* Touch target minimum (accessibilité) */
  --touch-min: 44px;

  /* Safe areas (encoche iPhone, etc.) */
  --safe-top: env(safe-area-inset-top, 0);
  --safe-bottom: env(safe-area-inset-bottom, 0);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
a, button {
  -webkit-tap-highlight-color: transparent;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-text);
  background: var(--color-cream);
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}
@media (min-width: 768px) {
  .container { padding: 0 var(--space-xl); }
}

/* ========== HEADER - Mobile first ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  padding-top: var(--safe-top);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--touch-min);
  height: 56px;
  padding: 0 var(--space-md);
}
@media (min-width: 768px) {
  .header-inner { height: 64px; padding: 0 var(--space-xl); }
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  color: var(--color-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  min-height: var(--touch-min);
  padding: var(--space-sm) 0;
  align-items: center;
}
@media (min-width: 768px) { .logo { font-size: 1.5rem; } }
.logo-icon { font-size: 1.5rem; }

.nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 56px;
  background: var(--color-white);
  padding: var(--space-xl);
  padding-top: calc(56px + var(--space-xl));
  z-index: 199;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav.active {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav a {
  display: block;
  padding: var(--space-md) 0;
  text-decoration: none;
  color: var(--color-ocean);
  font-weight: 600;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--color-border);
  min-height: var(--touch-min);
  line-height: var(--touch-min);
  transition: color var(--duration) var(--ease);
}
.nav a:last-child { border-bottom: none; }
.nav a:hover, .nav a:focus { color: var(--color-gold); }
@media (min-width: 768px) {
  .nav {
    display: flex;
    position: static;
    flex-direction: row;
    gap: var(--space-lg);
    padding: 0;
    overflow: visible;
  }
  .nav a {
    padding: 0;
    border: none;
    min-height: auto;
    line-height: 1.4;
    font-size: 0.95rem;
    font-weight: 500;
  }
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  top: 56px;
  background: rgba(12, 59, 92, 0.4);
  z-index: 198;
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}
.nav-overlay.active {
  display: block;
  opacity: 1;
}
@media (min-width: 768px) { .nav-overlay { display: none !important; } }

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--touch-min);
  height: var(--touch-min);
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--color-ocean);
  border-radius: var(--radius-sm);
}
.nav-toggle:hover { background: var(--color-cream); }
@media (min-width: 768px) { .nav-toggle { display: none; } }
.nav-toggle { position: relative; }
.nav-toggle .icon-menu,
.nav-toggle .icon-close { width: 24px; height: 24px; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none !important; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block !important; }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 50vh;
  min-height: 50dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--color-deep) 0%, var(--color-ocean) 50%, var(--color-coastal) 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='1.5' fill='%23fff' fill-opacity='0.06'/%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 1;
  color: var(--color-white);
  max-width: 560px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 6vw, 2.75rem);
  font-weight: 700;
  margin: 0 0 var(--space-md);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.hero-subtitle {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 var(--space-xl);
  opacity: 0.95;
}
@media (min-width: 480px) {
  .hero-subtitle { font-size: 1.1rem; }
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--touch-min);
  padding: var(--space-md) var(--space-xl);
  background: var(--color-gold);
  color: var(--color-white) !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius);
  transition: background var(--duration) var(--ease), transform var(--duration) var(--ease);
  border: none;
  cursor: pointer;
}
.cta-primary:hover {
  background: var(--color-gold-hover);
  transform: translateY(-1px);
}
.cta-primary:active { transform: translateY(0); }
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--touch-min);
  padding: var(--space-md) var(--space-xl);
  background: transparent;
  color: var(--color-white) !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.7);
  transition: background var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.cta-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}
.fiche-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-coastal);
  text-decoration: none;
  font-weight: 500;
}
.fiche-link:hover { color: var(--color-gold); text-decoration: underline; }

/* ========== TRUST BAR ========== */
.trust-bar {
  background: var(--color-white);
  padding: var(--space-lg) var(--space-md);
  box-shadow: var(--shadow-sm);
}
.trust-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}
@media (min-width: 480px) {
  .trust-items {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-xl);
  }
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-ocean);
}
.trust-icon { color: var(--color-gold); font-size: 1.1rem; }

/* ========== SECTIONS ========== */
section {
  padding: var(--space-2xl) 0;
}
@media (min-width: 768px) {
  section { padding: 4rem 0; }
}
section h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 var(--space-md);
  color: var(--color-deep);
}
@media (min-width: 768px) {
  section h2 { font-size: 2rem; }
}
.section-intro {
  margin: 0 0 var(--space-xl);
  color: var(--color-text-muted);
  font-size: 0.95rem;
  max-width: 560px;
}

/* ========== CATEGORY GRID ========== */
.categories { background: var(--color-white); }
.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
@media (min-width: 480px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
  }
}

.category-card {
  display: flex;
  flex-direction: column;
  background: var(--color-cream);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  border: 1px solid transparent;
}
.category-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-foam);
}
.category-card-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.category-card-content {
  padding: var(--space-lg);
  flex: 1;
}
.category-card .category-card-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 var(--space-sm);
  color: var(--color-deep);
}
.category-card .category-card-content p {
  margin: 0 0 var(--space-md);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.category-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-coastal);
  transition: color var(--duration) var(--ease);
}
.category-card:hover .category-link { color: var(--color-gold); }

/* ========== PRODUCT CARDS (accueil) ========== */
.featured-products { background: var(--color-cream); }
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}
@media (min-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }
}

.product-card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--duration) var(--ease);
  display: flex;
  flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow); }
.product-card > a:first-of-type {
  display: block;
  flex-shrink: 0;
}
.product-card-image, .product-card .gallery-main {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.product-card-body {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  padding: var(--space-xs) var(--space-sm);
  background: var(--color-gold);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  z-index: 2;
}
.product-card .product-card-body h3 {
  font-size: 1.05rem;
  margin: 0 0 var(--space-sm);
  color: var(--color-deep);
  line-height: 1.35;
}
.product-card .product-card-body p {
  margin: 0 0 var(--space-md);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  flex: 1;
  line-height: 1.5;
}
.product-card .cta-product {
  align-self: flex-start;
  margin-top: auto;
}

.cta-product {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--touch-min);
  padding: 0 var(--space-lg);
  background: var(--color-coastal);
  color: var(--color-white) !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: background var(--duration) var(--ease);
}
.cta-product:hover { background: var(--color-ocean); }

/* ========== WHY US ========== */
.why-us { background: var(--color-white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}
@media (min-width: 600px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}
.why-item {
  text-align: center;
  padding: 0 var(--space-md);
}
.why-item strong {
  display: block;
  margin-bottom: var(--space-sm);
  color: var(--color-deep);
  font-size: 1.05rem;
}
.why-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ========== CTA SECTION ========== */
.cta-section {
  background: linear-gradient(145deg, var(--color-deep), var(--color-ocean));
  color: var(--color-white);
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
}
.cta-section h2 { color: inherit; }
.cta-section p { margin: 0 0 var(--space-lg); opacity: 0.92; font-size: 0.95rem; }
.cta-section .cta-primary { background: var(--color-gold); }

/* ========== PAGE HEADER ========== */
.page-header {
  background: linear-gradient(145deg, var(--color-deep), var(--color-ocean));
  color: var(--color-white);
  padding: var(--space-xl) var(--space-md);
}
@media (min-width: 768px) {
  .page-header { padding: var(--space-2xl); }
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 0 0 var(--space-sm);
}
@media (min-width: 768px) {
  .page-header h1 { font-size: 2rem; }
}
.page-header p { margin: 0; opacity: 0.92; font-size: 0.95rem; }
.breadcrumb {
  font-size: 0.85rem;
  margin-bottom: var(--space-sm);
}
.breadcrumb a {
  color: var(--color-foam);
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { opacity: 0.8; }

/* ========== PRODUCT LIST - Cards mobile ========== */
.product-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}
@media (min-width: 768px) {
  .product-list {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

.product-item {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--duration) var(--ease);
}
@media (min-width: 768px) {
  .product-item {
    flex-direction: row;
    align-items: stretch;
    padding: var(--space-lg);
    gap: var(--space-xl);
  }
}
.product-item:hover { box-shadow: var(--shadow); }

/* Image/Gallery colonne - pleine largeur mobile */
.product-item > a:first-of-type,
.product-item > .product-gallery {
  flex-shrink: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .product-item > a:first-of-type { width: 200px; }
  .product-item .product-gallery { width: 200px !important; }
}

.product-item-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  .product-item-image { width: 200px; height: 200px; }
}

.product-item-content {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .product-item-content { padding: 0; justify-content: center; }
}

.product-item h3 {
  font-size: 1.1rem;
  margin: 0 0 var(--space-sm);
  color: var(--color-deep);
  line-height: 1.35;
}
.product-item p {
  margin: 0 0 var(--space-md);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  flex: 1;
}
.product-item .cta-product {
  align-self: flex-start;
  margin-top: auto;
}

/* Placeholder */
.product-image-placeholder {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--color-cream);
  border: 2px dashed var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.85rem;
  text-align: center;
  padding: var(--space-md);
}
.product-image-placeholder svg {
  width: 40px;
  height: 40px;
  margin-bottom: var(--space-sm);
  opacity: 0.5;
}
.product-item .product-image-placeholder { border-radius: 0; }
@media (min-width: 768px) {
  .product-item .product-image-placeholder { width: 200px; height: 200px; border-radius: var(--radius-sm); }
}
.product-card .product-image-placeholder { min-height: 180px; }

/* ========== GALERIE PRODUIT ========== */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  width: 100%;
}
@media (min-width: 768px) {
  .product-item .product-gallery { width: 200px; }
}
.product-card .product-gallery { width: 100%; }

.gallery-main {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--color-cream);
}
.product-item .gallery-main { border-radius: 0; }
@media (min-width: 768px) {
  .product-item .gallery-main { border-radius: var(--radius-sm); }
}
.product-card .gallery-main { border-radius: var(--radius) var(--radius) 0 0; }

.gallery-main-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-thumbs {
  display: flex;
  gap: var(--space-xs);
  overflow-x: auto;
  padding: var(--space-sm);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery-thumbs::-webkit-scrollbar { display: none; }
.gallery-thumb {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--color-cream);
  cursor: pointer;
  transition: border-color var(--duration) var(--ease);
}
.gallery-thumb.active { border-color: var(--color-gold); }
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-zoom {
  position: absolute;
  bottom: var(--space-sm);
  right: var(--space-sm);
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  border: none;
  border-radius: var(--radius-sm);
  background: rgba(0,0,0,0.5);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}
.gallery-main:hover .gallery-zoom,
.gallery-zoom:focus { opacity: 1; }
.gallery-zoom svg { width: 18px; height: 18px; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(12, 59, 92, 0.96);
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  cursor: pointer;
  padding-bottom: calc(var(--space-md) + var(--safe-bottom));
}
.lightbox.active { display: flex; }
.lightbox-inner {
  max-width: 95vw;
  max-height: 90vh;
  position: relative;
  cursor: default;
}
.lightbox-inner img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: var(--touch-min);
  height: var(--touch-min);
  border: none;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-deep);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration) var(--ease);
}
.lightbox-close:hover { background: var(--color-foam); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: var(--touch-min);
  height: var(--touch-min);
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: var(--color-deep);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration) var(--ease);
}
.lightbox-nav:hover { background: var(--color-white); }
.lightbox-prev { left: -56px; }
.lightbox-next { right: -56px; }
@media (max-width: 480px) {
  .lightbox-prev { left: 4px; }
  .lightbox-next { right: 4px; }
}

/* ========== FOOTER ========== */
.footer {
  background: var(--color-deep);
  color: var(--color-foam);
  padding: var(--space-2xl) var(--space-md);
  padding-bottom: calc(var(--space-2xl) + var(--safe-bottom));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}
@media (min-width: 600px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
.footer a {
  color: var(--color-foam);
  text-decoration: none;
  padding: var(--space-xs) 0;
  display: inline-block;
  min-height: 1.5em;
}
.footer a:hover { text-decoration: underline; }
.footer-brand .logo-icon { font-size: 1.5rem; }
.footer-brand p { margin: var(--space-sm) 0 0; font-size: 0.9rem; opacity: 0.9; }
.footer-links, .footer-legal { display: flex; flex-direction: column; gap: var(--space-xs); }
.footer-disclosure {
  font-size: 0.8rem;
  opacity: 0.8;
  max-width: 720px;
  margin-bottom: var(--space-md);
  line-height: 1.5;
}
.footer-copy { font-size: 0.85rem; opacity: 0.7; margin: 0; }

/* ========== CONTENT PAGES ========== */
.content-page {
  max-width: 680px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md);
}
.content-page h1 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: var(--space-lg);
}
.content-page h2 { font-size: 1.2rem; margin-top: var(--space-xl); }
.content-page p { margin: 0 0 var(--space-md); }

/* ========== FIX PRODUCT ITEM STRUCTURE ========== */
/* Quand product-item a structure: a ou .product-gallery, puis div, puis a.cta */
.product-item > div:not(.product-gallery) {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .product-item > div:not(.product-gallery) { padding: 0 var(--space-lg) 0 0; }
}
.product-item .product-badge {
  position: static;
  display: inline-block;
  margin-bottom: var(--space-sm);
  width: fit-content;
}
