/* ═══════════════════════════════════════════════════════════════
   TURMEON — Product Detail Page
   Neobrutalista aesthetic for premium artisanal vermut
   ALL colors use CMS brand CSS variables — no hardcoded hex.
   ═══════════════════════════════════════════════════════════════ */

/* ───────────────────────────────────────────────────────────────
   0. CATALOG HERO — Tighter padding (override webflow)
   Header is sticky (~90px). Default webflow had 140px top padding
   which creates excessive dead space above the pig mascot.
   ─────────────────────────────────────────────────────────────── */
.all-pages-banner.menu-hero {
  padding-top: 22px !important;
  padding-bottom: 34px !important;
}

.products-hero-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
}

.products-hero-kicker {
  font-family: 'Gobold', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mahogany);
}

.products-hero-wrap .all-banner-title {
  max-width: 8ch;
  margin: 0;
  font-family: 'Gobold', sans-serif;
  font-size: clamp(3.3rem, 8vw, 6.1rem);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.products-hero-wrap .all-banner-details {
  max-width: 30rem;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  font-weight: 300;
  line-height: 1.85;
  color: color-mix(in srgb, var(--zeus) 76%, transparent);
}

@media (max-width: 767px) {
  .all-pages-banner.menu-hero {
    padding-top: 14px !important;
    padding-bottom: 24px !important;
  }

  .products-hero-wrap {
    gap: 0.55rem;
  }

  .products-hero-wrap .all-banner-title {
    max-width: 7ch;
    font-size: clamp(2.8rem, 10vw, 4rem);
    line-height: 0.98;
    letter-spacing: 1.6px;
  }

  .products-hero-wrap .all-banner-details {
    max-width: 19rem;
    font-size: 0.98rem;
    line-height: 1.75;
  }
}

/* ───────────────────────────────────────────────────────────────
   1. PRODUCT HERO — Above the fold
   ─────────────────────────────────────────────────────────────── */
.product-detail-hero {
  padding: 3rem 0 4rem;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* ───────────────────────────────────────────────────────────────
   2. IMAGE COLUMN — Left side
   ─────────────────────────────────────────────────────────────── */
.product-detail-image-col {
  position: relative;
}

.product-detail-image-wrap {
  background-color: var(--product-color, var(--white));
  border: 1px solid var(--zeus);
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.product-detail-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-detail-image:hover {
  transform: scale(1.05);
}

/* ───────────────────────────────────────────────────────────────
   3. BADGE — Corner label
   ─────────────────────────────────────────────────────────────── */
.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: inline-block;
  padding: 0.35rem 1rem;
  font-family: var(--_font-famaly---tanker-font-family);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--zeus);
  background-color: var(--saffron-mango);
  border: 1px solid var(--zeus);
  border-radius: 0;
}

/* ───────────────────────────────────────────────────────────────
   3b. GALLERY LIGHTBOX — Fullscreen zoom overlay
   ─────────────────────────────────────────────────────────────── */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9997;
  background: rgba(37, 35, 35, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  transition: background 0.25s ease;
}

.gallery-lightbox.is-visible {
  background: rgba(37, 35, 35, 0.92);
}

.gallery-lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-lightbox.is-visible .gallery-lightbox-inner {
  opacity: 1;
  transform: scale(1);
}

.gallery-lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border: 1px solid var(--zeus);
}

.gallery-lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  width: 2rem;
  height: 2rem;
  background: var(--white);
  border: 1px solid var(--zeus);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.gallery-lightbox-close:hover {
  background: var(--mahogany);
  color: var(--dawn-pink-color);
}

/* ───────────────────────────────────────────────────────────────
   4. GALLERY THUMBNAILS
   ─────────────────────────────────────────────────────────────── */
.product-gallery-thumbs {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  justify-content: center;
}

.product-gallery-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border: 1px solid var(--zeus);
  border-radius: 0;
  cursor: pointer;
  transition: border-color 0.3s ease, transform 0.3s ease;
  background-color: var(--white);
  padding: 0.25rem;
}

.product-gallery-thumb:hover,
.product-gallery-thumb.is-active {
  border-color: var(--mahogany);
  transform: scale(1.08);
}

/* ───────────────────────────────────────────────────────────────
   5. INFO COLUMN — Right side
   ─────────────────────────────────────────────────────────────── */
.product-detail-info-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-category {
  display: inline-block;
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--zeus);
  background-color: var(--product-color, var(--saffron-mango));
  padding: 0.25rem 0.75rem;
  border-radius: 0;
  align-self: flex-start;
}

.product-category--aperitivo {
  background-color: #F6C851;
}

.product-category--sobremesa {
  background-color: #82CE95;
}

.product-detail-title {
  font-family: var(--_font-famaly---tanker-font-family);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--zeus);
  margin: 0;
}

/* ───────────────────────────────────────────────────────────────
   6. PRICE BLOCK
   ─────────────────────────────────────────────────────────────── */
.product-price-block {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.product-price-current {
  font-family: var(--_font-famaly---tanker-font-family);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--mahogany);
  line-height: 1;
}

.product-price-compare {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 1.15rem;
  color: var(--mahogany);
  text-decoration: line-through;
  opacity: 0.6;
}

.product-discount-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background-color: var(--mahogany);
  color: var(--white);
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid var(--zeus);
  vertical-align: middle;
  margin-left: 0.25rem;
}

/* ───────────────────────────────────────────────────────────────
   7. STAR RATING
   ─────────────────────────────────────────────────────────────── */
.product-stars {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.1rem;
  color: var(--saffron-mango);
  letter-spacing: 0.1em;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.product-stars:hover {
  opacity: 0.8;
}

.product-stars-text {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.85rem;
  color: var(--zeus);
  opacity: 0.7;
  margin-left: 0.25rem;
}

/* ───────────────────────────────────────────────────────────────
   8. DESCRIPTION
   ─────────────────────────────────────────────────────────────── */
.product-description {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--zeus);
  margin: 0;
}

/* ───────────────────────────────────────────────────────────────
   9. CTAs — Add to Cart / Buy Now
   ─────────────────────────────────────────────────────────────── */
.product-add-to-cart {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

/* Quantity selector */
.product-quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--zeus);
  border-radius: 0;
  overflow: hidden;
  background-color: var(--white);
  flex-shrink: 0;
}

.product-quantity-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 100%;
  padding: 0;
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--zeus);
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  user-select: none;
}

.product-quantity-btn:hover {
  background-color: var(--white);
  color: var(--mahogany);
}

.product-quantity-value {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 1rem;
  font-weight: 600;
  color: var(--zeus);
  text-align: center;
}

/* CTA buttons — shared base */
.product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  font-family: var(--_font-famaly---tanker-font-family);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--zeus);
  border-radius: 0;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  user-select: none;
  white-space: nowrap;
}

.product-cta:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Primary CTA — mahogany bg, dominant */
.product-cta--primary {
  color: var(--white);
  background-color: var(--mahogany);
  flex: 1;
  padding: 1.15rem 2.5rem;
  font-size: 1.1rem;
  animation: cta-pulse-once 2s ease-in-out 1s 1;
}

@keyframes cta-pulse-once {
  0%, 100% { box-shadow: none; }
  50% { box-shadow: 0 0 0 4px rgba(152, 52, 72, 0.2); }
}

.product-cta--primary:hover:not(:disabled) {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 8px 8px 0 var(--zeus);
}

.product-cta--primary:active:not(:disabled) {
  transform: translateY(0) scale(1);
  box-shadow: none;
}

