/* ===================================================================
   components-fix.css â€” Missing component styles
   (Compiled from _components.scss lines 270-1585)
   =================================================================== */

/* â”€â”€ Quick View Modal â”€â”€ */
.quickview-overlay {
  position: fixed;
  inset: 0;
  z-index: 1060;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.quickview-overlay--active {
  opacity: 1;
  visibility: visible;
}

.quickview-modal {
  background: #ffffff;
  border-radius: 1rem;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  animation: slideUp 0.3s ease;
}
.quickview-modal__close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 10;
  background: #ffffff;
  border: none;
  font-size: 1.75rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease-in-out;
  color: #6b645e;
}
.quickview-modal__close:hover {
  background: #f7f6f5;
  color: #282c34;
}
.quickview-modal__body {
  padding: 24px;
}
.quickview-modal__loader {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.quickview-modal__error {
  text-align: center;
  color: #d32f2f;
  padding: 32px;
}

.quickview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 768px) {
  .quickview {
    grid-template-columns: 1fr;
  }
}
.quickview__gallery { position: relative; }
.quickview__img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 0.5rem;
}
.quickview__thumbs {
  display: flex;
  gap: 4px;
  margin-top: 8px;
}
.quickview__thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 0.25rem;
  border: 2px solid transparent;
  cursor: pointer;
}
.quickview__thumb:hover { border-color: #b11226; }
.quickview__info { display: flex; flex-direction: column; gap: 8px; }
.quickview__category {
  font-size: 0.875rem;
  text-transform: uppercase;
  color: #8a837d;
  letter-spacing: 0.04em;
}
.quickview__title {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 1.5rem;
  margin: 0;
}
.quickview__rating { display: flex; align-items: center; gap: 0.5rem; }
.quickview__review-count { font-size: 0.875rem; color: #8a837d; }
.quickview__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.quickview__current-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #b11226;
}
.quickview__compare-price {
  font-size: 1.125rem;
  color: #8a837d;
  text-decoration: line-through;
}
.quickview__discount {
  font-size: 0.875rem;
  font-weight: 600;
  color: #d32f2f;
  background: #fce4e4;
  padding: 0.1em 0.5em;
  border-radius: 0.25rem;
}
.quickview__desc {
  color: #6b645e;
  line-height: 1.6;
  font-size: 0.875rem;
}
.quickview__cart-form {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}
.quickview__qty {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.quickview__qty label { font-size: 0.875rem; color: #8a837d; }
.quickview__qty input { width: 60px; }
.quickview__detail-link {
  display: inline-block;
  color: #b11226;
  font-weight: 500;
  text-decoration: none;
  margin-top: 8px;
}
.quickview__detail-link:hover { text-decoration: underline; }

.star { color: #ddd9d6; }
.star--filled { color: #f5a623; }

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #eeeceb;
  border-top-color: #b11226;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* â”€â”€ Lightbox Zoom Overlay â”€â”€ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 1070;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox-overlay--active { opacity: 1; }
.lightbox-overlay__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay__close:hover { opacity: 0.8; }
.lightbox-overlay__container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.lightbox-overlay__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  cursor: zoom-in;
  transition: transform 0.15s ease;
  user-select: none;
}

/* â”€â”€ Stock Urgency â”€â”€ */
.stock-urgency {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.3em 0.7em;
  border-radius: 0.25rem;
  animation: urgencyPulse 2s ease-in-out infinite;
}
.stock-urgency--critical {
  background: #fce4e4;
  color: #b71c1c;
  border: 1px solid #ef9a9a;
}
.stock-urgency--low {
  background: #fff3e0;
  color: #bf360c;
  border: 1px solid #ffcc80;
}
.stock-urgency__icon { font-size: 1.1em; }

@keyframes urgencyPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

/* â”€â”€ Product Trust Badges â”€â”€ */
.product-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #ddd9d6;
}
.product-trust__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b645e;
}
.product-trust__icon { font-size: 1.25rem; }

/* â”€â”€ Trust Badges (legal pages) â”€â”€ */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f7f6f5;
  padding: 8px 16px;
  border-radius: 0.5rem;
  flex: 1;
  min-width: 200px;
}
.trust-badge__icon { font-size: 1.5rem; }
.trust-badge__text {
  font-weight: 600;
  font-size: 0.875rem;
  color: #282c34;
}

/* â”€â”€ Legal Page â”€â”€ */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
}
.legal-page__title { margin-bottom: 8px; }
.legal-page__updated {
  font-size: 0.875rem;
  color: #8a837d;
  font-style: italic;
  margin-bottom: 24px;
}

