/* Lorin Perfume — storefront
   Palette pulled from the logo: blush cream, dusty rose, gold, sage. */

:root{
  --cream:#FBF4F1;
  --blush:#EAD3CE;
  --blush-soft:#F4E3DF;
  --rose:#C2928C;
  --rose-deep:#8E5F59;
  --gold:#C39A4E;
  --gold-soft:#E3C988;
  --sage:#8A9A6E;
  --ink:#4A3A37;
  --muted:#9C857F;
  --card:#FFFFFF;
  --shadow:0 18px 40px -22px rgba(108,71,66,.45);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'Jost',system-ui,sans-serif;
  color:var(--ink);
  background:
    radial-gradient(1100px 520px at 50% -160px, var(--blush-soft) 0%, transparent 70%),
    var(--cream);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  min-height:100vh;
}

.wrap{max-width:880px;margin:0 auto;padding:0 22px}

/* ---------- hero ---------- */
.hero{text-align:center;padding:54px 0 26px}
.hero .halo{
  position:relative;display:inline-grid;place-items:center;
}
.hero .halo::before{
  content:"";position:absolute;inset:-26px;border-radius:50%;
  background:radial-gradient(closest-side, rgba(227,201,136,.45), rgba(234,211,206,.25) 60%, transparent 75%);
  filter:blur(2px);z-index:0;
}
.hero img.logo{
  position:relative;z-index:1;width:172px;height:172px;border-radius:50%;
  object-fit:cover;box-shadow:var(--shadow);
}
.hero h1{
  font-family:'Cormorant Garamond',serif;
  font-weight:500;font-size:2.7rem;letter-spacing:.04em;
  color:var(--rose-deep);margin-top:18px;
}
.hero .tag{
  font-size:.74rem;letter-spacing:.42em;text-transform:uppercase;
  color:var(--muted);margin-top:2px;
}
.hero .contact{display:flex;align-items:center;justify-content:center;gap:11px;margin-top:14px}
.hero .contact .phone{font-size:1rem;letter-spacing:.06em;color:var(--rose-deep);font-weight:500;direction:ltr;text-decoration:none}
.wa-btn{flex:0 0 auto;display:inline-flex;align-items:center;justify-content:center;
  width:36px;height:36px;min-width:36px;border-radius:50%;background:#25D366;
  box-shadow:0 8px 18px -8px rgba(37,211,102,.75);overflow:hidden;
  transition:transform .2s ease, filter .2s ease}
.wa-btn:hover{transform:translateY(-2px);filter:brightness(1.05)}
.wa-btn svg{width:20px;height:20px;max-width:20px;max-height:20px;display:block;fill:#fff}

/* signature gold rule with a faceted diamond, echoing the bottle cap */
.rule{display:flex;align-items:center;justify-content:center;gap:14px;margin:22px 0 8px}
.rule .line{height:1px;width:70px;background:linear-gradient(90deg,transparent,var(--gold))}
.rule .line.r{background:linear-gradient(90deg,var(--gold),transparent)}
.rule .gem{width:9px;height:9px;background:var(--gold);transform:rotate(45deg);
  box-shadow:0 0 0 3px rgba(195,154,78,.18)}

/* ---------- product grid (two-by-two) ---------- */
.section-label{
  text-align:center;font-size:.72rem;letter-spacing:.4em;text-transform:uppercase;
  color:var(--rose);margin:34px 0 20px;
}
.grid{display:grid;grid-template-columns:repeat(2,1fr);gap:22px;padding-bottom:18px}

.card{
  background:var(--card);border-radius:18px;overflow:hidden;
  border:1px solid rgba(195,154,78,.28);
  box-shadow:0 10px 26px -20px rgba(108,71,66,.5);
  transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  display:flex;flex-direction:column;
}
.card:hover{transform:translateY(-6px);box-shadow:var(--shadow);border-color:var(--gold)}
.card .thumb{
  aspect-ratio:1/1;background:var(--blush-soft);overflow:hidden;
}
.card .thumb img{width:100%;height:100%;object-fit:cover;display:block;
  transition:transform .6s ease}
.card:hover .thumb img{transform:scale(1.05)}
.card .thumb.empty{display:grid;place-items:center;color:var(--rose);
  font-family:'Cormorant Garamond',serif;font-size:1.4rem;letter-spacing:.1em}
.card .body{padding:14px 16px 18px;text-align:center}
.card .name{
  font-family:'Cormorant Garamond',serif;font-size:1.28rem;font-weight:500;
  color:var(--ink);line-height:1.2;
}
.card .note{font-size:.74rem;color:var(--muted);margin-top:2px}
.card .price{
  display:inline-block;margin-top:10px;font-size:.86rem;font-weight:500;
  letter-spacing:.06em;color:var(--rose-deep);
  padding:4px 14px;border-radius:999px;background:rgba(227,201,136,.22);
}

/* ---------- empty / footer ---------- */
.empty-state{
  text-align:center;padding:60px 20px;color:var(--muted);
  font-family:'Cormorant Garamond',serif;font-size:1.3rem;
}
footer{text-align:center;padding:46px 0 56px;color:var(--muted);font-size:.8rem}
footer a{color:var(--rose-deep);text-decoration:none;border-bottom:1px solid var(--gold-soft)}
footer .fr{margin-bottom:14px}

/* ---------- responsive ---------- */
@media (max-width:560px){
  .wrap{padding:0 16px}
  .hero{padding:38px 0 18px}
  .hero img.logo{width:140px;height:140px}
  .hero h1{font-size:2.2rem}
  .hero .tag{letter-spacing:.34em}
  .section-label{margin:26px 0 16px;letter-spacing:.3em}
  .grid{gap:13px}
  .card{border-radius:15px}
  .card .body{padding:12px 12px 15px}
  .card .name{font-size:1.1rem}
  .card .price{font-size:.8rem;padding:4px 12px}
}

@media (max-width:360px){
  .hero h1{font-size:1.95rem}
  .grid{gap:10px}
}

@media (prefers-reduced-motion:reduce){
  *{transition:none !important}
  html{scroll-behavior:auto}
}
