/* ============================================================
   Concept C — "Storefront" : retail-led, closest to the persilux reference
   ============================================================ */
:root {
  --ink:        #222222;
  --ink-soft:   #3A3532;
  --cocoa:      #6F5146;
  --cocoa-dark: #5A4336;
  --sale:       #B8312F;
  --bg:         #FFFFFF;
  --bg-alt:     #F7F4EF;
  --sand:       #F7F4EF;
  --linen:      #EFE8DE;
  --line:       #E3DCD2;
  --radius:     3px;
  --section-y:  clamp(2.75rem, 7vw, 5rem);
}

/* promo bar */
.promo {
  background: var(--cocoa-dark); color: #FBF7F2;
  text-align: center; font-size: .8125rem; letter-spacing: .02em;
  padding: .6rem 1rem;
}
.promo strong { color: #fff; }
.promo a { color: #EBBE6A; text-decoration: underline; text-underline-offset: 3px; }

/* tiered offer strip */
.tiers {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
.tiers div { background: #fff; padding: .9rem .5rem; text-align: center; }
.tiers b { display: block; font-family: var(--font-display); font-size: 1.15rem; color: var(--sale); }
.tiers span { font-size: .75rem; color: var(--muted); letter-spacing: .04em; }

/* hero C: image-led split with offer card */
.hero-c { background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.hero-c__grid { display: grid; gap: 0; align-items: stretch; }
@media (min-width: 900px) { .hero-c__grid { grid-template-columns: 1fr 1fr; } }
.hero-c__copy { padding: clamp(2rem, 6vw, 4.5rem) 0; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 900px) { .hero-c__copy { padding-right: clamp(2rem, 5vw, 4rem); } }
.hero-c__media { position: relative; }
.hero-c__offer {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
  background: #fff; border: 1px solid var(--line); padding: .9rem 1.1rem; max-width: 15rem;
  box-shadow: var(--shadow);
}
.hero-c__offer b { display: block; font-family: var(--font-display); font-size: 1.2rem; color: var(--sale); }
.hero-c__offer span { font-size: .75rem; color: var(--muted); }

/* collection tiles */
.tile { position: relative; display: block; text-decoration: none; overflow: hidden; border: 1px solid var(--line); }
.tile .ph { border: 0; aspect-ratio: 3 / 4; }
.tile__cap {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: 1rem; background: linear-gradient(to top, rgba(20,20,20,.78), transparent);
  color: #fff;
}
.tile__cap h3 { color: #fff; font-size: 1.1rem; margin: 0 0 .15rem; }
.tile__cap span { font-size: .8125rem; color: #E6DFD8; }
.tile:hover .tile__cap h3 { color: var(--ochre); }

/* product card retail bits */
.badge-sale {
  position: absolute; top: .6rem; right: .6rem; z-index: 3;
  background: var(--sale); color: #fff; font-size: .625rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: .28rem .5rem;
}
.stars { color: var(--ochre); font-size: .8125rem; letter-spacing: .1em; }
.stars small { color: var(--muted); letter-spacing: 0; margin-left: .35rem; }
.was { color: var(--muted); text-decoration: line-through; font-size: .9375rem; font-family: var(--font-sans); margin-left: .4rem; }

/* value strip */
.value-strip { display: grid; gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
@media (min-width: 640px) { .value-strip { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .value-strip { grid-template-columns: repeat(4, 1fr); } }
.value-strip div { background: #fff; padding: 1.15rem 1.25rem; display: flex; gap: .7rem; align-items: center; }
.value-strip svg { width: 22px; height: 22px; color: var(--ochre-deep); flex: none; }
.value-strip b { display: block; font-size: .9375rem; color: var(--ink); }
.value-strip span { font-size: .8125rem; color: var(--muted); }

/* newsletter */
.newsletter { background: var(--cocoa-dark); color: #F3EBE1; }
.newsletter h2 { color: #fff; }
.newsletter p { color: #DCCFC3; }
.newsletter .field input { background: #fff; border-color: transparent; }
.newsletter-form { display: flex; flex-direction: column; gap: .75rem; max-width: 30rem; }
@media (min-width: 560px) { .newsletter-form { flex-direction: row; } .newsletter-form .field { flex: 1; } }