/* Secondary CTA — outline subordinate */
.product-cta--secondary {
  color: var(--mahogany);
  background-color: transparent;
  border: 1px solid var(--zeus);
  margin-top: 0.5rem;
  width: 100%;
}

.product-cta--secondary:hover:not(:disabled) {
  background-color: var(--mahogany);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 4px 4px 0 var(--zeus);
}

.product-cta--secondary:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: none;
}

/* ───────────────────────────────────────────────────────────────
   10. TRUST SIGNALS
   ─────────────────────────────────────────────────────────────── */
.product-trust-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.25rem;
}

.product-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.8rem;
  color: var(--zeus);
}

.product-trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.product-trust-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ───────────────────────────────────────────────────────────────
   10b. SHIPPING NOTICE — Simple free shipping badge
   ─────────────────────────────────────────────────────────────── */
.product-shipping-notice {
  margin-top: 0.5rem;
}

.product-shipping-notice-free,
.product-shipping-notice-info {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border: 1px solid transparent;
}

.product-shipping-notice-free {
  color: var(--mahogany);
  border-color: color-mix(in srgb, var(--mahogany) 30%, transparent);
  background: color-mix(in srgb, var(--mahogany) 8%, transparent);
}

.product-shipping-notice-info {
  color: var(--zeus);
  border-color: color-mix(in srgb, var(--zeus) 15%, transparent);
  background: color-mix(in srgb, var(--zeus) 4%, transparent);
}

.product-delivery-estimate {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.4rem;
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.8rem;
  color: var(--zeus);
}

.product-delivery-icon {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--mahogany);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.product-delivery-estimate strong {
  color: var(--mahogany);
  text-transform: capitalize;
}

.product-shipping-notice-icon {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ───────────────────────────────────────────────────────────────
   10b1. SOCIAL PROOF — Activity indicators
   ─────────────────────────────────────────────────────────────── */
.social-proof-bar {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 0.6rem;
}

.social-proof-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.78rem;
  color: var(--zeus);
  opacity: 0.7;
}

.social-proof-dot {
  width: 8px;
  height: 8px;
  background-color: var(--mahogany);
  border: 1px solid var(--zeus);
  border-radius: 50%;
  flex-shrink: 0;
  animation: proof-pulse 1.5s ease-in-out infinite;
}

.social-proof-check {
  width: 14px;
  height: 14px;
  stroke: var(--mahogany);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

@keyframes proof-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* ───────────────────────────────────────────────────────────────
   10b2. SCARCITY BADGE — Urgency indicators
   ─────────────────────────────────────────────────────────────── */
.product-scarcity-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  margin-top: 0.5rem;
  background: var(--mahogany);
  color: var(--dawn-pink-color);
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: 1px solid var(--zeus);
  animation: scarcity-pulse 2s ease-in-out infinite;
}

.product-scarcity-icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}

@keyframes scarcity-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

/* Catalog card scarcity badge */
.catalog-scarcity-badge {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.5rem;
  background: var(--mahogany);
  color: var(--dawn-pink-color);
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: 1px solid var(--zeus);
  z-index: 3;
  animation: scarcity-pulse 2s ease-in-out infinite;
}

/* ───────────────────────────────────────────────────────────────
   10c. BENEFITS LIST — Key selling points
   ─────────────────────────────────────────────────────────────── */
.product-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0.25rem;
}

.product-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.85rem;
  color: var(--zeus);
  line-height: 1.3;
}

.product-benefit-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--mahogany);
}

.product-benefit-check svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ───────────────────────────────────────────────────────────────
   10d. STICKY DESKTOP CTA — Appears on scroll (≥992px)
   ─────────────────────────────────────────────────────────────── */
.sticky-desktop-cta {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  padding: 0.65rem 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--zeus);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-100%);
  transition: transform 0.3s ease-out;
}

.sticky-desktop-cta.is-visible {
  transform: translateY(0);
}

.sticky-desktop-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.sticky-desktop-cta-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.sticky-desktop-cta-name {
  font-family: var(--_font-famaly---tanker-font-family);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--zeus);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sticky-desktop-cta-price {
  font-family: var(--_font-famaly---tanker-font-family);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--mahogany);
  flex-shrink: 0;
}

.sticky-desktop-cta-btn {
  flex-shrink: 0;
  padding: 0.65rem 1.75rem;
  font-size: 0.9rem;
}

@media screen and (min-width: 992px) {
  .sticky-desktop-cta {
    display: block;
  }
}

/* ───────────────────────────────────────────────────────────────
   11. QUICK SPECS — Pills row
   ─────────────────────────────────────────────────────────────── */
.product-quick-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.product-spec-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.5rem 1rem;
  background-color: var(--white);
  border: 1px solid var(--zeus);
  border-radius: 0;
  min-width: 90px;
  text-align: center;
}

.product-spec-label {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--zeus);
  opacity: 0.6;
}

.product-spec-value {
  font-family: var(--_font-famaly---tanker-font-family);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--mahogany);
}

/* ───────────────────────────────────────────────────────────────
   12. PRODUCT TABS SECTION
   ─────────────────────────────────────────────────────────────── */
.product-detail-tabs {
  padding: 4rem 0;
  background-color: var(--white);
}

.product-tabs-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.product-tab-heading {
  font-family: var(--_font-famaly---tanker-font-family);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--zeus);
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--zeus);
  display: inline-block;
}

.product-tab-content {
  padding: 0;
}

.product-tab-content p {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--zeus);
  margin: 0;
}

/* Tasting grid */
.product-tasting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-tasting-item {
  background-color: var(--white);
  border: 1px solid var(--zeus);
  border-radius: 0;
  padding: 1.5rem;
}

.product-tasting-item p {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--zeus);
  margin: 0;
}

.product-tasting-label {
  font-family: var(--_font-famaly---tanker-font-family);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--mahogany);
  margin: 0 0 0.5rem;
}

/* Ingredients text */
.product-ingredients-text {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--zeus);
  opacity: 0.85;
}

/* ───────────────────────────────────────────────────────────────
   12b. RECENTLY VIEWED — localStorage-powered
   ─────────────────────────────────────────────────────────────── */
.recently-viewed {
  padding: 2.5rem 0;
  background: color-mix(in srgb, var(--dawn-pink-color) 50%, var(--white));
}

.recently-viewed-heading {
  font-family: var(--_font-family---tanker-font-family, 'Gobold', sans-serif);
  font-size: 1.5rem;
  color: var(--zeus);
  margin-bottom: 1.25rem;
}

.recently-viewed-grid {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
}

.recently-viewed-grid::-webkit-scrollbar {
  display: none;
}

.recently-viewed-card {
  flex: 0 0 140px;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-decoration: none;
  scroll-snap-align: start;
  transition: transform 0.2s ease;
}

.recently-viewed-card:hover {
  transform: translateY(-2px);
}

.recently-viewed-img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid color-mix(in srgb, var(--zeus) 12%, transparent);
  padding: 0.5rem;
}

.recently-viewed-name {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--zeus);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recently-viewed-price {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--mahogany);
}

/* ───────────────────────────────────────────────────────────────
   12c. QUICK-VIEW MODAL — Catalog product preview
   ─────────────────────────────────────────────────────────────── */

/* Quick-view button on catalog cards */
.catalog-quick-view-btn {
  position: absolute;
  top: 0.5rem;
  right: 2.6rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--zeus);
  border-radius: 0;
  box-shadow: 2px 2px 0 var(--zeus);
  cursor: pointer;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.15s ease;
  z-index: 5;
  color: var(--zeus);
  padding: 0;
}

