/* ── Masquer la barre « Offres du jour » ── */
.fixed.inset-x-0.bottom-0.z-\[15\] {
  display: none !important;
}

/* ── Bandeau promo accueil : masqué hors page d'accueil ── */
html.sdj-inner-page main > div.bg-sdj-rust.flex.flex-col.items-center,
html.sdj-inner-page .sdj-home-promo-banner,
html:not(.sdj-home) main > div.bg-sdj-rust:first-child {
  display: none !important;
}

html.sdj-inner-page main > div.bg-sdj-rust.flex.flex-col.items-center,
html.sdj-inner-page section[aria-labelledby='carousel-title'],
html.sdj-inner-page section[aria-label='Produits en vedette'],
html.sdj-inner-page section[aria-label='Nos collections'],
html.sdj-inner-page .sdj-sunset-block {
  display: none !important;
}

/* ── Bandeau promo défilant ── */
.sdj-marquee-section {
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
}

.sdj-marquee-track {
  display: flex !important;
  width: max-content !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  height: 100%;
  will-change: transform;
}

.sdj-marquee-segment {
  display: inline-flex !important;
  align-items: center;
  flex-shrink: 0;
  gap: 28px;
  padding-right: 28px;
}

.sdj-marquee-accent {
  font-family: var(--font-serif-italic, Georgia, 'Times New Roman', serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1;
  white-space: nowrap;
  color: var(--sdj-accent, #e8c547);
}

.sdj-marquee-label {
  font-family: var(--font-heading, 'Knockout', sans-serif);
  font-size: 20px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fff;
}

@media (min-width: 990px) {
  .sdj-marquee-segment {
    gap: 45px;
    padding-right: 45px;
  }

  .sdj-marquee-accent,
  .sdj-marquee-label {
    font-size: 28px;
  }
}

.sdj-marquee-track.sdj-marquee-animate {
  animation: sdj-marquee 22s linear infinite !important;
  will-change: transform;
}

@keyframes sdj-marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sdj-marquee-track.sdj-marquee-animate {
    animation: none !important;
  }
}

/* ── Grilles collections : prix au-dessus du bouton ── */
article[class*='group/card'].sdj-grid-card,
article[class*='group/card'] {
  display: flex !important;
  flex-direction: column !important;
  height: 100%;
}

main .flex.flex-wrap:has(article[class*='group/card']),
main [class*='flex-wrap']:has(article[class*='group/card']) {
  align-items: stretch;
}

article[class*='group/card'] > h3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.9em;
}

article[class*='group/card'] .sdj-grid-variants-spacer {
  min-height: 36px;
  flex-shrink: 0;
}

article[class*='group/card'] .sdj-grid-price {
  margin-top: 6px;
  margin-bottom: 8px;
  font-family: inherit;
  font-size: 14px;
  line-height: 19.6px;
  color: var(--sdj-text, #1a1a1a);
  flex-shrink: 0;
}

article[class*='group/card'] button[class*='bg-sdj-rust'] {
  margin-top: auto !important;
  width: 100%;
}

article[class*='group/card'] button[class*='bg-sdj-rust'] span[class*='border-r'] {
  display: none !important;
}

article[class*='group/card'] button:has(span:only-child) {
  gap: 0;
}

/* ── Carrousels : glisser à la souris (PC) ── */
.sdj-drag-scroll {
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
}

@media (hover: hover) and (pointer: fine) {
  .sdj-drag-scroll {
    touch-action: pan-y;
  }
}

.sdj-native-scroll-x {
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  scroll-behavior: smooth;
}

.sdj-drag-scroll.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none !important;
  scroll-behavior: auto !important;
}

.sdj-drag-scroll.is-dragging a,
.sdj-drag-scroll.is-dragging button {
  pointer-events: none;
}