.shipping-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}
.shipping-table th,
.shipping-table td {
  padding: 8px 16px;
  text-align: left;
  border-bottom: 1px solid #ddd9d6;
}
.shipping-table th {
  background: #f7f6f5;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* â”€â”€ Social Proof Toast â”€â”€ */
.social-proof-toast {
  position: fixed;
  bottom: 100px;
  left: 16px;
  z-index: 1080;
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 380px;
  transform: translateX(-120%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-left: 3px solid #c8a96a;
}
.social-proof-toast--visible {
  transform: translateX(0);
}
.social-proof-toast__img { flex-shrink: 0; }
.social-proof-toast__img img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 0.25rem;
}
.social-proof-toast__icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fdf8f0;
  border-radius: 0.25rem;
}
.social-proof-toast__text {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #4d4843;
}
.social-proof-toast__text strong { color: #282c34; }
.social-proof-toast__product {
  color: #b11226;
  text-decoration: none;
  font-weight: 500;
  display: block;
}
.social-proof-toast__product:hover { text-decoration: underline; }
.social-proof-toast__time {
  display: block;
  font-size: 0.75rem;
  color: #8a837d;
  margin-top: 0.15rem;
}
.social-proof-toast__close {
  position: absolute;
  top: 4px;
  right: 6px;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: #b8b2ad;
  cursor: pointer;
  padding: 2px;
}
.social-proof-toast__close:hover { color: #4d4843; }

@media (max-width: 576px) {
  .social-proof-toast {
    left: 8px;
    right: 8px;
    max-width: none;
  }
}

/* â”€â”€ Scroll-Reveal Animations â”€â”€ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--left {
  transform: translateX(-30px);
}
.reveal--left.is-visible { transform: translateX(0); }
.reveal--right {
  transform: translateX(30px);
}
.reveal--right.is-visible { transform: translateX(0); }
.reveal--scale {
  transform: scale(0.95);
}
.reveal--scale.is-visible { transform: scale(1); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.08s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.16s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.24s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.32s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.40s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.48s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.56s; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 0.64s; }

/* â”€â”€ Skeleton Loading â”€â”€ */
.skeleton {
  background: linear-gradient(90deg, #eeeceb 25%, #f7f6f5 50%, #eeeceb 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border-radius: 0.25rem;
}
.skeleton--text {
  height: 1em;
  width: 80%;
  margin-bottom: 0.5rem;
}
.skeleton--title {
  height: 1.4em;
  width: 60%;
  margin-bottom: 0.75rem;
}
.skeleton--image {
  aspect-ratio: 1/1;
  width: 100%;
  border-radius: 0.5rem;
}
.skeleton--price {
  height: 1.2em;
  width: 40%;
}
.skeleton--card {
  padding: 16px;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* â”€â”€ Quantity Stepper â”€â”€ */
.quantity-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ddd9d6;
  border-radius: 0.5rem;
  overflow: hidden;
}
.quantity-stepper__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background: #f7f6f5;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  color: #282c34;
  transition: background 0.15s ease;
  user-select: none;
}
.quantity-stepper__btn:hover:not(:disabled) { background: #eeeceb; }
.quantity-stepper__btn:active:not(:disabled) { background: #ddd9d6; }
.quantity-stepper__btn:disabled { opacity: 0.35; cursor: not-allowed; }
.quantity-stepper__input {
  width: 3rem;
  text-align: center;
  border: none;
  border-left: 1px solid #ddd9d6;
  border-right: 1px solid #ddd9d6;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.3rem 0;
  -moz-appearance: textfield;
  appearance: textfield;
}
.quantity-stepper__input::-webkit-outer-spin-button,
.quantity-stepper__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

/* â”€â”€ Cart Item Remove Animation â”€â”€ */
.cart-item--removing {
  opacity: 0;
  transform: translateX(40px);
  max-height: 0;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  overflow: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease 0.1s,
              padding 0.3s ease 0.1s, margin 0.3s ease 0.1s;
}

/* â”€â”€ Fly-to-Cart Animation â”€â”€ */
.fly-to-cart {
  position: fixed;
  z-index: 1090;
  width: 60px;
  height: 60px;
  border-radius: 0.5rem;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  pointer-events: none;
  transition: all 0.65s cubic-bezier(0.2, 0.6, 0.3, 1);
}
.fly-to-cart.is-flying {
  opacity: 0;
  transform: scale(0.2);
}

/* â”€â”€ Cart Drawer â”€â”€ */
.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.cart-drawer-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(400px, 90vw);
  height: 100%;
  background: #ffffff;
  z-index: 1060;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.cart-drawer.is-open {
  transform: translateX(0);
}
.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid #ddd9d6;
  flex-shrink: 0;
}
.cart-drawer__title {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 1.25rem;
  margin: 0;
}
.cart-drawer__close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #6b645e;
  padding: 0.25rem;
  display: flex;
}
.cart-drawer__close:hover { color: #282c34; }
.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.cart-drawer__empty {
  text-align: center;
  color: #8a837d;
  padding: 48px 0;
  font-size: 0.875rem;
}
.cart-drawer__item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #f7f6f5;
  align-items: center;
}
.cart-drawer__item:last-child { border-bottom: none; }
.cart-drawer__item-img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 0.25rem;
  flex-shrink: 0;
}
.cart-drawer__item-info {
  flex: 1;
  min-width: 0;
}
.cart-drawer__item-name {
  font-weight: 500;
  font-size: 0.875rem;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
  color: #282c34;
}
.cart-drawer__item-name:hover { color: #b11226; }
.cart-drawer__item-qty {
  font-size: 0.875rem;
  color: #8a837d;
}
.cart-drawer__item-price {
  font-weight: 600;
  color: #b11226;
  font-size: 0.875rem;
  white-space: nowrap;
}
.cart-drawer__footer {
  border-top: 1px solid #ddd9d6;
  padding: 16px 24px;
  flex-shrink: 0;
}
.cart-drawer__total {
  display: flex;
  justify-content: space-between;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.cart-drawer__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* â”€â”€ Product Tabs â”€â”€ */
.product-tabs {
  margin-top: 48px;
  border-top: 1px solid #ddd9d6;
}
.product-tabs__nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #ddd9d6;
  overflow-x: auto;
}
.product-tabs__btn {
  padding: 16px 24px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #8a837d;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.product-tabs__btn:hover { color: #282c34; }
.product-tabs__btn--active {
  color: #b11226;
  border-bottom-color: #b11226;
  font-weight: 600;
}
.product-tabs__panel {
  padding: 24px 0;
  display: none;
  animation: fadeTabIn 0.35s ease;
}
.product-tabs__panel--active {
  display: block;
}

@keyframes fadeTabIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* â”€â”€ btn--success â”€â”€ */
.btn--success {
  background-color: #c8a96a;
  color: #ffffff;
  border-color: #c8a96a;
}
.btn--success:hover:not(:disabled) {
  background-color: #256b29;
  border-color: #256b29;
}

/* â”€â”€ CTA Ripple micro-interaction â”€â”€ */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: rippleEffect 0.6s ease-out forwards;
  pointer-events: none;
}

@keyframes rippleEffect {
  to { transform: scale(4); opacity: 0; }
}

/* â”€â”€ Exit-Intent Popup â”€â”€ */
.exit-intent-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1060;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.exit-intent-backdrop--visible {
  opacity: 1;
  visibility: visible;
}

.exit-intent-modal {
  background: #ffffff;
  border-radius: 1rem;
  max-width: 480px;
  width: 90%;
  padding: 48px 32px;
  text-align: center;
  position: relative;
  transform: translateY(24px) scale(0.95);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.exit-intent-backdrop--visible .exit-intent-modal {
  transform: translateY(0) scale(1);
}
.exit-intent-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #8a837d;
  line-height: 1;
}
.exit-intent-modal__close:hover { color: #282c34; }
.exit-intent-modal__icon {
  font-size: 3rem;
  margin-bottom: 16px;
}
.exit-intent-modal__title {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #282c34;
  margin-bottom: 8px;
}
.exit-intent-modal__text {
  color: #6b645e;
  font-size: 1rem;
  margin-bottom: 24px;
  line-height: 1.6;
}
.exit-intent-modal__code-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #f7f6f5;
  border: 2px dashed #b11226;
  border-radius: 0.5rem;
  padding: 16px;
  margin-bottom: 24px;
}
.exit-intent-modal__code {
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 1.125rem;
  font-weight: 700;
  color: #b11226;
  letter-spacing: 0.1em;
}
.exit-intent-modal__copy-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #8a837d;
  font-size: 1.1rem;
}
.exit-intent-modal__copy-btn:hover { color: #b11226; }
.exit-intent-modal__cta {
  width: 100%;
  margin-bottom: 8px;
}
.exit-intent-modal__dismiss {
  background: none;
  border: none;
  color: #8a837d;
  font-size: 0.875rem;
  cursor: pointer;
  text-decoration: underline;
}
.exit-intent-modal__dismiss:hover { color: #282c34; }

/* â”€â”€ Sticky Add-to-Cart Bar â”€â”€ */
.sticky-atc {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1020;
  background: #ffffff;
  border-top: 1px solid #eeeceb;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.sticky-atc--visible {
  transform: translateY(0);
}
.sticky-atc__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 1.5rem;
}
.sticky-atc__info {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}
.sticky-atc__image {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 0.25rem;
  flex-shrink: 0;
}
.sticky-atc__name {
  font-weight: 600;
  color: #282c34;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.875rem;
}
.sticky-atc__price {
  font-weight: 700;
  color: #b11226;
  font-size: 1.125rem;
  white-space: nowrap;
}
.sticky-atc__btn { flex-shrink: 0; }

@media (max-width: 768px) {
  .sticky-atc__name { display: none; }
  .sticky-atc__image { width: 40px; height: 40px; }
}

/* â”€â”€ Promo / Announcement Bar â”€â”€ */
.promo-bar {
  background: #b11226;
  color: #ffffff;
  text-align: center;
  padding: 8px 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  max-height: 60px;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.35s ease, padding 0.35s ease;
}
.promo-bar--dismissed {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.promo-bar a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 600;
}
.promo-bar a:hover { opacity: 0.85; }
.promo-bar__close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0.7;
  line-height: 1;
}
.promo-bar__close:hover { opacity: 1; }

/* â”€â”€ Free Shipping Progress Bar â”€â”€ */
.free-shipping-progress {
  background: #f7f6f5;
  border-radius: 0.5rem;
  padding: 16px;
  margin-bottom: 24px;
}
.free-shipping-progress__message {
  font-size: 0.875rem;
  color: #4d4843;
  margin-bottom: 8px;
  text-align: center;
}
.free-shipping-progress__message strong { color: #b11226; }
.free-shipping-progress__track {
  height: 8px;
  background: #ddd9d6;
  border-radius: 50rem;
  overflow: hidden;
}
.free-shipping-progress__bar {
  height: 100%;
  background: linear-gradient(90deg, #d4243a, #b11226);
  border-radius: 50rem;
  width: 0;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.free-shipping-progress--done .free-shipping-progress__bar {
  background: linear-gradient(90deg, #c8a96a, #c8a96a);
}
.free-shipping-progress--done .free-shipping-progress__message {
  color: #c8a96a;
  font-weight: 600;
}
.free-shipping-progress--done .free-shipping-progress__message strong {
  color: #c8a96a;
}

/* â”€â”€ Countdown Timer â”€â”€ */
.countdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.countdown__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 42px;
}
.countdown__digit {
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  background: #282c34;
  border-radius: 0.25rem;
  padding: 4px 8px;
  line-height: 1;
  min-width: 40px;
  text-align: center;
}
.countdown__label {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: #8a837d;
  margin-top: 2px;
  letter-spacing: 0.05em;
}
.countdown__separator {
  font-size: 1.25rem;
  font-weight: 700;
  color: #b8b2ad;
  align-self: flex-start;
  padding-top: 4px;
}
.countdown__expired {
  font-weight: 600;
  color: #d32f2f;
  font-size: 0.875rem;
}
.countdown--sm .countdown__digit {
  font-size: 1rem;
  padding: 2px 4px;
  min-width: 28px;
}
.countdown--sm .countdown__label { font-size: 0.55rem; }
.countdown--sm .countdown__separator { font-size: 1rem; }

/* â”€â”€ Checkout Trust Badges â”€â”€ */
.checkout-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 24px 0;
  margin-top: 24px;
  border-top: 1px solid #eeeceb;
}
.checkout-trust__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b645e;
  font-size: 0.875rem;
}
.checkout-trust__icon {
  font-size: 1.5rem;
  color: #c8a96a;
  flex-shrink: 0;
}
.checkout-trust__label {
  line-height: 1.3;
}
.checkout-trust__label strong {
  display: block;
  color: #282c34;
  font-weight: 600;
}
@media (max-width: 576px) {
  .checkout-trust {
    flex-direction: column;
    gap: 16px;
  }
}

/* â”€â”€ Mobile Bottom Navigation Bar â”€â”€ */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1025;
  background: #ffffff;
  border-top: 1px solid #eeeceb;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}
.mobile-bottom-bar--hidden {
  transform: translateY(100%);
}
.mobile-bottom-bar__nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 8px 0;
  padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
}
.mobile-bottom-bar__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  color: #8a837d;
  font-size: 0.65rem;
  font-weight: 500;
  position: relative;
  padding: 4px;
  transition: color 0.2s ease;
}
.mobile-bottom-bar__link:hover,
.mobile-bottom-bar__link--active {
  color: #b11226;
}
.mobile-bottom-bar__icon {
  font-size: 1.35rem;
  line-height: 1;
}
.mobile-bottom-bar__badge {
  position: absolute;
  top: 0;
  right: -2px;
  background: #d32f2f;
  color: #ffffff;
  font-size: 0.6rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 50rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.mobile-bottom-bar__search {
  position: fixed;
  bottom: 56px;
  left: 0;
  right: 0;
  background: #ffffff;
  padding: 16px;
  border-top: 1px solid #eeeceb;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 1024;
}
.mobile-bottom-bar__search--open {
  transform: translateY(0);
  opacity: 1;
}
.mobile-bottom-bar__search input {
  width: 100%;
  padding: 16px;
  border: 2px solid #ddd9d6;
  border-radius: 50rem;
  font-size: 1rem;
}
.mobile-bottom-bar__search input:focus {
  outline: none;
  border-color: #b11226;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .mobile-bottom-bar {
    display: block;
  }
}

/* When mobile bottom bar is present, add padding to body */
@media (max-width: 768px) {
  body { padding-bottom: 64px; }
  .sticky-atc { bottom: 60px; }
}

/*  Mobile header fixes  */
@media (max-width: 768px) {
  /* Réduire taille logo sur mobile pour éviter overflow */
  .site-header__logo img {
    height: 44px !important;
    max-width: 150px !important;
  }
  /* Masquer le lien "Connexion" texte sur mobile (accessible via le menu hamburger) */
  .site-header__actions .btn--sm {
    display: none !important;
  }
}