/* Catalog card icon consistency */
.w-dyn-item .wishlist-heart-btn {
  width: 32px;
  height: 32px;
  padding: 0;
  box-shadow: 2px 2px 0 var(--zeus);
}

.w-dyn-item:hover .catalog-quick-view-btn,
.w-dyn-item:focus-within .catalog-quick-view-btn {
  opacity: 1;
  transform: translateY(0);
}

.catalog-quick-view-btn:hover {
  background: var(--saffron-mango);
}

/* Backdrop */
.quick-view-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(37, 35, 35, 0.65);
  z-index: 9998;
  animation: quickViewFadeIn 0.2s ease;
}

/* Modal container */
.quick-view-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  background: var(--white);
  border: 1px solid var(--zeus);
  box-shadow: 8px 8px 0 var(--zeus);
  width: 90vw;
  max-width: 780px;
  max-height: 85vh;
  overflow-y: auto;
  animation: quickViewSlideIn 0.25s ease;
}

/* Close button */
.quick-view-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--zeus);
  box-shadow: 2px 2px 0 var(--zeus);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--zeus);
  z-index: 2;
  padding: 0;
  transition: background 0.15s ease;
}

.quick-view-close:hover {
  background: var(--mahogany);
  color: var(--dawn-pink-color);
}

/* Grid layout: image | info */
.quick-view-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 0;
}

/* Image wrap */
.quick-view-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--dawn-pink-color) 50%, var(--white));
  padding: 2rem;
  border-right: 1px solid var(--zeus);
}

.quick-view-image {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
}

/* Info panel */
.quick-view-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quick-view-category {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0.28rem 0.6rem;
  border: 1px solid var(--zeus);
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--zeus);
  background: var(--saffron-mango);
}

.quick-view-category--aperitivo {
  background: #F6C851;
}

.quick-view-category--sobremesa {
  background: #82CE95;
}

.quick-view-name {
  font-family: var(--_font-family---tanker-font-family, 'Gobold', sans-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--zeus);
  margin: 0;
  line-height: 1.15;
}

.quick-view-price {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--zeus);
  margin-top: 0.25rem;
}

.quick-view-desc {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.85rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--zeus) 75%, transparent);
  margin: 0.5rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Specs pills */
.quick-view-specs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0.5rem 0;
}

.quick-view-spec {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.75rem;
  font-weight: 600;
  background: color-mix(in srgb, var(--dawn-pink-color) 50%, var(--white));
  border: 1px solid color-mix(in srgb, var(--zeus) 15%, transparent);
  color: var(--zeus);
}

/* CTAs */
.quick-view-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 0.75rem;
}

.quick-view-add-btn {
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
  padding: 0.85rem 1.5rem;
}

.quick-view-detail-link {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mahogany);
  text-decoration: none;
  text-align: center;
  transition: color 0.15s ease;
}

.quick-view-detail-link:hover {
  color: var(--zeus);
  text-decoration: underline;
}

/* Quick-view quantity selector */
.quick-view-quantity {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--zeus);
  width: fit-content;
  margin-bottom: 0.75rem;
}

.quick-view-qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border: none;
  background: transparent;
  color: var(--zeus);
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.quick-view-qty-btn:hover {
  background: var(--dawn-pink-color);
}

.quick-view-qty-value {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
  height: 2.2rem;
  border-left: 1px solid var(--zeus);
  border-right: 1px solid var(--zeus);
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--zeus);
}

/* Quick-view added confirmation */
.quick-view-added {
  background: var(--mahogany) !important;
  border-color: var(--zeus) !important;
  color: var(--zeus) !important;
  animation: quickViewConfirm 0.3s ease;
}

@keyframes quickViewConfirm {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Animations */
@keyframes quickViewFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes quickViewSlideIn {
  from {
    opacity: 0;
    transform: translate(-50%, -48%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* Responsive: stack on mobile */
@media screen and (max-width: 640px) {
  .quick-view-modal {
    width: 95vw;
    max-height: 90vh;
  }

  .quick-view-grid {
    grid-template-columns: 1fr;
  }

  .quick-view-image-wrap {
    border-right: none;
    border-bottom: 1px solid var(--zeus);
    padding: 1.5rem;
    max-height: 260px;
  }

  .quick-view-image {
    max-height: 220px;
  }

  .quick-view-info {
    padding: 1.25rem;
  }

  .catalog-quick-view-btn {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ───────────────────────────────────────────────────────────────
   12d. QUICK-VIEW MODAL — Navigation arrows
   ─────────────────────────────────────────────────────────────── */

/* Nav arrows (positioned outside modal on desktop) */
.quick-view-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10000;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--zeus);
  box-shadow: 3px 3px 0 var(--zeus);
  cursor: pointer;
  color: var(--zeus);
  padding: 0;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}

.quick-view-nav:hover:not(:disabled) {
  background: var(--saffron-mango);
}

.quick-view-nav:active:not(:disabled) {
  box-shadow: 1px 1px 0 var(--zeus);
  transform: translateY(calc(-50% + 2px));
}

.quick-view-nav:disabled {
  opacity: 0.25;
  cursor: default;
}

.quick-view-nav--prev {
  left: max(1rem, calc(50% - 420px));
}

.quick-view-nav--next {
  right: max(1rem, calc(50% - 420px));
}

/* Product counter badge */
.quick-view-counter {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--zeus);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--zeus);
  padding: 0.15rem 0.5rem;
  z-index: 2;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 640px) {
  .quick-view-nav {
    position: fixed;
    top: auto;
    bottom: 1rem;
    transform: none;
    width: 44px;
    height: 44px;
  }

  .quick-view-nav--prev {
    left: 1rem;
  }

  .quick-view-nav--next {
    right: 1rem;
  }
}

/* ───────────────────────────────────────────────────────────────
   12e. PRODUCT NAVIGATION BAR — Prev/Next on detail pages
   ─────────────────────────────────────────────────────────────── */

.product-nav {
  background: var(--white);
  border-bottom: 1px solid color-mix(in srgb, var(--zeus) 15%, transparent);
}

.product-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  gap: 1rem;
}

.product-nav-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--zeus);
  text-decoration: none;
  transition: color 0.15s ease;
  max-width: 35%;
}

.product-nav-link:hover {
  color: var(--mahogany);
}

.product-nav-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-nav-link svg {
  flex-shrink: 0;
}

.product-nav-counter {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.75rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--zeus) 45%, transparent);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

@media screen and (max-width: 640px) {
  .product-nav-link {
    font-size: 0;
  }

  .product-nav-link svg {
    width: 20px;
    height: 20px;
  }

  .product-nav-text {
    display: none;
  }

  .product-nav-counter {
    font-size: 0.8rem;
  }
}

/* ───────────────────────────────────────────────────────────────
   13. RELATED PRODUCTS
   ─────────────────────────────────────────────────────────────── */
.product-related {
  padding: 4rem 0 5rem;
  background-color: var(--white);
}

.product-related-heading {
  font-family: var(--_font-famaly---tanker-font-family);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--zeus);
  text-align: center;
  margin: 0 0 2rem;
}

.product-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-related-card {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border: 1px solid var(--zeus);
  border-radius: 0;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 6px 6px 0 var(--zeus);
}

.product-related-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-bottom: 1px solid var(--zeus);
}