/* ── Rails produits PDP / accueil : défilement fluide, sans drag custom ── */
[id^='product-rail-'] {
  scroll-snap-type: x proximity !important;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

[id^='product-rail-'] a[href] {
  pointer-events: auto;
  touch-action: manipulation;
}

/* ── Page produit : buy box épuré ── */
html.sdj-pdp-pending .sdj-pdp-price-block {
  visibility: hidden;
}

html.sdj-pdp-ready .sdj-pdp-price-block {
  visibility: visible;
}

.sdj-pdp-hidden,
[role='radiogroup'][aria-label*='achat'],
[role='radiogroup'][aria-label*="Options d"] {
  display: none !important;
}

.sdj-pdp-price-block {
  margin-top: 24px;
  margin-bottom: 18px;
  width: 100%;
  max-width: 505px;
}

.sdj-pdp-promo-chip {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 6px;
  background: linear-gradient(135deg, #fcf8ed 0%, #fff5d6 100%);
  border: 1px solid #e8dcc4;
  font-family: inherit;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b8471a;
}

.sdj-pdp-price {
  margin: 0;
  font-family: var(--font-heading, 'Knockout', sans-serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #004851;
}

.sdj-pdp-price-note {
  margin: 8px 0 0;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #b8471a;
}

.sdj-pdp-buy-row {
  margin-top: 0 !important;
  gap: 12px !important;
}

.sdj-pdp-buy-row button[class*='bg-sdj-rust'] {
  font-size: 13px !important;
  letter-spacing: 0.14em !important;
  font-weight: 700 !important;
}

/* Produits à composer — sélecteurs Option 1 / Option 2 */
.sdj-bundle-pickers {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 505px;
  margin: 0 0 18px;
}

.sdj-bundle-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sdj-bundle-label {
  font-family: inherit;
  font-size: 13px;
  line-height: 1.3;
  color: #6b6b6b;
}

.sdj-bundle-dropdown {
  position: relative;
}

.sdj-bundle-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 56px;
  padding: 8px 14px;
  border: 1px solid #d8d2c8;
  border-radius: 2px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: #333;
}

.sdj-bundle-trigger:hover {
  border-color: #b8471a;
}

.sdj-bundle-thumb {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.sdj-bundle-value,
.sdj-bundle-option-label {
  flex: 1;
  font-size: 14px;
  line-height: 1.35;
  color: #333;
}

.sdj-bundle-chevron {
  width: 10px;
  height: 10px;
  border-right: 1.5px solid #666;
  border-bottom: 1.5px solid #666;
  transform: rotate(45deg);
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.15s ease;
}

.sdj-bundle-dropdown.is-open .sdj-bundle-chevron {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.sdj-bundle-menu {
  position: absolute;
  z-index: 40;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  max-height: 280px;
  overflow-y: auto;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background: #fff;
  border: 1px solid #d8d2c8;
  border-radius: 2px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.sdj-bundle-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 8px 14px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
}

.sdj-bundle-option:hover,
.sdj-bundle-option[aria-selected='true'] {
  background: #faf6ef;
}

.sdj-pdp-perks {
  list-style: none;
  margin: 20px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid #ebe4d8;
  width: 100%;
  max-width: 505px;
}

.sdj-pdp-perk {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #004851;
  line-height: 1.35;
}

.sdj-pdp-perk + .sdj-pdp-perk {
  border-top: 1px solid #f3ede4;
}

.sdj-pdp-perk-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #faf9f7;
  border: 1px solid #ebe4d8;
  color: #b8471a;
}

.sdj-pdp-perk strong {
  color: #b8471a;
  font-weight: 800;
}

@media (max-width: 989px) {
  .sdj-pdp-price {
    font-size: 30px;
  }

  .sdj-pdp-perk {
    font-size: 11px;
  }
}

/* ── Bannières hero paysage (carrousel accueil) ── */
section[aria-label="Collections en vedette"] {
  aspect-ratio: 2007 / 783 !important;
  max-height: min(72vh, 620px);
  min-height: 200px;
  background: #1a1a1a;
  overflow: hidden;
}

@media (max-width: 989px) {
  section[aria-label="Collections en vedette"] {
    aspect-ratio: 2007 / 783 !important;
    max-height: min(52vw, 420px);
    min-height: 160px;
    height: auto;
    background: #1a1a1a;
  }
}

section[aria-label="Collections en vedette"] img {
  object-fit: cover !important;
  object-position: center center !important;
  width: 100%;
  height: 100%;
}

@media (max-width: 989px) {
  section[aria-label="Collections en vedette"] [aria-roledescription="slide"],
  section[aria-label="Collections en vedette"] picture {
    display: block;
    width: 100%;
    height: 100%;
  }

  section[aria-label="Collections en vedette"] img {
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
    max-height: none;
  }
}

section[aria-label="Collections en vedette"] picture,
section[aria-label="Collections en vedette"] picture source {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── Barre de recherche header ── */
header form[role="search"].sdj-search-trigger {
  width: min(100%, 380px) !important;
  max-width: 380px;
  flex: 1 1 380px !important;
  cursor: pointer;
}

header form[role="search"].sdj-search-trigger input[type="search"] {
  cursor: pointer;
  caret-color: transparent;
}

header form[role="search"].sdj-search-trigger button[type="submit"] {
  cursor: pointer;
}

@media (min-width: 1200px) {
  header form[role="search"].sdj-search-trigger {
    width: min(100%, 440px) !important;
    max-width: 440px;
    flex: 1 1 440px !important;
  }
}

body.sdj-search-open {
  overflow: hidden;
}

/* ── Overlay recherche ── */
.sdj-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.sdj-search-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sdj-search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 14, 0.55);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.sdj-search-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 100dvh;
  overflow: auto;
  background: #fff;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
  padding: 18px 16px 20px;
  transform: translateY(-12px);
  transition: transform 0.24s ease;
}

.sdj-search-overlay.is-open .sdj-search-panel {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .sdj-search-overlay {
    padding: 48px 24px 24px;
  }

  .sdj-search-panel {
    max-width: 640px;
    border-radius: 16px;
    padding: 22px 24px 18px;
    max-height: min(82vh, 720px);
  }
}

.sdj-search-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.sdj-search-brand {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b8471a;
}

.sdj-search-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 999px;
  background: #f5f0e8;
  color: #1a1a1a;
  cursor: pointer;
  transition: background 0.15s ease;
}

.sdj-search-close:hover {
  background: #ebe3d7;
}

.sdj-search-field-wrap {
  position: relative;
  margin-bottom: 10px;
}

.sdj-search-field-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #b8471a;
  pointer-events: none;
}

.sdj-search-field {
  width: 100%;
  height: 50px;
  border: 1.5px solid #e8e0d4;
  border-radius: 999px;
  background: #fbf7f1;
  padding: 0 44px 0 46px;
  font-size: 16px;
  color: #1a1a1a;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.sdj-search-field:focus {
  border-color: #b8471a;
  box-shadow: 0 0 0 3px rgba(184, 71, 26, 0.12);
  background: #fff;
}

.sdj-search-field::placeholder {
  color: rgba(26, 26, 26, 0.45);
}

.sdj-search-clear {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #666;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.sdj-search-clear:hover {
  background: rgba(0, 0, 0, 0.06);
}

.sdj-search-meta {
  margin: 0 0 8px;
  padding: 0 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.45);
}

.sdj-search-results {
  max-height: min(52vh, 420px);
  overflow-y: auto;
  display: grid;
  gap: 6px;
  padding-right: 2px;
  -webkit-overflow-scrolling: touch;
}

.sdj-search-result {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.sdj-search-result:hover,
.sdj-search-result.is-active,
.sdj-search-result:focus-visible {
  background: #fbf7f1;
  border-color: #efe6d8;
}

.sdj-search-result-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 10px;
  background: #f5f0e8;
  overflow: hidden;
}

.sdj-search-result-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sdj-search-result-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.sdj-search-result-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  color: #1a1a1a;
}

.sdj-search-result-price {
  font-size: 13px;
  font-weight: 700;
  color: #b8471a;
}

.sdj-search-result-arrow {
  font-size: 16px;
  color: rgba(26, 26, 26, 0.25);
  padding-right: 4px;
}

.sdj-search-result:hover .sdj-search-result-arrow,
.sdj-search-result.is-active .sdj-search-result-arrow {
  color: #b8471a;
}

.sdj-search-empty {
  padding: 28px 12px;
  text-align: center;
  color: rgba(26, 26, 26, 0.65);
  font-size: 14px;
  line-height: 1.5;
}

.sdj-search-empty p {
  margin: 0 0 6px;
}

