/* =============================================================
   RDECANTS — COMPONENTS
   All UI component styles. Depends on tokens.css.
   ============================================================= */

/* ── Header ──────────────────────────────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(3, 3, 3, 0.7);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-decoration: none;
  color: inherit;
}

.header-logo span { color: var(--accent); }

.logo-img {
  width: 26px; height: 26px;
  object-fit: contain;
  filter: brightness(1.1);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.header-logo:hover .logo-img {
  opacity: 1;
  transform: scale(1.05);
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 18px;
  letter-spacing: 0.2em;
}

.header-actions {
  display: flex; align-items: center; gap: 16px;
}

/* ── Header global search ───────────────────────────────────── */
.hs-wrap {
  flex: 1;
  max-width: 300px;
  margin: 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 7px 14px;
  transition: border-color 0.2s, background 0.2s;
}

.hs-wrap:focus-within {
  border-color: rgba(201, 169, 110, 0.35);
  background: rgba(255, 255, 255, 0.07);
}

.hs-icon {
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.38);
  flex-shrink: 0;
}

.hs-input {
  flex: 1;
  min-width: 0;
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.hs-input::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.hs-x {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.hs-x:hover { color: var(--white); }

.hs-cancel {
  display: none;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-sans);
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
  padding: 4px 0 4px 8px;
  flex-shrink: 0;
}

.btn-hs-mobile {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  border-radius: 50%;
  transition: color 0.15s, background 0.15s;
}

.btn-hs-mobile:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 768px) {
  .hs-wrap {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    max-width: none;
    margin: 0;
    padding: 13px 16px;
    border-radius: 0;
    background: rgba(3, 3, 3, 0.97);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 600;
    backdrop-filter: blur(20px);
  }

  .hs-wrap.hs-wrap--open {
    display: flex;
  }

  .hs-wrap.hs-wrap--open .hs-cancel {
    display: block;
  }

  .btn-hs-mobile {
    display: flex;
  }
}

.btn-cart {
  background: none;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.2em;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
}

.btn-cart:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.cart-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: none;
}

.cart-dot.visible { display: block; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  height: 100svh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(60px, 10vh, 100px);
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201, 169, 110, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 30% 80%, rgba(30, 30, 60, 0.4) 0%, transparent 60%),
    linear-gradient(170deg, #0a0a14 0%, #030303 60%);
}

.hero-img-wrap {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);   /* centering - JS must not override this */
  width: clamp(300px, 55%, 700px);
  opacity: 0.85;
  will-change: top;
}

.hero-img-wrap.img-shell {
  position: absolute;
}

.hero-img-wrap img {
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 40px 80px rgba(201, 169, 110, 0.2));
  animation: heroFloat 6s ease-in-out infinite;
}

.hero-content {
  position: relative; z-index: 2;
  padding: 0 clamp(20px, 5vw, 80px);
  max-width: 600px;
  animation: heroReveal 1.2s ease 2.6s both;
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.5em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--accent);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(52px, 9vw, 100px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  max-width: 380px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-primary {
  background: var(--white);
  color: var(--black);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 999px;
  transition: var(--transition);
  position: relative; overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-100%);
  transition: 0.6s ease;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.15);
}

.btn-primary:hover::after { transform: translateX(100%); }
.btn-primary:active         { transform: translateY(0) scale(0.98); }

.btn-ghost {
  background: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 0;
  border: none;
  transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
}

.btn-ghost::after {
  content: '→';
  transition: var(--transition);
}

.btn-ghost:hover             { color: var(--white); }
.btn-ghost:hover::after      { transform: translateX(4px); }

.btn-gold {
  background: var(--accent);
  color: var(--black);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 999px;
  transition: var(--transition);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(201, 169, 110, 0.3);
  filter: brightness(1.1);
}

/* ── Layout ──────────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

.section { padding: clamp(92px, 11vw, 148px) 0; }

.section-header {
  margin-bottom: clamp(40px, 6vw, 80px);
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}

.section-label {
  font-size: 10px;
  letter-spacing: 0.5em;
  color: var(--accent);
  text-transform: uppercase;
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

/* ── Intro splash ────────────────────────────────────────────── */
#intro {
  position: fixed; inset: 0;
  background: var(--black);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center; gap: 8px;
  z-index: 9999;
  animation: introFade 0.8s ease 2.2s forwards;
}

.intro-logo {
  font-family: var(--font-serif);
  font-size: clamp(48px, 12vw, 100px);
  font-weight: 300;
  letter-spacing: 0.25em;
  color: var(--white);
  animation: introReveal 1s ease 0.3s both;
}

.intro-sub {
  font-size: 10px;
  letter-spacing: 0.45em;
  color: var(--accent);
  text-transform: uppercase;
  animation: introReveal 1s ease 0.6s both;
}

.intro-line {
  width: 40px; height: 1px;
  background: var(--accent);
  margin-top: 8px;
  animation: introLine 0.8s ease 0.9s both;
}

/* ── Product grid ────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(24px, 3vw, 38px);
  max-width: 100%;
  min-width: 0;
}

/* Compact mobile catalog — desktop always shows the full grid, so the
   "Ver más perfumes" control and the cap are hidden outside mobile. */
.catalog-more { display: none; }

.catalog-more-panel {
  width: min(100%, 360px);
}

.catalog-more-count {
  margin: 0 0 2px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

.catalog-more-btn {
  -webkit-appearance: none;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  min-height: 44px;
  padding: 14px 28px;
  cursor: pointer;
  box-shadow: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.catalog-more-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(201, 169, 110, 0.06);
}

@media (max-width: 768px) {
  .products-grid > .product-card[hidden] { display: none !important; }
  .catalog-more.catalog-more-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin: 26px auto 0;
    padding: 2px 16px 0;
    text-align: center;
  }
  .catalog-more .catalog-count {
    color: rgba(201, 169, 110, 0.72);
    font-size: 10px;
    letter-spacing: 0.16em;
  }
  .catalog-more .catalog-more-btn {
    width: min(100%, 300px);
    min-height: 48px;
    border-color: rgba(201, 169, 110, 0.32);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  }
}

/* ── Product card ────────────────────────────────────────────── */
.product-card {
  background: linear-gradient(
    180deg,
    rgba(16, 16, 16, 0.96) 0%,
    rgba(8, 8, 8, 0.98) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  overflow: hidden;
  transition:
    transform  0.55s cubic-bezier(0.19, 1, 0.22, 1),
    border-color 0.45s ease,
    box-shadow 0.55s ease;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  isolation: isolate;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  min-width: 0;
  width: 100%;
}

.product-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.5;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 169, 110, 0.18);
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(201, 169, 110, 0.08);
}

.card-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--accent);
  color: var(--black);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  z-index: 2;
}

.card-badge.danger {
  background: var(--danger);
  color: white;
}

.card-badge.trend {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid var(--border-hl);
}

.card-img-wrap {
  position: relative;
  height: 250px;
  background:
    radial-gradient(circle at center, rgba(32, 32, 60, 0.55) 0%, rgba(0, 0, 0, 0) 70%),
    linear-gradient(180deg, #101010 0%, #050505 100%);
  overflow: hidden;
}

.card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .card-img-wrap img { transform: scale(1.06); }

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
  min-width: 0;
}

.card-house {
  font-size: 11px;
  letter-spacing: 0.28em;
  opacity: 0.6;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.card-title-row {
  align-items: flex-start;
  display: flex;
  gap: 8px;
  justify-content: space-between;
  margin-bottom: 14px;
  min-width: 0;
}

.card-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  font-family: var(--font-serif);
  font-size: clamp(27px, 2vw, 34px);
  font-weight: 400;
  -webkit-line-clamp: 2;
  line-height: 1.02;
  letter-spacing: 0;
  margin-bottom: 0;
  min-width: 0;
  overflow: hidden;
  overflow-wrap: anywhere;
}

.card-meta-chips,
.pdp-meta-chips,
.pdm-meta-chips {
  align-items: flex-start;
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
  max-width: 44%;
}

.card-concentration,
.card-gender,
.pdp-gender,
.pdm-gender,
.pdm-concentration {
  border: 1px solid rgba(201, 169, 110, 0.28);
  border-radius: 999px;
  color: var(--accent);
  flex: 0 0 auto;
  font-size: 10px;
  letter-spacing: 0.12em;
  line-height: 1;
  padding: 7px 9px;
  text-transform: uppercase;
  max-width: 100%;
}

.card-gender,
.pdp-gender,
.pdm-gender {
  border-color: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.62);
}

.card-story {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.58);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-height: 1.65;
  margin-bottom: 18px;
  overflow: hidden;
}

.card-notes {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-bottom: 20px;
}

.note-tag {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--accent);
  padding: 5px 12px;
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 999px;
}

.card-stock {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px;
  color: var(--danger);
  margin-bottom: 0;
  letter-spacing: 0.08em;
}

.card-stock--ok { color: rgba(255, 255, 255, 0.42); }
.card-stock--ok .stock-dot {
  background: var(--accent);
  animation: none;
}
.card-stock--low { color: var(--accent); }
.card-stock--low .stock-dot { background: var(--accent); }
.card-stock--few { color: var(--accent); }
.card-stock--few .stock-dot { background: var(--accent); }
.card-stock--demand { color: var(--accent); }
.card-stock--demand .stock-dot { background: var(--accent); }
.card-stock--out { color: var(--danger); }

/* ── Purchase guidance chips (beginner orientation) ─────────── */
.card-guidance,
.pdm-guidance {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.pdm-guidance { margin-top: 6px; }

.guidance-chip {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--border-hl);
  border-radius: 999px;
  padding: 5px 11px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ── "¿Por qué esta fragancia?" reasoning block ─────────────── */
.why-block {
  margin: 16px 0 4px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(201, 169, 110, 0.045);
}

.why-heading {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.why-list li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.why-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* ── Modal related products (upsell) ────────────────────────── */
.pdm-related {
  margin: 0 0 20px;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--border);
}

.pdm-related-label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.pdm-related-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.pdm-related-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.pdm-related-card:hover {
  border-color: var(--border-hl);
  transform: translateY(-2px);
}

.pdm-related-img {
  display: block;
  height: 118px;
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(32, 32, 60, 0.5) 0%, rgba(0, 0, 0, 0) 70%),
    #0c0c0c;
}

.pdm-related-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.pdm-related-house {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.pdm-related-name {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.1;
  color: #fff;
}

.pdm-related-price {
  font-size: 12px;
  color: var(--accent);
}

/* ── Modal mobile sizing: keep the buybar above the fold ────── */
@media (max-width: 600px) {
  .pdm-img-panel { max-height: 150px; }
  .pdm-img-wrap { max-height: 150px; }
  .pdm-img { max-height: 138px; }
  .pdm-info-scroll { padding-bottom: 8px; }
}

/* ── Modal "Ver detalles" CTA ───────────────────────────────── */
.pdm-details-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 10px 14px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid rgba(201, 169, 110, 0.32);
  border-radius: 999px;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.pdm-details-cta:hover {
  border-color: var(--accent);
  background: rgba(201, 169, 110, 0.06);
}

/* ── Product detail page (/perfume/{slug}) ──────────────────── */
.pdp-body { background: var(--bg, #030303); }

.pdp-root {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 18px 80px;
}

.pdp-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.pdp-back:hover { color: var(--accent); }

.pdp-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 32px;
}

.pdp-hero-img {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(32, 32, 60, 0.55) 0%, rgba(0, 0, 0, 0) 70%),
    #0c0c0c;
}

.pdp-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 5;
  width: 100%;
}
.pdp-img-wrap--fallback {
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.18), rgba(0,0,0,0.6));
}
.pdp-img {
  max-width: 78%;
  max-height: 78%;
  object-fit: contain;
}

.pdp-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid var(--border-hl);
  color: var(--accent);
  z-index: 2;
}

.pdp-house {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 8px;
}

.pdp-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.pdp-name {
  font-family: var(--font-serif);
  font-size: 36px;
  line-height: 1.05;
  color: #fff;
  margin: 0;
  font-weight: 400;
}