.product-related-name {
  font-family: var(--_font-famaly---tanker-font-family);
  font-size: 1rem;
  font-weight: 700;
  color: var(--zeus);
  padding: 0.75rem 1rem 0.25rem;
  margin: 0;
}

.product-related-price {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 1rem;
  font-weight: 700;
  color: var(--mahogany);
  padding: 0 1rem 0.75rem;
}

/* ───────────────────────────────────────────────────────────────
   13b. GALLERY — Video thumb + main media swap
   ─────────────────────────────────────────────────────────────── */
.product-gallery-thumb-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  cursor: pointer;
  flex-shrink: 0;
}

.product-gallery-thumb-wrap .product-gallery-thumb {
  width: 100%;
  height: 100%;
}

.product-gallery-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.product-gallery-play-icon svg {
  width: 10px;
  height: 10px;
  fill: var(--white);
  margin-left: 1px;
}

.product-detail-image-wrap video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-main-media {
  opacity: 1;
  transition: opacity 0.2s ease;
}

.product-main-media.is-swapping {
  opacity: 0;
}

/* ───────────────────────────────────────────────────────────────
   13c. LIFESTYLE EDITORIAL — Video + photo grid
   ─────────────────────────────────────────────────────────────── */
.product-lifestyle {
  padding: 4rem 0;
  background-color: var(--zeus);
  overflow: hidden;
}

.product-lifestyle-heading {
  font-family: var(--_font-famaly---tanker-font-family);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 2rem;
}

.product-lifestyle-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  min-height: 480px;
}

.product-lifestyle-video {
  grid-row: 1 / 3;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-lifestyle-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-lifestyle-photo {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-lifestyle-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.product-lifestyle-photo:hover img {
  transform: scale(1.04);
}

.product-lifestyle-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1rem 0.75rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Fallback: no video, use 3-col photo grid */
.product-lifestyle-grid--photos-only {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
}

.product-lifestyle-grid--photos-only .product-lifestyle-photo:first-child {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

/* ───────────────────────────────────────────────────────────────
   13d. REVIEWS DISTRIBUTION — Star breakdown bars
   ─────────────────────────────────────────────────────────────── */
.reviews-distribution {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
  max-width: 360px;
}

.reviews-dist-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.8rem;
  color: var(--zeus);
}

.reviews-dist-label {
  width: 1.5rem;
  text-align: right;
  font-weight: 600;
  flex-shrink: 0;
}

.reviews-dist-star {
  color: var(--saffron-mango);
  flex-shrink: 0;
}

.reviews-dist-bar {
  flex: 1;
  height: 6px;
  background: color-mix(in srgb, var(--zeus) 10%, transparent);
  overflow: hidden;
}

.reviews-dist-bar-fill {
  height: 100%;
  background: var(--saffron-mango);
  transition: width 0.4s ease;
}

.reviews-dist-count {
  width: 2rem;
  text-align: left;
  opacity: 0.5;
  flex-shrink: 0;
}

/* ───────────────────────────────────────────────────────────────
   14. CART DRAWER — Slide-in from right
   ─────────────────────────────────────────────────────────────── */
.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background-color: var(--black);
  opacity: 0.45;
  cursor: pointer;
  animation: cart-fade-in 0.3s ease forwards;
}

@keyframes cart-fade-in {
  from { opacity: 0; }
  to { opacity: 0.45; }
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  width: 100%;
  max-width: 420px;
  background-color: var(--white);
  border-left: 1px solid var(--zeus);
  display: flex;
  flex-direction: column;
  animation: cart-slide-in 0.3s ease forwards;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.1);
}

@keyframes cart-slide-in {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--zeus);
  flex-shrink: 0;
}

.cart-drawer-title {
  font-family: var(--_font-famaly---tanker-font-family);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--zeus);
  margin: 0;
}

.cart-drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--zeus);
  background: none;
  border: 1px solid var(--zeus);
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  line-height: 1;
}

.cart-drawer-close:hover {
  background-color: var(--mahogany);
  color: var(--white);
  border-color: var(--mahogany);
}

.cart-drawer-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 3rem 1.5rem;
}

.cart-drawer-empty p {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 1rem;
  color: var(--zeus);
  opacity: 0.6;
  margin: 0;
}

/* Cart items list */
.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem 1.5rem;
  margin: 0;
  list-style: none;
}

.cart-drawer-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--zeus);
  position: relative;
}

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

.cart-item-image {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border: 1px solid var(--zeus);
  border-radius: 0;
  flex-shrink: 0;
}

.cart-item-details {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
  min-width: 0;
}

.cart-item-title {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--zeus);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-item-price {
  font-family: var(--_font-famaly---tanker-font-family);
  font-size: 1rem;
  font-weight: 700;
  color: var(--mahogany);
}

.cart-item-quantity {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--zeus);
  border-radius: 0;
  overflow: hidden;
  align-self: flex-start;
  margin-top: 0.25rem;
}

.cart-item-quantity button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--zeus);
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cart-item-quantity button:hover {
  background-color: var(--white);
}

.cart-item-quantity span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--zeus);
}

.cart-item-remove {
  position: absolute;
  top: 1rem;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--zeus);
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.3s ease, color 0.3s ease;
  line-height: 1;
}

.cart-item-remove:hover {
  opacity: 1;
  color: var(--mahogany);
}

/* Shipping progress bar */
.cart-shipping-progress {
  flex-shrink: 0;
  padding: 0.75rem 1.5rem;
  background: color-mix(in srgb, var(--white) 40%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--zeus) 10%, transparent);
}

.cart-shipping-bar-track {
  width: 100%;
  height: 6px;
  background: color-mix(in srgb, var(--zeus) 12%, transparent);
  border-radius: 3px;
  overflow: hidden;
}

.cart-shipping-bar-fill {
  height: 100%;
  background: var(--mahogany);
  border-radius: 3px;
  transition: width 0.4s ease;
}

.cart-shipping-text {
  margin: 0.4rem 0 0;
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.8rem;
  color: var(--zeus);
  text-align: center;
}

.cart-shipping-text strong {
  color: var(--mahogany);
  font-weight: 600;
}

.cart-shipping-free {
  color: var(--mahogany);
  font-weight: 600;
}

/* Cross-sell section */
.cart-crosssell {
  flex-shrink: 0;
  padding: 1rem 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--zeus) 10%, transparent);
}

.cart-crosssell-title {
  font-family: var(--_font-famaly---tanker-font-family);
  font-size: 0.95rem;
  color: var(--zeus);
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.cart-crosssell-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.cart-crosssell-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  padding: 0.5rem;
  border: 1px solid color-mix(in srgb, var(--zeus) 10%, transparent);
  border-radius: 0;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.cart-crosssell-card:hover {
  border-color: var(--mahogany);
  transform: translateY(-1px);
}

.cart-crosssell-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.cart-crosssell-name {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.65rem;
  color: var(--zeus);
  text-align: center;
  line-height: 1.2;
}

.cart-crosssell-price {
  font-family: var(--_font-famaly---tanker-font-family);
  font-size: 0.75rem;
  color: var(--mahogany);
  font-weight: 600;
}

.cart-crosssell-unlock {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.15rem 0.4rem;
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--mahogany);
  background: color-mix(in srgb, var(--mahogany) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--mahogany) 30%, transparent);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Cart footer */
.cart-drawer-footer {
  flex-shrink: 0;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--zeus);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-drawer-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 1rem;
  color: var(--zeus);
}

.cart-drawer-subtotal span:last-child {
  font-family: var(--_font-famaly---tanker-font-family);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--mahogany);
}