.sdj-search-empty-hint {
  font-size: 12px;
  color: rgba(26, 26, 26, 0.45);
}

.sdj-search-foot {
  margin: 12px 0 0;
  padding: 0 6px;
  font-size: 11px;
  color: rgba(26, 26, 26, 0.4);
  text-align: center;
}

.sdj-search-foot kbd {
  display: inline-block;
  padding: 1px 5px;
  border-radius: 4px;
  border: 1px solid #ddd;
  background: #f7f7f7;
  font-size: 10px;
  font-family: inherit;
}

/* ── Mega menu desktop (panneau custom) ── */
body > header,
header.sticky {
  position: sticky !important;
  top: 0 !important;
  z-index: 100 !important;
  background: #fff;
}

.sdj-mega-native-hidden,
header [class*='inset-x-0'][class*='top-full']:not(#sdj-mega-custom) {
  display: none !important;
  pointer-events: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

.sdj-mega-custom {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 120;
  background: #fff;
  border-top: 1px solid #e8e4dc;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.sdj-mega-custom::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.sdj-mega-custom.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.sdj-mega-custom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 40px 32px;
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

.sdj-mega-custom .sdj-mega-links {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  min-width: 240px;
  max-width: 280px;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}

.sdj-mega-custom .sdj-mega-links a {
  display: block;
  font-size: 15px !important;
  line-height: 1.55 !important;
  padding: 6px 0 !important;
  font-weight: 400;
  color: #1a1a1a;
  text-decoration: none;
}

.sdj-mega-custom .sdj-mega-links a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sdj-mega-featured-wrap {
  flex: 1;
  min-width: 0;
}

.sdj-mega-custom .sdj-mega-featured {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.sdj-mega-custom .sdj-mega-featured a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: #1a1a1a;
  gap: 12px;
}

.sdj-mega-custom .sdj-mega-featured a:hover .sdj-mega-featured-title {
  text-decoration: underline;
}

.sdj-mega-custom .sdj-mega-featured-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: #fbf7f1;
  border-radius: 4px;
}

.sdj-mega-custom .sdj-mega-featured-title {
  font-size: 13px;
  line-height: 1.35;
  max-width: 170px;
}

.sdj-mega-custom .sdj-mega-cta {
  display: flex;
  justify-content: center;
  padding: 24px 0 4px;
  margin-top: 8px;
  border-top: 1px solid #e8e4dc;
}

.sdj-mega-custom .sdj-mega-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 48px;
  padding: 0 32px;
  border-radius: 999px;
  background: #f5b820;
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.sdj-mega-custom .sdj-mega-cta a:hover {
  opacity: 0.92;
}

/* Legacy mega panel rules (mobile / fallback) */
header .sdj-mega-panel > .mx-auto {
  display: flex !important;
  align-items: flex-start;
  gap: 48px;
  padding-top: 28px !important;
  padding-bottom: 36px !important;
}

header .sdj-mega-panel .sdj-mega-links {
  display: flex !important;
  flex-direction: column !important;
  grid-template-columns: unset !important;
  gap: 2px !important;
  min-width: 220px;
  max-width: 260px;
  flex-shrink: 0;
}

header .sdj-mega-panel .sdj-mega-links a {
  font-size: 15px !important;
  line-height: 1.6 !important;
  padding: 7px 0 !important;
  font-weight: 400;
}

header .sdj-mega-panel .sdj-mega-links a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

header .sdj-mega-featured {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}

header .sdj-mega-featured a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: #1a1a1a;
  gap: 10px;
}

header .sdj-mega-featured a:hover .sdj-mega-featured-title {
  text-decoration: underline;
}

header .sdj-mega-featured-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: #fbf7f1;
  border-radius: 4px;
}

header .sdj-mega-featured-title {
  font-size: 13px;
  line-height: 1.35;
  max-width: 160px;
}

header .sdj-mega-cta {
  display: flex;
  justify-content: center;
  padding: 20px 0 8px;
  border-top: 1px solid #e8e4dc;
  margin-top: 8px;
  grid-column: 1 / -1;
}

header .sdj-mega-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 48px;
  padding: 0 32px;
  border-radius: 999px;
  background: #f5b820;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

header .sdj-mega-cta a:hover {
  opacity: 0.9;
}

/* ── Typographie & hiérarchie visuelle ── */
.font-heading {
  letter-spacing: 0.06em;
}

main h2.font-heading {
  font-weight: 500;
  letter-spacing: 0.08em;
}

.bg-sdj-rust .font-serif-italic {
  font-weight: 600;
}

.bg-sdj-rust .font-heading.uppercase {
  font-weight: 700;
  letter-spacing: 0.1em;
}

.sdj-heading-soft,
.sdj-heading-soft.font-heading {
  font-weight: 300 !important;
  letter-spacing: 0.04em !important;
}

html.sdj-home #carousel-title {
  font-weight: 300 !important;
  letter-spacing: 0.05em !important;
}

.sdj-promo-highlight {
  font-weight: 900 !important;
  color: #f5b820;
  letter-spacing: 0.02em;
}

header nav a.text-sdj-rust,
header nav a.text-\[\#004851\] {
  font-weight: 700 !important;
  letter-spacing: 0.02em;
}