.pdp-concentration,
.pdp-gender {
  border: 1px solid rgba(201, 169, 110, 0.28);
  border-radius: 999px;
  color: var(--accent);
  font-size: 10px;
  letter-spacing: 0.12em;
  line-height: 1;
  padding: 7px 9px;
  text-transform: uppercase;
}

.pdp-gender {
  border-color: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.62);
}

.pdp-story {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 18px;
}

.pdp-guidance {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 14px;
}

.pdp-buybar {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid var(--border-hl);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(180deg, rgba(201, 169, 110, 0.07), rgba(255, 255, 255, 0.02));
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.38);
}

.pdp-sizes-label,
.pdp-price-consult {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.pdp-sizes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 16px;
}

.pdp-size-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 8px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  text-align: center;
}
.pdp-size-btn:hover { border-color: var(--border-hl); }
.pdp-size-btn--active {
  border-color: var(--accent);
  background: rgba(201, 169, 110, 0.08);
}
.pdp-size-btn--disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.pdp-size-ml { font-size: 12px; color: #fff; }
.pdp-size-price { font-size: 13px; color: var(--accent); }
.pdp-size-label {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.pdp-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
}
.pdp-price {
  font-family: var(--font-serif);
  font-size: 26px;
  color: #fff;
}
.pdp-price-unit {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.pdp-stock { margin-bottom: 14px; }

.pdp-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.pdp-btn-add { width: 100%; }
.pdp-btn-wa {
  width: 100%;
  padding: 12px 16px;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 0.2s ease;
}
.pdp-btn-wa:hover { filter: brightness(1.08); }

.pdp-intelligence { margin-bottom: 32px; }

.pdp-section-h {
  font-family: var(--font-serif);
  font-size: 22px;
  color: #fff;
  margin: 0 0 16px;
  font-weight: 400;
}

.pdp-related-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.pdp-related-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.pdp-related-card:hover {
  border-color: var(--border-hl);
  transform: translateY(-2px);
}
.pdp-related-img {
  display: block;
  height: 118px;
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(32, 32, 60, 0.5) 0%, rgba(0, 0, 0, 0) 70%),
    #0c0c0c;
}
.pdp-related-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}
.pdp-related-house {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.pdp-related-name {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.1;
  color: #fff;
}
.pdp-related-price {
  font-size: 12px;
  color: var(--accent);
}

.pdp-empty {
  text-align: center;
  padding: 60px 16px;
}

/* ── PDP editorial blocks ───────────────────────────────────── */
.pdp-root {
  /* Extra bottom padding so the sticky CTA + WhatsApp float never
     cover the last related card / buy section. */
  padding-bottom: 140px;
}

.pdp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}
.pdp-hero-price {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.78);
}
.pdp-hero-price strong {
  color: #fff;
  font-weight: 500;
}
.pdp-jump-buy {
  padding: 11px 22px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 999px;
  background: var(--accent);
  color: #0c0c0c;
  border: 1px solid var(--accent);
  cursor: pointer;
}
.pdp-jump-buy:hover { filter: brightness(1.08); }

.pdp-novice,
.pdp-buy {
  margin-bottom: 28px;
}

/* ── Novice-first guide (¿Por qué te puede gustar?) ─────────────── */
.pdp-novice-lead {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 14px;
  max-width: 60ch;
}
.pdp-returning {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--accent);
  margin: 0 0 14px;
  padding: 10px 14px;
  border-left: 2px solid var(--accent);
  background: rgba(201, 169, 110, 0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.pdp-returning[hidden] { display: none; }

/* Why bullets folded into the sell/guide section (reuse .why-list). */
.pdp-why-list { margin: 0 0 16px; }

.pdp-bestfor {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pdp-bestfor-chip {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--border-hl);
  border-radius: 999px;
  padding: 7px 14px;
  line-height: 1;
}
.pdp-bestfor-chip--beginner {
  color: var(--accent);
  border-color: rgba(201, 169, 110, 0.45);
  background: rgba(201, 169, 110, 0.08);
}

.pdp-notfor-line {
  margin: 14px 0 0;
  padding-left: 18px;
  position: relative;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}
.pdp-notfor-line::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--muted);
}

/* ── Technical profile pushed lower & made opt-in ───────────────── */
.pdp-tech {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.015);
  padding: 0 18px;
  margin-bottom: 28px;
}
.pdp-tech-summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.pdp-tech-summary::-webkit-details-marker { display: none; }
.pdp-tech-summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  font-size: 18px;
  color: var(--muted);
}
.pdp-tech[open] .pdp-tech-summary::after { content: "–"; }
.pdp-tech-summary { position: relative; }
.pdp-tech-summary-t {
  font-family: var(--font-serif);
  font-size: 17px;
  color: #fff;
}
.pdp-tech-summary-d {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.pdp-tech-body { padding-bottom: 12px; }

/* ── Recommended size emphasis ──────────────────────────────────── */
.pdp-size-btn { position: relative; }
.pdp-size-btn--recommended { border-color: rgba(201, 169, 110, 0.4); }
.pdp-size-flag {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1a1a1a;
  background: var(--accent);
  border-radius: 999px;
  padding: 3px 8px;
  white-space: nowrap;
  line-height: 1;
}

/* ── Score band labels (text alongside bars) ────────────────── */
.fp-bar {
  grid-template-columns: minmax(96px, auto) 1fr auto;
}
.fp-bar-band {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}
@media (max-width: 480px) {
  .fp-bar { grid-template-columns: 1fr auto; gap: 4px 10px; align-items: center; }
  .fp-bar-label { grid-column: 1 / 2; }
  .fp-bar-band { grid-column: 2 / 3; justify-self: end; }
  .fp-bar-track { grid-column: 1 / 3; }
}

/* ── Discovery Sets (¿No sabes cuál elegir?) ───────────────────── */
.ds-head {
  margin-bottom: 28px;
  max-width: 480px;
}
.ds-head-copy {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 10px 0 0;
}

.ds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.ds-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s ease;
}
.ds-card:hover { border-color: var(--border-hl); }

.ds-card-theme {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}
.ds-card-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin: 0;
}
.ds-card-copy {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.ds-card-items {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}
.ds-card-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4px 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.ds-card-item:last-child { border-bottom: none; }
.ds-card-item-house {
  grid-column: 1;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.ds-card-item-name {
  grid-column: 1;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
}
.ds-card-item-price {
  grid-column: 2;
  grid-row: 1 / 3;
  font-size: 12px;
  color: var(--accent);
  white-space: nowrap;
  align-self: center;
}

.ds-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.ds-card-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ds-card-price-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.ds-card-price-total {
  font-family: var(--font-serif);
  font-size: 18px;
  color: #fff;
}
.ds-card-add {
  flex: 0 0 auto;
  padding: 10px 18px;
  font-size: 11px;
}

/* Merged "Kits para empezar": mobile shows 3 kits, the rest behind "Ver más kits" */
.ds-more {
  display: none;
  margin: 22px auto 0;
  width: max-content;
  max-width: 100%;
  padding: 12px 26px;
  background: transparent;
  border: 1px solid var(--border-hl);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.ds-more:hover { border-color: var(--accent); color: #fff; }

@media (max-width: 768px) {
  .ds-grid:not(.is-expanded) .ds-card:nth-child(n + 4) { display: none; }
  .ds-more { display: block; }
}

/* PDP fallback: compact 2-col layout */
.ds-pdp-fallback .ds-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.ds-pdp-fallback .ds-card {
  padding: 16px;
}

@media (max-width: 480px) {
  .ds-grid { grid-template-columns: 1fr; }
  .ds-card-foot { flex-direction: column; align-items: flex-start; }
  .ds-card-add { width: 100%; text-align: center; }
}

/* ── PDP confidence badge (surfaced in the hero) ─────────────────── */
.pdp-conf-badge {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(201, 169, 110, 0.45);
  background: rgba(201, 169, 110, 0.08);
  color: var(--accent);
  width: fit-content;
  margin: 2px 0 10px;
}
.pdp-conf-badge--demand { border-color: rgba(255, 200, 100, 0.45); }
.pdp-conf-badge--top    { border-color: rgba(201, 169, 110, 0.65); background: rgba(201, 169, 110, 0.13); }

/* Decant reassurance inside buy section */
.pdp-decant-reassurance {
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
  margin: 4px 0 0;
  font-style: italic;
}

/* ── PDP collection pairs "Combina bien con" ─────────────────────── */
.pdp-pairs { margin-bottom: 28px; }

.pdp-pairs-reason {
  font-size: 12.5px;
  color: var(--muted);
  margin: -10px 0 14px;
  line-height: 1.5;
}

.pdp-pairs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pdp-pair-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: border-color 0.2s ease;
  text-align: left;
}
.pdp-pair-card:hover { border-color: var(--border-hl); }

.pdp-pair-img {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
}
.pdp-pair-img img { width: 100%; height: 100%; object-fit: cover; }
.pdp-pair-img--fallback::after {
  content: "R";
  font-family: var(--font-serif);
  font-size: 16px;
  color: rgba(255,255,255,0.15);
}

.pdp-pair-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.pdp-pair-house {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pdp-pair-name {
  font-size: 12.5px;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pdp-pair-price {
  font-size: 11px;
  color: var(--accent);
}

.pdp-pair-add {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  padding: 0;
  font-size: 18px;
  line-height: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 420px) {
  .pdp-pairs-row { grid-template-columns: 1fr; }
}

/* ── Taste Builder (Descubre tu estilo) ─────────────────────────── */
.tb-head {
  text-align: center;
  margin-bottom: 28px;
}
.tb-intro {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin: 10px 0 0;
}

.tb-stage {
  display: flex;
  justify-content: center;
  min-height: 460px;
}

/* Card */
.tb-card {
  width: 100%;
  max-width: 340px;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.025);
  transition: transform 0.34s cubic-bezier(.25,.8,.25,1), opacity 0.34s ease;
}

/* Exit animations */
.tb-exit--like    { transform: translateX(130%) rotate(12deg);  opacity: 0; pointer-events: none; }
.tb-exit--dislike { transform: translateX(-130%) rotate(-12deg); opacity: 0; pointer-events: none; }
.tb-exit--skip    { transform: translateY(-28px);                opacity: 0; pointer-events: none; }

/* Image */
.tb-card-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tb-card-img img { width: 100%; height: 100%; object-fit: cover; }
.tb-card-img--fallback::after {
  content: "R";
  font-family: var(--font-serif);
  font-size: 72px;
  color: rgba(255, 255, 255, 0.07);
}

/* Card body */
.tb-card-body {
  padding: 16px 20px 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tb-card-house {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.tb-card-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  margin: 0;
  line-height: 1.25;
}
.tb-hints {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.tb-hint {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 10px;
}
.tb-price {
  font-size: 12px;
  color: var(--accent);
  margin: 6px 0 0;
}

/* Action buttons */
.tb-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px 10px;
}
.tb-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  transition: transform 0.14s ease;
}
.tb-btn:active { transform: scale(0.88); }
.tb-btn--dislike,
.tb-btn--like {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--border);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.14s ease;
}
.tb-btn--like    { border-color: rgba(201, 169, 110, 0.35); background: rgba(201, 169, 110, 0.05); }
.tb-btn--dislike:hover { border-color: rgba(255, 80, 80, 0.45);  background: rgba(255, 80, 80, 0.07); }
.tb-btn--like:hover    { border-color: var(--accent);             background: rgba(201, 169, 110, 0.14); }
.tb-btn--skip {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 12px;
}
.tb-btn--skip:hover { color: rgba(255, 255, 255, 0.65); }

.tb-progress {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  padding-bottom: 14px;
  margin: 0;
}

/* Done state */
.tb-done {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 48px 24px;
  text-align: center;
  max-width: 320px;
}
.tb-done-icon {
  font-size: 30px;
  color: var(--accent);
  margin: 0;
}
.tb-done-h {
  font-family: var(--font-serif);
  font-size: 22px;
  color: #fff;
  margin: 0;
}
.tb-done-copy {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
  line-height: 1.55;
}

.tb-reset-link {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-decoration: underline;
  padding: 4px;
  margin-top: 4px;
}
.tb-reset-link:hover { color: rgba(255,255,255,0.55); }
.tb-reset-msg {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  padding: 24px;
}

@media (max-width: 400px) {
  .tb-card { border-radius: 16px; }
  .tb-card-img { height: 200px; }
  .tb-btn--dislike, .tb-btn--like { width: 50px; height: 50px; font-size: 20px; }
}

/* ── Sticky mini-buy CTA (appears after hero scrolls out) ───── */
.pdp-sticky-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(12, 12, 12, 0.92);
  border: 1px solid var(--border-hl);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.55);
  transform: translateY(140%);
  transition: transform 0.32s ease;
  z-index: 80;
  pointer-events: none;
}
.pdp-sticky-cta--open {
  transform: translateY(0);
  pointer-events: auto;
}
.pdp-sticky-cta-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.pdp-sticky-cta-name {
  font-family: var(--font-serif);
  font-size: 14px;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pdp-sticky-cta-price {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
}
.pdp-sticky-cta-btn {
  padding: 10px 18px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .pdp-sticky-cta { left: auto; right: 24px; bottom: 24px; max-width: 380px; }
}

/* Ensure WhatsApp float and sticky CTA share the corner gracefully */
@media (max-width: 767px) {
  .pdp-sticky-cta--open ~ .whatsapp-float,
  body:has(.pdp-sticky-cta--open) .whatsapp-float {
    bottom: 90px;
  }
}

@media (min-width: 768px) {
  .pdp-hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: start;
  }
  .pdp-name { font-size: 44px; }
  .pdp-related-row { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ── Fragrance Profile (advisor blocks in modal) ────────────── */
.fp-block {
  margin: 18px 0 0;
  padding: 16px 16px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
}

.fp-block + .fp-block { margin-top: 12px; }

.fp-heading {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
  font-weight: 500;
}

.fp-rows {
  display: grid;
  grid-template-columns: minmax(96px, auto) 1fr;
  gap: 8px 14px;
  margin: 0;
}

.fp-row { display: contents; }

.fp-row-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.fp-row-value {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.86);
  margin: 0;
  line-height: 1.5;
}

.fp-sentence {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.fp-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
}

.fp-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.3;
}

.fp-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.42);
  color: var(--accent);
  font-size: 10px;
  flex: 0 0 auto;
}