.cart-checkout-btn {
  width: 100%;
  text-align: center;
}

/* Gift option in cart */
.cart-gift-wrap {
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid color-mix(in srgb, var(--zeus) 12%, transparent);
}

.cart-gift-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  user-select: none;
}

.cart-gift-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cart-gift-checkmark {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 1px solid var(--zeus);
  background: var(--white);
  position: relative;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.cart-gift-checkbox:checked + .cart-gift-checkmark {
  background: var(--mahogany);
  border-color: var(--mahogany);
}

.cart-gift-checkbox:checked + .cart-gift-checkmark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: 1px solid var(--dawn-pink-color);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.cart-gift-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--zeus);
}

.cart-gift-message {
  display: block;
  width: 100%;
  margin-top: 0.6rem;
  padding: 0.5rem 0.7rem;
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.8rem;
  color: var(--zeus);
  background: var(--white);
  border: 1px solid color-mix(in srgb, var(--zeus) 25%, transparent);
  border-radius: 0;
  resize: vertical;
  min-height: 60px;
  max-height: 120px;
  transition: border-color 0.15s ease;
}

.cart-gift-message:focus {
  outline: none;
  border-color: var(--mahogany);
}

.cart-gift-message::placeholder {
  color: color-mix(in srgb, var(--zeus) 40%, transparent);
}

/* ───────────────────────────────────────────────────────────────
   15. CART ICON — Header floating button
   ─────────────────────────────────────────────────────────────── */
.cart-icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--zeus);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.cart-icon-btn:hover {
  color: var(--mahogany);
}

.cart-icon-btn svg {
  width: 24px;
  height: 24px;
}

.cart-icon-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--zeus);
  background-color: var(--saffron-mango);
  border: 1px solid var(--zeus);
  border-radius: 50%;
  line-height: 1;
}

/* Cart badge pulse animation */
@keyframes cartBadgePulse {
  0%, 100% { transform: scale(1); }
  40% { transform: scale(1.4); }
  70% { transform: scale(0.95); }
}

.cart-badge-pulse,
.cart-icon-badge.cart-badge-pulse {
  animation: cartBadgePulse 0.45s ease;
}

/* ───────────────────────────────────────────────────────────────
   16. STICKY MOBILE CTA — Bottom bar (<992px)
   ─────────────────────────────────────────────────────────────── */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0.75rem 1rem;
  background-color: var(--white);
  border-top: 1px solid var(--zeus);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  align-items: center;
  gap: 0.75rem;
}

.sticky-mobile-cta-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1;
  min-width: 0;
}

.sticky-mobile-cta-name {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--zeus);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sticky-mobile-cta-price {
  font-family: var(--_font-famaly---tanker-font-family);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--mahogany);
}

.sticky-mobile-cta-btn {
  flex-shrink: 0;
  padding: 0.7rem 1.25rem;
  font-size: 0.85rem;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet / Small desktop (max-width: 991px)
   ═══════════════════════════════════════════════════════════════ */
@media screen and (max-width: 991px) {
  /* Hero grid stacks */
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-detail-hero {
    padding: 2rem 0 3rem;
  }

  /* Image column gets max width */
  .product-detail-image-col {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  /* Tasting grid: 1 col on tablet if only 2 items, otherwise stay 3 */
  .product-tasting-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  /* Related: 2 per row */
  .product-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Show sticky mobile CTA */
  .sticky-mobile-cta {
    display: flex;
  }

  /* Add padding at bottom for sticky CTA */
  .product-related {
    padding-bottom: 7rem;
  }

  /* Lifestyle: stack vertical */
  .product-lifestyle-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }

  .product-lifestyle-video {
    grid-row: auto;
    aspect-ratio: 16 / 9;
  }

  .product-lifestyle-grid--photos-only {
    grid-template-columns: 1fr 1fr;
  }

  .product-lifestyle-grid--photos-only .product-lifestyle-photo:first-child {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .product-lifestyle-photo {
    aspect-ratio: 4 / 3;
  }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (max-width: 479px)
   ═══════════════════════════════════════════════════════════════ */
@media screen and (max-width: 479px) {
  .product-detail-hero {
    padding: 1.25rem 0 2rem;
  }

  .product-detail-title {
    font-size: 1.75rem;
  }

  .product-price-current {
    font-size: 1.8rem;
  }

  /* Add to cart stacks */
  .product-add-to-cart {
    flex-direction: column;
  }

  .product-quantity-selector {
    align-self: flex-start;
  }

  /* Trust signals: column */
  .product-trust-signals {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Quick specs: wrap tighter */
  .product-spec-pill {
    min-width: 75px;
    padding: 0.4rem 0.7rem;
  }

  /* Gallery thumbs smaller */
  .product-gallery-thumb {
    width: 56px;
    height: 56px;
  }

  /* Tasting: single column */
  .product-tasting-grid {
    grid-template-columns: 1fr;
  }

  /* Related: single column */
  .product-related-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .product-related-card {
    flex-direction: row;
    align-items: center;
  }

  .product-related-image {
    width: 100px;
    height: 100px;
    aspect-ratio: auto;
    border-bottom: none;
    border-right: 1px solid var(--zeus);
    border-radius: 0;
    flex-shrink: 0;
  }

  .product-related-name,
  .product-related-price {
    padding: 0.25rem 0.75rem;
  }

  .product-related-name {
    padding-top: 0.75rem;
  }

  .product-related-price {
    padding-bottom: 0.75rem;
  }

  /* Tab heading smaller */
  .product-tab-heading {
    font-size: 1.2rem;
  }

  /* Cart drawer full width on mobile */
  .cart-drawer {
    max-width: 100%;
  }

  /* Sticky mobile CTA: tighter */
  .sticky-mobile-cta {
    padding: 0.6rem 0.75rem;
  }

  .sticky-mobile-cta-name {
    font-size: 0.7rem;
  }

  .sticky-mobile-cta-price {
    font-size: 1rem;
  }

  .sticky-mobile-cta-btn {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }

  /* Reviews responsive */
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-header {
    flex-direction: column;
    text-align: center;
  }

  .reviews-aggregate {
    justify-content: center;
  }

  /* Lifestyle mobile */
  .product-lifestyle {
    padding: 2.5rem 0;
  }

  .product-lifestyle-grid--photos-only {
    grid-template-columns: 1fr;
  }

  .product-lifestyle-grid--photos-only .product-lifestyle-photo:first-child {
    grid-column: auto;
  }
}

/* ═══════════════════════════════════════════════════════════════
   REVIEWS SECTION
   ═══════════════════════════════════════════════════════════════ */
.product-reviews {
  padding: 3rem 0;
  background-color: var(--white);
}

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.reviews-heading {
  font-family: var(--_font-famaly---tanker-font-family);
  font-size: 1.8rem;
  text-transform: uppercase;
  color: var(--zeus);
  letter-spacing: 0.02em;
  margin: 0;
}

.reviews-aggregate {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.reviews-stars-large {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}

.star {
  display: inline-block;
}

.star--full {
  color: var(--saffron-mango);
}

.star--half {
  color: var(--saffron-mango);
  opacity: 0.6;
}

.star--empty {
  color: var(--zeus);
  opacity: 0.15;
}

.reviews-average {
  font-family: var(--_font-famaly---tanker-font-family);
  font-size: 1.5rem;
  color: var(--zeus);
}

.reviews-count {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.9rem;
  color: var(--zeus);
  opacity: 0.6;
}

/* Review cards grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.review-card {
  background-color: var(--white);
  border: 1px solid var(--zeus);
  border-radius: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 4px 4px 0 var(--zeus);
}

.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.review-author-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.review-author {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--zeus);
}

.review-verified {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--mahogany);
  background-color: rgba(141, 184, 167, 0.15);
  padding: 0.2rem 0.6rem;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(141, 184, 167, 0.3);
}

.review-stars {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.review-text {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--zeus);
  margin: 0;
}

.review-date {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.75rem;
  color: var(--zeus);
  opacity: 0.45;
  margin-top: auto;
}


/* ═══════════════════════════════════════════════════════════════
   CATEGORY LANDING PAGES
   ═══════════════════════════════════════════════════════════════ */

/* Intro text */
.category-intro-section {
  padding: 3rem 0 1rem;
  background-color: var(--white);
}

.category-intro p {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--zeus);
  margin: 0 0 1rem;
  max-width: 800px;
}

.category-intro p:last-child {
  margin-bottom: 0;
}

/* Section headings */
.category-section-heading {
  font-family: var(--_font-famaly---tanker-font-family);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--zeus);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--zeus);
  display: inline-block;
}

/* Types grid */
.category-types-section {
  padding: 3rem 0;
  background-color: var(--white);
}

.category-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.category-type-card {
  background-color: var(--white);
  border: 1px solid var(--zeus);
  border-radius: 0;
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-type-card:hover {
  transform: translateY(-3px);
  box-shadow: 6px 6px 0 var(--zeus);
}

.category-type-title {
  font-family: var(--_font-famaly---tanker-font-family);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--mahogany);
  margin: 0 0 0.5rem;
}

.category-type-card p {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--zeus);
  margin: 0;
}

/* FAQ */
.category-faq-section {
  padding: 3rem 0;
  background-color: var(--white);
}

.category-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.category-faq-item {
  border: 1px solid var(--zeus);
  border-radius: 0;
  margin-top: -1px;
}

.category-faq-question {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 1rem;
  font-weight: 600;
  color: var(--zeus);
  padding: 1rem 1.25rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease;
}

.category-faq-question::-webkit-details-marker {
  display: none;
}

.category-faq-question::after {
  content: '+';
  font-family: var(--_font-famaly---tanker-font-family);
  font-size: 1.3rem;
  color: var(--mahogany);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.2s ease;
}

.category-faq-item[open] .category-faq-question::after {
  transform: rotate(45deg);
}

.category-faq-question:hover {
  background-color: var(--white);
}

.category-faq-answer {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--zeus);
  padding: 0 1.25rem 1rem;
  margin: 0;
  opacity: 0.85;
}