header nav a:not(.text-sdj-rust):not(.text-\[\#004851\]):hover {
  font-weight: 600;
}

a.rounded-\[40px\].bg-white,
a.bg-sdj-rust,
button.bg-sdj-rust,
a.bg-sdj-accent {
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
}

a.rounded-\[40px\].bg-white,
a.bg-sdj-rust,
button.bg-sdj-rust,
a.bg-sdj-accent,
button[type='button']:not(:disabled),
button[type='submit']:not(:disabled),
.sdj-pdp-buy-row button {
  cursor: pointer !important;
}

span.bg-sdj-accent.uppercase,
span.ml-\[5px\].bg-sdj-accent {
  font-weight: 800 !important;
  letter-spacing: 0.06em;
}

section[aria-label="Nos avantages"] li {
  line-height: 1.45;
}

section[aria-label="Nos avantages"] strong,
section[aria-label="Nos avantages"] b {
  font-weight: 700;
}

/* Barre d'annonce haut de page */
.bg-sdj-rust .grid a strong,
.bg-sdj-rust [role="region"] a strong,
.bg-sdj-rust [role="region"] a .sdj-ann-promo-bold {
  font-weight: 800 !important;
  letter-spacing: 0.05em;
}

.bg-sdj-rust [role="region"] a .sdj-ann-promo-bold {
  color: #fff;
}

.bg-sdj-rust .grid a strong,
.bg-sdj-rust [role="region"] a strong .sdj-promo-highlight,
.bg-sdj-rust [role="region"] a .sdj-promo-highlight {
  color: #f5b820;
}

.bg-sdj-rust .grid a,
.bg-sdj-rust [role="region"] a {
  font-size: 13px;
  letter-spacing: 0.02em;
}

/* ── Bloc coucher de soleil : carrousel + collections (fond unique) ── */
.sdj-sunset-block {
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    url('/assets/home/carousel-background.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #c8844a;
  overflow: hidden;
  min-height: 280px;
}

.sdj-sunset-block > section {
  position: relative;
  z-index: 1;
}

html.sdj-home section.sdj-sunset-carousel,
html.sdj-home section[aria-labelledby='carousel-title'],
html.sdj-home section.sdj-sunset-collections,
html.sdj-home section[aria-label='Nos collections'] {
  background: transparent !important;
  background-image: none !important;
  background-color: transparent !important;
}

html.sdj-home section[aria-labelledby='carousel-title'] {
  padding-bottom: 12px !important;
}

html.sdj-home section[aria-label='Nos collections'] {
  padding-top: 0 !important;
  padding-bottom: 28px !important;
}

@media (min-width: 990px) {
  section.sdj-sunset-collections,
  section[aria-label='Nos collections'] {
    padding-bottom: 37px !important;
  }
}

section[aria-labelledby='carousel-title'] h2#carousel-title {
  color: #fff !important;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
}

#todays-offers-track {
  padding-top: 4px;
  padding-bottom: 6px;
  align-items: stretch;
  scrollbar-width: none;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  scroll-behavior: smooth;
}

#todays-offers-track::-webkit-scrollbar {
  display: none;
}

#todays-offers-track a.group\/card {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  padding-bottom: 14px !important;
  overflow: visible;
  height: auto;
  touch-action: pan-x;
}

#todays-offers-track a.group\/card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

#todays-offers-track article {
  height: auto !important;
  max-height: none !important;
  min-height: 0 !important;
  overflow: visible !important;
  width: 100% !important;
  margin: 10px 0 0 !important;
  flex: 1 1 auto;
}

#todays-offers-track article > div:first-child {
  position: relative !important;
  aspect-ratio: 1 / 1;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 0;
  overflow: hidden;
  background: #fff;
  border-radius: 4px;
}

#todays-offers-track article img {
  object-fit: contain !important;
  object-position: center center !important;
  padding: 6px;
}

#todays-offers-track article .flex.min-h-0.flex-1 {
  min-height: 0;
  flex: 0 0 auto;
}

#todays-offers-track p.mt-auto.pt-\[10px\] {
  display: none !important;
}

/* ── Curseur pointer sur boutons / liens cliquables ── */
.sdj-clickable-ui button:not(:disabled),
.sdj-clickable-ui a[href],
.sdj-clickable-ui [role='button']:not([aria-disabled='true']),
.sdj-clickable-ui label[for],
.sdj-clickable-ui summary,
.sdj-clickable-ui .sdj-cart-checkout,
.sdj-clickable-ui .sdj-cart-upsell-add,
.sdj-clickable-ui .sdj-cart-close,
.sdj-clickable-ui .sdj-search-close {
  cursor: pointer !important;
}

/* ── Hero accueil : masquer CTA « Acheter maintenant » ── */
section[aria-label='Collections en vedette'] a[href='/pages/intense-perfume-mist'],
section[aria-label='Collections en vedette'] div:has(> a[href='/pages/intense-perfume-mist']) {
  display: none !important;
}

/* ── Produits accueil (cercles) ── */
section[aria-label='Produits en vedette'] ul {
  display: flex !important;
  align-items: flex-start;
  gap: 12px !important;
  padding: 0 14px 2px !important;
  margin: 0;
  overflow-x: auto !important;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  scrollbar-width: none;
}

section[aria-label='Produits en vedette'] ul::-webkit-scrollbar {
  display: none;
}

section[aria-label='Produits en vedette'] li {
  margin-top: 0 !important;
  flex-shrink: 0;
  scroll-snap-align: start;
}

section[aria-label='Produits en vedette'] a[href*='/products/'] {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  width: 76px !important;
  text-decoration: none;
  color: #1a1a1a;
}