.fp-bars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fp-bar {
  display: grid;
  grid-template-columns: minmax(96px, auto) 1fr;
  align-items: center;
  gap: 12px;
}

.fp-bar-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.fp-bar-track {
  display: block;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  position: relative;
}

.fp-bar-fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg,
    rgba(201, 169, 110, 0.55) 0%,
    var(--accent) 100%);
  transition: width 0.4s ease;
}

@media (max-width: 480px) {
  .fp-rows { grid-template-columns: 1fr; gap: 4px 0; }
  .fp-row-label { margin-top: 6px; }
  .fp-checklist { grid-template-columns: 1fr; }
  .fp-bar { grid-template-columns: 1fr; gap: 4px; }
}

/* ── Cart add-on upsells ────────────────────────────────────── */
.cart-upsells {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.cart-minimum {
  margin-bottom: 16px;
  padding: 14px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(201, 169, 110, 0.13), rgba(201, 169, 110, 0.045));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.cart-minimum-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.35;
}

.cart-minimum-head strong {
  color: var(--accent);
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 400;
}

.cart-minimum-bar,
.checkout-progress {
  display: block;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.cart-minimum-bar span,
.checkout-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(201, 169, 110, 0.72), var(--accent));
  transition: width 0.3s ease;
}

.cart-minimum p {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.5;
}

.cart-upsell-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.cart-upsell-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.cart-upsell-img {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  background: #0c0c0c;
}

.cart-upsell-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.cart-upsell-info {
  flex: 1;
  min-width: 0;
}

.cart-upsell-house {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.cart-upsell-name {
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-upsell-meta {
  font-size: 12px;
  color: var(--accent);
}

.cart-upsell-add {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border-hl);
  background: transparent;
  color: var(--accent);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.cart-upsell-add:hover {
  background: var(--accent);
  color: var(--black);
}

.card-purchase {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  max-width: 100%;
  margin-top: auto;
  min-width: 0;
}

.card-purchase > div {
  min-width: 0;
}

.card-price {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-price small {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--muted);
  margin-left: 4px;
}

.card-action {
  max-width: 100%;
  flex: 0 0 auto;
  padding: 12px 18px;
  box-sizing: border-box;
}

.card-action:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.stock-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--danger);
  animation: pulse 1.5s ease-in-out infinite;
}

.sizes {
  display: flex; gap: 8px;
  flex-wrap: wrap;
}

.size-btn {
  flex: 1; min-width: 60px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: rgba(255, 255, 255, 0.7);
  padding: 14px 10px;
  border-radius: var(--radius-sm);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-align: center;
  transition: var(--transition);
  line-height: 1.4;
}

.size-btn .ml    { display: block; font-size: 15px; font-weight: 500; color: var(--white); }
.size-btn .price { display: block; font-size: 12px; color: var(--accent); margin-top: 2px; }
.size-btn .cta   { display: block; font-size: 10px; color: var(--muted); margin-top: 2px; letter-spacing: 0.08em; }

.size-btn:hover,
.size-btn.popular {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.size-btn.popular .ml,
.size-btn.popular .price,
.size-btn.popular .cta,
.size-btn:hover .ml,
.size-btn:hover .price,
.size-btn:hover .cta { color: var(--black); }

.size-btn--disabled,
.size-btn--disabled:hover {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(201, 169, 110, 0.16);
  color: rgba(255, 255, 255, 0.45);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.size-btn--disabled .ml,
.size-btn--disabled .price,
.size-btn--disabled .cta,
.size-btn--disabled:hover .ml,
.size-btn--disabled:hover .price,
.size-btn--disabled:hover .cta {
  color: rgba(201, 169, 110, 0.78);
}

/* ── Featured product ────────────────────────────────────────── */
.featured-section {
  background: var(--deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  min-height: 500px;
}

.featured-img {
  position: relative;
  height: 500px;
  background: linear-gradient(135deg, #0d0d14, #0a0a0a);
  overflow: hidden;
}

.featured-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 40px;
  transition: transform 0.8s ease;
}

.featured-img:hover img { transform: scale(1.05); }

.featured-info { padding: clamp(40px, 6vw, 80px); }

.featured-tag {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.4em;
  color: var(--accent);
  text-transform: uppercase;
  border: 1px solid rgba(201, 169, 110, 0.3);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.featured-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 16px;
}

.featured-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
  margin-bottom: 32px;
}

.featured-price {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 32px;
}

.featured-price small {
  font-size: 14px;
  color: var(--muted);
  font-family: var(--font-sans);
}

/* ── Packs ───────────────────────────────────────────────────── */
.packs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.pack-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pack-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: var(--transition);
}

.pack-card:hover {
  border-color: var(--border-hl);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pack-card:hover::before { opacity: 1; }

.pack-badge {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--accent);
  border: 1px solid rgba(201, 169, 110, 0.3);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.pack-emoji {
  font-size: 40px;
  margin-bottom: 16px;
}

.pack-name {
  font-family: var(--font-serif);
  font-size: clamp(42px, 3vw, 54px);
  font-weight: 400;
  line-height: 0.9;
  margin-bottom: 14px;
}

.pack-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
  margin-bottom: 6px;
}

.pack-detail {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.pack-pricing {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 20px;
}

.pack-price-now {
  font-family: var(--font-serif);
  font-size: 46px;
  font-weight: 300;
  color: var(--accent);
}

.pack-price-was {
  font-size: 16px;
  color: var(--muted);
  text-decoration: line-through;
}

.pack-stock {
  font-size: 10px;
  color: var(--danger);
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 20px;
}

/* ── Trust grid ──────────────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.trust-item {
  background: var(--card-bg);
  padding: 36px 28px;
  text-align: center;
}

.trust-icon  { font-size: 28px; margin-bottom: 14px; }

.trust-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 8px;
}

.trust-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Reviews ─────────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.review-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
}

.review-card:hover { border-color: var(--border-hl); }

.review-stars {
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-text {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.review-author {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ── Cart drawer ─────────────────────────────────────────────── */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.cart-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  height: 100svh;
  width: min(440px, 100vw);
  max-width: 440px;
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 169, 110, 0.055), transparent 34%),
    #080808;
  border-left: 1px solid var(--border);
  z-index: 1210;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: var(--transition);
  box-shadow: -20px 0 80px rgba(0, 0, 0, 0.8);
  overflow: hidden;
  overscroll-behavior: contain;
}

.cart-drawer.active { transform: translateX(0); }

.cart-header {
  padding: 24px 24px 18px;
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 14px;
  flex: 0 0 auto;
}

.cart-header-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.cart-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 300;
}

.cart-subtitle {
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5);
}

.cart-close {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--white);
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}

.cart-close:hover {
  background: var(--white);
  color: var(--black);
  transform: rotate(90deg);
}

.cart-items {
  flex: 1; overflow-y: auto;
  min-height: 0;
  padding: 16px 18px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.cart-section {
  background: rgba(255, 255, 255, 0.022);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 14px;
}

.cart-products-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  border-color: rgba(255, 255, 255, 0.1);
}

.cart-section-label,
.cart-summary-title {
  display: block;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(201, 169, 110, 0.9);
  text-transform: uppercase;
}

.cart-section-label {
  margin-bottom: 12px;
}

.cart-product-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-empty {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  min-height: 100%;
  gap: 12px;
  color: var(--muted);
}

.cart-empty-icon  {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(201, 169, 110, 0.22);
  border-radius: 50%;
  color: var(--accent);
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-size: 24px;
}

.cart-empty-title {
  font-family: var(--font-serif);
  font-size: 20px;
}

.cart-empty-desc { font-size: 12px; }

.cart-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.016));
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 12px;
  transition: var(--transition);
}

.cart-item:hover { border-color: var(--border-hl); }

.cart-item-info { flex: 1; }

.cart-item-house {
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.cart-item-name {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 8px;
}

.cart-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.cart-item-meta span {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1;
  padding: 6px 9px;
}

.cart-stock-note {
  color: rgba(201, 169, 110, 0.9);
  font-size: 11px;
  line-height: 1.35;
  margin: -2px 0 7px;
}

.cart-item-price {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--accent);
  line-height: 1;
}

.cart-item-controls {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 8px;
}

.qty-controls {
  display: flex; align-items: center; gap: 8px;
}

.qty-btn {
  width: 26px; height: 26px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--white);
  border-radius: 6px;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}

.qty-btn:hover {
  background: var(--white);
  color: var(--black);
}

.qty-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.qty-num { font-size: 13px; min-width: 16px; text-align: center; }

.remove-btn {
  background: none;
  color: rgba(255, 255, 255, 0.2);
  font-size: 16px;
  transition: var(--transition);
}

.remove-btn:hover { color: var(--danger); }

.cart-footer {
  padding: 16px 20px 20px;
  border-top: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(12, 12, 12, 0.92), rgba(5, 5, 5, 0.98));
  max-height: 68svh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.cart-drawer--empty .cart-footer {
  display: none;
}

.cart-drawer--empty .cart-items {
  padding: 24px;
}

.checkout-panel {
  margin-bottom: 12px;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(201, 169, 110, 0.075), rgba(255, 255, 255, 0.026));
  border: 1px solid rgba(201, 169, 110, 0.24);
  border-radius: 14px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.26);
}

.checkout-head {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}

.checkout-kicker {
  font-size: 13px;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.92);
  text-transform: none;
  line-height: 1.35;
}

.checkout-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.55;
}

.checkout-label,
.checkout-control span {
  display: block;
  margin: 0 0 7px;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
}

.checkout-field {
  width: 100%;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.4;
  padding: 11px 12px;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 12px;
}

.checkout-helper {
  display: block;
  color: rgba(255, 255, 255, 0.36);
  font-size: 11px;
  line-height: 1.35;
  margin: -7px 0 12px;
}

.checkout-field::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.checkout-field:focus {
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(201, 169, 110, 0.45);
  box-shadow: 0 0 0 1px rgba(201, 169, 110, 0.08);
}