/* CTA Box */
.category-cta-section {
  padding: 4rem 0;
  background-color: var(--mahogany);
}

.category-cta-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.category-cta-title {
  font-family: var(--_font-famaly---tanker-font-family);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.75rem;
}

.category-cta-text {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--white);
  opacity: 0.85;
  margin: 0 0 1.5rem;
}

.category-cta-section .product-cta--primary {
  background-color: var(--saffron-mango);
  color: var(--zeus);
  border-color: var(--zeus);
}

.category-cta-section .product-cta--primary:hover {
  transform: translateY(-2px);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media screen and (max-width: 479px) {
  .category-types-grid {
    grid-template-columns: 1fr;
  }

  .category-intro p {
    font-size: 0.95rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   CATALOG FILTERS (CatalogIsland)
   ═══════════════════════════════════════════════════════════════ */

.catalog-island {
  width: 100%;
}

.catalog-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.catalog-filter-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.catalog-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--zeus);
  border-radius: 0;
  background: transparent;
  color: var(--zeus);
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background-color var(--tm-dur-instant, 150ms) ease-out,
              color var(--tm-dur-instant, 150ms) ease-out;
}

.catalog-pill:hover {
  background: var(--zeus);
  color: var(--white);
}

.catalog-pill--active {
  background: var(--mahogany);
  border-color: var(--mahogany);
  color: var(--white);
}

.catalog-pill--active:hover {
  background: var(--mahogany);
  border-color: var(--mahogany);
  opacity: 0.9;
}

.catalog-pill-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.3rem;
  height: 1.3rem;
  padding: 0 0.3rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
}

.catalog-pill--active .catalog-pill-count {
  background: rgba(255, 255, 255, 0.25);
}

.catalog-pill--aperitivo.catalog-pill--active {
  background: #F6C851;
  border-color: #F6C851;
  color: var(--zeus);
}

.catalog-pill--aperitivo.catalog-pill--active .catalog-pill-count {
  background: rgba(32, 30, 29, 0.12);
}

.catalog-pill--sobremesa.catalog-pill--active {
  background: #82CE95;
  border-color: #82CE95;
  color: var(--zeus);
}

.catalog-pill--sobremesa.catalog-pill--active .catalog-pill-count {
  background: rgba(32, 30, 29, 0.12);
}

.catalog-sort-select {
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  border: 1px solid var(--zeus);
  border-radius: 0;
  background: transparent;
  color: var(--zeus);
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23252323' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 1rem;
}

.catalog-sort-select:focus {
  outline: 2px solid var(--mahogany);
  outline-offset: 2px;
}

.catalog-results-count {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.85rem;
  color: var(--zeus);
  opacity: 0.6;
  margin-bottom: 1rem;
}

.catalog-page-intro {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.15rem;
}

.catalog-page-text {
  margin: 0;
  max-width: 30rem;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: color-mix(in srgb, var(--zeus) 78%, transparent);
}

.catalog-featured-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 1.5rem;
  padding: clamp(1.25rem, 2.2vw, 2rem);
  margin-bottom: 1.75rem;
  border: 1px solid var(--zeus);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--card-accent, #F6C851) 82%, #fff 18%) 0%, color-mix(in srgb, var(--card-accent, #F6C851) 34%, #E4DACC 66%) 100%);
  overflow: hidden;
}

.catalog-featured-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.65rem;
}

.catalog-featured-title {
  margin: 0;
  font-family: var(--_font-family---tanker-font-family, 'Gobold', sans-serif);
  font-size: clamp(2.2rem, 4vw, 4.25rem);
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--zeus);
  max-width: 9ch;
}

.catalog-featured-text {
  margin: 0;
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 1rem;
  line-height: 1.45;
  color: color-mix(in srgb, var(--zeus) 78%, transparent);
}

.catalog-featured-price {
  font-family: var(--_font-family---tanker-font-family, 'Gobold', sans-serif);
  font-size: clamp(1.5rem, 2.2vw, 2.25rem);
  line-height: 1;
  color: var(--zeus);
}

.catalog-featured-media,
.catalog-card-media {
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
}

.catalog-featured-stage,
.catalog-card-stage {
  position: relative;
  min-height: 100%;
  border: 1px solid rgba(32, 30, 29, 0.16);
  background: linear-gradient(180deg, rgba(228, 218, 204, 0.72), rgba(228, 218, 204, 0.92));
  overflow: hidden;
}

.catalog-featured-stage {
  min-height: 28rem;
  padding: 1.5rem 2rem 1rem;
}

.catalog-featured-stage::after,
.catalog-card-stage::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  width: 42%;
  height: 1.1rem;
  border-radius: 999px;
  background: rgba(32, 30, 29, 0.18);
  filter: blur(10px);
  transform: translateX(-50%);
}

