/* ============================================================
   firerluxury — assets/style.css
   编码：UTF-8（无BOM）。请勿用记事本另存为 ANSI。
   ============================================================ */
:root{
  --bg:#F7F4EE;
  --surface:#FFFFFF;
  --ink:#1B1915;
  --muted:#6E695C;
  --line:#E5DED0;
  --gold:#A98B5B;
  --gold-deep:#8C7144;
  --green:#25D366;
  --green-dark:#1DA851;
  --green-soft:#E4F9EC;
  --shadow:0 1px 2px rgba(27,25,21,.05), 0 12px 32px rgba(27,25,21,.08);
  --radius:16px;
  --display:"Cormorant Garamond",Georgia,"Times New Roman",serif;
  --body:-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--body);
  background:var(--bg);
  color:var(--ink);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-wrap:pretty;
}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
.container{width:min(1120px,100% - 40px);margin-inline:auto}
section{padding-block:76px}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-family:var(--body);
  font-weight:600;
  font-size:.98rem;
  line-height:1;
  border:0;
  cursor:pointer;
  border-radius:999px;
  padding:16px 26px;
  min-height:52px;
  transition:background-color .18s ease, transform .18s ease, box-shadow .18s ease, color .18s ease;
}
.btn svg{flex:0 0 auto}
.btn-green{background:var(--green);color:#0B3D26}
.btn-green:hover{background:var(--green-dark);color:#fff}
.btn-green:active{transform:scale(.98)}
.btn-ghost{background:var(--surface);color:var(--ink);border:1px solid var(--line)}
.btn-ghost:hover{border-color:#C9BFAB}
.bubble-btn{position:relative;border-radius:20px 20px 20px 5px;box-shadow:0 6px 18px rgba(37,211,102,.35)}
.bubble-btn::after{
  content:"";
  position:absolute;
  left:26px;bottom:-7px;
  width:14px;height:14px;
  background:inherit;
  border-radius:3px;
  transform:rotate(45deg);
}

/* ---------- Section headings ---------- */
.sec-head{margin-bottom:44px}
.eyebrow{
  display:flex;
  align-items:center;
  gap:12px;
  font-family:var(--body);
  font-weight:600;
  font-size:.78rem;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--gold-deep);
  margin-bottom:18px;
}
.eyebrow::before{content:"";width:26px;height:1px;background:var(--gold);flex:0 0 auto}
.sec-title{
  font-family:var(--display);
  font-weight:600;
  font-size:clamp(2rem, 4vw, 2.7rem);
  line-height:1.1;
  letter-spacing:.01em;
}
.sec-sub{color:var(--muted);margin-top:12px;max-width:56ch;font-size:.98rem}

/* ---------- Header ---------- */
.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(247,244,238,.9);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{display:flex;align-items:center;justify-content:space-between;gap:16px;padding-block:12px}
.brand{
  display:flex;align-items:center;gap:12px;
  font-family:var(--display);
  font-weight:600;
  font-size:1.5rem;
  letter-spacing:.02em;
  line-height:1;
  color:var(--ink);
}
.brand-name{line-height:1}
.logo-mark{width:40px;height:40px;flex:0 0 auto;color:var(--ink)}
.logo-mark text{fill:currentColor}
.nav-actions{display:flex;align-items:center;gap:12px;flex-wrap:wrap}
.nav-chat{font-size:.9rem;padding:12px 18px;min-height:44px}
.nav-sec{display:none;font-size:.92rem}
@media(min-width:640px){.nav-sec{display:inline-flex}}

/* ---------- Hero ---------- */
.hero{padding-block:64px 44px}
.hero-inner{
  display:grid;
  gap:40px;
  align-items:center;
  grid-template-columns:1fr;
}
.hero-copy h1{
  font-family:var(--display);
  font-weight:600;
  font-size:clamp(2.7rem, 6.5vw, 4.4rem);
  line-height:1.04;
  letter-spacing:.01em;
  margin-block:20px 20px;
}
.hero-copy h1 em{font-style:italic;color:var(--gold-deep)}
.hero-lead{font-size:1.1rem;color:var(--muted);max-width:46ch;margin-bottom:32px}
.hero-actions{display:flex;flex-wrap:wrap;gap:14px;align-items:center}
.hero-note{
  display:flex;align-items:center;gap:8px;
  margin-top:20px;
  font-size:.9rem;
  color:var(--muted);
}
.hero-note svg{width:15px;height:15px;fill:var(--gold)}
.hero-media{position:relative}
.hero-media img{width:100%;border-radius:6px;aspect-ratio:3/2;object-fit:cover}
.hero-badge{
  position:absolute;
  left:16px;bottom:16px;
  display:flex;align-items:center;gap:10px;
  background:var(--surface);
  border-radius:14px 14px 14px 4px;
  padding:12px 16px;
  box-shadow:var(--shadow);
}
.hero-badge .dot{
  width:38px;height:38px;flex:0 0 auto;
  border-radius:50%;
  background:var(--green-soft);
  display:grid;place-items:center;
}
.hero-badge .dot svg{width:19px;height:19px;fill:var(--green-dark)}
.hero-badge b{font-family:var(--body);font-weight:600;font-size:.92rem;display:block;line-height:1.3}
.hero-badge span{font-size:.78rem;color:var(--muted)}
@media(min-width:900px){
  .hero-inner{grid-template-columns:1.05fr .95fr}
  .hero{padding-block:96px 60px}
}

/* ---------- Trust strip ---------- */
.trust{border-block:1px solid var(--line);padding-block:0}
.trust-inner{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  padding-block:24px;
}
.trust-item{display:flex;flex-direction:column;gap:2px}
.trust-item b{font-family:var(--display);font-weight:600;font-size:1.22rem;letter-spacing:.01em}
.trust-item span{font-size:.82rem;color:var(--muted)}
@media(max-width:640px){.trust-inner{grid-template-columns:1fr;gap:14px}}

/* ---------- Category cards ---------- */
.cat-grid{
  display:grid;
  gap:24px;
  grid-template-columns:1fr;
}
.cat-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:12px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.cat-card:hover{transform:translateY(-4px);box-shadow:var(--shadow);border-color:#D8CFBC}
.cat-media{aspect-ratio:4/3;overflow:hidden;background:#F1EDE4}
.cat-media img{width:100%;height:100%;object-fit:cover;transition:transform .35s ease}
.cat-card:hover .cat-media img{transform:scale(1.04)}
.cat-body{
  padding:20px 22px;
  display:flex;align-items:center;justify-content:space-between;gap:14px;
}
.cat-body h3{font-family:var(--display);font-weight:600;font-size:1.5rem;letter-spacing:.01em}
.cat-body p{font-size:.88rem;color:var(--muted)}
.cat-go{
  font-family:var(--body);font-weight:600;font-size:.88rem;
  color:var(--gold-deep);
  white-space:nowrap;
}
@media(min-width:760px){.cat-grid{grid-template-columns:1fr 1fr}}

/* ---------- Product cards ---------- */
.products{background:var(--surface);border-block:1px solid var(--line)}
.grid{
  display:grid;
  gap:28px;
  grid-template-columns:repeat(auto-fill,minmax(240px,1fr));
}
.card{
  position:relative;
  background:var(--bg);
  border:1px solid var(--line);
  border-radius:6px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover{transform:translateY(-4px);box-shadow:var(--shadow);border-color:#D8CFBC}
.card-media{position:relative;aspect-ratio:1/1;overflow:hidden;background:#F1EDE4}
.card-media img{
  width:100%;height:100%;
  object-fit:cover;
  transition:transform .35s ease;
}
.card:hover .card-media img{transform:scale(1.04)}
.chat-hint{
  position:absolute;top:12px;right:12px;
  display:inline-flex;align-items:center;gap:6px;
  background:var(--green);color:#0B3D26;
  font-family:var(--body);font-weight:600;font-size:.76rem;
  border-radius:999px 999px 999px 6px;
  padding:8px 12px;
  opacity:0;transform:translateY(-6px);
  transition:opacity .2s ease, transform .2s ease;
  pointer-events:none;
}
.chat-hint svg{width:13px;height:13px;fill:#0B3D26}
.card:hover .chat-hint{opacity:1;transform:translateY(0)}
.card-body{padding:20px 20px 18px;display:flex;flex-direction:column;gap:8px;flex:1}
.card-body h3{font-family:var(--display);font-weight:600;font-size:1.3rem;letter-spacing:.01em;line-height:1.2}
.card-body p{font-size:.88rem;color:var(--muted);flex:1}
.card-body .btn{
  margin-top:8px;
  width:100%;
  font-size:.9rem;
  padding:13px 16px;
  min-height:48px;
  border-radius:14px 14px 14px 4px;
}
@media(max-width:520px){
  .grid{grid-template-columns:1fr 1fr;gap:14px}
  .card-body{padding:14px}
  .card-body h3{font-size:1.15rem}
  .card-body p{font-size:.8rem}
}

/* ---------- Reviews ---------- */
.reviews-grid{
  display:grid;
  gap:24px;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
}
.review{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:6px;
  padding:28px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.stars{display:flex;gap:3px}
.stars svg{width:15px;height:15px;fill:var(--gold)}
.stars .off{fill:#E4DCCB}
.review p{font-size:.95rem;flex:1}
.reviewer{display:flex;align-items:center;gap:12px}
.avatar{
  width:42px;height:42px;flex:0 0 auto;
  border-radius:50%;
  display:grid;place-items:center;
  font-family:var(--display);font-weight:600;font-size:1rem;
  color:#fff;
}
.avatar.a1{background:#4E6E5D}
.avatar.a2{background:#9A7B4F}
.avatar.a3{background:#6E7488}
.reviewer b{display:block;font-size:.92rem;line-height:1.3}
.reviewer span{font-size:.8rem;color:var(--muted)}

/* ---------- Final CTA ---------- */
.cta{background:linear-gradient(180deg,var(--bg),#F1EDE2)}
.cta-card{
  position:relative;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:12px;
  padding:56px 32px;
  text-align:center;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.cta-card h2{
  font-family:var(--display);
  font-weight:600;
  font-size:clamp(2rem,4vw,2.6rem);
  letter-spacing:.01em;
  line-height:1.12;
  margin-bottom:14px;
}
.cta-card p{color:var(--muted);max-width:48ch;margin:0 auto 32px}
.cta-card .btn{font-size:1.02rem;padding:18px 32px}
.cta-bubbles{position:absolute;border-radius:50%;background:var(--green-soft);pointer-events:none}
.cta-bubbles.b1{width:200px;height:200px;top:-80px;right:-60px}
.cta-bubbles.b2{width:130px;height:130px;bottom:-55px;left:-40px}

/* ---------- Footer ---------- */
.site-footer{border-top:1px solid var(--line);padding-block:36px}
.footer-inner{
  display:flex;flex-wrap:wrap;gap:16px;
  align-items:center;justify-content:space-between;
  font-size:.85rem;color:var(--muted);
}
.footer-inner .brand{font-size:1.35rem;color:var(--ink)}
.footer-inner .logo-mark{width:32px;height:32px}

/* ---------- Floating WhatsApp ---------- */
.float-wa{
  position:fixed;right:20px;bottom:20px;z-index:60;
  width:58px;height:58px;
  border-radius:50%;
  background:var(--green);
  display:grid;place-items:center;
  box-shadow:0 8px 22px rgba(37,211,102,.45);
  transition:transform .18s ease, background-color .18s ease;
}
.float-wa:hover{transform:scale(1.07);background:var(--green-dark)}
.float-wa svg{width:30px;height:30px;fill:#fff}

/* ---------- Motion & misc ---------- */
@media (prefers-reduced-motion: reduce){
  *{transition:none!important;animation:none!important;scroll-behavior:auto!important}
}
:focus-visible{outline:3px solid var(--gold);outline-offset:2px;border-radius:4px}