.checkout-field--error {
  border-color: rgba(255, 77, 79, 0.75);
  box-shadow: 0 0 0 1px rgba(255, 77, 79, 0.16);
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Name is the only required field — give it its own full-width row and a
   subtle accent so customers immediately see where to type their name. */
.checkout-grid .checkout-control--primary {
  grid-column: 1 / -1;
  border: 1px solid rgba(201, 169, 110, 0.42);
  background: rgba(201, 169, 110, 0.075);
  border-radius: 12px;
  padding: 12px 12px 0;
}

.checkout-control--primary > span {
  color: var(--accent);
}

.checkout-name-error {
  display: block;
  min-height: 15px;
  color: var(--danger);
  font-size: 11px;
  line-height: 1.35;
  margin: -4px 0 10px;
}

.checkout-name-error[data-tone="neutral"] {
  color: rgba(255, 255, 255, 0.36);
}

.checkout-control .checkout-field {
  margin-bottom: 12px;
}

.checkout-field option {
  background: #111;
  color: var(--white);
}

.checkout-textarea {
  resize: vertical;
  min-height: 72px;
  max-height: 140px;
}

.checkout-error {
  min-height: 16px;
  color: var(--danger);
  font-size: 11px;
  line-height: 1.4;
  margin-top: -4px;
}

.checkout-error[data-tone="success"] {
  color: #25D366;
}

.checkout-error[data-tone="neutral"] {
  color: rgba(255, 255, 255, 0.35);
}

.checkout-form--disabled {
  opacity: 0.48;
}

/* ── Cart momentum (honest completion confidence) ───────────── */
.checkout-momentum {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.5;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.025);
  color: rgba(255, 255, 255, 0.7);
}

.checkout-momentum::before {
  content: "";
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.checkout-momentum[data-key="ready"] {
  border-color: rgba(37, 211, 102, 0.25);
  background: rgba(37, 211, 102, 0.06);
  color: rgba(255, 255, 255, 0.82);
}

.checkout-form--ready {
  border-color: rgba(37, 211, 102, 0.26);
  background:
    linear-gradient(180deg, rgba(37, 211, 102, 0.07), rgba(255, 255, 255, 0.026));
}

.checkout-momentum[data-key="ready"]::before {
  background: #25D366;
}

.checkout-momentum[data-key="minimum"] {
  align-items: stretch;
  flex-direction: column;
  gap: 8px;
  border-color: rgba(201, 169, 110, 0.2);
  background: rgba(201, 169, 110, 0.055);
}

.checkout-momentum[data-key="minimum"]::before {
  display: none;
}

.checkout-progress {
  width: 100%;
}

.cart-summary {
  background:
    linear-gradient(180deg, rgba(201, 169, 110, 0.07), rgba(255, 255, 255, 0.022));
  border: 1px solid rgba(201, 169, 110, 0.16);
  border-radius: 14px;
  margin-bottom: 12px;
  padding: 14px;
}

.cart-action-panel {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0), rgba(5, 5, 5, 0.96) 12%),
    #050505;
  margin: 0 -2px;
  padding-top: 2px;
}

.cart-summary-head,
.cart-summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-summary-head {
  margin-bottom: 12px;
}

.cart-summary-count,
.cart-summary-line {
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
}

.cart-summary-line {
  padding-bottom: 11px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
  margin-bottom: 12px;
}

.cart-total-row {
  display: flex; justify-content: space-between;
  align-items: center;
}

.cart-total-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
}

.cart-total-amount {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--accent);
  line-height: 0.95;
}

.cart-total-amount small {
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.btn-whatsapp {
  width: 100%;
  background: #25D366;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  min-height: 56px;
  padding: 17px 18px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: var(--transition);
  margin-bottom: 10px;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.26);
}

.btn-whatsapp:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  filter: grayscale(0.2);
}

.btn-whatsapp[data-state="needs_name"],
.btn-whatsapp[data-state="minimum"],
.btn-whatsapp[data-state="empty"] {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.22);
  color: rgba(255, 255, 255, 0.72);
}

.btn-whatsapp[data-state="ready"] {
  background: #25D366;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.26);
}

.btn-whatsapp:hover:not(:disabled) {
  background: #20bc5b;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.3);
}

.btn-continue {
  width: 100%;
  background: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: var(--transition);
}

.btn-continue:hover {
  border-color: var(--border-hl);
  color: var(--white);
}

/* Secondary checkout CTA — compact link-style so "Seguir comprando" never
   competes with the primary WhatsApp button for vertical space. Scoped to
   the action panel so the empty-state "Explorar catálogo" button keeps its
   full pill treatment. */
.cart-action-panel .btn-continue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: auto;
  margin: 2px auto 0;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.12em;
  border: none;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.2);
}

.cart-action-panel .btn-continue:hover {
  color: var(--white);
  text-decoration-color: var(--white);
}

/* ── WhatsApp float ──────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  z-index: 400;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg { width: 28px; height: 28px; }

/* ── Toast ───────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 90px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(14, 14, 14, 0.95);
  border: 1px solid var(--border-hl);
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 14px 24px;
  border-radius: 999px;
  backdrop-filter: blur(12px);
  z-index: 800;
  opacity: 0;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Divider ─────────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.15em;
  margin-bottom: 32px;
}

.footer-links {
  display: flex; justify-content: center; gap: 32px;
  margin-bottom: 32px;
}

.footer-links a {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
}

/* ── Featured Carousel ───────────────────────────────────────── */
.fc-section {
  padding: var(--space-6) 0 var(--space-5);
  overflow: hidden;
}

.fc-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.fc-header .section-title em {
  font-style: italic;
  color: var(--accent);
}

.fc-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  padding-bottom: 4px;
}

.fc-scroll::-webkit-scrollbar { display: none; }
.fc-scroll--grabbing           { cursor: grabbing; user-select: none; }

.fc-track {
  display: flex;
  gap: 16px;
  padding: 8px clamp(16px, 4vw, 48px) 16px;
  width: max-content;
}

/* Card base */
.fc-card {
  position: relative;
  width: 260px;
  height: 390px;
  border-radius: 22px;
  overflow: hidden;
  flex-shrink: 0;
  background: #0a0a12;
  border: 1px solid rgba(255, 255, 255, 0.05);
  isolation: isolate;

  /* Entrance animation — driven by --i custom prop */
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity   0.65s ease              calc(var(--i, 0) * 60ms),
    transform 0.65s cubic-bezier(0.19, 1, 0.22, 1) calc(var(--i, 0) * 60ms),
    box-shadow 0.5s ease,
    border-color 0.5s ease;
}

.fc-card--in {
  opacity: 1;
  transform: translateY(0);
}

/* Image */
.fc-img-wrap {
  position: absolute;
  inset: 0;
}

.fc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Gradient overlay */
.fc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 25%,
    rgba(3, 3, 3, 0.35) 55%,
    rgba(3, 3, 3, 0.90) 100%
  );
  transition: opacity 0.5s ease;
}

/* Text info */
.fc-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 22px;
  z-index: 2;
}

.fc-tag {
  font-size: 9px;
  letter-spacing: 0.38em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 7px;
  opacity: 0.85;
}

.fc-name {
  font-family: var(--font-serif);
  font-size: 23px;
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 12px;
}