section[aria-label='Produits en vedette'] a[href*='/products/'] img {
  display: block !important;
  width: 68px !important;
  height: 68px !important;
  max-width: 68px !important;
  max-height: 68px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  border-radius: 50% !important;
  object-fit: contain !important;
  object-position: center center !important;
  border: 1.5px solid #c9a87c !important;
  background: linear-gradient(165deg, #fffefb 0%, #faf3e6 55%, #f5e8d4 100%) !important;
  box-shadow:
    0 4px 14px rgba(160, 100, 40, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  box-sizing: border-box !important;
  padding: 6px !important;
  margin: 0 !important;
  inset: auto !important;
  transform: none !important;
}

section[aria-label='Produits en vedette'] a[href*='/products/'] span {
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: 100%;
  margin-top: 6px !important;
  padding-top: 0 !important;
  text-align: center;
  font-size: 9px !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
  letter-spacing: 0.01em;
  color: #1a1a1a !important;
}

@media (max-width: 989px) {
  section[aria-label='Produits en vedette'].sdj-mobile-products {
    background: #fff;
    padding: 10px 0 12px;
    border-bottom: 1px solid #f0ebe3;
  }

  section[aria-label='Produits en vedette'] a[href*='/products/'] img {
    width: 72px !important;
    height: 72px !important;
    max-width: 72px !important;
    max-height: 72px !important;
  }
}

section[aria-label='Produits en vedette'] a[href*='/products/']:hover img {
  transform: none !important;
}

section[aria-label='Produits en vedette'] a[href*='/products/']:hover {
  transform: none !important;
}

/* ── Bannières catégories dans le bloc coucher de soleil ── */
section[aria-label='Nos collections'] ul {
  background: transparent !important;
}

section[aria-label="Nos collections"] a.group {
  background: transparent !important;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

section[aria-label="Nos collections"] a.group span.absolute {
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

/* Fiches produits — titres & prix */
main a[href*="/products/"] .font-sans.text-\[14px\],
main a[href*="/products/"] .font-sans.text-\[15px\] {
  font-weight: 500;
  line-height: 1.35;
}

main a[href*="/products/"]:hover .font-sans {
  font-weight: 600;
}

/* ── Promo panier -25 % ── */
.sdj-promo-breakdown {
  margin-top: 14px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #fdf6e3 0%, #fff9ee 100%);
  border-radius: 10px;
  border: 1px solid #f5b820;
}

.sdj-promo-breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-size: 14px;
  line-height: 1.5;
  color: #1a1a1a;
}

.sdj-promo-breakdown-row + .sdj-promo-breakdown-row {
  margin-top: 6px;
}

.sdj-promo-breakdown-row.is-discount {
  color: #b8471a;
  font-weight: 700;
}

.sdj-promo-breakdown-row.is-total {
  font-weight: 700;
  font-size: 16px;
  padding-top: 10px;
  margin-top: 8px;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
}

.sdj-promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #b8471a;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sdj-price-original {
  text-decoration: line-through;
  opacity: 0.5;
  margin-right: 8px;
  font-weight: 400;
}

.sdj-price-discounted {
  font-weight: 700;
  color: #b8471a;
}

/* ── Masquer liste de souhaits ── */
a[href="/pages/wishlist"],
a[aria-label="Liste d'envies"] {
  display: none !important;
}

/* ── Expérience globale ── */
html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

header.sticky {
  transition: box-shadow 0.25s ease;
}

header.sdj-header-scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

/* Liens & navigation */
a {
  transition: color 0.2s ease, opacity 0.2s ease;
}

header nav a {
  transition: border-color 0.15s ease, font-weight 0.15s ease, color 0.15s ease;
}

footer a:hover {
  opacity: 0.75;
}

/* Cartes produits */
main a[href*="/products/"] {
  transition: transform 0.25s ease;
}

main a[href*="/products/"]:hover {
  transform: translateY(-2px);
}

main a[href*="/products/"] img {
  transition: transform 0.4s ease;
}

main a[href*="/products/"]:hover img {
  transform: scale(1.03);
}

/* Collections accueil */
section[aria-label="Nos collections"] a {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

section[aria-label="Nos collections"] a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* Bandeau avantages */
section[aria-label="Nos avantages"] li {
  transition: transform 0.2s ease;
}

section[aria-label="Nos avantages"] li:hover {
  transform: translateY(-1px);
}

/* Boutons focus accessibles */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid #f5b820;
  outline-offset: 2px;
}

/* Scrollbar discrète */
* {
  scrollbar-width: thin;
  scrollbar-color: #d4c4b0 transparent;
}

/* Bouton retour haut */
.sdj-back-top {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 90;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #b8471a;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(184, 71, 26, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background 0.2s ease;
}

.sdj-back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sdj-back-top:hover {
  background: #9a3a15;
}

/* Mini-panier plus fluide */
[role="dialog"][aria-label="Menu"] {
  animation: sdj-slide-in 0.28s ease;
}

@keyframes sdj-slide-in {
  from {
    transform: translateX(-12px);
    opacity: 0.9;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Page 404 plus élégante */
body.sdj-404-page {
  background: #fbf7f1 !important;
  color: #1a1a1a !important;
}

.sdj-404 {
  max-width: 520px;
  padding: 48px 24px;
  text-align: center;
}

.sdj-404-kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b8471a;
  margin: 0 0 12px;
}

.sdj-404-title {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0 0 16px;
  line-height: 1.1;
}

.sdj-404-text {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.75);
  margin: 0 0 32px;
}

.sdj-404-text strong {
  color: #b8471a;
  font-weight: 800;
}

.sdj-404-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.sdj-404-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.sdj-404-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.sdj-404-btn-primary {
  background: #f5b820;
  color: #1a1a1a;
}

.sdj-404-btn-secondary {
  background: transparent;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
}

/* Footer */
footer {
  border-top: 1px solid #e8e4dc;
}

/* ── Section SEO marque (bas de page accueil) ── */
.sdj-seo-section {
  background: linear-gradient(135deg, #fbf7f1 0%, #fff9f0 55%, #fdf3e3 100%);
  padding: clamp(40px, 6vw, 72px) clamp(20px, 4vw, 48px);
  border-top: 1px solid #efe6d8;
  border-bottom: 1px solid #efe6d8;
}

.sdj-seo-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

@media (min-width: 900px) {
  .sdj-seo-inner {
    grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.05fr);
    gap: clamp(40px, 5vw, 72px);
  }
}

.sdj-seo-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 48px rgba(184, 71, 26, 0.1);
}

.sdj-seo-media::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(26, 26, 26, 0.06);
  pointer-events: none;
}

.sdj-seo-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.sdj-seo-content {
  max-width: 560px;
}

.sdj-seo-kicker {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b8471a;
}

.sdj-seo-title {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #1a1a1a;
}

.sdj-seo-title strong {
  font-weight: 800;
}

.sdj-seo-subtitle {
  margin: 0 0 18px;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.35;
  font-weight: 500;
  color: #b8471a;
  letter-spacing: 0.02em;
}

.sdj-seo-lead {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(26, 26, 26, 0.88);
}

.sdj-seo-text {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(26, 26, 26, 0.72);
}

.sdj-seo-list {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.sdj-seo-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.5;
  color: #1a1a1a;
}

.sdj-seo-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0;
  color: #f5b820;
  font-size: 12px;
}

.sdj-seo-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 50px;
  padding: 0 32px;
  border-radius: 999px;
  background: #1a1a1a;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 24px rgba(184, 71, 26, 0.25);
}

.sdj-seo-cta:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(26, 26, 26, 0.2);
}