.catalog-featured-image,
.catalog-card-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.catalog-featured-image {
  transform: scale(1.1) translateY(0.3rem);
  transform-origin: center bottom;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.catalog-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1rem;
  border: 1px solid var(--zeus);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--card-accent, #F6C851) 76%, #fff 24%) 0%, color-mix(in srgb, var(--card-accent, #F6C851) 24%, #E4DACC 76%) 100%);
}

.catalog-card-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.catalog-card-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.22rem;
}

.catalog-card-guide {
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  padding: 0.22rem 0.55rem;
  border: 1px solid var(--zeus);
  background: rgba(228, 218, 204, 0.58);
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--zeus);
}

.catalog-card-family {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--zeus) 68%, transparent);
}

.catalog-card-media {
  margin-bottom: 0.95rem;
}

.catalog-card-stage {
  min-height: 19rem;
  padding: 1.25rem 1.2rem 0.7rem;
}

.catalog-card-image {
  transform: scale(1.04) translateY(0.2rem);
  transform-origin: center bottom;
  transition: transform 180ms ease-out;
}

.catalog-product-card:hover .catalog-card-image,
.catalog-featured-card:hover .catalog-featured-image {
  transform: scale(1.08) translateY(0);
}

.catalog-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.catalog-card-name-link {
  color: inherit;
  text-decoration: none;
}

.catalog-card-name {
  margin: 0;
  font-family: var(--_font-family---tanker-font-family, 'Gobold', sans-serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--zeus);
}

.catalog-card-text {
  margin: 0;
  min-height: 2.8em;
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.92rem;
  line-height: 1.45;
  color: color-mix(in srgb, var(--zeus) 74%, transparent);
}

.catalog-card-price {
  margin-top: 0.15rem;
  font-family: var(--_font-family---tanker-font-family, 'Gobold', sans-serif);
  font-size: 1.35rem;
  line-height: 1;
  color: var(--zeus);
}

.catalog-card-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 1rem;
}

.catalog-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.7rem 1rem;
  border: 1px solid var(--zeus);
  text-decoration: none;
  font-family: var(--_font-family---tanker-font-family, 'Gobold', sans-serif);
  font-size: 0.95rem;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease-out, background-color 160ms ease-out, color 160ms ease-out;
}

.catalog-card-cta:hover {
  transform: translateY(-1px);
}

.catalog-card-cta--primary {
  flex: 1;
  background: var(--zeus);
  color: var(--white);
}

.catalog-card-cta--ghost {
  background: rgba(228, 218, 204, 0.4);
  color: var(--zeus);
}

.catalog-card-cta--ghost:hover {
  background: rgba(228, 218, 204, 0.72);
}

/* Badge on catalog cards */
.catalog-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  padding: 0.25rem 0.6rem;
  background: var(--mahogany);
  color: var(--white);
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 767px) {
  .catalog-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .catalog-page-intro {
    justify-content: flex-start;
  }

  .catalog-page-text {
    max-width: 22rem;
  }

  .catalog-featured-card {
    grid-template-columns: 1fr;
  }

  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-filter-pills {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 0.25rem;
  }

  .catalog-filter-pills::-webkit-scrollbar {
    display: none;
  }

  .catalog-pill {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .catalog-sort-select {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .catalog-featured-stage {
    min-height: 22rem;
  }

  .catalog-card-stage {
    min-height: 17rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER TRUST BADGES
   ═══════════════════════════════════════════════════════════════ */

.footer-trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 1.25rem 0;
  margin-bottom: 0;
  border-top: 1px solid var(--zeus);
  flex-wrap: wrap;
}

.footer-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--zeus);
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.65;
  transition: opacity 0.2s ease;
}

.footer-trust-badge:hover {
  opacity: 1;
}

.footer-trust-badge svg {
  flex-shrink: 0;
  color: var(--mahogany);
}

@media (max-width: 479px) {
  .footer-trust-badges {
    gap: 1rem 1.5rem;
  }

  .footer-trust-badge {
    font-size: 0.7rem;
  }

  .footer-trust-badge svg {
    width: 16px;
    height: 16px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   FEATURED SLIDER — Add to Cart Widgets (homepage)
   ═══════════════════════════════════════════════════════════════ */

.featured-atc-slot {
  width: 100%;
}

.featured-atc {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  width: 100%;
}

.featured-atc-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--zeus);
  flex-shrink: 0;
}

.featured-atc-qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border: none;
  background: transparent;
  color: var(--zeus);
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.featured-atc-qty-btn:hover {
  background-color: rgba(0, 0, 0, 0.08);
}

.featured-atc-qty-value {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  height: 1.7rem;
  padding: 0 0.3rem;
  border-left: 1px solid var(--zeus);
  border-right: 1px solid var(--zeus);
  background: var(--white);
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--zeus);
}

.featured-atc-btn {
  flex: 1;
  padding: 0.4rem 0.6rem;
  border: 1px solid var(--zeus);
  background: var(--mahogany);
  color: var(--white);
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
}

.featured-atc-btn:hover {
  background: var(--zeus);
  transform: translateY(-1px);
}

.featured-atc-btn:disabled {
  cursor: default;
  transform: none;
}

.featured-atc-added {
  background: var(--mahogany) !important;
  color: var(--zeus) !important;
  animation: quickViewConfirm 0.3s ease;
}

@media (max-width: 479px) {
  .featured-atc {
    flex-direction: column;
    gap: 0.35rem;
  }

  .featured-atc-qty {
    width: 100%;
    justify-content: center;
  }

  .featured-atc-btn {
    width: 100%;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SEARCH MODAL — Header icon + fullscreen overlay
   ═══════════════════════════════════════════════════════════════ */

/* Header search button */
.search-wrap {
  position: relative;
  margin-right: 0.5rem;
  display: flex;
  align-items: center;
}

.search-header-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--zeus);
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-header-btn:hover {
  color: var(--mahogany);
}

/* Backdrop */
.search-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(37, 35, 35, 0.7);
  z-index: 9998;
  animation: searchFadeIn 0.2s ease;
}

/* Modal */
.search-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  max-width: 640px;
  max-height: 80vh;
  background: var(--white);
  border: 1px solid var(--zeus);
  box-shadow: 8px 8px 0 var(--zeus);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  animation: searchSlideIn 0.25s ease;
  overflow: hidden;
}

/* Close button */
.search-close-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--white);
  border: 1px solid var(--zeus);
  box-shadow: 2px 2px 0 var(--zeus);
  cursor: pointer;
  padding: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease;
  z-index: 1;
}

.search-close-btn:hover {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--zeus);
}

/* Input area */
.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--zeus);
}

.search-input-icon {
  flex-shrink: 0;
  color: var(--zeus);
  opacity: 0.5;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--zeus);
  background: transparent;
}

.search-input::placeholder {
  color: var(--zeus);
  opacity: 0.35;
}

.search-kbd-hint {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.search-kbd-hint span {
  display: inline-block;
  padding: 0.15rem 0.4rem;
  border: 1px solid var(--zeus);
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--zeus);
  opacity: 0.45;
  text-transform: uppercase;
}

/* Results area */
.search-results-wrap {
  overflow-y: auto;
  padding: 1rem 1.25rem;
  flex: 1;
}

.search-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}

/* Result card */
.search-result-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--zeus);
  border: 1px solid var(--zeus);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.search-result-card:hover {
  box-shadow: 4px 4px 0 var(--zeus);
  transform: translate(-2px, -2px);
}

.search-result-img-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--dawn-pink-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-result-img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.search-result-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.5rem 0.6rem;
  border-top: 1px solid var(--zeus);
}

