:root {
  --brand-gold: #be8e1a;
  --brand-gold-soft: #d4b76a;
  --brand-gold-deep: #8a6914;
  --brand-dark: #111111;
  --brand-muted: #494949;
  --surface-soft: #f8f6f2;
  --surface-card: #ffffff;
  --border-soft: #ececec;
  --shadow-sm: 0 2px 8px rgba(17, 17, 17, 0.06);
  --shadow-md: 0 12px 28px rgba(17, 17, 17, 0.08);
  --shadow-lux: 0 20px 48px rgba(17, 17, 17, 0.06);
  --radius-pill: 999px;
  --nav-sticky-offset: 76px;
  /* Homepage luxury rhythm */
  --lux-section-y: clamp(2.85rem, 6vw, 5rem);
  --lux-section-y-tight: clamp(1rem, 2.5vw, 1.35rem);
  --lux-page-bg-top: #faf8f4;
  --lux-page-bg-mid: #f5f3ee;
  --lux-page-bg-bottom: #f8f6f1;
  --lux-font-display: "Cormorant Garamond", "Times New Roman", Times, serif;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1095;
  padding: 0.45rem 0.9rem !important;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

*:focus-visible {
  outline: 2px solid rgba(190, 142, 26, 0.65);
  outline-offset: 2px;
}

.btn:focus-visible {
  outline-offset: 3px;
}

body {
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--brand-dark);
  background-color: #f5f5f3;
  line-height: 1.45;
}

/* Bootstrap utility: darken muted text for WCAG AA on light surfaces (panels override when needed) */
.text-secondary {
  color: var(--brand-muted) !important;
}

/* Bootstrap text-warning is too light on white/cream; storefront ratings & stock warnings */
.product-card .text-warning,
.product-card small.text-warning,
.stock-pill.text-warning,
.pd-rating-row.text-warning,
.pd-reviews-list .text-warning,
.modal .text-warning.small,
#relatedProducts .text-warning,
#recommendGrid .text-warning,
#recentlyViewedProducts .text-warning,
#featuredProducts .text-warning {
  color: #8b2c0a !important;
}

/* Outline ghost buttons: Bootstrap default gray can fail AA on cream/off-white */
.lux-layout .btn-outline-secondary,
.home-page .btn-outline-secondary {
  color: #333 !important;
  border-color: #8f9299 !important;
}

.lux-layout .btn-outline-secondary:hover,
.home-page .btn-outline-secondary:hover {
  color: #111 !important;
  border-color: #6c757d !important;
  background: rgba(0, 0, 0, 0.035);
}

.home-page {
  line-height: 1.55;
  background: linear-gradient(
    180deg,
    var(--lux-page-bg-top) 0%,
    var(--lux-page-bg-mid) 42%,
    var(--lux-page-bg-bottom) 100%
  );
}

.home-page > .home-section:not(.home-section--hero):not(.home-section--shop-bar) {
  padding-block: var(--lux-section-y);
}

.home-page > .home-section--shop-bar {
  padding-block: var(--lux-section-y-tight);
}

.lux-kicker,
.home-kicker {
  font-family: var(--lux-font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brand-gold-deep);
  margin-bottom: 0;
}