/* ── Panier défilant (drawer) ── */
.sdj-cart-native-hidden {
  display: none !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

body.sdj-custom-cart div.fixed.inset-0:has([role='dialog'][aria-label='Panier']) {
  display: none !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

body.sdj-cart-open {
  overflow: hidden;
}

.sdj-cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(26, 26, 26, 0.52);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sdj-cart-overlay.is-open,
body.sdj-cart-open .sdj-cart-overlay:not([hidden]) {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sdj-cart-overlay[hidden] {
  display: none !important;
  pointer-events: none !important;
}

.sdj-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  width: min(100%, 440px);
  height: 100%;
  background: #fdfbf7;
  box-shadow: -12px 0 48px rgba(0, 0, 0, 0.18);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.32, 0.72, 0, 1);
  display: flex;
  flex-direction: column;
}

.sdj-cart-drawer.is-open {
  transform: translateX(0);
}

.sdj-cart-drawer-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.sdj-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 22px 18px;
  border-bottom: 1px solid #ebe4d8;
  background: #fff;
}

.sdj-cart-header h2 {
  margin: 0;
  font-family: var(--font-heading, 'Knockout', sans-serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b8471a;
}

.sdj-cart-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #ebe4d8;
  background: #fff;
  border-radius: 50%;
  color: #1a1a1a;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.sdj-cart-close:hover {
  background: #fcf8ed;
  border-color: #d4c9b8;
  color: #b8471a;
}

.sdj-cart-promos {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #fff9f3 0%, #fdfbf7 100%);
  border-bottom: 1px solid #f0e0d0;
  flex-shrink: 0;
}

.sdj-cart-promo-row {
  padding: 14px 16px 12px;
  border-bottom: 1px solid #f0e0d0;
}

.sdj-cart-promo-row:last-child {
  border-bottom: none;
}

.sdj-cart-promo-head {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: start;
  gap: 12px;
  margin-bottom: 10px;
}

.sdj-cart-promo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: #b8471a;
  flex-shrink: 0;
  margin-top: 1px;
}

.sdj-cart-promo-copy {
  min-width: 0;
}

.sdj-cart-promo-title {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #004851;
  line-height: 1.35;
}

.sdj-cart-promo-sub {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  font-weight: 500;
  color: #7a756c;
  line-height: 1.35;
}

.sdj-cart-promo-counter {
  font-size: 11px;
  font-weight: 700;
  color: #b8471a;
  white-space: nowrap;
  letter-spacing: 0.02em;
  line-height: 1.35;
  text-align: right;
}

.sdj-cart-promo-row--discount.is-active .sdj-cart-promo-counter {
  color: #b8471a;
}

.sdj-cart-promo-row--shipping.is-unlocked .sdj-cart-promo-sub {
  color: #04817a;
}

.sdj-cart-progress {
  height: 3px;
  background: #ebe4d8;
  border-radius: 2px;
  overflow: hidden;
}

.sdj-cart-progress-fill {
  height: 100%;
  background: #b8471a;
  border-radius: 2px;
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.sdj-cart-promo-row--shipping:not(.is-unlocked) .sdj-cart-progress-fill {
  background: #d4a574;
}

.sdj-cart-promo-row--discount:not(.is-active) .sdj-cart-progress-fill {
  background: #e8d5c4;
}

.sdj-cart-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #d4c9b8 transparent;
}

.sdj-cart-body::-webkit-scrollbar {
  width: 4px;
}

.sdj-cart-body::-webkit-scrollbar-thumb {
  background: #d4c9b8;
  border-radius: 4px;
}

.sdj-cart-items {
  padding: 8px 18px 4px;
}

.sdj-cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  color: #666;
}

.sdj-cart-empty-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #fcf8ed;
  color: #b8471a;
}

.sdj-cart-empty p {
  margin: 0 0 18px;
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
}

.sdj-cart-empty-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  background: #b8471a;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.sdj-cart-empty-cta:hover {
  background: #9a3a15;
  transform: translateY(-1px);
}

.sdj-cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid #ebe4d8;
}

.sdj-cart-item:last-child {
  border-bottom: none;
}

.sdj-cart-item-img {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ebe4d8;
}

.sdj-cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sdj-cart-item-title {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #b8471a;
  text-decoration: none;
  line-height: 1.4;
  margin-bottom: 6px;
}

.sdj-cart-item-title:hover {
  color: #9a3a15;
}

.sdj-cart-item-variant {
  margin: -2px 0 6px;
  font-size: 12px;
  font-weight: 500;
  color: #5a6a6d;
}

.sdj-cart-item-price {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 800;
  color: #b8471a;
}

.sdj-cart-qty {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #d4c9b8;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.sdj-cart-qty button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: none;
  background: #fff;
  color: #b8471a;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

.sdj-cart-qty button:hover {
  background: #fcf8ed;
}

.sdj-cart-qty span {
  min-width: 30px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
}

.sdj-cart-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  color: #aaa;
  cursor: pointer;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}

.sdj-cart-remove:hover {
  color: #b8471a;
  background: #fcf8ed;
}

.sdj-cart-upsell {
  padding: 12px 0 18px;
  background: transparent;
}

.sdj-cart-upsell h3 {
  margin: 0 0 10px;
  padding: 0 18px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1a1a1a;
}

.sdj-cart-upsell-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 18px 4px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.sdj-cart-upsell-track::-webkit-scrollbar {
  display: none;
}

.sdj-cart-upsell-item {
  flex: 0 0 132px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 8px;
  border: 1px solid #ebe4d8;
  border-radius: 12px;
  background: #fff;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.sdj-cart-upsell-item:hover {
  border-color: #d4c9b8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.sdj-cart-upsell-item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.sdj-cart-upsell-title {
  margin: 0;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  color: #004851;
  line-height: 1.3;
  letter-spacing: 0.03em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}

.sdj-cart-upsell-price {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  color: #b8471a;
}

.sdj-cart-upsell-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-top: 2px;
  border: none;
  border-radius: 50%;
  background: #b8471a;
  color: #fff;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}

.sdj-cart-upsell-add:hover {
  background: #9a3a15;
  transform: scale(1.06);
}

.sdj-cart-footer {
  padding: 16px 22px 24px;
  border-top: 1px solid #ebe4d8;
  background: #fff;
  flex-shrink: 0;
}

.sdj-cart-totals {
  margin-bottom: 10px;
}

.sdj-cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  padding: 4px 0;
  color: #555;
}