.search-result-category {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mahogany);
}

.search-result-name {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.2;
}

.search-result-price {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--zeus);
  opacity: 0.7;
}

/* Empty state */
.search-empty {
  text-align: center;
  padding: 2rem 1rem;
}

.search-empty-text {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.95rem;
  color: var(--zeus);
  opacity: 0.6;
  margin-bottom: 1rem;
}

.search-empty-link {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: var(--mahogany);
  color: var(--white);
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--zeus);
  box-shadow: 3px 3px 0 var(--zeus);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.search-empty-link:hover {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 var(--zeus);
}

/* Animations */
@keyframes searchFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes searchSlideIn {
  from { transform: translate(-50%, -45%); opacity: 0; }
  to { transform: translate(-50%, -50%); opacity: 1; }
}

/* Mobile */
@media (max-width: 480px) {
  .search-modal {
    width: 95vw;
    max-height: 85vh;
  }

  .search-results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .search-kbd-hint {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   WISHLIST — Heart icons, header badge, favorites page
   ═══════════════════════════════════════════════════════════════ */

/* Heart button (shared) */
.wishlist-heart-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 5;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--zeus);
  padding: 0.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, background 0.2s ease;
}

.wishlist-heart-btn:hover {
  background: rgba(255, 255, 255, 1);
}

.wishlist-heart-btn:active {
  transform: scale(0.85);
}

.wishlist-heart-btn.is-favorited {
  background: rgba(255, 255, 255, 0.95);
  animation: wishlistPop 0.3s ease;
}

.wishlist-heart-md {
  padding: 0.4rem;
}

@keyframes wishlistPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.25); }
  100% { transform: scale(1); }
}

/* Quick-view name row with heart */
.quick-view-name-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.quick-view-name-row .wishlist-heart-btn {
  position: relative;
  top: auto;
  right: auto;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* PDP title row with heart */
.product-title-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.product-title-row .product-detail-title {
  flex: 1;
}

.product-title-row .wishlist-heart-btn {
  position: relative;
  top: auto;
  right: auto;
  flex-shrink: 0;
  margin-top: 0.35rem;
}

/* Homepage slider wishlist slot */
.featured-wishlist-slot {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 5;
}

.featured-wishlist-slot .wishlist-heart-btn {
  position: relative;
  top: auto;
  right: auto;
}

/* Header wishlist icon + badge */
.wishlist-header-wrap {
  position: relative;
  margin-right: 0.5rem;
  display: flex;
  align-items: center;
}

.wishlist-header-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--zeus);
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-decoration: none;
}

.wishlist-header-btn:hover {
  color: var(--mahogany);
}

.wishlist-header-count {
  position: absolute;
  top: -2px;
  right: -4px;
  background-color: var(--mahogany);
  color: var(--white);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  pointer-events: none;
}

/* ── Wishlist page ── */

.wishlist-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.wishlist-card {
  border: 1px solid var(--zeus);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.wishlist-card:hover {
  box-shadow: 4px 4px 0 var(--zeus);
  transform: translate(-2px, -2px);
}

.wishlist-card-link {
  text-decoration: none;
  color: var(--zeus);
  display: flex;
  flex-direction: column;
}

.wishlist-card-img-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--product-color, var(--dawn-pink-color));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.wishlist-card-img {
  width: 75%;
  height: 75%;
  object-fit: contain;
}

.wishlist-card-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.75rem 0.8rem 0.5rem;
  border-top: 1px solid var(--zeus);
}

.wishlist-card-category {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0.22rem 0.45rem;
  border: 1px solid var(--zeus);
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--zeus);
}

.wishlist-card-category--aperitivo {
  background: #F6C851;
}

.wishlist-card-category--sobremesa {
  background: #82CE95;
}

.wishlist-card-name {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}

.wishlist-card-price {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.7;
}

.wishlist-card-actions {
  display: flex;
  align-items: stretch;
  border-top: 1px solid var(--zeus);
}

.wishlist-card-atc-btn {
  flex: 1;
  padding: 0.6rem 0.75rem;
  background: var(--mahogany);
  color: var(--white);
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.wishlist-card-atc-btn:hover {
  background: var(--zeus);
}

.wishlist-card-added {
  background: var(--mahogany) !important;
  color: var(--zeus) !important;
}

.wishlist-card-remove-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.65rem;
  background: transparent;
  border: none;
  border-left: 1px solid var(--zeus);
  cursor: pointer;
  color: var(--zeus);
  opacity: 0.4;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.wishlist-card-remove-btn:hover {
  opacity: 1;
  color: var(--mahogany);
}

/* Empty state */
.wishlist-empty-state {
  text-align: center;
  padding: 3rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wishlist-empty-title {
  font-family: var(--_font-famaly---tanker-font-family);
  font-size: 1.5rem;
  color: var(--zeus);
  margin-bottom: 0.5rem;
}

.wishlist-empty-text {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.95rem;
  color: var(--zeus);
  opacity: 0.55;
  margin-bottom: 1.5rem;
}

.wishlist-empty-cta {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  background: var(--mahogany);
  color: var(--white);
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--zeus);
  box-shadow: 4px 4px 0 var(--zeus);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.wishlist-empty-cta:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--zeus);
}

/* Mobile wishlist */
@media (max-width: 480px) {
  .wishlist-page-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .wishlist-card-info {
    padding: 0.5rem 0.6rem 0.4rem;
  }

  .wishlist-card-name {
    font-size: 0.8rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SHIPPING ESTIMATE — Cart Drawer
   ═══════════════════════════════════════════════════════════════ */

.shipping-estimate {
  margin: 0.75rem 0;
  padding: 0.75rem;
  background: var(--dawn-pink-color);
  border: 1px solid var(--zeus);
  box-shadow: 3px 3px 0 var(--zeus);
}

.shipping-estimate-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.shipping-estimate-header svg {
  flex-shrink: 0;
}

.shipping-estimate-label {
  font-family: var(--_font-famaly---tanker-font-family, 'Gobold', sans-serif);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--zeus);
}

.shipping-estimate-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.shipping-zone-select-wrap {
  flex: 1;
}

.shipping-zone-select {
  width: 100%;
  padding: 0.4rem 0.6rem;
  font-family: var(--_font-famaly---cabinet-grotesk-font-family, 'Poppins', sans-serif);
  font-size: 0.8rem;
  color: var(--zeus);
  background: var(--white);
  border: 1px solid var(--zeus);
  border-radius: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23252323' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  padding-right: 1.8rem;
}

.shipping-zone-select:focus {
  outline: 2px solid var(--saffron-mango);
  outline-offset: 1px;
}

.shipping-estimate-result {
  flex-shrink: 0;
  text-align: right;
}

.shipping-cost {
  font-family: var(--_font-famaly---tanker-font-family, 'Gobold', sans-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--zeus);
}

.shipping-free {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--_font-famaly---tanker-font-family, 'Gobold', sans-serif);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--mahogany);
}

.shipping-free svg {
  flex-shrink: 0;
}

.shipping-estimate-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.4rem;
  gap: 0.5rem;
}

.shipping-weight {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family, 'Poppins', sans-serif);
  font-size: 0.7rem;
  color: var(--zeus);
  opacity: 0.6;
}

.shipping-hint {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family, 'Poppins', sans-serif);
  font-size: 0.7rem;
  color: var(--zeus);
  opacity: 0.6;
  text-align: right;
}

.shipping-hint--free {
  color: var(--mahogany);
  opacity: 0.8;
}
