/* ============================================================
   RETAIL PAGE – Premium “coming soon” experience
   Loaded after style.css / modern.css
   ============================================================ */

.page-retail main.retail-main {
  max-width: 72rem;
  padding-top: 0;
}

/* ─── Hero ─────────────────────────────────────────────────── */
.retail-hero {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(2.75rem, 6vw, 5rem) clamp(1.25rem, 4vw, 2rem) clamp(3rem, 7vw, 5.5rem);
  overflow: hidden;
  border-radius: 0 0 clamp(20px, 4vw, 32px) clamp(20px, 4vw, 32px);
  background:
    radial-gradient(ellipse 120% 80% at 20% 0%, rgba(184, 151, 93, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 90% 70% at 100% 30%, rgba(107, 66, 38, 0.35) 0%, transparent 50%),
    linear-gradient(165deg, #1a0d06 0%, #0d0501 45%, #150a04 100%);
  border: 1px solid rgba(184, 151, 93, 0.18);
  border-top: none;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 252, 248, 0.06);
}

.retail-hero__glow {
  position: absolute;
  inset: -40% -20% auto -20%;
  height: 85%;
  background: radial-gradient(ellipse at 50% 0%, rgba(212, 184, 122, 0.15) 0%, transparent 65%);
  pointer-events: none;
  animation: retail-hero-glow 10s ease-in-out infinite alternate;
}

@keyframes retail-hero-glow {
  0% { opacity: 0.7; transform: scale(1) translateY(0); }
  100% { opacity: 1; transform: scale(1.05) translateY(-2%); }
}

@media (prefers-reduced-motion: reduce) {
  .retail-hero__glow { animation: none; }
}

.retail-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.retail-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem 0.45rem 0.65rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 248, 245, 0.95);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(212, 184, 122, 0.45);
  border-radius: 9999px;
  box-shadow:
    0 0 24px rgba(212, 184, 122, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.retail-hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3ddc84;
  box-shadow: 0 0 12px #3ddc84;
  animation: retail-pulse 2s ease-in-out infinite;
}

@keyframes retail-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(0.92); }
}

@media (prefers-reduced-motion: reduce) {
  .retail-hero__badge-dot { animation: none; }
}

.retail-hero__title {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.35rem, 6.5vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: rgba(252, 249, 244, 0.98);
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
}

.retail-hero__title-line {
  display: block;
}

.retail-hero__title-line--accent {
  background: linear-gradient(120deg, #f5eddb 0%, var(--caramel-400) 45%, #c9a227 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.retail-hero__lead {
  margin: 0 auto 1.75rem;
  max-width: 36rem;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.65;
  color: rgba(236, 223, 196, 0.82);
}

.retail-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

.retail-hero__btn.btn-primary {
  background: linear-gradient(135deg, var(--caramel-400) 0%, var(--caramel-600) 100%);
  color: var(--brand-900);
  border: none;
  font-weight: 600;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.retail-hero__btn.btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.retail-hero__btn.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(252, 249, 244, 0.92);
  border: 1px solid rgba(212, 184, 122, 0.35);
}

.retail-hero__btn.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--caramel-400);
  color: var(--caramel-100);
}

/* Decorative rings */
.retail-hero__rings {
  position: absolute;
  right: clamp(-2rem, -4vw, 0);
  bottom: clamp(-1rem, -2vw, 0.5rem);
  width: clamp(140px, 28vw, 220px);
  height: clamp(140px, 28vw, 220px);
  opacity: 0.14;
  pointer-events: none;
  z-index: 1;
}

.retail-hero__rings svg {
  width: 100%;
  height: 100%;
}