.fc-cta {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity   0.4s ease,
    transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Hover — premium lift */
.fc-card:hover {
  border-color: rgba(201, 169, 110, 0.18);
  box-shadow:
    0 32px 72px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(201, 169, 110, 0.08);
}

.fc-card:hover .fc-img-wrap img {
  transform: scale(1.07);
}

.fc-card:hover .fc-cta {
  opacity: 1;
  transform: translateY(0);
}

/* Desktop grid — abandon horizontal scroll */
@media (min-width: 900px) {
  .fc-scroll {
    overflow-x: visible;
    cursor: default;
  }

  .fc-track {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    width: auto;
    padding: 8px clamp(16px, 4vw, 48px) 16px;
    gap: 20px;
  }

  .fc-card {
    width: 100%;
    height: 360px;
  }
}

@media (max-width: 480px) {
  .fc-card {
    width: 220px;
    height: 320px;
  }
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .header {
    backdrop-filter: none;
    background: rgba(3, 3, 3, 0.95);
    padding: 16px 20px;
  }

  .hero {
    align-items: flex-end;
    height: 100svh;
    min-height: 620px;
    padding: 92px 0 max(38px, env(safe-area-inset-bottom));
  }

  .hero-bg {
    z-index: 0;
    background:
      radial-gradient(ellipse 80% 62% at 86% 28%, rgba(201, 169, 110, 0.08) 0%, transparent 62%),
      linear-gradient(170deg, #08080f 0%, #030303 64%);
  }

  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(180deg, rgba(3, 3, 3, 0.2) 0%, rgba(3, 3, 3, 0) 28%, rgba(3, 3, 3, 0.78) 74%, #030303 100%),
      linear-gradient(90deg, rgba(3, 3, 3, 0.72) 0%, rgba(3, 3, 3, 0.22) 44%, rgba(3, 3, 3, 0.08) 100%);
  }

  .hero-img-wrap {
    inset: 0;
    height: 100%;
    opacity: 0.92;
    right: auto;
    top: 0;
    transform: none;
    width: 100%;
    z-index: 0;
  }

  .hero-img-wrap img {
    animation: none;
    filter:
      brightness(1.08)
      contrast(1.08)
      saturate(1.04);
    height: 100%;
    object-fit: cover;
    object-position: 68% center;
    width: 100%;
  }

  .hero-content {
    max-width: 350px;
    padding: 0 22px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
  }

  .hero-eyebrow {
    font-size: 9px;
    gap: 9px;
    letter-spacing: 0.34em;
    margin-bottom: 12px;
  }

  .hero-eyebrow::before {
    width: 22px;
  }

  .hero-title {
    font-size: 60px;
    line-height: 0.94;
    margin-bottom: 14px;
  }

  .hero-desc {
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 1.62;
    margin-bottom: 22px;
    max-width: 292px;
  }

  .hero-actions {
    align-items: center;
    gap: 12px;
  }

  .hero-actions .btn-primary {
    min-height: 44px;
    padding: 13px 21px;
  }

  .hero-actions .btn-ghost {
    min-height: 44px;
    padding: 12px 0;
  }

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

  .featured-img   { height: 320px; }
  .featured-info  { padding: 32px 20px; }

  .trust-grid { grid-template-columns: 1fr 1fr; }

  .cart-drawer {
    inset: 0;
    bottom: auto;
    width: 100vw;
    max-width: none;
    height: 100dvh;
    max-height: 100dvh;
    border-left: 0;
    overflow-x: hidden;
  }
  .cart-header {
    padding: 18px 18px 14px;
  }
  .cart-items {
    flex: 1 1 auto;
    min-height: 0;
    padding: 12px 12px 10px;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .cart-section {
    padding: 12px;
  }
  .cart-footer {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    max-height: 58svh;
    padding: 12px 12px calc(14px + env(safe-area-inset-bottom));
    overflow-x: hidden;
    box-shadow: 0 -18px 42px rgba(0, 0, 0, 0.46);
  }
  .cart-footer .checkout-panel {
    flex: 0 0 auto;
    margin-bottom: 12px;
    max-height: none;
    overflow: visible;
    padding: 11px;
  }
  .checkout-head {
    margin-bottom: 10px;
  }
  .checkout-note {
    font-size: 11px;
    line-height: 1.45;
  }
  .checkout-momentum {
    margin-bottom: 10px;
    padding: 8px 10px;
    font-size: 11px;
  }
  .cart-total-row {
    flex: 0 0 auto;
  }
  .cart-summary {
    flex: 0 0 auto;
    margin-bottom: 10px;
    padding: 12px;
  }
  .cart-action-panel {
    bottom: calc(-14px - env(safe-area-inset-bottom));
    margin: 0 -12px;
    padding: 10px 12px calc(14px + env(safe-area-inset-bottom));
    position: sticky;
    z-index: 3;
  }
  .cart-total-amount {
    font-size: 32px;
  }
  .btn-whatsapp {
    flex: 0 0 auto;
    min-height: 52px;
  }
  .cart-action-panel .btn-continue {
    flex: 0 0 auto;
    min-height: 0;
    margin-top: 0;
    padding: 6px 14px;
  }
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-field {
    min-height: 42px;
    margin-bottom: 8px;
    padding: 10px 11px;
  }
  .checkout-helper {
    margin-bottom: 9px;
  }
  .checkout-textarea {
    min-height: 46px;
  }

  .footer-links { gap: 20px; flex-wrap: wrap; }

  .card-name     { font-size: 28px; }
  .pack-name     { font-size: 40px; }
  .pack-price-now { font-size: 40px; }

  .card-story,
  .pack-desc { font-size: 14px; }

  .card-img-wrap { height: 210px; }
  .card-body { padding: 20px; }
  .card-purchase {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }
  .card-action {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .packs-grid    { grid-template-columns: 1fr; }
  .trust-grid    { grid-template-columns: 1fr; }
  .hero-actions  { flex-direction: row; align-items: center; }
}

@media (max-width: 380px) {
  .hero {
    min-height: 600px;
    padding-bottom: max(32px, env(safe-area-inset-bottom));
  }

  .hero-content {
    max-width: 300px;
    padding: 0 18px;
  }

  .hero-title {
    font-size: 52px;
  }

  .hero-desc {
    font-size: 12px;
    max-width: 272px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn-primary {
    padding: 12px 18px;
  }
}

/* ── API state helpers ────────────────────────────────────────── */
.catalog-loading,
.catalog-empty {
  grid-column: 1 / -1;
  padding: 48px 0;
  text-align: center;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Product Detail Modal ─────────────────────────────────────── */

/* Overlay / backdrop */
.pdm-overlay {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 3vw, 40px);
  pointer-events: none;
  transition:
    background 0.4s ease,
    backdrop-filter 0.4s ease;
  /* Allow scrolling on very small screens */
  overflow-y: auto;
}

.pdm-overlay--open {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px) saturate(0.8);
  pointer-events: all;
}

/* Modal box */
.pdm-modal {
  position: relative;
  width: 100%;
  max-width: 900px;
  max-height: 90dvh;
  min-height: 460px;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 5fr 7fr;
  overflow: hidden;
  box-shadow: var(--shadow-lg);

  /* Entrance: scale up + fade in */
  opacity: 0;
  transform: scale(0.94) translateY(20px);
  transition:
    opacity  0.38s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.38s cubic-bezier(0.19, 1, 0.22, 1);
}

.pdm-modal--open {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Close button */
.pdm-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.pdm-close:hover {
  background: var(--white);
  color: var(--black);
  transform: rotate(90deg);
}

/* Image panel */
.pdm-img-panel {
  position: relative;
  background:
    radial-gradient(circle at 60% 40%, rgba(201, 169, 110, 0.07) 0%, transparent 65%),
    linear-gradient(160deg, #0d0d16, #050505);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 440px;
  overflow: hidden;
}

.pdm-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: var(--black);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  z-index: 2;
}

.pdm-badge.danger {
  background: var(--danger);
  color: var(--white);
}

.pdm-badge.trend {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid var(--border-hl);
}

.pdm-img-wrap {
  width: 85%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
}

.pdm-img {
  width: 100%;
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 24px 56px rgba(201, 169, 110, 0.18));
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.pdm-modal--open .pdm-img {
  transform: scale(1.02);
}

/* Fallback when image is missing/broken */
.pdm-img-wrap--fallback {
  width: 100%;
  max-height: 380px;
  min-height: 200px;
  background:
    radial-gradient(ellipse at center, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdm-img-wrap--fallback::after {
  content: '✦';
  font-size: 48px;
  color: rgba(201, 169, 110, 0.25);
}

/* Info panel */
.pdm-info {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border);
  overflow: hidden;
}

.pdm-info-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: clamp(32px, 5vw, 52px) clamp(28px, 4vw, 44px);
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.pdm-house {
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pdm-house::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.pdm-name {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.pdm-title-row {
  align-items: flex-start;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.pdm-title-row .pdm-name {
  letter-spacing: 0;
  min-width: 0;
}

.pdm-story {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.85;
  margin-bottom: 8px;
}

.pdm-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.7;
  margin-bottom: 20px;
}

.pdm-notes { margin-bottom: 14px; }

.pdm-stock { margin-bottom: 0; }

.pdm-buybar {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012)),
    rgba(7, 7, 7, 0.96);
  flex: 0 0 auto;
  padding: 18px clamp(28px, 4vw, 44px) 20px;
}

.pdm-buybar-bottom {
  display: grid;
  grid-template-columns: minmax(120px, 0.7fr) minmax(220px, 1fr);
  gap: 14px;
  align-items: center;
}

/* Size selector */
.pdm-sizes-label {
  font-size: 9px;
  letter-spacing: 0.35em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pdm-sizes {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.pdm-size-btn {
  flex: 1;
  min-width: 72px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: rgba(255, 255, 255, 0.6);
  padding: 13px 8px;
  border-radius: var(--radius-sm);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1.4;
  transition: var(--transition);
  cursor: pointer;
}

.pdm-size-ml    { display: block; font-size: 14px; font-weight: 500; color: var(--white); }
.pdm-size-price { display: block; font-size: 12px; color: var(--accent); margin-top: 2px; }
.pdm-size-label { display: block; font-size: 10px; color: var(--muted); margin-top: 2px; }

.pdm-size-btn:hover,
.pdm-size-btn--active {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.pdm-size-btn--active .pdm-size-ml,
.pdm-size-btn--active .pdm-size-price,
.pdm-size-btn--active .pdm-size-label,
.pdm-size-btn:hover .pdm-size-ml,
.pdm-size-btn:hover .pdm-size-price,
.pdm-size-btn:hover .pdm-size-label {
  color: var(--black);
}

.pdm-size-btn--disabled,
.pdm-size-btn--disabled:hover {
  opacity: 0.45;
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.035);
  border-color: var(--border);
  color: rgba(255, 255, 255, 0.45);
  transform: none;
  box-shadow: none;
}

.pdm-size-btn--disabled .pdm-size-ml,
.pdm-size-btn--disabled .pdm-size-price,
.pdm-size-btn--disabled .pdm-size-label,
.pdm-size-btn--disabled:hover .pdm-size-ml,
.pdm-size-btn--disabled:hover .pdm-size-price,
.pdm-size-btn--disabled:hover .pdm-size-label {
  color: rgba(255, 255, 255, 0.45);
}

/* Price display */
.pdm-price-row {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 0;
}

.pdm-price {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 300;
  color: var(--accent);
  transition: all 0.25s ease;
}

.pdm-price-unit {
  font-size: 13px;
  color: var(--muted);
}

.pdm-price-consult {
  border: 1px solid rgba(201, 169, 110, 0.18);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  line-height: 1.6;
  padding: 13px 14px;
  margin-bottom: 22px;
  background: rgba(201, 169, 110, 0.045);
}

/* Action buttons */
.pdm-actions {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 10px;
}

.pdm-btn-add {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.pdm-btn-wa {
  width: 100%;
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.25);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 20px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
}

.pdm-btn-wa:hover {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.25);
}

/* Card cursor hint */
.product-card--clickable {
  cursor: pointer;
}

.product-card--clickable:hover .card-img-wrap::after {
  content: 'Ver detalle';
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 5px 12px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 999px;
  backdrop-filter: blur(4px);
  pointer-events: none;
}

/* ── Responsive: single column on mobile ─────────────────────── */
@media (max-width: 768px) {
  .pdm-overlay {
    align-items: flex-end;
    bottom: auto;
    height: 100dvh;
    padding: 0;
    overflow: hidden;
  }

  .pdm-modal {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    bottom: max(env(safe-area-inset-bottom), 60px);
    display: flex;
    flex-direction: column;
    height: min(64dvh, 560px);
    left: 0;
    min-height: 0;
    position: fixed;
    right: 0;
    transform: scale(1) translateY(60px);
    width: 100%;
    max-width: 100%;
  }

  .pdm-modal--open {
    transform: scale(1) translateY(0);
  }

  .pdm-img-panel {
    flex: 0 0 150px;
    min-height: 0;
    max-height: 150px;
  }

  .pdm-img-wrap {
    padding: 12px 18px 8px;
    width: 68%;
  }

  .pdm-img {
    max-height: 138px;
  }

  .pdm-info {
    border-left: none;
    border-top: 1px solid var(--border);
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
  }

  .pdm-info-scroll {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 14px 18px 10px;
  }

  .pdm-close {
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
  }

  .pdm-badge {
    top: 12px;
    left: 12px;
  }

  .pdm-house {
    font-size: 9px;
    letter-spacing: 0.28em;
    margin-bottom: 8px;
  }

  .pdm-house::before { width: 14px; }

  .pdm-title-row { gap: 8px; }

  .pdm-name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 30px;
    line-height: 1.02;
    margin-bottom: 7px;
    overflow: hidden;
  }

  .pdm-concentration {
    font-size: 9px;
    padding: 6px 8px;
  }

  .pdm-story {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 13px;
    line-height: 1.55;
    margin: 10px 0 7px;
    overflow: hidden;
  }

  .pdm-details-cta {
    margin-top: 2px;
    padding: 8px 12px;
  }

  .pdm-desc {
    display: none;
  }

  .pdm-notes {
    gap: 5px;
    margin-bottom: 10px;
    max-height: 30px;
    overflow: hidden;
  }

  .pdm-notes .note-tag {
    font-size: 9px;
    padding: 4px 9px;
  }

  .pdm-stock {
    font-size: 11px;
  }

  .pdm-buybar {
    box-shadow: 0 -18px 42px rgba(0, 0, 0, 0.58);
    padding: 9px 14px calc(10px + env(safe-area-inset-bottom));
    position: relative;
    z-index: 8;
  }

  .pdm-sizes-label {
    font-size: 8px;
    letter-spacing: 0.24em;
    margin-bottom: 5px;
  }

  .pdm-sizes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 8px;
  }

  .pdm-size-btn {
    min-width: 0;
    padding: 6px 5px;
  }

  .pdm-size-ml {
    font-size: 13px;
  }

  .pdm-size-price {
    font-size: 11px;
    margin-top: 0;
  }

  .pdm-size-label,
  .pdm-size-recommended {
    display: none;
  }

  .pdm-buybar-bottom {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 10px;
  }

  .pdm-price {
    font-size: 25px;
    line-height: 1;
  }

  .pdm-price-unit {
    font-size: 11px;
  }

  .pdm-value-prop {
    display: none;
  }

  .pdm-actions {
    grid-template-columns: minmax(0, 1fr) 94px;
    gap: 8px;
  }

  .pdm-btn-add,
  .pdm-btn-wa {
    min-height: 44px;
    padding: 10px 8px;
  }

  .pdm-btn-wa {
    letter-spacing: 0.08em;
  }

  .pdm-related {
    margin: 0 0 16px;
    padding: 0 0 14px;
  }
  .pdm-related-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .pdm-related-img {
    height: 88px;
  }
  .pdm-related-name {
    font-size: 16px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SEARCH BAR + SMART FILTERS
   ═══════════════════════════════════════════════════════════════ */

/* hidden-attribute fix: display overrides can mask [hidden] */
.sf-bar [hidden],
.sf-drawer [hidden] { display: none !important; }

/* ── Bar shell ───────────────────────────────────────────────── */
.sf-bar {
  position: sticky;
  top: 76px;
  z-index: 100;
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.sf-bar:focus-within {
  border-color: rgba(201, 169, 110, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 169, 110, 0.08);
}

/* ── "Explorando: <mood>" banner ─────────────────────────────── */
.sf-exploring {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 14px;
  border: 1px solid rgba(201, 169, 110, 0.35);
  background: rgba(201, 169, 110, 0.08);
  border-radius: var(--radius-sm, 8px);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--gold, #c9a96e);
}
.sf-exploring-kicker {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 10px;
  opacity: 0.85;
}
.sf-exploring-label {
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-primary, #fff);
  font-size: 14px;
}
.sf-exploring-clear {
  margin-left: auto;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-primary, #fff);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.sf-exploring-clear:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}
.sf-exploring-count {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.04em;
}
@media (max-width: 480px) {
  .sf-exploring { flex-wrap: wrap; }
  .sf-exploring-count { flex-basis: 100%; order: 3; }
  .sf-exploring-clear { order: 2; margin-left: auto; }
}

/* ── "Para ti" personalization banner ───────────────────────── */
.sf-for-you {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 14px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  background: rgba(201, 169, 110, 0.06);
  border-radius: var(--radius-sm, 8px);
  font-size: 12px;
  color: var(--accent);
  flex-wrap: wrap;
}

.sf-fy-kicker {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  flex-shrink: 0;
  opacity: 0.9;
}

.sf-fy-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.01em;
}

.sf-fy-count {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
}

.sf-fy-clear {
  margin-left: auto;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  white-space: nowrap;
}

.sf-fy-clear:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

@media (max-width: 480px) {
  .sf-for-you { flex-wrap: wrap; }
  .sf-fy-count { flex-basis: 100%; order: 3; }
  .sf-fy-clear { order: 2; margin-left: auto; }
}

/* ── Row layouts ─────────────────────────────────────────────── */
.sf-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.sf-row-top {
  gap: 12px;
}

.sf-row-moods {
  justify-content: space-between;
}

/* ── Gender preference pills ─────────────────────────────────── */
.sf-row-gender {
  padding-bottom: 2px;
  gap: 8px;
}

.sf-gender-label {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.sf-genders {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.sf-gender-btn {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  padding: 4px 13px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
}

.sf-gender-btn:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
}

.sf-gender-btn--on {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(201, 169, 110, 0.08);
}

@media (max-width: 768px) {
  /* Quick gender chips stay visible on mobile as a single scrollable row,
     so "Todos / Hombre / Mujer / Unisex" are reachable without opening the
     drawer. Reuses the same buttons + handlers as desktop. */
  .sf-row-gender {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .sf-row-gender::-webkit-scrollbar { display: none; }
  .sf-genders { flex-wrap: nowrap; }
  .sf-gender-btn { flex-shrink: 0; }
}

/* ── Search input ────────────────────────────────────────────── */
.sf-search {
  position: relative;
  flex: 1;
  min-width: 180px;
}

.sf-search-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

.sf-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.02em;
  padding: 9px 36px 9px 38px;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
  /* Remove browser default search styles */
  -webkit-appearance: none;
  appearance: none;
}

.sf-input::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.sf-input:focus {
  border-color: rgba(201, 169, 110, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

/* Hide native search cancel button */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration,
.sf-input::-webkit-search-cancel-button,
.sf-input::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

/* Custom clear button inside input */
.sf-x {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.sf-x:hover {
  background: var(--white);
  color: var(--black);
}

/* ── Right controls (selects + meta) ────────────────────────── */
.sf-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* Select wrapper */
.sf-sel-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.sf-sel {
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 7px 28px 7px 14px;
  outline: none;
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease;
}

/* Options in dark mode */
.sf-sel option {
  background: #111;
  color: var(--white);
}

.sf-sel:hover,
.sf-sel:focus {
  border-color: rgba(201, 169, 110, 0.35);
  color: var(--white);
}

.sf-arrow {
  position: absolute;
  right: 10px;
  width: 10px;
  height: 6px;
  color: rgba(255, 255, 255, 0.3);
  pointer-events: none;
  flex-shrink: 0;
}

/* Count + clear */
.sf-count {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
  padding: 0 4px;
  transition: color 0.3s ease;
}

.sf-count--filtered {
  color: var(--accent);
}

.sf-clear {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.25);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.sf-clear:hover {
  color: var(--danger);
}

/* ── Mood pills (desktop) ────────────────────────────────────── */
.sf-moods {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.sf-mood {
  background: none;
  border: 1px solid var(--border);
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 6px 15px;
  border-radius: 999px;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.sf-mood:hover {
  border-color: rgba(201, 169, 110, 0.3);
  color: var(--white);
}

.sf-mood--on {
  background: rgba(201, 169, 110, 0.1);
  border-color: var(--accent);
  color: var(--accent);
}

/* ── Mobile filter button ────────────────────────────────────── */
.sf-mobile-btn {
  display: none;      /* shown on mobile via media query */
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
}

.sf-mobile-btn:hover {
  border-color: rgba(201, 169, 110, 0.3);
  color: var(--white);
}

.sf-mobile-btn--active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(201, 169, 110, 0.07);
}

.sf-badge {
  background: var(--accent);
  color: var(--black);
  font-size: 9px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}

/* ── Empty state ─────────────────────────────────────────────── */
.sf-empty {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 24px 60px;
  gap: 10px;
  text-align: center;
}

.sf-empty-icon {
  font-size: 44px;
  color: rgba(201, 169, 110, 0.18);
  margin-bottom: 6px;
  line-height: 1;
}

.sf-empty-title {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
}

.sf-empty-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.75;
  margin-bottom: 6px;
}

.sf-empty-clear {
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.15em;
}

/* ── Mobile drawer overlay ───────────────────────────────────── */
.sf-ov {
  position: fixed;
  inset: 0;
  z-index: 920;
  background: transparent;
  pointer-events: none;
  transition: background 0.35s ease, backdrop-filter 0.35s ease;
}

.sf-ov--open {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  pointer-events: all;
}

/* ── Mobile drawer ───────────────────────────────────────────── */
.sf-drawer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 925;
  background: #0a0a0a;
  border-top: 1px solid var(--border);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  max-height: 88svh;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.42s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 -24px 64px rgba(0, 0, 0, 0.7);
}

.sf-drawer--open {
  transform: translateY(0);
}

.sf-drawer-handle {
  width: 36px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  margin: 12px auto 0;
  flex-shrink: 0;
}

.sf-drawer-head {
  padding: 16px 20px 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.sf-drawer-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.sf-drawer-close {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--white);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}

.sf-drawer-close:hover {
  background: var(--white);
  color: var(--black);
  transform: rotate(90deg);
}

.sf-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 20px 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.sf-drawer-sec {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.sf-drawer-sec:last-child { border-bottom: none; }

.sf-drawer-label {
  font-size: 9px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sf-drawer-label::before {
  content: '';
  width: 14px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

/* Drawer pill group */
.sf-dp-group {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.sf-dp {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 7px 16px;
  border-radius: 999px;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.sf-dp:hover {
  border-color: rgba(201, 169, 110, 0.3);
  color: var(--white);
}

.sf-dp--on {
  background: rgba(201, 169, 110, 0.12);
  border-color: var(--accent);
  color: var(--accent);
}

/* Drawer footer */
.sf-drawer-foot {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.3);
}

.sf-drawer-foot .btn-ghost {
  flex: 1;
  text-align: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.15em;
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
}

.sf-drawer-foot .btn-ghost:hover {
  color: var(--danger);
  border-color: rgba(255, 77, 79, 0.3);
}

.sf-drawer-foot .btn-primary {
  flex: 2;
  text-align: center;
}

/* ── Responsive ──────────────────────────────────────────────── */

/* Mobile: hide desktop controls, show filter button */
@media (max-width: 767px) {
  .sf-row-moods .sf-moods   { display: none; }
  .sf-controls .sf-sel-wrap { display: none; }
  .sf-mobile-btn            { display: inline-flex; }

  .sf-bar {
    top: 68px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
  }

  .sf-row-top {
    gap: 8px;
  }
}

/* Desktop: always show selects + mood pills, hide filter btn */
@media (min-width: 768px) {
  .sf-mobile-btn { display: none; }
  /* Drawer and its overlay are invisible but still exist in DOM */
  .sf-ov,
  .sf-drawer     { display: none; }
}

/* Recommendation rails */
.rr-section {
  padding: clamp(100px, 12vw, 156px) 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0)),
    var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.rr-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(42px, 6vw, 72px);
}

.rr-head .section-title em {
  font-style: italic;
  color: var(--accent);
}

.rr-head-copy {
  max-width: 340px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
  line-height: 1.75;
}

.rr-editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) repeat(2, minmax(0, 0.86fr));
  gap: clamp(18px, 2vw, 26px);
  margin: 0;
}

.rr-collection {
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  background: #080808;
  cursor: pointer;
  isolation: isolate;
}

.rr-collection:first-child {
  min-height: 590px;
}

.rr-collection-media {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 62% 32%, rgba(201, 169, 110, 0.14), transparent 44%),
    linear-gradient(180deg, #151515, #050505);
  z-index: -2;
}

.rr-collection-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.86)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), transparent 68%);
}

.rr-collection-media img {
  width: 68%;
  height: 64%;
  object-fit: contain;
  padding: 18px;
  filter: drop-shadow(0 32px 62px rgba(0, 0, 0, 0.62));
  transform: translate(18%, -8%);
}

.rr-collection-copy {
  padding: clamp(22px, 3vw, 36px);
}

.rr-collection-kicker {
  color: var(--accent);
  font-size: 10px;
  letter-spacing: 0.22em;
  margin-bottom: 9px;
  text-transform: uppercase;
}

.rr-collection h3 {
  max-width: 330px;
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 300;
  line-height: 0.98;
  margin-bottom: 12px;
}

.rr-collection p {
  max-width: 340px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.65;
}

.rr-collection-feature {
  display: grid;
  gap: 3px;
  margin-top: 18px;
}

.rr-collection-feature span,
.rr-collection-support span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.rr-collection-feature strong {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 300;
}

.rr-collection-support {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.rr-collection-support button {
  max-width: 160px;
  padding: 9px 11px;
  text-align: left;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.25;
}

.rr-collection-support span {
  display: block;
  margin-bottom: 3px;
}

.rr-collection-cta {
  margin-top: 24px;
}

.rr-editorial-grid--loading {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rr-skeleton-card--mood {
  width: auto;
  min-height: 430px;
}

.rr-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(46px, 7vw, 82px);
}

.rr-rail { position: relative; }

.rr-rail-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 16px;
}

.rr-eyebrow {
  font-size: 11px;
  letter-spacing: 0.26em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.rr-desc {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 13px;
  line-height: 1.7;
}

.rr-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  scroll-snap-type: x proximity;
  padding-bottom: 8px;
}

.rr-scroll::-webkit-scrollbar { display: none; }
.rr-scroll--grabbing { cursor: grabbing; user-select: none; }

.rr-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 4px clamp(16px, 4vw, 48px) 14px;
}

.rr-card {
  width: clamp(178px, 20vw, 228px);
  min-height: 318px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(7, 7, 7, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s ease calc(var(--i, 0) * 45ms),
    transform 0.6s cubic-bezier(0.19, 1, 0.22, 1) calc(var(--i, 0) * 45ms),
    border-color 0.35s ease,
    box-shadow 0.45s ease;
}

.rr-card--in {
  opacity: 1;
  transform: translateY(0);
}

.rr-card:hover,
.rr-card:focus-visible {
  border-color: rgba(201, 169, 110, 0.22);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(201, 169, 110, 0.08);
  outline: none;
}

.rr-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  max-width: calc(100% - 20px);
  background: rgba(0, 0, 0, 0.62);
  border: 1px solid rgba(201, 169, 110, 0.22);
  border-radius: 999px;
  color: var(--accent);
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 9px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  backdrop-filter: blur(8px);
}

.rr-img {
  height: 188px;
  background:
    radial-gradient(circle at 50% 42%, rgba(201, 169, 110, 0.08), transparent 58%),
    linear-gradient(180deg, #111, #050505);
  overflow: hidden;
}

.rr-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  transition: transform 0.55s cubic-bezier(0.19, 1, 0.22, 1);
}

.rr-card:hover .rr-img img { transform: scale(1.06); }

.rr-img--fallback::before {
  content: 'R';
  display: grid;
  place-items: center;
  height: 100%;
  color: rgba(201, 169, 110, 0.3);
  font-family: var(--font-serif);
  font-size: 64px;
}

.rr-body { padding: 16px 16px 17px; }

.rr-house {
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 7px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rr-name {
  min-height: 46px;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 12px;
}

.rr-notes {
  display: flex;
  gap: 5px;
  min-height: 24px;
  margin-bottom: 14px;
  overflow: hidden;
}

.rr-notes span {
  max-width: 88px;
  border: 1px solid rgba(201, 169, 110, 0.14);
  border-radius: 999px;
  color: rgba(201, 169, 110, 0.86);
  font-size: 9px;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rr-foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.rr-price {
  color: var(--accent);
  font-family: var(--font-serif);
  font-size: 21px;
}

.rr-price small {
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 10px;
}

.rr-open {
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.3s ease, transform 0.3s ease;
}

.rr-card:hover .rr-open {
  color: var(--white);
  transform: translateX(2px);
}

.rr-skeleton-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.rr-skeleton-title,
.rr-skeleton-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.rr-skeleton-title::after,
.rr-skeleton-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  transform: translateX(-100%);
  animation: shimmer 1.4s ease-in-out infinite;
}

.rr-skeleton-title {
  width: min(320px, 70vw);
  height: 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.rr-skeleton-track {
  display: flex;
  gap: 14px;
  overflow: hidden;
}

.rr-skeleton-card {
  width: 210px;
  height: 300px;
  flex: 0 0 auto;
  border-radius: 18px;
}

@keyframes shimmer {
  100% { transform: translateX(100%); }
}

@media (max-width: 640px) {
  .rr-head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 26px;
  }

  .rr-head-copy {
    max-width: none;
  }

  .rr-editorial-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 0;
  }

  .rr-collection,
  .rr-collection:first-child {
    min-height: 500px;
    border-radius: 16px;
  }

  .rr-collection-media::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.88)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 72%);
  }

  .rr-collection-media img {
    width: 72%;
    height: 58%;
    transform: translate(12%, -18%);
  }

  .rr-collection h3 {
    max-width: 280px;
    font-size: 38px;
  }

  .rr-collection-support button {
    flex: 1 1 130px;
    max-width: none;
  }

  .rr-card {
    width: 176px;
    min-height: 304px;
  }

  .rr-card--hero {
    width: 238px;
    min-height: 346px;
  }

  .rr-card--wide {
    width: 274px;
    min-height: 214px;
  }

  .rr-img { height: 166px; }
  .rr-card--hero .rr-img { height: 202px; }
  .rr-body { padding: 14px; }
  .rr-name { font-size: 20px; }
  .rr-card--hero .rr-name { font-size: 25px; }
}

/* Performance and UX polish */
.img-shell {
  position: relative;
  isolation: isolate;
}

.img-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(201, 169, 110, 0.08), transparent 58%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  background-size: 100% 100%, 240% 100%;
  animation: imgSheen 1.45s ease-in-out infinite;
  opacity: 1;
  transition: opacity 0.38s ease;
  pointer-events: none;
}

.img-shell img {
  position: relative;
  z-index: 1;
  opacity: 0;
  filter: blur(10px) saturate(0.92);
  transform: scale(1.015);
  transition:
    opacity 0.46s ease,
    filter 0.55s ease,
    transform 0.55s cubic-bezier(0.19, 1, 0.22, 1);
}

.img-shell.img-loaded::before {
  opacity: 0;
  animation-play-state: paused;
}

.img-shell.img-loaded img {
  opacity: 1;
  filter: blur(0) saturate(1);
  transform: scale(1);
}

.img-shell.img-failed::before {
  opacity: 1;
  animation: none;
  background:
    radial-gradient(circle at center, rgba(201, 169, 110, 0.1), transparent 58%),
    linear-gradient(180deg, #111, #050505);
}

.img-shell.img-failed::after {
  content: 'R';
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  color: rgba(201, 169, 110, 0.32);
  font-family: var(--font-serif);
  font-size: clamp(44px, 8vw, 76px);
  pointer-events: none;
}

.hero-img-wrap.img-shell::before,
.hero-img-wrap.img-failed::after {
  display: none;
}

@keyframes imgSheen {
  0%   { background-position: center, 120% 0; }
  100% { background-position: center, -120% 0; }
}

.btn-primary,
.btn-gold,
.btn-whatsapp,
.btn-continue,
.pdm-btn-wa,
.size-btn,
.qty-btn,
.sf-dp,
.sf-mood,
.sf-mobile-btn,
.rr-card,
.product-card {
  touch-action: manipulation;
}

.btn-primary:active,
.btn-gold:active,
.btn-whatsapp:active:not(:disabled),
.btn-continue:active,
.pdm-btn-wa:active,
.size-btn:active,
.sf-dp:active,
.sf-mood:active,
.sf-mobile-btn:active,
.rr-card:active,
.product-card:active {
  transform: scale(0.985);
}

.btn-primary.is-loading,
.btn-gold.is-loading,
.btn-whatsapp.is-loading,
.pdm-btn-wa.is-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.78;
}

.btn-primary.is-loading::before,
.btn-gold.is-loading::before,
.btn-whatsapp.is-loading::before,
.pdm-btn-wa.is-loading::before {
  content: '';
  width: 12px;
  height: 12px;
  border: 1px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  display: inline-block;
  margin-right: 9px;
  animation: spin 0.75s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.premium-empty,
.cart-empty {
  min-height: 260px;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.055);
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 169, 110, 0.06), transparent 46%),
    rgba(255, 255, 255, 0.018);
  border-radius: var(--radius-md);
}