.sdj-cart-total-row.is-discount {
  color: #b8471a;
  font-weight: 600;
}

.sdj-cart-total-row.is-final {
  font-size: 18px;
  font-weight: 800;
  padding-top: 12px;
  margin-top: 6px;
  border-top: 1px solid #ebe4d8;
  color: #004851;
}

.sdj-cart-ship-note {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 500;
  color: #b8471a;
  text-align: center;
  letter-spacing: 0.02em;
}

.sdj-cart-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 16px 20px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(180deg, #c44e1f 0%, #b8471a 100%);
  color: #fff;
  font-family: inherit;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(184, 71, 26, 0.28);
}

.sdj-cart-checkout:hover {
  background: linear-gradient(180deg, #b8471a 0%, #9a3a15 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184, 71, 26, 0.38);
}

/* ── Menu mobile (drawer style officiel) ── */
.sdj-native-mobile-menu-hidden,
[role='dialog'][aria-modal='true'][aria-label='Menu'] {
  display: none !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

body.sdj-mobile-menu-open {
  overflow: hidden;
}

.sdj-mmenu-overlay {
  position: fixed;
  inset: 0;
  z-index: 9996;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.sdj-mmenu-overlay[hidden] {
  display: none !important;
}

.sdj-mmenu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.sdj-mmenu {
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
}

.sdj-mmenu.is-open {
  pointer-events: auto;
}

.sdj-mmenu-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: #fff;
  box-shadow: 8px 0 40px rgba(0, 0, 0, 0.12);
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(0.32, 0.72, 0, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.sdj-mmenu.is-open .sdj-mmenu-panel {
  transform: translateX(0);
}

.sdj-mmenu-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 46px;
  padding: 0 12px;
  flex-shrink: 0;
}

.sdj-mmenu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #1a1a1a;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.sdj-mmenu-close:hover {
  background: #fcf8ed;
  color: #b8471a;
}

.sdj-mmenu-scroll {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-bottom: 24px;
}

.sdj-mmenu-obsessions {
  padding: 4px 20px 12px;
}

.sdj-mmenu-obsessions h3 {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.01em;
}

.sdj-mmenu-obsessions-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.sdj-mmenu-obsession {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #1a1a1a;
}

.sdj-mmenu-obsession-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1;
  border: 2px solid #d4a82a;
  border-radius: 2px;
  background: #fff;
  overflow: hidden;
  margin-bottom: 8px;
}

.sdj-mmenu-obsession-img img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.sdj-mmenu-obsession-title {
  font-size: 10px;
  line-height: 1.35;
  text-align: center;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sdj-mmenu-highlights {
  padding: 0 20px;
}

.sdj-mmenu-highlight {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 0;
  text-decoration: none;
  font-size: 15px;
  line-height: 27px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-bottom: 1px solid #e8e0d4;
}

.sdj-mmenu-highlight.is-rust,
.sdj-mmenu-highlight.is-rust .sdj-mmenu-highlight-label {
  color: #b8471a;
}

.sdj-mmenu-highlight.is-teal,
.sdj-mmenu-highlight.is-teal .sdj-mmenu-highlight-label {
  color: #004851;
}

.sdj-mmenu-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 6px;
  border-radius: 2px;
  background: #b8471a;
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  vertical-align: middle;
  flex-shrink: 0;
}

.sdj-mmenu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sdj-mmenu-item {
  border-bottom: 1px solid #e8e0d4;
}

.sdj-mmenu-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
}

.sdj-mmenu-row-link {
  flex: 1;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 14px 20px;
  font-size: 15px;
  line-height: 27px;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
}

.sdj-mmenu-row-link:hover {
  color: #b8471a;
}

.sdj-mmenu-row-label {
  flex: 1;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 14px 20px;
  font-size: 15px;
  line-height: 27px;
  font-weight: 500;
  color: #1a1a1a;
}

.sdj-mmenu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border: none;
  background: none;
  color: #1a1a1a;
  cursor: pointer;
}

.sdj-mmenu-toggle-icon {
  display: inline-flex;
  color: #1a1a1a;
}

.sdj-mmenu-item.is-open .sdj-mmenu-toggle-icon {
  color: #b8471a;
}

.sdj-mmenu-link.is-direct {
  display: block;
  padding: 14px 20px;
  font-size: 15px;
  line-height: 27px;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
}

.sdj-mmenu-submenu {
  list-style: none;
  margin: 0;
  padding: 0 0 10px;
}

.sdj-mmenu-submenu a {
  display: block;
  padding: 8px 20px 8px 35px;
  font-size: 15px;
  line-height: 27px;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
}

.sdj-mmenu-submenu a:hover {
  color: #b8471a;
}

.sdj-mmenu-submenu[hidden] {
  display: none !important;
}

.sdj-mmenu-item.is-open .sdj-mmenu-submenu {
  display: block;
}

.sdj-mmenu-banner {
  margin: 16px 20px 0;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  max-height: 220px;
}

.sdj-mmenu-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.sdj-mmenu-social {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 20px 8px;
}

.sdj-mmenu-social a {
  display: inline-flex;
  color: #1a1a1a;
  transition: color 0.15s, transform 0.15s;
}

.sdj-mmenu-social a:hover {
  color: #b8471a;
  transform: translateY(-1px);
}

@media (min-width: 990px) {
  .sdj-mmenu,
  .sdj-mmenu-overlay {
    display: none !important;
  }
}

/* ── Quiz Trouvez votre parfum ── */
.sdj-fragrance-quiz {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 20px 72px;
}

.sdj-quiz-hero {
  text-align: center;
}

.sdj-quiz-kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b8471a;
}

.sdj-quiz-title {
  margin: 0 0 16px;
  font-family: var(--font-heading, 'Knockout', sans-serif);
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a1a1a;
  line-height: 1.1;
}

.sdj-quiz-lead {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.65;
  color: #444;
}

.sdj-quiz-perks {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  gap: 8px;
  text-align: left;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.sdj-quiz-perks li {
  font-size: 14px;
  color: #004851;
}

.sdj-quiz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  height: 52px;
  padding: 0 36px;
  border: none;
  border-radius: 999px;
  background: #b8471a;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 8px 24px rgba(184, 71, 26, 0.3);
}