/* ─── Feature strip ───────────────────────────────────────── */
.retail-features {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

@media (min-width: 700px) {
  .retail-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.retail-feature-card {
  position: relative;
  padding: 1.35rem 1.25rem 1.4rem;
  background: linear-gradient(145deg, rgba(255, 252, 248, 0.92) 0%, rgba(245, 237, 219, 0.55) 100%);
  border: 1px solid rgba(184, 151, 93, 0.28);
  border-radius: 16px;
  box-shadow:
    0 12px 40px rgba(42, 21, 8, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.retail-feature-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 50px rgba(42, 21, 8, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.retail-feature-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.875rem;
  color: var(--caramel-600);
}

.retail-feature-card__icon svg {
  width: 100%;
  height: 100%;
}

.retail-feature-card h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brand-900);
}

.retail-feature-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* ─── Preview section header ───────────────────────────────── */
.retail-preview-head {
  margin-bottom: 1.75rem;
  text-align: center;
}

.retail-preview-head__eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--caramel-600);
  margin-bottom: 0.5rem;
}

.retail-preview-head__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3.5vw, 2.15rem);
  font-weight: 600;
  color: var(--brand-900);
}

.retail-preview-head__sub {
  margin: 0 auto;
  max-width: 32rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-mid);
}

/* ─── Cart panel (coming soon) ─────────────────────────────── */
.page-retail .cart-panel.cart-panel--retail-soon {
  position: relative;
  background: linear-gradient(160deg, rgba(255, 252, 248, 0.97) 0%, rgba(252, 246, 236, 0.92) 100%);
  border: 1px solid rgba(184, 151, 93, 0.35);
  border-radius: 18px;
  padding: 1.5rem 1.25rem 1.35rem;
  box-shadow:
    0 16px 48px rgba(42, 21, 8, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.page-retail .cart-panel.cart-panel--retail-soon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(212, 184, 122, 0.5), rgba(107, 66, 38, 0.15), rgba(212, 184, 122, 0.35));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.cart-panel__ribbon {
  position: absolute;
  top: 0.85rem;
  right: -2.25rem;
  padding: 0.28rem 2.5rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-900);
  background: linear-gradient(90deg, var(--caramel-400), #e8c97e);
  transform: rotate(6deg);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

@media (max-width: 859px) {
  .cart-panel__ribbon {
    right: 0.5rem;
    top: 0.5rem;
    transform: none;
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    font-size: 0.58rem;
  }
}

.cart-panel--retail-soon h2 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin: 0 0 0.25rem;
  padding-right: 5rem;
}

.cart-panel__hint {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.page-retail .cart-panel--retail-soon .btn.btn-primary:disabled {
  cursor: not-allowed;
  opacity: 0.85;
  background: linear-gradient(135deg, rgba(107, 66, 38, 0.35), rgba(61, 35, 20, 0.5));
  color: rgba(252, 249, 244, 0.85);
  border: 1px dashed rgba(212, 184, 122, 0.45);
}

/* ─── Bottom CTA ───────────────────────────────────────────── */
.retail-bottom-cta {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  margin-bottom: 1rem;
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.25rem, 3vw, 2rem);
  text-align: center;
  border-radius: 20px;
  background:
    radial-gradient(ellipse 90% 120% at 50% -20%, rgba(212, 184, 122, 0.35) 0%, transparent 55%),
    linear-gradient(
      155deg,
      #fffefb 0%,
      #faf3e8 38%,
      #f2e6d2 100%
    );
  border: 1px solid rgba(184, 151, 93, 0.42);
  box-shadow:
    0 12px 40px rgba(42, 21, 8, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.retail-bottom-cta__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.8vw, 1.65rem);
  color: var(--brand-900);
}

.retail-bottom-cta__text {
  margin: 0 0 1.25rem;
  font-size: 0.98rem;
  color: var(--text-mid);
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.retail-bottom-cta .btn {
  margin: 0.25rem;
}

/* ─── Product cards on retail: subtle “preview” feel ───────── */
.page-retail .retail-layout--preview .retail-product-card {
  border-color: rgba(184, 151, 93, 0.22);
}

.page-retail .retail-category-title {
  font-size: 1.15rem;
  border-bottom-color: rgba(184, 151, 93, 0.25);
}