.catalog-empty.premium-empty {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 72px 24px;
  text-align: center;
}

.cart-empty {
  padding: 32px 20px;
  text-align: center;
}

.cart-empty-cta {
  width: auto;
  min-width: 170px;
  margin-top: 10px;
}

.cart-drawer {
  padding-bottom: env(safe-area-inset-bottom);
}

.cart-footer,
.sf-drawer-foot {
  padding-bottom: calc(18px + env(safe-area-inset-bottom));
}

.sf-drawer {
  padding-bottom: env(safe-area-inset-bottom);
}

.pdm-modal {
  max-width: min(920px, calc(100vw - 24px));
}

.featured-img.img-loaded:hover img {
  transform: scale(1.05);
}

.pdm-size-btn:active,
.qty-btn:active {
  transform: scale(0.94);
}

button:focus-visible,
[role="button"]:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 1px solid rgba(201, 169, 110, 0.72);
  outline-offset: 3px;
}

@media (hover: none) {
  .product-card:hover,
  .rr-card:hover,
  .pack-card:hover {
    transform: none;
  }

  .product-card:active,
  .rr-card:active,
  .pack-card:active {
    transform: scale(0.985);
  }
}

@media (max-width: 480px) {
  .cart-items {
    padding: 12px;
  }

  .cart-item {
    padding: 14px;
  }

  .pdm-info-scroll {
    padding-bottom: 14px;
  }
}