.sdj-quiz-btn:hover {
  background: #9a3a15;
  transform: translateY(-2px);
}

.sdj-quiz-step {
  animation: sdj-quiz-fade 0.35s ease;
}

@keyframes sdj-quiz-fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sdj-quiz-progress {
  height: 6px;
  background: #e8e0f0;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 20px;
}

.sdj-quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #b8471a, #f5b820);
  border-radius: 999px;
  transition: width 0.4s ease;
}

.sdj-quiz-step-count {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #04817a;
}

.sdj-quiz-question {
  margin: 0 0 24px;
  font-family: var(--font-heading, 'Knockout', sans-serif);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 400;
  line-height: 1.2;
  color: #1a1a1a;
}

.sdj-quiz-options {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.sdj-quiz-option {
  display: block;
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  background: #fff;
  text-align: left;
  font-size: 15px;
  line-height: 1.4;
  color: #1a1a1a;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.sdj-quiz-option:hover {
  border-color: #b8471a;
  background: #fcf8ed;
  transform: translateX(4px);
}

.sdj-quiz-back {
  border: none;
  background: none;
  color: #666;
  font-size: 14px;
  cursor: pointer;
  padding: 8px 0;
  text-decoration: underline;
}

.sdj-quiz-back:hover {
  color: #b8471a;
}

.sdj-quiz-result {
  text-align: center;
  animation: sdj-quiz-fade 0.4s ease;
}

.sdj-quiz-result-title {
  margin: 0 0 6px;
  font-family: var(--font-heading, 'Knockout', sans-serif);
  font-size: clamp(28px, 5vw, 40px);
  text-transform: uppercase;
  color: #b8471a;
  line-height: 1.1;
}

.sdj-quiz-result-sub {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #04817a;
}

.sdj-quiz-result-desc {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.65;
  color: #444;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.sdj-quiz-collection-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  margin-bottom: 36px;
  border-radius: 999px;
  border: 2px solid #b8471a;
  color: #b8471a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.sdj-quiz-collection-btn:hover {
  background: #b8471a;
  color: #fff;
}

.sdj-quiz-products-title {
  margin: 0 0 20px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1a1a;
}

.sdj-quiz-products {
  display: grid;
  gap: 16px;
  text-align: left;
  margin-bottom: 28px;
}

.sdj-quiz-product {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  background: #fff;
  transition: box-shadow 0.2s;
}

.sdj-quiz-product:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.sdj-quiz-product img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.sdj-quiz-product-name {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #004851;
  text-decoration: none;
  line-height: 1.35;
  margin-bottom: 4px;
}

.sdj-quiz-product-name:hover {
  color: #b8471a;
}

.sdj-quiz-product-price {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 700;
  color: #b8471a;
}

.sdj-quiz-product-cta {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  background: #fecc48;
  color: #1a1a1a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.15s;
}

.sdj-quiz-product-cta:hover {
  background: #f5b820;
}

@media (min-width: 768px) {
  .sdj-quiz-products {
    grid-template-columns: 1fr;
  }
}

/* ── Pages légales (Google Ads / LCEN / RGPD) ── */
.sdj-legal-page {
  background: #fffaf5;
  min-height: 50vh;
}

.sdj-legal-inner,
.sdj-legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 20px 72px;
}

html.sdj-cookie-set #sdj-cookie-banner {
  display: none !important;
}

html.sdj-static-page .sdj-home-promo-banner,
html.sdj-static-page main > div.bg-sdj-rust.flex.flex-col.items-center {
  display: none !important;
}

@media (max-width: 767px) {
  .sdj-legal-inner,
  .sdj-legal-wrap {
    padding: 32px 16px 56px;
  }
}

.sdj-legal-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: #004851;
  margin: 0 0 8px;
  line-height: 1.2;
}

.sdj-legal-updated {
  font-size: 13px;
  color: #666;
  margin: 0 0 28px;
}

.sdj-legal-body {
  font-size: 15px;
  line-height: 1.65;
  color: #1a1a1a;
}

.sdj-legal-h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #004851;
  margin: 28px 0 12px;
}

.sdj-legal-p {
  margin: 0 0 14px;
}

.sdj-legal-ul,
.sdj-legal-ol {
  margin: 0 0 16px 1.25rem;
  padding: 0;
}

.sdj-legal-ul li,
.sdj-legal-ol li {
  margin-bottom: 8px;
}

.sdj-legal-contact {
  background: #fff;
  border: 1px solid #e8ddd4;
  border-radius: 12px;
  padding: 20px 24px;
  margin: 16px 0 24px;
}

.sdj-legal-contact a {
  color: #b8471a;
  text-decoration: underline;
}

.sdj-legal-contact a:hover {
  color: #004851;
}

/* ── Bannière cookies (discrète) ── */
.sdj-cookie-banner {
  position: fixed;
  bottom: max(10px, env(safe-area-inset-bottom, 0px));
  left: 10px;
  right: 10px;
  z-index: 9999;
  max-width: 360px;
  margin: 0 auto;
  padding: 10px 12px;
  background: rgba(26, 26, 26, 0.94);
  color: #f5f5f5;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s ease, opacity 0.3s ease;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

@media (min-width: 768px) {
  .sdj-cookie-banner {
    left: auto;
    right: max(14px, env(safe-area-inset-right, 0px));
    bottom: max(14px, env(safe-area-inset-bottom, 0px));
    margin: 0;
    max-width: 320px;
    padding: 9px 11px;
  }
}

.sdj-cookie-banner.sdj-cookie-hidden {
  transform: translateY(12px);
  opacity: 0;
  pointer-events: none;
}

.sdj-cookie-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sdj-cookie-text {
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.sdj-cookie-text strong {
  font-weight: 700;
  color: #fff;
}

.sdj-cookie-text a {
  color: #fecc48;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sdj-cookie-actions {
  display: flex;
  gap: 6px;
  justify-content: flex-end;
}

.sdj-cookie-btn {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s, color 0.15s;
}

.sdj-cookie-reject {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.28);
}

.sdj-cookie-reject:hover {
  background: rgba(255, 255, 255, 0.08);
}

.sdj-cookie-accept {
  background: #fecc48;
  color: #1a1a1a;
}

.sdj-cookie-accept:hover {
  background: #f5b820;
}