.home-hero-intro .home-kicker {
  color: rgba(255, 248, 232, 0.92);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.home-hero-title {
  font-family: var(--lux-font-display);
  font-size: clamp(2.35rem, 5.5vw, 3.35rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.02em;
  color: #fffdf8;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.home-hero-lead {
  font-size: clamp(0.92rem, 1.5vw, 1.05rem);
  color: rgba(255, 254, 250, 0.94);
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.home-section-title {
  font-family: var(--lux-font-display);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #1a1917;
}

.home-section-sub {
  font-size: 0.94rem;
  color: var(--brand-muted);
  max-width: 28rem;
  line-height: 1.55;
}

.home-section-head .home-kicker,
.home-section-head .lux-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
}

.lux-link-all,
.home-link-all {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.35rem 0.15rem;
  box-sizing: content-box;
  color: var(--brand-dark);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.lux-link-all:hover,
.home-link-all:hover {
  color: var(--brand-gold-deep);
  border-bottom-color: rgba(190, 142, 26, 0.45);
}

/* Shop, product details: same serif + spacing as home without duplicating tokens */
.lux-layout {
  line-height: 1.55;
  padding-block: var(--lux-section-y);
  background: linear-gradient(
    180deg,
    var(--lux-page-bg-top) 0%,
    var(--lux-page-bg-mid) 48%,
    var(--lux-page-bg-bottom) 100%
  );
}

.lux-layout .page-title {
  font-family: var(--lux-font-display);
  font-size: clamp(2rem, 3.8vw, 2.65rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #1a1917;
}

.lux-layout .page-subtitle {
  font-size: clamp(0.94rem, 1.4vw, 1.05rem);
  max-width: 38rem;
  line-height: 1.6;
}

.lux-layout .section-heading {
  font-family: var(--lux-font-display);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #1a1917;
}

.lux-layout #detailsContainer h1 {
  font-family: var(--lux-font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.lux-layout #detailsContainer h2 {
  font-family: var(--lux-font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #1a1917;
}

.lux-layout #detailsContainer .empty-state-rich h1 {
  font-family: var(--lux-font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Product detail (product-details.php) */
.lux-layout--product-detail {
  padding-block: clamp(1rem, 2.4vw, 1.75rem);
  padding-bottom: 0;
}

@media (max-width: 991.98px) {
  .lux-layout--product-detail {
    padding-bottom: calc(5.25rem + env(safe-area-inset-bottom, 0px));
  }
}

.pd-breadcrumb {
  max-width: 100%;
}

.pd-hero-shell {
  padding: 0.95rem 0.9rem 1rem;
  border: 1px solid rgba(228, 213, 180, 0.4);
  border-radius: 20px;
  background: linear-gradient(180deg, #fffefb 0%, #ffffff 100%);
}

@media (min-width: 992px) {
  .pd-hero-shell {
    padding: 1.25rem 1.25rem 1.1rem;
  }
}

.pd-gallery {
  position: relative;
}

.pd-gallery-frame {
  padding: 0.9rem;
  border-radius: 20px;
  background: linear-gradient(165deg, #f3ece2 0%, #faf8f4 55%, #ffffff 100%);
  border: 1px solid rgba(228, 213, 180, 0.4);
  box-shadow: var(--shadow-lux);
  overflow: hidden;
}

@media (min-width: 992px) {
  .pd-gallery-frame {
    padding: 1.15rem;
  }
}

.pd-main-image.product-details-image {
  display: block;
  width: 100%;
  max-height: min(56vh, 540px);
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
  border: none;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
  .pd-gallery-frame:hover .pd-main-image {
    transform: scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pd-main-image {
    transition: none;
  }

  .pd-gallery-frame:hover .pd-main-image {
    transform: none;
  }
}

.pd-info-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

@media (min-width: 992px) {
  .pd-info-card {
    position: relative;
    z-index: 2;
    padding: 0.95rem 1.05rem;
    border-radius: 18px;
    border: 1px solid rgba(228, 213, 180, 0.4);
    background: linear-gradient(168deg, #fffef9 0%, #ffffff 52%, #faf7ef 100%);
    box-shadow: var(--shadow-md);
  }
}

.pd-header-meta {
  border-bottom: 1px solid rgba(228, 220, 205, 0.55);
  padding-bottom: 0.6rem;
}

.pd-title {
  font-family: var(--lux-font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: #1a1917;
}

.pd-rating-row {
  letter-spacing: 0.06em;
}

.pd-reviews-jump {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.3rem 0.2rem;
  color: var(--brand-gold-deep);
  border-bottom: 1px solid transparent;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.pd-reviews-jump:hover {
  color: var(--brand-dark);
  border-bottom-color: rgba(190, 142, 26, 0.45);
}

.pd-price {
  font-family: var(--lux-font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #1a1917;
}

.pd-discount-badge {
  font-size: 0.75rem;
  font-weight: 600;
  vertical-align: middle;
}

.pd-ref-line .font-monospace {
  font-size: 0.8rem;
  color: var(--brand-muted);
}

.pd-trust-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
}

@media (min-width: 576px) {
  .pd-trust-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
  }
}

.pd-trust-row li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.77rem;
  line-height: 1.35;
  color: var(--brand-muted);
  margin: 0;
}

.pd-purchase-stack {
  display: grid;
  gap: 0.6rem;
}

.pd-trust-row i {
  flex-shrink: 0;
  margin-top: 0.12rem;
  color: var(--brand-gold-deep);
  font-size: 1.05rem;
}

.pd-notes-heading {
  font-family: var(--lux-font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #1a1917;
}

.pd-note-card {
  height: 100%;
  padding: 0.82rem 0.85rem;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  background: linear-gradient(180deg, #ffffff 0%, #faf9f6 100%);
}

.pd-note-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-gold-deep);
  margin-bottom: 0.45rem;
}

.pd-note-text {
  font-size: 0.84rem;
  line-height: 1.45;
  color: #353535;
}

.pd-description {
  font-size: 0.93rem;
  line-height: 1.55;
}

.pd-qty-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1.25rem;
}

.pd-buy-bar {
  display: grid;
  gap: 0.55rem;
  border: 1px solid rgba(228, 220, 205, 0.55);
  border-radius: 12px;
  padding: 0.6rem;
  background: #fff;
  position: relative;
  z-index: 2;
}

.pd-qty-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.pd-buy-cta-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 0.45rem;
}

.pd-qty-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-muted);
}

.pd-qty-stepper .quantity-input {
  max-width: 4rem;
}

.pd-qty-stepper input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.pd-qty-stepper input[type="number"]::-webkit-outer-spin-button,
.pd-qty-stepper input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.pd-qty-btn {
  width: 2.75rem;
  height: 2.75rem;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
}

.pd-qty-stepper {
  flex-wrap: nowrap;
  align-items: stretch;
  position: relative;
  z-index: 2;
  touch-action: manipulation;
}

.pd-actions .btn-lg {
  border-radius: 12px;
  font-weight: 600;
  min-height: 44px;
  font-size: 0.96rem;
}

.pd-actions .btn {
  border-radius: 11px;
  min-height: 42px;
  font-size: 0.9rem;
}

.pd-buy-cta-row .btn {
  min-height: 42px;
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pd-btn-success-flash {
  animation: pd-success-flash 0.85s ease;
}

@keyframes pd-success-flash {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 139, 34, 0.35);
  }

  35% {
    box-shadow: 0 0 0 5px rgba(34, 139, 34, 0.12);
  }

  100% {
    box-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pd-btn-success-flash {
    animation: none;
  }
}

.pd-share .btn {
  border-radius: 10px;
}

.pd-share-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background-color 0.15s ease;
  border: 1px solid var(--border-soft);
  background: #fff;
}

.pd-share-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.pd-share-fb {
  color: #1877f2;
  border-color: rgba(24, 119, 242, 0.35);
}

.pd-share-fb:hover {
  color: #1877f2;
  background: rgba(24, 119, 242, 0.08);
}

.pd-share-wa {
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.4);
}

.pd-share-wa:hover {
  color: #128c7e;
  background: rgba(37, 211, 102, 0.1);
}

.pd-share-tw {
  color: #000;
  border-color: rgba(0, 0, 0, 0.18);
}

.pd-share-tw:hover {
  color: #000;
  background: rgba(0, 0, 0, 0.06);
}

.pd-mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  padding: 0.55rem 0;
  padding-bottom: calc(0.55rem + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.94) 0%, #ffffff 38%);
  border-top: 1px solid rgba(228, 213, 180, 0.55);
  box-shadow: 0 -10px 32px rgba(17, 17, 17, 0.07);
  backdrop-filter: blur(12px);
}

.pd-mobile-bar-inner {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.pd-mobile-bar-price {
  min-width: 0;
}

.pd-mobile-price {
  font-family: var(--lux-font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #1a1917;
}

.pd-mobile-add {
  width: 2.75rem;
  height: 2.75rem;
  min-width: 44px;
  min-height: 44px;
  flex-shrink: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.pd-mobile-buy {
  min-height: 2.65rem;
  border-radius: 12px;
  font-weight: 600;
}

.pd-related-block {
  border-top: 1px solid rgba(228, 220, 205, 0.55);
  padding-top: 1rem !important;
}

.pd-reviews-section {
  border-top: 1px solid rgba(228, 220, 205, 0.45);
  padding-top: 1rem !important;
  scroll-margin-top: calc(var(--nav-sticky-offset) + 1rem);
}

@media (max-width: 767.98px) {
  .pd-hero-shell {
    padding: 0.75rem 0.7rem 0.8rem;
  }

  .pd-info-card {
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .pd-buy-cta-row {
    grid-template-columns: 1fr;
  }

  .pd-buy-cta-row .btn {
    width: 100%;
  }
}

.summary-card--review {
  border-radius: 16px;
}

.pd-review-card {
  border-radius: 14px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.pd-review-card:hover {
  border-color: rgba(190, 142, 26, 0.35);
  box-shadow: var(--shadow-sm);
}

.pd-review-avatar {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, #f3ecdf, #ffffff);
  border: 1px solid var(--border-soft);
  display: grid;
  place-items: center;
  font-family: var(--lux-font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brand-dark);
}

.pd-review-name {
  font-size: 0.94rem;
}

.pd-review-text {
  line-height: 1.55;
}

.pd-reviews-empty {
  border-style: dashed;
  border-radius: 16px;
}

/* Checkout — compact rhythm */
.lux-layout--checkout {
  padding-block: clamp(1rem, 2.5vw, 2rem);
}

.checkout-shell {
  max-width: 1180px;
}

.max-w-checkout-lead {
  max-width: 38rem;
  line-height: 1.45;
  font-size: 0.93rem;
}

.checkout-hero .checkout-page-title,
.checkout-hero .page-title {
  font-family: var(--lux-font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #1a1917;
  font-size: clamp(1.45rem, 3.2vw, 1.85rem);
  line-height: 1.15;
}

.checkout-steps {
  counter-reset: none;
}

.checkout-step-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(228, 213, 180, 0.45);
  background: linear-gradient(165deg, #fffef9 0%, #fff 100%);
  min-height: 100%;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.checkout-step-pill--link {
  text-decoration: none;
  color: inherit;
}

.checkout-step-pill--link:hover {
  border-color: rgba(190, 142, 26, 0.45);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.checkout-step-pill--active {
  border-color: rgba(190, 142, 26, 0.65);
  box-shadow: var(--shadow-sm);
  background: linear-gradient(155deg, #fffdf6 0%, #fff 55%);
}

.checkout-step-pill--muted {
  opacity: 1;
  background: linear-gradient(165deg, #f5f3ee 0%, #faf9f6 100%);
  border-color: rgba(200, 193, 178, 0.55);
}

.checkout-step-pill--muted .checkout-step-label {
  color: #4f4f4f;
}

.checkout-step-pill--muted .checkout-step-num {
  background: linear-gradient(145deg, #ebe8e2, #f4f1eb);
  border-color: #dad6cf;
  color: #5a5a5a;
}

.checkout-step-num {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  background: linear-gradient(145deg, #f3ecdf, #fff);
  border: 1px solid var(--border-soft);
  color: var(--brand-dark);
}

.checkout-step-pill--active .checkout-step-num {
  background: var(--brand-dark);
  color: #fffdf8;
  border-color: var(--brand-dark);
}

.checkout-step-label {
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.2;
}

.checkout-form-card.checkout-form-surface {
  background: #ffffff;
  border: 1px solid rgba(228, 228, 228, 0.9);
  box-shadow: 0 6px 24px rgba(17, 17, 17, 0.035);
}

.checkout-section--info {
  padding-top: 0.15rem;
}

.checkout-info-heading {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: clamp(1.02rem, 1.65vw, 1.18rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111;
  margin-bottom: 0.65rem;
}

.checkout-info-grid .checkout-field,
.checkout-info-grid .form-select.checkout-field {
  min-height: 2.65rem;
  padding-top: 0.48rem;
  padding-bottom: 0.48rem;
  padding-left: 0.85rem;
  padding-right: 0.85rem;
  border-radius: 12px;
  border: 1px solid #e3e3e3;
  background-color: #fff;
  font-size: 0.94rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.checkout-field::placeholder {
  color: #6d6d6d;
  font-weight: 400;
}

.checkout-field--opt::placeholder {
  color: #757575;
}

.form-select.checkout-field {
  color: #343434;
}

.form-select.checkout-field:invalid {
  color: #767676;
}

.checkout-field:focus,
.form-select.checkout-field:focus {
  border-color: rgba(190, 142, 26, 0.45);
  box-shadow: 0 0 0 0.15rem rgba(190, 142, 26, 0.12);
}

.checkout-field--textarea {
  min-height: 3.75rem;
  resize: vertical;
}

.checkout-form-card.checkout-form--disabled {
  opacity: 0.55;
  pointer-events: none;
}

.checkout-section-title {
  font-family: var(--lux-font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #1a1917;
}

.checkout-input:focus {
  border-color: rgba(190, 142, 26, 0.45);
  box-shadow: 0 0 0 0.15rem rgba(190, 142, 26, 0.12);
}

.checkout-info-grid {
  --bs-gutter-y: 0.55rem;
  --bs-gutter-x: 0.65rem;
}

.co-cod-card {
  border-radius: 14px;
  border: 1px solid rgba(190, 142, 26, 0.35);
  background: linear-gradient(155deg, rgba(255, 253, 246, 0.98) 0%, #fff 45%, #faf6ec 100%);
  padding: 0.75rem 0.9rem;
  box-shadow: 0 2px 12px rgba(17, 17, 17, 0.03);
}

.co-cod-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: var(--brand-gold-deep);
  background: linear-gradient(145deg, #f3ecdf, #fff);
  border: 1px solid rgba(228, 213, 180, 0.55);
}

.co-cod-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.co-cod-bullets li {
  margin-bottom: 0.2rem;
}

.co-cod-bullets li:last-child {
  margin-bottom: 0;
}

.checkout-submit-btn {
  border-radius: 11px;
  font-weight: 600;
  padding-block: 0.65rem;
}

.checkout-summary-card {
  box-shadow: 0 6px 24px rgba(17, 17, 17, 0.035);
}

@media (min-width: 992px) {
  .checkout-summary-sticky {
    position: sticky;
    top: calc(var(--nav-sticky-offset) + 0.5rem);
    z-index: 2;
  }
}

.summary-card--checkout {
  border-radius: 16px;
}

.checkout-summary-title {
  font-family: var(--lux-font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.checkout-lines {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  max-height: min(36vh, 240px);
  overflow-y: auto;
  padding-right: 0.2rem;
}

.checkout-line-thumb {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  background: #fff;
}

.checkout-total {
  font-family: var(--lux-font-display);
  color: var(--brand-gold-deep);
}

.checkout-estimate {
  background: rgba(248, 246, 242, 0.95);
  border: 1px solid rgba(228, 220, 205, 0.65);
}

.checkout-empty-icon {
  width: 52px;
  height: 52px;
  margin-inline: auto;
  border-radius: 50%;
  background: var(--surface-soft);
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  color: var(--brand-muted);
}

.checkout-success-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(145deg, #e8f5e9, #fff);
  border: 1px solid rgba(76, 175, 80, 0.35);
  color: #2e7d32;
  font-size: 1.5rem;
}

@media (prefers-reduced-motion: reduce) {
  .checkout-step-pill--link:hover {
    transform: none;
  }
}

/* Thank you (commande confirmee) */
.lux-layout--thankyou {
  position: relative;
  padding-block: clamp(1.25rem, 3vw, 2.5rem);
  min-height: min(72vh, 720px);
  overflow: hidden;
}

.thankyou-ambient {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.thankyou-ambient-glow {
  position: absolute;
  top: -20%;
  right: -15%;
  width: min(55vw, 420px);
  height: min(55vw, 420px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 183, 106, 0.22) 0%, transparent 68%);
  filter: blur(2px);
}

.thankyou-shell {
  max-width: 1040px;
  z-index: 1;
}

.thankyou-breadcrumb {
  position: relative;
}

.thankyou-board {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(228, 213, 180, 0.45);
  background: #fff;
  box-shadow: var(--shadow-lux);
}

.thankyou-panel {
  display: flex;
  flex-direction: column;
}

.thankyou-panel-inner {
  padding: 1.75rem 1.5rem;
  height: 100%;
}

@media (min-width: 992px) {
  .thankyou-panel-inner {
    padding: 2.25rem 2rem;
  }

  .thankyou-panel--left .thankyou-panel-inner {
    padding-right: 1.75rem;
  }

  .thankyou-panel--right .thankyou-panel-inner {
    padding-left: 2rem;
  }
}

.thankyou-panel--left {
  background: linear-gradient(165deg, #2a2618 0%, #1a1812 48%, #14120e 100%);
  color: #f5f0e6;
}

.thankyou-panel--left .lux-kicker {
  color: #e4cf88;
}

.thankyou-panel--left .text-secondary {
  color: rgba(255, 251, 242, 0.9) !important;
}

.thankyou-panel--left .text-body {
  color: #fffef6 !important;
}

.thankyou-headline {
  font-family: var(--lux-font-display);
  font-size: clamp(1.55rem, 3.2vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: #fffdf8;
}

.thankyou-lead {
  font-size: 0.95rem;
  line-height: 1.6;
}

.thankyou-check-wrap {
  position: relative;
  width: 4.5rem;
  height: 4.5rem;
}

.thankyou-check-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(212, 183, 106, 0.45);
  animation: thankyou-ring-pulse 2.4s ease-in-out infinite;
}

.thankyou-check-core {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.65rem;
  color: #1a1812;
  background: linear-gradient(145deg, #e8d5a0, #f5edd4);
  box-shadow:
    0 4px 18px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

@keyframes thankyou-ring-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }

  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .thankyou-check-ring {
    animation: none;
  }
}

.thankyou-steps-title {
  font-family: var(--lux-font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.68rem !important;
  color: #dfc980;
}

.thankyou-timeline-item {
  position: relative;
  display: flex;
  gap: 0.85rem;
  padding-bottom: 1.15rem;
  padding-left: 0.15rem;
}

.thankyou-timeline-item:not(.thankyou-timeline-item--last)::before {
  content: "";
  position: absolute;
  left: 0.52rem;
  top: 1.35rem;
  bottom: 0.25rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(212, 183, 106, 0.45), rgba(212, 183, 106, 0.08));
}

.thankyou-timeline-dot {
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.12rem;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #f5edd4, #c4a24a);
  box-shadow: 0 0 0 3px rgba(212, 183, 106, 0.2);
}

.thankyou-timeline-body strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 253, 246, 0.96);
}

.thankyou-timeline-body .small {
  line-height: 1.35;
}

.thankyou-panel--right {
  background: linear-gradient(180deg, #fffef9 0%, #ffffff 42%, #faf8f5 100%);
}

.thankyou-ref-card {
  border-radius: 16px;
  border: 1px solid rgba(228, 213, 180, 0.5);
  background: linear-gradient(155deg, #fff 0%, #faf7ef 100%);
  padding: 1.15rem 1.25rem;
  box-shadow: 0 4px 20px rgba(17, 17, 17, 0.04);
}

.thankyou-ref-card--muted {
  background: #faf9f6;
  box-shadow: none;
}

.thankyou-ref-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-muted);
  margin-bottom: 0.35rem;
}

.thankyou-order-code {
  font-family: ui-monospace, "Cascadia Code", "Segoe UI Mono", monospace;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #1a1917;
  line-height: 1.35;
}

.thankyou-copy-btn {
  border-radius: 10px;
  font-weight: 600;
}

.thankyou-trust-pill {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-muted);
  padding: 0.5rem 0.65rem;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  background: #fff;
  height: 100%;
}

.thankyou-trust-pill i {
  color: var(--brand-gold-deep);
  font-size: 1rem;
}

.thankyou-cta-primary,
.thankyou-cta-secondary {
  border-radius: 12px;
  font-weight: 600;
  padding-block: 0.65rem;
}

.thankyou-footlinks a:hover {
  color: var(--brand-gold-deep) !important;
}

.lux-layout .shop-toolbar {
  border-color: rgba(228, 213, 180, 0.45);
  background: linear-gradient(165deg, #fff 0%, #fdfcfa 100%);
  box-shadow: var(--shadow-lux);
}

.lux-layout .shop-results-badge {
  border-color: rgba(228, 213, 180, 0.55);
  background: linear-gradient(135deg, #fffef8 0%, #fff 100%);
}

.lux-layout .summary-card {
  border-radius: 16px;
  border-color: rgba(228, 213, 180, 0.45);
  background: linear-gradient(155deg, #fffef9 0%, #fff 55%, #faf6ec 100%);
}

.lux-layout .summary-card h3 {
  font-family: var(--lux-font-display);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #1a1917;
}

@media (max-width: 575.98px) {
  .lux-layout {
    padding-block: clamp(2.25rem, 6vw, 3.25rem);
  }
}

.btn-lux-primary {
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  border: none;
  border-radius: var(--radius-pill);
  color: #fff !important;
  background: linear-gradient(135deg, #c9a84c 0%, var(--brand-gold) 38%, var(--brand-gold-deep) 100%);
  box-shadow:
    0 4px 14px rgba(138, 105, 20, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.btn-lux-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow:
    0 8px 22px rgba(138, 105, 20, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  color: #fff !important;
}

.btn-lux-outline {
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  border-radius: var(--radius-pill);
  color: #fff !important;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 248, 232, 0.55);
  backdrop-filter: blur(6px);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.btn-lux-outline:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(212, 183, 106, 0.85);
  color: #fff !important;
  transform: translateY(-2px);
}

.home-section--shortcuts {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(250, 247, 240, 0.95) 100%);
}

.home-section--featured.section-featured-trending {
  background: linear-gradient(180deg, #f7f4ed 0%, #faf7f0 55%, #f3f1eb 100%);
}

.home-section--recent {
  background: linear-gradient(180deg, #faf9f6 0%, #f5f3ee 100%);
}

.home-section--brands.nos-marques-section--enhanced {
  background: linear-gradient(180deg, #fff 0%, #faf7f0 48%, #f8f5ef 100%);
}

.home-section--trust.trust-strip--prefooter {
  background: linear-gradient(180deg, #f9f7f2 0%, #fefdfb 50%, #faf8f4 100%);
  border-top-color: rgba(228, 213, 180, 0.45);
  border-bottom-color: rgba(228, 213, 180, 0.35);
}

.home-section--faq-newsletter {
  background: linear-gradient(175deg, #fff 0%, #faf8f3 55%, #f5f2eb 100%);
  border-top: 1px solid rgba(236, 228, 210, 0.65);
}

.home-faq-accordion .accordion-item {
  border: 1px solid rgba(228, 220, 200, 0.65);
  border-radius: 12px !important;
  overflow: hidden;
  margin-bottom: 0.65rem;
  background: #fff;
}

.home-faq-accordion .accordion-button {
  font-weight: 500;
  font-size: 0.95rem;
  padding: 1rem 1.15rem;
  color: #1f1f1f;
  background: linear-gradient(180deg, #fff 0%, #fdfcfa 100%);
  box-shadow: none;
}

.home-faq-accordion .accordion-button.collapsed {
  color: #242424;
}

.home-faq-accordion .accordion-button:not(.collapsed) {
  color: var(--brand-gold-deep);
  background: linear-gradient(180deg, #fffef8 0%, #faf6ea 100%);
  box-shadow: none;
}

.home-faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.home-faq-accordion .accordion-body {
  padding: 1rem 1.15rem 1.15rem;
  color: var(--brand-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  background: #fff;
}

/* FAQ page / accordions outside home — Bootstrap default gray fails WCAG on cream */
main .accordion:not(.home-faq-accordion) .accordion-button {
  color: #1f2937 !important;
}

main .accordion:not(.home-faq-accordion) .accordion-button.collapsed {
  color: #1f2937 !important;
}

.home-newsletter-card {
  border-radius: 18px;
  border: 1px solid rgba(228, 213, 180, 0.45);
  background: linear-gradient(155deg, #fffef9 0%, #fff 42%, #faf6ec 100%);
  box-shadow: var(--shadow-lux);
}

.home-newsletter-input:focus {
  border-color: rgba(190, 142, 26, 0.45);
  box-shadow: 0 0 0 0.2rem rgba(190, 142, 26, 0.12);
}

.home-page .brand-strip-card--logo-wall {
  border-color: rgba(232, 225, 210, 0.95);
  background: linear-gradient(180deg, #fff 0%, #fffdfb 100%);
}

.home-page .brand-strip-card--logo-wall:hover {
  border-color: rgba(190, 142, 26, 0.3);
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.07);
}

.home-page .trust-card-title {
  font-family: var(--lux-font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
}

@media (max-width: 575.98px) {
  .home-page > .home-section:not(.home-section--hero):not(.home-section--shop-bar) {
    padding-block: clamp(2.25rem, 6vw, 3.25rem);
  }
}

a {
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

.top-promo {
  background: linear-gradient(180deg, #5a4815 0%, #4a3a12 100%);
  color: #fffef9;
  font-weight: 500;
}

.top-promo.text-white {
  color: #fffef9 !important;
}

.top-promo.top-promo-rich {
  position: relative;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.promo-toggle-btn {
  margin-top: 0.25rem;
  border: 0;
  background: transparent;
  color: #fffef9;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 0.8rem;
  font-weight: 600;
}

.navbar {
  backdrop-filter: blur(6px);
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.navbar-scrolled {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  background-color: rgba(255, 255, 255, 0.96);
}

.navbar-brand {
  letter-spacing: 0.12em;
}

.nav-link {
  font-size: 0.95rem;
  color: #2c2c2c;
}

@media (pointer: coarse), (max-width: 991.98px) {
  .navbar .nav-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}

.nav-link.active,
.nav-link:hover {
  color: #000;
}

.hero-section {
  background: linear-gradient(165deg, #f3ecdf 0%, #faf9f7 70%);
}

.letter-space {
  letter-spacing: 0.16em;
}

.hero-image {
  width: 100%;
  min-height: 380px;
  max-height: 470px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e4d5b4;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.28rem 0.72rem;
}

.hero-stats .hero-stat-box {
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  background: #fff;
  text-align: center;
  padding: 0.55rem 0.35rem;
}

.hero-stats .hero-stat-box strong {
  display: block;
  font-size: 1rem;
  line-height: 1.1;
}

.hero-stats .hero-stat-box small {
  color: var(--brand-muted);
}

.section-heading {
  font-weight: 600;
  margin-bottom: 1.4rem;
}

.page-header {
  margin-bottom: 1.5rem;
}

.page-title {
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.page-subtitle {
  color: var(--brand-muted);
  margin-bottom: 0;
}

.category-pill {
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  background: #fff;
  transition: all 0.2s ease;
}

.category-pill:hover {
  border-color: #d7c08b;
  transform: translateY(-2px);
}

.quick-filter-chip {
  border: 1px solid var(--border-soft);
  background: #fff;
  border-radius: 999px;
  color: #2e2e2e;
  font-size: 0.83rem;
  font-weight: 500;
  padding: 0.36rem 0.78rem;
  transition: all 0.2s ease;
}

.quick-filter-chip:hover {
  border-color: #d7c08b;
  color: #111;
  background: #fffaf0;
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(12px);
}

.shop-toolbar {
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  background: var(--surface-card);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease;
}

.shop-toolbar:hover {
  box-shadow: var(--shadow-md);
}

@media (min-width: 992px) {
  .shop-toolbar--sticky {
    position: sticky;
    top: var(--nav-sticky-offset);
    z-index: 1018;
  }
}

.shop-results-badge {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #faf7f0 0%, #fff 100%);
  border: 1px solid var(--border-soft);
  color: var(--brand-dark);
}

.filter-chip-pill {
  font-weight: 500;
  padding: 0.45rem 0.75rem !important;
  border-radius: var(--radius-pill) !important;
  background: #fff !important;
  border-color: var(--border-soft) !important;
  color: var(--brand-dark) !important;
}

.pagination .page-link {
  color: #222;
  border-radius: 8px;
}

.pagination .page-item.active .page-link {
  background: #111;
  border-color: #111;
}

.pagination .page-link:focus {
  box-shadow: none;
}

/* ---- Shop page: sidebar filtres + pagination compacte ---- */
.lux-layout.shop-page-main {
  padding-block: clamp(1.25rem, 2.8vw, 2rem);
}

.shop-page-inner {
  max-width: 1320px;
}

.shop-page-header--compact {
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(228, 220, 205, 0.35);
}

.shop-page-header-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
}

@media (min-width: 768px) {
  .shop-page-header-row {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.35rem 1rem;
  }
}

.shop-breadcrumb-inline {
  font-size: 0.76rem;
  margin: 0;
  line-height: 1.35;
  color: var(--brand-muted);
}

.shop-breadcrumb-sep {
  margin: 0 0.3rem;
  opacity: 0.45;
  font-weight: 300;
}

.shop-breadcrumb-current {
  color: #4d4d4d;
  font-weight: 500;
}

.shop-page-heading {
  font-family: var(--lux-font-display);
  font-size: clamp(1.28rem, 2.6vw, 1.65rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #1a1917;
  line-height: 1.2;
}

.shop-page-row {
  --bs-gutter-y: 0.75rem;
}

.shop-filters-mobile-toggle {
  border-radius: 12px;
  border-color: rgba(228, 213, 180, 0.55);
  font-weight: 600;
  min-height: 44px;
}

.shop-filter-action.btn-sm {
  min-height: 44px;
  padding: 0.45rem 0.85rem;
}

@media (min-width: 992px) {
  .shop-filters-panel.collapse {
    display: block !important;
    height: auto !important;
    visibility: visible !important;
  }

  .shop-filters-card {
    position: sticky;
    top: calc(var(--nav-sticky-offset) + 0.65rem);
    z-index: 1016;
    max-height: calc(100vh - var(--nav-sticky-offset) - 2rem);
    overflow-y: auto;
  }
}

.shop-toolbar-strip {
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(228, 220, 205, 0.65);
}

.shop-toolbar-strip--card {
  border: 1px solid rgba(228, 213, 180, 0.35);
  border-bottom: 1px solid rgba(228, 220, 205, 0.65);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(252, 250, 246, 0.98) 100%);
  box-shadow: 0 4px 18px rgba(17, 17, 17, 0.04);
}

.shop-toolbar-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-muted);
}

.shop-toolbar-control:focus {
  border-color: rgba(190, 142, 26, 0.45);
  box-shadow: 0 0 0 0.15rem rgba(190, 142, 26, 0.15);
}

.shop-breadcrumb-inline .shop-breadcrumb-link {
  color: var(--brand-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.shop-breadcrumb-inline .shop-breadcrumb-link:hover {
  color: var(--brand-gold-deep);
}

.shop-results-hero {
  min-width: 0;
}

.shop-results-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #faf6ec 0%, #fff 100%);
  border: 1px solid rgba(228, 213, 180, 0.55);
  color: var(--brand-gold-deep);
  font-size: 1.15rem;
}

.shop-results-label {
  letter-spacing: 0.12em;
  font-weight: 600;
}

.shop-results-value {
  font-family: var(--lux-font-display);
  line-height: 1.15;
}

.shop-results-num {
  font-size: clamp(1.65rem, 3.5vw, 2.15rem);
  font-weight: 700;
  color: #1a1917;
}

.shop-results-suffix {
  font-size: 1rem;
  font-weight: 500;
  color: var(--brand-muted);
}

.shop-toolbar-controls {
  align-self: center;
}

.shop-toolbar-ico {
  font-size: 1rem;
  opacity: 0.75;
}

.shop-toolbar-control {
  min-width: 8.5rem;
}

.shop-toolbar-per-page {
  min-width: 3.5rem;
}

@media (min-width: 768px) {
  .shop-toolbar-control {
    min-width: 9.75rem;
  }
}

.shop-live-summary {
  border-radius: 12px;
  border: 1px solid rgba(190, 142, 26, 0.28);
  background: linear-gradient(100deg, rgba(255, 250, 240, 0.95) 0%, rgba(252, 248, 238, 0.9) 100%);
  padding: 0.6rem 0.9rem;
  font-size: 0.86rem;
  line-height: 1.45;
  color: #3a3428;
  box-shadow: 0 2px 10px rgba(190, 142, 26, 0.08);
}

.shop-live-summary-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.shop-live-ico {
  color: var(--brand-gold);
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.shop-letter-space {
  letter-spacing: 0.14em;
}

.shop-filters-card {
  border-radius: 16px;
  border-color: rgba(228, 213, 180, 0.4) !important;
  background: linear-gradient(165deg, #fff 0%, #fdfcfa 100%);
  box-shadow: 0 8px 26px rgba(17, 17, 17, 0.05);
}

.shop-filter-label {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-muted);
}

.shop-filter-input:focus {
  border-color: rgba(190, 142, 26, 0.45);
  box-shadow: 0 0 0 0.15rem rgba(190, 142, 26, 0.12);
}

.shop-filter-action {
  border-radius: 10px;
  font-weight: 600;
}

.shop-filter-help {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.shop-price-range-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.shop-price-pill {
  font-size: 0.85rem;
  padding: 0.35rem 0.65rem;
  border-radius: 10px;
  background: rgba(246, 240, 228, 0.65);
  border: 1px solid rgba(228, 213, 180, 0.35);
}

.shop-price-sep {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(190, 142, 26, 0.35), transparent);
  min-width: 0.5rem;
}

.shop-price-visual-track {
  --range-start: 0%;
  --range-end: 100%;
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: #e8e3db;
  overflow: hidden;
}

.shop-price-visual-track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--range-start);
  width: calc(var(--range-end) - var(--range-start));
  background: linear-gradient(90deg, rgba(190, 142, 26, 0.45) 0%, rgba(201, 168, 76, 0.75) 100%);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.shop-range-stack {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.shop-range {
  height: 1.35rem;
  cursor: pointer;
}

.shop-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.shop-range-min::-webkit-slider-thumb {
  background: linear-gradient(145deg, var(--brand-gold) 0%, var(--brand-gold-deep) 100%);
}

.shop-range-max::-webkit-slider-thumb {
  background: linear-gradient(145deg, #3a3a3a 0%, #111 100%);
}

.shop-range-min::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--brand-gold) 0%, var(--brand-gold-deep) 100%);
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.shop-range-max::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(145deg, #3a3a3a 0%, #111 100%);
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.shop-collections-row {
  padding: 0.15rem 0;
}

@media (max-width: 575.98px) {
  .shop-collections-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 0.35rem;
    margin-inline: -0.25rem;
    padding-inline: 0.25rem;
  }

  .shop-collections-row .shop-collection-chip {
    flex-shrink: 0;
  }

  .shop-collections-label {
    display: none !important;
  }
}

.shop-active-chip {
  font-weight: 500;
  border-radius: 999px !important;
  padding: 0.4rem 0.75rem !important;
}

.shop-product-grid {
  --bs-gutter-x: 0.75rem;
  --bs-gutter-y: 0.75rem;
  contain: layout style;
}

.shop-product-grid--lux .product-card {
  border-radius: 14px;
}

@media (min-width: 768px) {
  .shop-product-grid {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
  }
}

#activeFilters:empty {
  display: none;
}

.shop-pagination {
  gap: 0.15rem;
  row-gap: 0.25rem;
}

.shop-pagination .page-item .page-link {
  min-width: 2.75rem;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.35rem 0.45rem;
  font-size: 0.84rem;
}

.shop-pagination .page-item.active .page-link {
  background: linear-gradient(135deg, #2a2a2a 0%, #111 100%);
  border-color: #111;
  color: #fff;
}

.shop-pagination-gap,
.shop-pagination .shop-pagination-gap {
  border: none;
  background: transparent;
  color: var(--brand-muted);
  pointer-events: none;
  padding-left: 0.35rem;
  padding-right: 0.35rem;
}

.shop-pagination-meta {
  font-size: 0.8rem;
}

.shop-pagination-wrap {
  padding-bottom: 0.25rem;
}

.product-card {
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.product-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: linear-gradient(165deg, #f5f3ef 0%, #ebe8e2 100%);
}

.product-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 17, 17, 0.06), transparent 42%);
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.product-card:hover .product-card-media::after {
  opacity: 1;
}

.product-card-media .product-img {
  transition: transform 0.35s ease;
}

.product-card:hover .product-card-media .product-img {
  transform: scale(1.04);
}

.product-card .product-title-link {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.35;
}

.product-card .btn,
.product-card .wishlist-btn {
  position: relative;
  z-index: 3;
}

.product-card:focus-within {
  box-shadow: 0 0 0 3px rgba(190, 142, 26, 0.22), 0 15px 24px rgba(0, 0, 0, 0.08);
}

.product-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #f0f0f0;
}

.brand-logo-thumb {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid var(--border-soft);
  background: #fff;
}

.brand-logo-thumb-xs {
  width: 22px;
  height: 22px;
  object-fit: contain;
  border-radius: 4px;
  border: 1px solid var(--border-soft);
  background: #fff;
}

.badge-soft-danger {
  background: #fce8ea;
  color: #a22a39;
}

.product-label {
  font-size: 0.68rem;
  letter-spacing: 0.03em;
}

.stock-pill {
  font-size: 0.86rem;
  font-weight: 600;
}

.wishlist-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 44px;
  height: 44px;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: grid;
  place-items: center;
  color: #2f2f2f;
  z-index: 2;
}

.wishlist-btn.active {
  color: #ab1d3b;
  border-color: #f1c8d2;
}

.price-old {
  color: var(--brand-muted);
  text-decoration: line-through;
}

.product-details-image {
  width: 100%;
  max-height: 610px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border-soft);
}

.note-list li {
  margin-bottom: 0.4rem;
}

.quantity-input {
  max-width: 110px;
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.qty-stepper .quantity-input {
  max-width: 72px;
  text-align: center;
}

.cart-item {
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  background: #fff;
}

.cart-thumb {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 10px;
}

.summary-card {
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  background: #fff;
}

.shipping-progress .progress {
  height: 0.55rem;
  border-radius: 999px;
}

.review-card {
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  background: #fff;
}

.checkout-step {
  border: 1px dashed #d8d8d8;
  border-radius: 10px;
  background: #fff;
}

.empty-state {
  border: 1px dashed #d9d9d9;
  border-radius: 14px;
  background: #fff;
}

.empty-state-rich {
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff 0%, #faf9f7 100%);
  padding: 2.5rem 1.5rem !important;
}

.empty-state-rich .empty-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--surface-soft);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  color: var(--brand-gold);
}

.brand-strip-card {
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  background: #fff;
  padding: 1rem 0.65rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  color: var(--brand-dark);
}

.brand-strip-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: #e4d5b4;
}

.brand-strip-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  background: #fff;
}

.brand-strip-initial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto;
  border-radius: 10px;
  background: linear-gradient(145deg, #f3ecdf, #fff);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brand-dark);
}

.brand-strip-name {
  font-weight: 600;
  font-size: 0.88rem;
}

.brand-strip-slogan {
  display: block;
  font-size: 0.68rem !important;
  line-height: 1.25;
  margin-top: 0.25rem;
  max-height: 2.5em;
  overflow: hidden;
}

.brand-logo-wall .col-6,
.brand-logo-wall .col-sm-4,
.brand-logo-wall .col-md-3,
.brand-logo-wall .col-lg-2 {
  display: flex;
}

.brand-logo-wall .col-md-4,
.brand-logo-wall .col-lg-3,
.brand-logo-wall .col-xl-2 {
  display: flex;
}

.home-hero-actions .btn {
  min-width: 190px;
}

.home-shortcuts-section {
  background: transparent;
}

.home-shortcut-card {
  border: 1px solid rgba(228, 213, 180, 0.45);
  border-radius: 14px;
  background: linear-gradient(165deg, #fff 0%, #fdfcfa 100%);
  min-height: 96px;
  padding: 0.95rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.45rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 4px 18px rgba(17, 17, 17, 0.03);
}

.home-shortcut-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.07);
  border-color: rgba(190, 142, 26, 0.38);
}

.home-shortcut-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: var(--brand-gold);
  background: linear-gradient(145deg, #fff 0%, #f6f0e4 100%);
}

.home-shortcut-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #2f2f2f;
}

.nos-marques-section--enhanced {
  background: linear-gradient(180deg, #fff 0%, #fdfdfd 100%);
}

.brand-strip-card--logo-wall {
  width: 100%;
  min-height: 176px;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(10, 10, 10, 0.03);
  padding: 1.15rem 0.7rem 0.85rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.7rem;
  margin: 6px;
}

.brand-strip-card--logo-wall:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(10, 10, 10, 0.06);
  border-color: #e8e8e8;
  background: #fff;
}

.brand-strip-card--logo-wall .brand-strip-logo {
  width: 100%;
  max-width: 182px;
  height: 92px;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.brand-strip-card--logo-wall .brand-strip-initial {
  width: 72px;
  height: 72px;
  border-radius: 50%;
}

.brand-strip-card--logo-wall .brand-strip-name {
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.2;
  color: #2f2f2f;
  min-height: 1.9em;
}

@media (max-width: 767.98px) {
  .brand-strip-card--logo-wall {
    min-height: 136px;
    padding: 0.8rem 0.45rem 0.6rem;
    margin: 4px;
  }

  .brand-strip-card--logo-wall .brand-strip-logo {
    max-width: 138px;
    height: 68px;
  }

  .brand-strip-card--logo-wall .brand-strip-name {
    font-size: 0.75rem;
  }
}

.trust-strip {
  position: relative;
}

.trust-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(120% 80% at 50% -20%, rgba(190, 142, 26, 0.08), transparent 55%);
}

.trust-card {
  position: relative;
  text-align: center;
  padding: 1.75rem 1.25rem 1.65rem;
  border-radius: 18px;
  border: 1px solid rgba(236, 236, 236, 0.95);
  background: linear-gradient(180deg, #fffef9 0%, #fff 45%, #fafaf8 100%);
  box-shadow: 0 4px 22px rgba(17, 17, 17, 0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.08);
  border-color: rgba(215, 192, 139, 0.55);
}

.trust-card-icon-wrap {
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.trust-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  background: linear-gradient(145deg, #fff 0%, #f6f0e4 100%);
  color: var(--brand-gold);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 6px 14px rgba(190, 142, 26, 0.12);
}

.trust-card-title {
  font-size: 1.02rem;
  font-weight: 600;
  margin: 0 0 0.45rem;
  letter-spacing: 0.01em;
}

.trust-card-text {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--brand-muted);
  margin: 0;
  max-width: 22rem;
  margin-inline: auto;
}

.trust-card-text--contact {
  max-width: none;
}

.trust-card-phone {
  font-weight: 600;
  color: var(--brand-dark);
  text-decoration: none;
  white-space: nowrap;
}

.trust-card-phone:hover {
  color: var(--brand-gold);
  text-decoration: underline;
}

.trust-strip--prefooter {
  background: linear-gradient(180deg, #f7f6f3 0%, #fefefd 55%, #fff 100%);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.hero-coverflow-section {
  background: linear-gradient(
    165deg,
    #1f1d1b 0%,
    #35302c 26%,
    #5a524a 52%,
    #c9bfb3 78%,
    #ebe4da 92%,
    #f4efe8 100%
  );
  color: #fff;
}

.hero-coverflow-gradient {
  position: absolute;
  inset: 0;
  opacity: 0.48;
  background:
    radial-gradient(78% 58% at 50% 100%, rgba(212, 175, 95, 0.28), transparent 65%),
    radial-gradient(48% 38% at 88% 12%, rgba(190, 142, 26, 0.14), transparent 58%);
  pointer-events: none;
}

.hero-coverflow-swiper {
  overflow: visible;
  padding-bottom: 2.35rem;
}

.hero-coverflow-swiper .swiper-slide {
  width: 74%;
  max-width: 300px;
  height: auto;
}

@media (min-width: 768px) {
  .hero-coverflow-swiper .swiper-slide {
    width: 290px;
    max-width: none;
  }
}

.coverflow-card {
  position: relative;
  display: block;
  height: min(56vh, 500px);
  border-radius: clamp(2rem, 6vw, 3.5rem);
  overflow: hidden;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.coverflow-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.coverflow-card:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.coverflow-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.coverflow-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.08) 45%, transparent 100%);
  pointer-events: none;
}

.coverflow-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-align: center;
}

.coverflow-card-title {
  font-size: clamp(1.05rem, 2.8vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff !important;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.85),
    0 2px 24px rgba(0, 0, 0, 0.65);
}

.coverflow-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 1.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff !important;
  border: 1.5px solid rgba(255, 235, 200, 0.95);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(4px);
}

.coverflow-card:hover .coverflow-card-cta {
  background: rgba(0, 0, 0, 0.68);
  border-color: rgba(255, 248, 230, 1);
}

.hero-coverflow-nav.swiper-button-prev,
.hero-coverflow-nav.swiper-button-next {
  width: 46px !important;
  height: 46px !important;
  margin-top: 0 !important;
  top: 42%;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff 0%, #faf6ec 100%) !important;
  color: var(--brand-gold-deep) !important;
  border: 1px solid rgba(212, 183, 106, 0.35);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.hero-coverflow-nav.swiper-button-prev:after,
.hero-coverflow-nav.swiper-button-next:after {
  font-size: 0.85rem !important;
  font-weight: 700 !important;
}

.hero-coverflow-nav.swiper-button-prev {
  left: 0;
}

.hero-coverflow-nav.swiper-button-next {
  right: 0;
}

.hero-coverflow-pagination.swiper-pagination-bullets {
  bottom: 0 !important;
  left: 0;
  right: 0;
}

.hero-coverflow-pagination .swiper-pagination-bullet {
  width: 44px !important;
  height: 44px !important;
  margin: 0 4px !important;
  background: transparent !important;
  opacity: 1 !important;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.hero-coverflow-pagination .swiper-pagination-bullet::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: 17px auto 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.hero-coverflow-pagination .swiper-pagination-bullet-active::before {
  background: var(--brand-gold);
  transform: scale(1.25);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.38);
}

.home-shop-by-bar {
  background: linear-gradient(180deg, #fff 0%, #fdfcfa 100%);
}

.home-shop-by-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.15rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.home-shop-by-nav a {
  color: var(--brand-dark);
  text-decoration: none;
  padding: 0.55rem 0.65rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  transition:
    color 0.15s ease,
    background-color 0.15s ease;
}

.home-shop-by-nav a:hover {
  color: var(--brand-gold-deep);
  background: rgba(190, 142, 26, 0.12);
}

.home-shop-by-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c9c9c9;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.home-shop-by-dot--wide {
  width: 1px;
  height: 14px;
  border-radius: 1px;
  margin: 0 0.15rem;
  background: #ddd;
}

@media (max-width: 575px) {
  .home-shop-by-nav {
    font-size: 0.82rem;
    justify-content: center;
  }
}

.nos-marques-section {
  background: linear-gradient(180deg, #fafaf8 0%, #fff 100%);
}

.shop-collection-chip {
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
  font-weight: 500;
}

.shop-collection-chip:hover:not(.active) {
  transform: translateY(-1px);
  border-color: rgba(190, 142, 26, 0.42) !important;
  box-shadow: 0 4px 14px rgba(17, 17, 17, 0.06);
}

.shop-collections-row .shop-collection-chip.btn {
  min-height: 44px;
  padding: 0.5rem 1rem !important;
}

.shop-collection-chip.active {
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(17, 17, 17, 0.12);
}

.nav-brands-dropdown {
  max-height: min(70vh, 420px);
  overflow-y: auto;
  min-width: min(100vw - 2rem, 280px);
  border-radius: 14px !important;
  margin-top: 0.35rem !important;
}

.nav-brand-item {
  border-radius: 10px;
  margin-inline: 0.35rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-brand-item:hover,
.nav-brand-item:focus {
  background: #faf6ec !important;
}

.nav-brand-logo-thumb {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid var(--border-soft);
  background: #fff;
}

.nav-brand-initial {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  background: linear-gradient(145deg, #f3ecdf, #fff);
  border: 1px solid var(--border-soft);
  color: var(--brand-dark);
}

.nav-brands-mobile-scroll {
  max-height: 220px;
  overflow-y: auto;
}

.nav-brand-mobile-row:last-child {
  border-bottom: 0 !important;
}

.section-featured-trending {
  background: linear-gradient(180deg, #f9f8f5 0%, #f5f5f3 100%);
}

.product-card--compact {
  border-radius: 12px;
}

.product-card--compact .product-card-media {
  aspect-ratio: 3 / 4;
}

.product-card--compact .product-card-media .product-img {
  height: 100%;
}

.product-card--compact .p-3 {
  padding: 0.65rem 0.7rem 0.75rem !important;
}

.product-card--compact .wishlist-btn {
  top: 8px;
  left: 8px;
  width: 44px;
  height: 44px;
}

.product-card--compact .product-label {
  font-size: 0.58rem;
  padding: 0.2em 0.45em;
}

.product-card--compact .badge-soft-danger {
  font-size: 0.62rem;
  padding: 0.22em 0.45em;
  margin: 0.4rem !important;
}

.product-title-compact {
  font-size: clamp(0.78rem, 1.6vw, 0.9rem);
  line-height: 1.25;
  font-weight: 600;
}

.product-card--compact .rating-compact {
  font-size: 0.72rem;
  line-height: 1;
}

.product-card--compact .stock-line-compact {
  font-size: 0.68rem;
  line-height: 1.2;
}

.product-card--compact .price-line-compact {
  font-size: 0.95rem;
}

.product-card--compact .price-old {
  font-size: 0.72rem;
}

.product-card--compact .brand-name-compact {
  max-width: 7rem;
  vertical-align: middle;
}

.product-card--compact .btn-sm {
  font-size: 0.72rem;
  padding: 0.42rem 0.55rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.product-card--showcase .product-card-cta-showcase {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.product-card--showcase {
  background: linear-gradient(180deg, #fffefb 0%, #fffdfa 62%, #fff 100%);
  border: 1px solid rgba(224, 214, 185, 0.55);
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.07);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.product-card--showcase:hover {
  transform: translateY(-4px);
  border-color: rgba(190, 142, 26, 0.45);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.1);
}

.product-card-body-showcase {
  padding: 1.05rem 1rem 1.1rem;
  position: relative;
  gap: 0.15rem;
}

#featuredProducts > [class*="col-"] {
  display: flex;
}

#featuredProducts {
  row-gap: 1rem;
}

.product-card-meta-showcase {
  font-size: 0.73rem;
  color: #6e6657;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-card-name-showcase {
  font-size: clamp(0.88rem, 1.85vw, 1.02rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  min-height: 2.6em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.product-card-name-showcase-link:hover {
  color: var(--brand-gold) !important;
}

.product-card-name-showcase-link {
  text-wrap: balance;
}

.product-card--showcase .product-label {
  font-size: 0.58rem;
  padding: 0.28em 0.5em;
  border-radius: 6px;
}

.stock-pill-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.32rem 0.65rem;
  font-size: 0.66rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.stock-pill-chip--out {
  background: #fdecef;
  color: #a21e2e;
}

.stock-pill-chip--low {
  background: #fff6e5;
  color: #8a5b00;
}

.stock-pill-chip--ok {
  background: #e9f6ef;
  color: #15704a;
}

.rating-showcase {
  font-size: 0.74rem;
  line-height: 1;
  opacity: 0.95;
}

.product-card-priceblock {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.65rem;
}

.price-showcase {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-dark);
  letter-spacing: -0.02em;
}

.price-showcase-wrap-old .price-old-showcase {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--brand-muted);
  text-decoration: line-through;
}

.price-discount-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.16rem 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: #8a131f;
  background: #fdecef;
}

.product-card-cta-showcase {
  border-radius: 10px !important;
  font-weight: 600;
  position: relative;
  z-index: 4;
  letter-spacing: 0.01em;
}

.product-card--showcase .product-card-media {
  background: linear-gradient(180deg, #fff 0%, #fbf8f1 100%);
}

.product-oos-ribbon {
  position: absolute;
  left: 0.7rem;
  top: 0.7rem;
  z-index: 4;
  font-size: 0.63rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #7f1220;
  background: rgba(255, 242, 245, 0.96);
  border: 1px solid #f5c3cc;
  border-radius: 999px;
  padding: 0.22rem 0.55rem;
}

.product-card--showcase .btn.disabled,
.product-card--showcase .btn:disabled {
  opacity: 0.65;
  pointer-events: none;
}

/* Premium featured cards (homepage trending) */
.product-card--featured-pro {
  border: 1px solid rgba(215, 204, 174, 0.65);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #fffdfa 0%, #fff 100%);
  box-shadow: 0 16px 42px rgba(17, 17, 17, 0.07);
  min-height: 100%;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.product-card--featured-pro:hover {
  transform: translateY(-5px);
  border-color: rgba(190, 142, 26, 0.5);
  box-shadow: 0 22px 48px rgba(17, 17, 17, 0.11);
}

.product-card-media--featured-pro {
  aspect-ratio: 4 / 3;
  max-height: 260px;
  background:
    radial-gradient(circle at 15% 20%, rgba(190, 142, 26, 0.09) 0%, rgba(190, 142, 26, 0) 34%),
    linear-gradient(180deg, #fffefc 0%, #fbf7ef 100%);
}

.product-card-media--featured-pro .product-img {
  object-fit: contain;
  height: 100%;
  width: 100%;
  padding: 0.85rem;
}

.product-featured-body {
  padding: 1rem 1rem 1.05rem;
}

.product-featured-brand {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 600;
  color: #6f6654;
}

.product-featured-name {
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  line-height: 1.35;
  letter-spacing: 0;
  min-height: 2.7em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-featured-price-row {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  flex-wrap: wrap;
}

.product-featured-price {
  font-size: 1.22rem;
  font-weight: 700;
  color: #181612;
  letter-spacing: -0.02em;
}

.product-featured-old {
  font-size: 0.82rem;
  color: #6e6657;
  text-decoration: line-through;
}

.product-featured-discount {
  border-radius: 999px;
  padding: 0.18rem 0.55rem;
  background: #fdecef;
  color: #8a131f;
  font-size: 0.7rem;
  font-weight: 700;
}

.product-featured-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
}

.product-featured-cta {
  min-width: 8.25rem;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.product-featured-flag {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  z-index: 6;
  border-radius: 999px;
  padding: 0.23rem 0.62rem;
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  border: 1px solid transparent;
}

.product-featured-flag--promo {
  background: rgba(255, 243, 215, 0.95);
  color: #7a5200;
  border-color: #f0d89b;
}

.product-featured-flag--oos {
  background: rgba(255, 240, 244, 0.96);
  color: #7f1220;
  border-color: #efbfc9;
  top: 2.15rem;
}

.product-card--featured-pro-oos .product-card-media--featured-pro .product-img {
  opacity: 0.76;
}

#featuredProducts > [class*="col-"] {
  display: flex;
}

@media (max-width: 575.98px) {
  .product-card-body-showcase {
    padding: 0.95rem 0.9rem 1rem;
  }

  .price-showcase {
    font-size: 1.08rem;
  }

  .product-featured-body {
    padding: 0.9rem 0.9rem 0.95rem;
  }

  .product-featured-foot {
    flex-direction: column;
    align-items: stretch;
  }

  .product-featured-cta {
    width: 100%;
  }
}

.product-card--showcase .wishlist-btn {
  z-index: 5;
}

.product-card--showcase .product-card-media {
  aspect-ratio: 16 / 10;
  max-height: 210px;
}

.product-card--showcase .product-card-media .product-img {
  height: 100%;
  max-height: 210px;
  object-fit: contain;
  padding: 0.45rem;
}

.footer {
  background: #fff;
  border-top: 1px solid var(--border-soft);
}

.summary-card:hover,
.shop-toolbar:hover,
.cart-item:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.checkout-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
}

.checkout-trust small {
  color: #4f4f4f;
}

.cart-summary-sticky {
  position: sticky;
  top: 108px;
}

.cta-banner {
  background: linear-gradient(160deg, #fff 0%, #fcf8ef 100%);
}

.offcanvas .nav-link {
  font-size: 1rem;
  padding: 0.5rem 0;
}

.toast {
  background: #111;
  color: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.toast .btn-close {
  filter: invert(1);
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 1040;
}

.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 72px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 1040;
}

.whatsapp-fab:hover {
  background: #1baa51;
  color: #fff;
}

.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1045;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border-soft);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0.38rem 0.35rem max(0.38rem, env(safe-area-inset-bottom));
}

.mobile-bottom-nav a {
  display: grid;
  justify-items: center;
  gap: 0.12rem;
  color: #3a3a3a;
  font-size: 0.72rem;
  font-weight: 500;
  min-height: 48px;
  padding: 0.45rem 0.25rem;
  border-radius: 8px;
}

.mobile-bottom-nav a i {
  font-size: 1.05rem;
}

.mobile-bottom-nav a.active {
  color: var(--brand-dark);
  background: #f2ede2;
}

.mobile-nav-badge {
  position: absolute;
  top: -0.12rem;
  right: 0.45rem;
  font-size: 0.62rem;
}

.btn-dark {
  border-radius: 10px;
}

.btn-outline-dark {
  border-radius: 10px;
}

.btn {
  font-size: 0.95rem;
  padding: 0.52rem 0.95rem;
}

.btn.btn-sm {
  padding: 0.35rem 0.65rem;
}

.form-control,
.form-select {
  border-radius: 10px;
}

.form-control:focus,
.form-select:focus {
  border-color: #d8bb73;
  box-shadow: 0 0 0 0.2rem rgba(190, 142, 26, 0.16);
}

#activeFilters .badge {
  font-weight: 500;
  padding: 0.5rem 0.7rem;
}

@media (min-width: 576px) {
  .product-card--compact .product-card-media {
    aspect-ratio: 3 / 4;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 74px;
  }

  .hero-image {
    min-height: 270px;
  }

  .page-header {
    margin-bottom: 1rem;
  }

  .cart-summary-sticky {
    position: static;
  }

  .top-promo.top-promo-rich div:nth-child(n + 2) {
    display: none;
  }

  .top-promo.top-promo-rich.expanded div:nth-child(n + 2) {
    display: block;
  }

  .top-promo.top-promo-rich .promo-toggle-btn {
    display: inline-block;
  }

  .back-to-top {
    bottom: 86px;
  }

  .whatsapp-fab {
    bottom: 138px;
  }
}

@media (min-width: 768px) {
  .promo-toggle-btn {
    display: none;
  }
}