@media (max-width: 768px) {
  .products-grid {
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .product-card {
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
  }

  .product-card::before {
    opacity: 0.38;
  }

  .card-badge {
    top: 8px;
    left: 8px;
    max-width: calc(100% - 16px);
    padding: 4px 7px;
    font-size: 7px;
    letter-spacing: 0.12em;
  }

  .card-img-wrap {
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .card-img-wrap img {
    padding: 12px;
  }

  .card-body {
    padding: 16px;
  }

  .card-house {
    margin-bottom: 6px;
    font-size: 8px;
    letter-spacing: 0.16em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .card-title-row {
    gap: 6px;
    margin-bottom: 8px;
    flex-wrap: wrap;
  }

  .card-name {
    font-size: 25px;
    line-height: 1.04;
    -webkit-line-clamp: 2;
  }

  .card-concentration {
    padding: 5px 6px;
    font-size: 8px;
    letter-spacing: 0.08em;
  }

  .card-guidance {
    gap: 4px;
    margin-bottom: 10px;
  }

  .guidance-chip {
    padding: 4px 7px;
    font-size: 7px;
    letter-spacing: 0.08em;
  }

  .card-story {
    display: none;
  }

  .card-purchase {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .card-price {
    font-size: 23px;
  }

  .card-price small {
    font-size: 9px;
    margin-left: 2px;
  }

  .card-stock {
    margin-top: 4px;
    font-size: 9px;
    letter-spacing: 0.04em;
    line-height: 1.2;
  }

  .card-action {
    width: 100%;
    min-height: 44px;
    justify-content: center;
    padding: 11px 12px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .whatsapp-float {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    width: 48px;
    height: 48px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.32);
  }

  .whatsapp-float svg {
    width: 23px;
    height: 23px;
  }

  body.cart-open .whatsapp-float {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.9);
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.rr-card--hero {
  width: clamp(246px, 27vw, 330px);
  min-height: 372px;
}

.rr-card--hero .rr-img {
  height: 228px;
}

.rr-card--hero .rr-name {
  font-size: 29px;
  min-height: 60px;
}

.rr-card--wide {
  width: clamp(260px, 30vw, 360px);
  min-height: 228px;
  display: grid;
  grid-template-columns: 44% 1fr;
}

.rr-card--wide .rr-img {
  height: 100%;
}

.rr-card--wide .rr-body {
  align-self: end;
}

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

/* ═══════════════════════════════════════════════════════════════
   GUIDED ASSISTANT
   ═══════════════════════════════════════════════════════════════ */
.asst-head {
  margin-bottom: 28px;
  max-width: 560px;
}

.asst-sub {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.asst-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px 28px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
}

.asst-q {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.asst-q-label {
  display: block;
  padding: 0;
  margin-bottom: 10px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.asst-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.asst-chip {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-hl);
  border-radius: 999px;
  padding: 9px 15px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.asst-chip:hover {
  border-color: var(--accent);
}

.asst-chip--active {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
}

.asst-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-start;
}

.asst-submit {
  min-height: 50px;
}

/* ── Results ───────────────────────────────────────────────── */
.asst-results {
  margin-top: 30px;
}

.asst-results-label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.asst-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
  gap: 16px;
  max-width: 100%;
  min-width: 0;
}

.asst-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--card);
  max-width: 100%;
  min-width: 0;
  width: 100%;
}

.asst-card-media {
  position: relative;
  height: 150px;
  background:
    radial-gradient(circle at center, rgba(32, 32, 60, 0.5) 0%, rgba(0, 0, 0, 0) 70%),
    #0c0c0c;
}

.asst-card-img,
.asst-card-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
}

.asst-match {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid var(--border-hl);
}

.asst-match--high {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
}

.asst-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px 16px 18px;
  min-width: 0;
}

.asst-card-house {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.asst-card-name {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.05;
  margin: 4px 0 6px;
  overflow-wrap: anywhere;
}

.asst-card-usecase {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 8px;
}

.asst-card-reasons {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.asst-card-reasons li {
  position: relative;
  padding-left: 14px;
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.7);
}

.asst-card-reasons li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.asst-card-foot {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  max-width: 100%;
  margin-top: auto;
  min-width: 0;
}

.asst-card-price {
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--accent);
  white-space: nowrap;
  min-width: 0;
}

.asst-card-price small {
  font-family: var(--font-sans);
  font-size: 10px;
  color: var(--muted);
}

.asst-card-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  max-width: 100%;
  min-width: 0;
}

.asst-card-detail {
  background: none;
  border: 1px solid var(--border-hl);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  box-sizing: border-box;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 13px;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.asst-card-detail:hover {
  border-color: var(--accent);
  color: #fff;
}

.asst-card-add {
  box-sizing: border-box;
  font-size: 11px;
  max-width: 100%;
  padding: 10px 16px;
  min-width: 0;
}

/* ── Empty state ───────────────────────────────────────────── */
.asst-empty {
  border: 1px dashed var(--border-hl);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
}

.asst-empty-title {
  font-family: var(--font-serif);
  font-size: 22px;
  margin-bottom: 6px;
}

.asst-empty-desc {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}

@media (max-width: 600px) {
  .asst-form {
    grid-template-columns: 1fr;
    padding: 18px;
    gap: 16px;
    max-width: 100%;
  }
  .asst-submit {
    width: 100%;
  }
  .asst-results-grid {
    grid-template-columns: 1fr;
  }
  .asst-card {
    display: flex;
    flex-direction: column;
  }
  .asst-card-media {
    height: 132px;
  }
  .asst-card-name {
    font-size: 20px;
  }
  .asst-card-body {
    padding: 15px;
  }
  .asst-card-foot {
    align-items: stretch;
    flex-direction: column;
    gap: 9px;
  }
  .asst-card-price {
    white-space: normal;
  }
  .asst-card-actions {
    justify-content: stretch;
    width: 100%;
  }
  .asst-card-detail {
    flex: 0 0 auto;
  }
  .asst-card-add {
    flex: 1 1 auto;
    min-height: 42px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SMART BUNDLES
   ═══════════════════════════════════════════════════════════════ */
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}

.bundle-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.bundle-card:hover {
  border-color: rgba(201, 169, 110, 0.28);
  transform: translateY(-3px);
}

.bundle-head {
  margin-bottom: 16px;
}

.bundle-title {
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.05;
  margin-bottom: 6px;
}

.bundle-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}

.bundle-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.bundle-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  padding: 8px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.bundle-item:hover {
  border-color: var(--border-hl);
}

.bundle-item-img {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  overflow: hidden;
  background: #0c0c0c;
}

.bundle-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.bundle-item-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.bundle-item-house {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.bundle-item-name {
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bundle-item-price {
  font-size: 11px;
  color: var(--accent);
}

.bundle-why {
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
  padding: 12px 14px;
  border-left: 2px solid var(--accent);
  background: rgba(201, 169, 110, 0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 18px;
}

.bundle-why span {
  display: block;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.bundle-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.bundle-total {
  display: flex;
  flex-direction: column;
}

.bundle-total-label {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.bundle-total-amount {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--accent);
}

.bundle-add {
  font-size: 11px;
  padding: 12px 20px;
}

@media (max-width: 600px) {
  .bundle-grid {
    grid-template-columns: 1fr;
  }
  .bundle-card {
    padding: 18px;
  }
  .bundle-title {
    font-size: 23px;
  }
}

.bundle-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(34px, 6vw, 68px);
}

.bundle-section-copy {
  max-width: 320px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.bundle-editorial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 42px);
}

.bundle-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 42px);
  align-items: stretch;
  padding: clamp(18px, 3vw, 28px);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 22%, rgba(201, 169, 110, 0.09), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
}

.bundle-card:nth-child(even) {
  grid-template-columns: auto minmax(0, 1fr) minmax(280px, 0.88fr);
}

.bundle-card:nth-child(even) .bundle-hero {
  grid-column: 3;
}

.bundle-card:nth-child(even) .bundle-copy {
  grid-column: 2;
  grid-row: 1;
}

.bundle-card:nth-child(even) .bundle-foot {
  grid-column: 1;
  grid-row: 1;
}

.bundle-hero {
  position: relative;
  min-height: 330px;
}

.bundle-hero-img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 38%, rgba(201, 169, 110, 0.14), transparent 52%),
    linear-gradient(180deg, #141414, #050505);
}

.bundle-hero-img img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  padding: 24px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.65));
}

.bundle-savings-badge {
  position: absolute;
  right: 14px;
  top: 14px;
  display: grid;
  gap: 2px;
  min-width: 92px;
  padding: 10px 12px;
  text-align: center;
  border: 1px solid rgba(201, 169, 110, 0.34);
  border-radius: 12px;
  background: rgba(5, 5, 5, 0.76);
  backdrop-filter: blur(12px);
}

.bundle-savings-badge span,
.bundle-mood {
  color: rgba(201, 169, 110, 0.9);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.bundle-savings-badge strong {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 23px;
  font-weight: 300;
}

.bundle-copy {
  align-self: center;
  min-width: 0;
}

.bundle-mood {
  margin-bottom: 12px;
}

.bundle-card .bundle-title {
  font-size: clamp(34px, 4vw, 58px);
  letter-spacing: 0;
  margin-bottom: 12px;
}

.bundle-card .bundle-desc {
  max-width: 440px;
  font-size: 15px;
  line-height: 1.7;
}

.bundle-card .bundle-why {
  max-width: 520px;
  margin: 20px 0;
  padding: 0 0 0 16px;
  background: transparent;
}

.bundle-feature {
  display: grid;
  gap: 4px;
  width: min(100%, 390px);
  margin-bottom: 14px;
  padding: 14px 16px;
  text-align: left;
  border: 1px solid rgba(201, 169, 110, 0.18);
  border-radius: 12px;
  background: rgba(201, 169, 110, 0.055);
}

.bundle-feature span,
.bundle-feature small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.bundle-feature strong {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 300;
}

.bundle-card .bundle-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.bundle-card .bundle-item {
  min-height: 76px;
  border-radius: 12px;
}

.bundle-card .bundle-foot {
  align-self: center;
  min-width: 178px;
  flex-direction: column;
  align-items: stretch;
  padding-left: clamp(0px, 2vw, 20px);
}

.bundle-total-original {
  width: max-content;
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1;
  text-decoration: line-through;
  text-decoration-color: rgba(201, 169, 110, 0.72);
}

.bundle-card .bundle-total-amount {
  font-size: 40px;
  line-height: 1;
}

.bundle-card .bundle-add {
  width: 100%;
  min-height: 48px;
  margin-top: 12px;
}

@media (max-width: 900px) {
  .bundle-card,
  .bundle-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .bundle-card:nth-child(even) .bundle-hero,
  .bundle-card:nth-child(even) .bundle-copy,
  .bundle-card:nth-child(even) .bundle-foot {
    grid-column: auto;
    grid-row: auto;
  }

  .bundle-hero,
  .bundle-hero-img {
    min-height: 300px;
  }

  .bundle-card .bundle-foot {
    padding-left: 0;
  }
}

@media (max-width: 600px) {
  .bundle-section-head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 28px;
  }

  .bundle-card {
    border-radius: 14px;
    gap: 18px;
  }

  .bundle-hero,
  .bundle-hero-img {
    min-height: 260px;
  }

  .bundle-card .bundle-title {
    font-size: 34px;
  }

  .bundle-card .bundle-desc {
    font-size: 14px;
  }

  .bundle-card .bundle-items {
    grid-template-columns: 1fr;
  }

  .bundle-card .bundle-total-amount {
    font-size: 34px;
  }
}

/* ============================================================
   MOOD COLLECTION PAGE (/mood/{slug})
   Editorial layout. Token-driven, mobile-first.
   ============================================================ */
.mood-body { background: var(--bg, #030303); }

.mood-root {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 18px 120px;
}

.mood-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.mood-back:hover { color: var(--accent); }

.mood-hero {
  text-align: left;
  padding: 36px 0 28px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.mood-eyebrow {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px;
}
.mood-title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 7vw, 64px);
  line-height: 1.02;
  color: #fff;
  margin: 0 0 14px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.mood-tagline {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 10px;
  max-width: 640px;
}
.mood-description {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 18px;
  max-width: 640px;
}
.mood-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}
.mood-chip {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 12px;
  border: 1px solid rgba(201, 169, 110, 0.28);
  border-radius: 999px;
}
.mood-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.mood-hero-actions .btn-primary,
.mood-hero-actions .btn-ghost {
  padding: 11px 18px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 999px;
  text-decoration: none;
  display: inline-block;
}

.mood-section-h {
  font-family: var(--font-serif);
  font-size: 22px;
  color: #fff;
  margin: 0 0 16px;
  font-weight: 400;
}

.mood-why { margin-bottom: 32px; }
.mood-why-list {
  list-style: none;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mood-why-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}
.mood-why-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 8px;
  flex: 0 0 auto;
}

.mood-featured,
.mood-more,
.mood-discover,
.mood-catalog-cta {
  margin-bottom: 36px;
}

.mood-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.mood-feature-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.25s ease, transform 0.25s ease;
  text-align: left;
}
.mood-feature-card:hover {
  border-color: var(--border-hl);
  transform: translateY(-2px);
}
.mood-feature-img {
  width: 96px;
  height: 96px;
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(32, 32, 60, 0.5) 0%, rgba(0, 0, 0, 0) 70%),
    #0c0c0c;
  flex: 0 0 auto;
}
.mood-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}
.mood-feature-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.mood-feature-house {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.mood-feature-name {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.1;
  color: #fff;
  margin: 0;
  font-weight: 400;
}
.mood-feature-conc {
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--accent);
  padding: 4px 8px;
  border: 1px solid rgba(201, 169, 110, 0.28);
  border-radius: 999px;
  align-self: flex-start;
  text-transform: uppercase;
}
.mood-feature-price {
  font-size: 12px;
  color: var(--accent);
  margin: 4px 0 0;
}

.mood-more-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.mood-grid-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.mood-grid-card:hover {
  border-color: var(--border-hl);
  transform: translateY(-2px);
}
.mood-grid-img {
  display: block;
  height: 118px;
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(32, 32, 60, 0.5) 0%, rgba(0, 0, 0, 0) 70%),
    #0c0c0c;
}
.mood-grid-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}
.mood-grid-house {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.mood-grid-name {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.1;
  color: #fff;
}
.mood-grid-price {
  font-size: 11px;
  color: var(--accent);
}

.mood-discover-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.mood-discover-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  text-decoration: none;
  transition: border-color 0.25s ease, transform 0.2s ease;
}
.mood-discover-card:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}
.mood-discover-eyebrow {
  grid-column: 1 / 2;
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
.mood-discover-title {
  grid-column: 1 / 2;
  font-family: var(--font-serif);
  font-size: 22px;
  color: #fff;
  line-height: 1.05;
}
.mood-discover-tagline {
  grid-column: 1 / 2;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.4;
}
.mood-discover-arrow {
  grid-column: 2 / 3;
  grid-row: 1 / span 3;
  color: var(--accent);
  font-size: 22px;
  align-self: center;
}

.mood-catalog-cta {
  text-align: center;
  padding: 24px 16px;
  border-top: 1px solid var(--border);
}
.mood-catalog-cta p {
  font-size: 12.5px;
  color: var(--muted);
  margin: 0 0 12px;
}
.mood-catalog-cta .btn-ghost {
  padding: 11px 22px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 999px;
  text-decoration: none;
  display: inline-block;
}

.mood-featured--empty .mood-empty-copy {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .mood-discover-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .mood-more-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ── Fase 2: Discovery — "¿Conoces alguno de estos?" ───────── */
.disc-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.5;
}

.disc-anchors {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.disc-anchors::-webkit-scrollbar { display: none; }

.disc-anchor {
  flex: 0 0 auto;
  width: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm, 8px);
  background: transparent;
  cursor: pointer;
  text-align: center;
  transition: border-color .2s, background .2s;
  scroll-snap-align: start;
}
.disc-anchor:hover,
.disc-anchor--active {
  border-color: var(--accent);
}
.disc-anchor--active {
  background: rgba(201,169,110,.07);
}

.disc-anchor-img {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255,255,255,.05);
  flex-shrink: 0;
}
.disc-anchor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.disc-anchor-img--fallback { background: rgba(255,255,255,.05); }

.disc-anchor-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.disc-anchor-house {
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.disc-anchor-name {
  font-size: 10.5px;
  color: #fff;
  line-height: 1.3;
}

/* Results */
.disc-results { margin-top: 28px; }

.disc-results-label {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.5;
}
.disc-results-label strong { color: #fff; }

.disc-recs-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 480px) {
  .disc-recs-row { grid-template-columns: repeat(4, 1fr); }
}

.disc-rec-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm, 8px);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: border-color .2s;
}
.disc-rec-card:hover { border-color: var(--accent); }

.disc-rec-img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 5px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  margin-bottom: 2px;
}
.disc-rec-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.disc-rec-img--fallback { background: rgba(255,255,255,.04); }

.disc-rec-house {
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.disc-rec-name {
  font-size: 11px;
  color: #fff;
  line-height: 1.3;
  flex-grow: 1;
}
.disc-rec-price {
  font-size: 11px;
  color: var(--accent, #c9a96e);
  margin-top: 2px;
}

.disc-empty {
  font-size: 12px;
  color: var(--muted);
  padding: 16px 0;
}

/* ── Fase 1: Microcopy de decant + propuesta de valor ──────── */
.pdm-decant-hint {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent, #c9a96e);
  margin: 4px 0 10px;
  line-height: 1.4;
}

.pdm-value-prop,
.pdp-value-prop {
  font-size: 11px;
  color: var(--muted, rgba(255,255,255,.45));
  line-height: 1.5;
  margin: 4px 0 10px;
}
