:root {
  --bg: #e9dfca;
  --bg-alt: #ddd0b6;
  --ink: #1a1a17;
  --ink-soft: #5c5a52;
  --accent: #c8553d;
  --accent-soft: #e8a598;
  --line: #d4ccbc;
  --warm: #f4ddc4;
  --card: #fbf8f2;
  --green: #5a7d52;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 24px 50px -22px rgba(40,28,18,.22);
  --shadow-lg: 0 40px 80px -30px rgba(40,28,18,.32);
  --serif: 'Fraunces', Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif; color: var(--ink); background: var(--bg);
  line-height: 1.6; overflow-x: hidden; position: relative;
}
/* grain texture */
body::before {
  content: ''; position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .55;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.07 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
#app, .header, .topbar, .footer, .drawer, .overlay, .toast, .to-top, .mobile-menu { position: relative; z-index: 5; }

h1, h2, h3, h4, .logo, .price, .section-head h2, .hero h1, .stat-card .num, .cd-box b { font-family: var(--serif); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

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

/* ---------- Animations ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes pulseDot { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(1.3); } }
@keyframes spinSlow { to { transform: rotate(360deg); } }
@keyframes scrollX { to { transform: translateX(-50%); } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Top bar ---------- */
.topbar { background: var(--ink); color: var(--bg); font-size: .72rem; font-weight: 500; text-align: center; padding: .55rem; letter-spacing: .14em; text-transform: uppercase; }
.topbar b { color: var(--accent-soft); }

/* ---------- Header ---------- */
.header { background: rgba(245,241,234,.82); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 60; animation: fadeDown 1s ease both; transition: padding .3s; }
.header .container { display: flex; align-items: center; gap: 2rem; height: 80px; transition: height .3s; }
.header.scrolled .container { height: 66px; }
.logo { font-weight: 500; font-size: 1.4rem; letter-spacing: -.02em; display: flex; align-items: center; gap: .6rem; color: var(--ink); }
.logo .paw { width: 34px; height: 34px; background: var(--ink); color: var(--bg); border-radius: 50%; display: grid; place-items: center; font-size: 1rem; }
.nav { display: flex; gap: .4rem; flex: 1; }
.nav a { font-size: .92rem; color: var(--ink-soft); padding: .5rem .9rem; border-radius: 100px; transition: .25s; font-weight: 500; }
.nav a:hover { color: var(--ink); background: var(--bg-alt); }
.header-actions { display: flex; align-items: center; gap: .6rem; }
.icon-btn { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-size: 1.1rem; transition: .2s; }
.icon-btn:hover { background: var(--bg-alt); }
.burger { display: none; }
.cart-btn { background: var(--ink); color: var(--bg); border-radius: 100px; padding: .7rem 1.3rem; font-weight: 500; font-size: .9rem; display: flex; align-items: center; gap: .5rem; transition: .25s; }
.cart-btn:hover { background: var(--accent); transform: translateY(-1px); }
.cart-count { background: var(--bg); color: var(--ink); border-radius: 100px; min-width: 21px; height: 21px; font-size: .72rem; font-weight: 600; display: inline-flex; align-items: center; justify-content: center; padding: 0 6px; }
.cart-count.bump { animation: pulseDot .4s ease; }

/* ---------- Mobile menu ---------- */
.mobile-menu { position: fixed; top: 0; left: 0; right: 0; z-index: 55; background: var(--bg); padding: 96px 1.5rem 2rem; transform: translateY(-110%); transition: transform .4s cubic-bezier(.16,1,.3,1); box-shadow: var(--shadow); display: flex; flex-direction: column; gap: .3rem; border-bottom: 1px solid var(--line); }
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { padding: .9rem 1rem; border-radius: 8px; font-weight: 500; }
.mobile-menu a:hover { background: var(--bg-alt); color: var(--accent); }

/* ---------- Eyebrow ---------- */
.eyebrow { font-size: .78rem; font-weight: 500; text-transform: uppercase; letter-spacing: .18em; color: var(--accent); display: inline-flex; align-items: center; gap: .8rem; }
.eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--accent); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-head .eyebrow { justify-content: center; margin-bottom: 1rem; }

/* ---------- Hero ---------- */
.hero { padding: 4rem 0 5rem; position: relative; }
.hero-blob { display: none; }
.hero .container { display: grid; grid-template-columns: 1.15fr 1fr; gap: 4rem; align-items: center; }
.hero-badge { font-size: .78rem; font-weight: 500; text-transform: uppercase; letter-spacing: .18em; color: var(--accent); display: inline-flex; align-items: center; gap: .8rem; margin-bottom: 1.8rem; animation: fadeUp 1s ease .3s both; }
.hero-badge::before { content: ''; width: 30px; height: 1px; background: var(--accent); }
.hero h1 { font-weight: 300; font-size: clamp(2.8rem, 5.5vw, 4.8rem); line-height: 1; letter-spacing: -.035em; margin-bottom: 1.6rem; animation: fadeUp 1s ease .5s both; }
.hero h1 .hl { font-style: italic; font-weight: 400; color: var(--accent); }
.hero p { font-size: 1.12rem; line-height: 1.65; color: var(--ink-soft); margin-bottom: 2.4rem; max-width: 470px; animation: fadeUp 1s ease .7s both; }
.hero-cta { display: flex; gap: .9rem; flex-wrap: wrap; animation: fadeUp 1s ease .85s both; }
.hero-mini { display: flex; gap: 2.6rem; margin-top: 2.6rem; padding-top: 2rem; border-top: 1px solid var(--line); animation: fadeUp 1s ease 1s both; }
.hero-mini .m b { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; display: block; }
.hero-mini .m span { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--ink-soft); }

.hero-art { position: relative; height: 480px; animation: fadeUp 1.2s ease .5s both; }
.hero-ring { position: absolute; inset: 6% 6%; border: 1px solid var(--line); border-radius: 50%; animation: spinSlow 50s linear infinite; }
.hero-disc { position: absolute; top: 4%; right: 0; width: 74%; height: 80%; background: linear-gradient(135deg, var(--accent-soft), var(--accent)); border-radius: 10px; display: grid; place-items: center; font-size: 9rem; transform: rotate(-2.5deg); box-shadow: var(--shadow-lg); transition: transform .6s cubic-bezier(.16,1,.3,1); }
.hero-disc:hover { transform: rotate(-1.5deg) translateY(-8px); }
.hero-chip { position: absolute; background: var(--card); border: 1px solid var(--line); border-radius: 8px; padding: .7rem 1rem; box-shadow: var(--shadow); font-weight: 500; font-size: .82rem; display: flex; align-items: center; gap: .5rem; z-index: 3; }
.hero-chip .e { font-size: 1.1rem; }
.chip-a { top: 8%; left: 0; transform: rotate(-3deg); animation: float 6s ease-in-out infinite; }
.chip-b { bottom: 16%; right: 4%; transform: rotate(3deg); animation: float 7s ease-in-out infinite reverse; }
.chip-c { bottom: 2%; left: 12%; background: var(--ink); color: var(--warm); border-color: var(--ink); transform: rotate(2deg); animation: float 8s ease-in-out infinite; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .6rem; background: var(--accent); color: #fff; border-radius: 100px; padding: .95rem 1.8rem; font-size: .95rem; font-weight: 500; letter-spacing: .01em; transition: .3s cubic-bezier(.16,1,.3,1); }
.btn:hover { transform: translateY(-2px); background: #b14733; box-shadow: var(--shadow); }
.btn:active { transform: scale(.98); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn-block { width: 100%; }

/* ---------- Marquee ---------- */
.marquee { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; padding: .9rem 0; }
.marquee-track { display: flex; gap: 3.4rem; white-space: nowrap; width: max-content; animation: scrollX 26s linear infinite; }
.marquee-track span { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-soft); display: inline-flex; gap: .6rem; align-items: center; }

/* ---------- Sections ---------- */
.section { padding: 4.5rem 0; }
.section-head h2 { font-weight: 300; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.05; letter-spacing: -.03em; margin: .4rem 0 .6rem; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1rem; text-align: center; transition: transform .5s cubic-bezier(.16,1,.3,1); }
.stat-card:hover { transform: translateY(-6px) rotate(-1deg); }
.stat-card .num { font-size: 2.6rem; font-weight: 400; color: var(--accent); }
.stat-card .lbl { color: var(--ink-soft); font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; margin-top: .3rem; }

/* ---------- Chips ---------- */
.chips { display: flex; gap: .7rem; flex-wrap: wrap; justify-content: center; margin-bottom: 3rem; }
.chip { background: transparent; border: 1px solid var(--line); border-radius: 100px; padding: .6rem 1.3rem; font-size: .88rem; color: var(--ink-soft); transition: .25s; display: inline-flex; align-items: center; gap: .5rem; font-weight: 500; }
.chip:hover { color: var(--ink); border-color: var(--ink); }
.chip.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* ---------- Product grid ---------- */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 2rem; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .5s cubic-bezier(.16,1,.3,1), box-shadow .5s; display: flex; flex-direction: column; position: relative; }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.card-img { position: relative; aspect-ratio: 1; background: var(--warm); overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.16,1,.3,1); }
.card:hover .card-img img { transform: scale(1.06); }
.card-badge { position: absolute; top: 1rem; left: 1rem; background: var(--ink); color: var(--bg); font-size: .68rem; font-weight: 500; text-transform: uppercase; letter-spacing: .1em; padding: .4rem .8rem; border-radius: 100px; z-index: 2; }
.card-fav { position: absolute; top: .9rem; right: .9rem; width: 38px; height: 38px; border-radius: 50%; background: rgba(251,248,242,.85); border: 1px solid var(--line); display: grid; place-items: center; font-size: 1rem; z-index: 2; opacity: 0; transform: translateY(-6px); transition: .3s; color: var(--ink-soft); }
.card:hover .card-fav { opacity: 1; transform: none; }
.card-fav.on { color: var(--accent); }
.quick { position: absolute; left: 1rem; right: 1rem; bottom: 1rem; z-index: 2; background: rgba(26,26,23,.9); color: var(--bg); border-radius: 8px; padding: .7rem; font-weight: 500; font-size: .82rem; text-align: center; transform: translateY(140%); transition: .4s cubic-bezier(.16,1,.3,1); backdrop-filter: blur(4px); }
.card:hover .quick { transform: none; }
.card-body { padding: 1.4rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.card-body h3 { font-family: var(--serif); font-size: 1.15rem; font-weight: 500; line-height: 1.25; letter-spacing: -.01em; }
.card-sub { font-size: .82rem; color: var(--ink-soft); }
.stars { color: var(--accent); font-size: .82rem; letter-spacing: 1px; }
.stars small { color: var(--ink-soft); margin-left: 4px; }
.price-row { display: flex; align-items: baseline; gap: .6rem; margin-top: auto; padding-top: .5rem; }
.price { font-size: 1.4rem; font-weight: 500; color: var(--ink); }
.price-old { font-size: .85rem; color: var(--ink-soft); text-decoration: line-through; }
.card .add-btn { width: 100%; margin-top: .8rem; padding: .75rem; border-radius: 8px; font-weight: 500; font-size: .88rem; background: transparent; border: 1px solid var(--line); color: var(--ink); transition: .25s; display: flex; align-items: center; justify-content: center; gap: .5rem; }
.card .add-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ---------- Restock en cours ---------- */
.restock { max-width: 560px; margin: 1rem auto 0; text-align: center; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 3.4rem 2.4rem; box-shadow: var(--shadow); }
.restock-emoji { font-size: 3.4rem; animation: float 4s ease-in-out infinite; }
.restock .eyebrow { justify-content: center; margin: 1rem 0 .6rem; }
.restock h3 { font-family: var(--serif); font-weight: 300; font-size: clamp(1.8rem, 3.5vw, 2.6rem); letter-spacing: -.03em; }
.restock p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.6; max-width: 420px; margin: .9rem auto 1.8rem; }
.hero-resto { display: inline-flex; align-items: center; gap: .5rem; font-weight: 500; font-size: .9rem; color: var(--ink-soft); border: 1px dashed var(--line); border-radius: 100px; padding: .9rem 1.6rem; }

/* ---------- Flash ---------- */
.flash { background: var(--ink); color: var(--bg); border-radius: var(--radius); padding: 2.6rem; display: flex; align-items: center; justify-content: space-between; gap: 1.6rem; flex-wrap: wrap; position: relative; overflow: hidden; }
.flash::after { content: "🐾"; position: absolute; font-size: 16rem; right: -2rem; bottom: -5rem; opacity: .06; }
.flash h3 { font-family: var(--serif); font-weight: 300; font-size: 1.9rem; letter-spacing: -.02em; }
.flash h3 em { color: var(--accent-soft); }
.flash p { color: rgba(245,241,234,.65); margin-top: .4rem; font-size: .95rem; }
.countdown { display: flex; gap: .7rem; align-items: center; }
.cd-box { background: rgba(245,241,234,.08); border: 1px solid rgba(245,241,234,.15); border-radius: 8px; padding: .8rem 1.1rem; text-align: center; min-width: 70px; }
.cd-box b { font-size: 1.9rem; font-weight: 400; display: block; line-height: 1; color: var(--warm); }
.cd-box span { font-size: .62rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(245,241,234,.55); }

/* ---------- Why ---------- */
.why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.why-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.4rem 2rem; text-align: center; transition: transform .5s cubic-bezier(.16,1,.3,1); }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.why-ico { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; font-size: 1.6rem; margin: 0 auto 1.2rem; background: var(--warm); border: 1px solid var(--line); }
.why-card h4 { font-family: var(--serif); font-weight: 500; font-size: 1.25rem; margin-bottom: .5rem; }
.why-card p { color: var(--ink-soft); font-size: .92rem; }

/* ---------- Témoignages ---------- */
.testi-wrap { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.6rem; }
.testi { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; transition: transform .5s cubic-bezier(.16,1,.3,1); }
.testi:hover { transform: translateY(-4px) rotate(-.6deg); }
.testi .stars { margin-bottom: .9rem; }
.testi p { font-family: var(--serif); font-weight: 300; font-size: 1.1rem; line-height: 1.5; color: var(--ink); font-style: italic; }
.testi .who { display: flex; align-items: center; gap: .8rem; margin-top: 1.2rem; }
.testi .ava { width: 44px; height: 44px; border-radius: 50%; background: var(--warm); border: 1px solid var(--line); display: grid; place-items: center; font-size: 1.3rem; }
.testi .who b { display: block; font-size: .9rem; font-weight: 600; }
.testi .who span { font-size: .76rem; color: var(--ink-soft); }

/* ---------- Newsletter ---------- */
.newsletter { background: var(--warm); border: 1px solid var(--line); border-radius: var(--radius); padding: 3.6rem; text-align: center; position: relative; overflow: hidden; }
.newsletter::before { content: "🦴"; position: absolute; font-size: 12rem; opacity: .07; top: -2rem; left: -1rem; transform: rotate(-18deg); }
.newsletter::after { content: "🐾"; position: absolute; font-size: 10rem; opacity: .07; bottom: -2rem; right: -.5rem; transform: rotate(18deg); }
.newsletter h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(1.8rem, 3.5vw, 2.6rem); letter-spacing: -.03em; position: relative; }
.newsletter h2 em { color: var(--accent); }
.newsletter p { color: var(--ink-soft); margin: .8rem 0 1.8rem; position: relative; }
.nl-form { display: flex; gap: .6rem; max-width: 460px; margin: 0 auto; position: relative; }
.nl-form input { flex: 1; padding: .95rem 1.3rem; border-radius: 100px; border: 1px solid var(--line); background: var(--bg); color: var(--ink); font-size: .95rem; font-family: inherit; }
.nl-form input::placeholder { color: var(--ink-soft); }
.nl-form input:focus { outline: none; border-color: var(--accent); }

/* ---------- Product detail ---------- */
.crumbs { font-size: .82rem; color: var(--ink-soft); padding: 1.8rem 0 0; letter-spacing: .02em; }
.crumbs a:hover { color: var(--accent); }
.product { display: grid; grid-template-columns: 1fr 1fr; gap: 3.6rem; padding: 2rem 0 4rem; }
.gallery .main-img { background: var(--warm); border: 1px solid var(--line); border-radius: var(--radius); aspect-ratio: 1; overflow: hidden; position: relative; cursor: zoom-in; box-shadow: var(--shadow); }
.gallery .main-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery .main-img:hover img { transform: scale(1.5); }
.thumbs { display: flex; gap: .7rem; margin-top: .9rem; }
.thumbs img { width: 76px; height: 76px; object-fit: cover; border: 1px solid var(--line); border-radius: 8px; cursor: pointer; transition: .25s; background: var(--warm); }
.thumbs img:hover { transform: translateY(-3px); }
.thumbs img.active { border-color: var(--accent); border-width: 2px; }
.product-info h1 { font-family: var(--serif); font-weight: 300; font-size: clamp(2rem, 3.5vw, 2.8rem); line-height: 1.05; letter-spacing: -.03em; margin-bottom: .5rem; }
.product-info .sub { color: var(--ink-soft); margin-bottom: 1rem; font-size: 1.05rem; }
.product-rating { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.product-rating small { color: var(--ink-soft); }
.badge-stock { background: rgba(90,125,82,.12); color: var(--green); border: 1px solid rgba(90,125,82,.3); font-weight: 500; font-size: .8rem; padding: .35rem .85rem; border-radius: 100px; display: inline-flex; gap: .4rem; }
.product-price { display: flex; align-items: baseline; gap: 1rem; margin: 1.2rem 0; }
.product-price .price { font-size: 2.6rem; font-weight: 400; color: var(--accent); }
.product-price .save { background: var(--ink); color: var(--bg); font-weight: 500; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; padding: .35rem .8rem; border-radius: 100px; }
.variant-group { margin: 1.2rem 0; }
.variant-group > label { display: block; font-weight: 500; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); margin-bottom: .6rem; }
.options { display: flex; gap: .6rem; flex-wrap: wrap; }
.opt { border: 1px solid var(--line); background: transparent; border-radius: 8px; padding: .55rem 1.1rem; font-weight: 500; font-size: .88rem; transition: .2s; color: var(--ink-soft); }
.opt:hover { border-color: var(--ink); color: var(--ink); }
.opt.active { border-color: var(--accent); background: var(--accent); color: #fff; }
.qty { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 8px; width: fit-content; overflow: hidden; }
.qty button { width: 44px; height: 46px; font-size: 1.2rem; color: var(--ink); transition: .2s; }
.qty button:hover { background: var(--bg-alt); }
.qty input { width: 52px; height: 46px; border: none; background: transparent; color: var(--ink); text-align: center; font-size: 1rem; font-weight: 600; font-family: var(--serif); }
.add-row { display: flex; gap: .8rem; margin: 1.6rem 0; }
.add-row .btn { flex: 1; padding: 1.05rem; font-size: 1rem; }
.btn-buy { background: var(--ink); }
.btn-buy:hover { background: var(--accent); }
.assur { display: flex; gap: 1.6rem; flex-wrap: wrap; padding: 1.2rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: .6rem 0; }
.assur div { font-size: .8rem; color: var(--ink-soft); display: flex; align-items: center; gap: .5rem; font-weight: 500; }
.assur .e { font-size: 1.1rem; }
.feature-list { list-style: none; margin: 1.5rem 0; }
.feature-list li { padding: .7rem 0 .7rem 1.9rem; border-bottom: 1px solid var(--line); position: relative; font-size: .95rem; color: var(--ink); }
.feature-list li::before { content: "✓"; position: absolute; left: 0; top: .75rem; width: 18px; height: 18px; background: var(--accent); color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: .65rem; font-weight: 700; }
.desc-box { margin-top: 1.5rem; }
.desc-box h4 { font-family: var(--serif); font-weight: 500; font-size: 1.2rem; margin-bottom: .5rem; }
.desc-box p { color: var(--ink-soft); font-size: .98rem; line-height: 1.7; }

/* ---------- Cart drawer ---------- */
.overlay { position: fixed; inset: 0; background: rgba(26,26,23,.4); opacity: 0; pointer-events: none; transition: opacity .3s; z-index: 100; backdrop-filter: blur(3px); }
.overlay.open { opacity: 1; pointer-events: auto; }
.drawer { position: fixed; top: 0; right: 0; height: 100%; width: 420px; max-width: 92vw; background: var(--bg); border-left: 1px solid var(--line); z-index: 101; transform: translateX(100%); transition: transform .45s cubic-bezier(.16,1,.3,1); display: flex; flex-direction: column; box-shadow: var(--shadow-lg); }
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 1.6rem; border-bottom: 1px solid var(--line); }
.drawer-head h3 { font-family: var(--serif); font-weight: 400; font-size: 1.3rem; }
.drawer-close { font-size: 1.7rem; color: var(--ink-soft); width: 40px; height: 40px; border-radius: 50%; transition: .2s; }
.drawer-close:hover { background: var(--bg-alt); color: var(--ink); }
.drawer-body { flex: 1; overflow-y: auto; padding: .5rem 1.6rem; }
.cart-item { display: flex; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid var(--line); animation: fadeUp .3s both; }
.cart-item img { width: 74px; height: 74px; object-fit: cover; border-radius: 8px; background: var(--warm); }
.cart-item .ci-info { flex: 1; }
.cart-item .ci-name { font-family: var(--serif); font-weight: 500; font-size: .98rem; }
.cart-item .ci-var { font-size: .76rem; color: var(--ink-soft); margin-top: 2px; }
.cart-item .ci-price { font-weight: 500; color: var(--accent); margin-top: 4px; }
.cart-item .ci-remove { color: var(--ink-soft); font-size: .78rem; text-decoration: underline; margin-top: 4px; }
.mini-qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 8px; margin-top: .5rem; overflow: hidden; }
.mini-qty button { width: 28px; height: 28px; color: var(--ink); font-size: .9rem; }
.mini-qty button:hover { background: var(--bg-alt); }
.mini-qty span { width: 32px; text-align: center; font-weight: 600; font-size: .85rem; }
.drawer-foot { padding: 1.6rem; border-top: 1px solid var(--line); background: var(--bg-alt); }
.free-ship-bar { background: var(--line); border-radius: 100px; height: 6px; overflow: hidden; margin-bottom: .4rem; }
.free-ship-bar i { display: block; height: 100%; background: var(--accent); border-radius: 100px; transition: width .5s; }
.free-ship-txt { font-size: .76rem; color: var(--ink-soft); margin-bottom: 1rem; }
.free-ship-txt b { color: var(--accent); }
.cart-line { display: flex; justify-content: space-between; margin-bottom: .5rem; font-size: .88rem; color: var(--ink-soft); }
.cart-total { display: flex; justify-content: space-between; font-family: var(--serif); font-size: 1.4rem; font-weight: 500; margin: .8rem 0; }
.empty-cart { text-align: center; color: var(--ink-soft); padding: 4.5rem 1.2rem; }
.empty-cart .big { font-size: 4rem; margin-bottom: .6rem; animation: float 3s ease-in-out infinite; }

/* ---------- Checkout ---------- */
.checkout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2.6rem; padding: 2rem 0 4rem; align-items: start; }
.form-card, .summary-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.2rem; }
.form-card h2 { font-family: var(--serif); font-weight: 400; margin-bottom: 1.4rem; font-size: 1.6rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 500; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); margin-bottom: .45rem; }
.field input { width: 100%; padding: .85rem 1rem; border: 1px solid var(--line); border-radius: 8px; font-size: .95rem; font-family: inherit; background: var(--bg); color: var(--ink); transition: .2s; }
.field input::placeholder { color: var(--ink-soft); }
.field input:focus { outline: none; border-color: var(--accent); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.summary-card { position: sticky; top: 96px; }
.summary-card h3 { font-family: var(--serif); font-weight: 400; margin-bottom: 1rem; font-size: 1.3rem; }
.summary-item { display: flex; justify-content: space-between; font-size: .88rem; padding: .6rem 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
.pay-note { font-size: .75rem; color: var(--ink-soft); margin-top: .8rem; text-align: center; }

/* ---------- Footer ---------- */
.footer { background: var(--bg-alt); border-top: 1px solid var(--line); margin-top: 4.5rem; padding: 3.6rem 0 1.6rem; color: var(--ink-soft); }
.footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.4rem; }
.footer h4 { color: var(--ink); font-family: var(--serif); font-weight: 500; margin-bottom: 1rem; font-size: 1rem; }
.footer .flogo { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; margin-bottom: .8rem; display: flex; align-items: center; gap: .5rem; color: var(--ink); }
.footer p { font-size: .88rem; max-width: 280px; line-height: 1.6; }
.footer a { display: block; padding: .35rem 0; font-size: .88rem; transition: .2s; }
.footer a:hover { color: var(--accent); padding-left: 4px; }
.fsocial { display: flex; gap: .6rem; margin-top: 1rem; }
.fsocial a { width: 38px; height: 38px; border-radius: 50%; background: var(--bg); border: 1px solid var(--line); display: grid; place-items: center; font-size: 1rem; padding: 0; }
.fsocial a:hover { background: var(--accent); border-color: var(--accent); padding: 0; }
.copyright { border-top: 1px solid var(--line); margin-top: 2.4rem; padding-top: 1.4rem; text-align: center; font-size: .8rem; }

/* ---------- Floating + toast ---------- */
.to-top { position: fixed; bottom: 1.6rem; right: 1.6rem; width: 48px; height: 48px; border-radius: 50%; background: var(--ink); color: var(--bg); font-size: 1.2rem; z-index: 90; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(16px); transition: .35s; }
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { background: var(--accent); transform: translateY(-3px); }
.toast { position: fixed; bottom: 1.6rem; left: 50%; transform: translateX(-50%) translateY(140px); background: var(--ink); color: var(--bg); padding: .9rem 1.6rem; border-radius: 100px; font-weight: 500; font-size: .9rem; z-index: 200; transition: transform .4s cubic-bezier(.16,1,.3,1); box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: .6rem; }
.toast.show { transform: translateX(-50%) translateY(0); }
.confetti-canvas { position: fixed; inset: 0; pointer-events: none; z-index: 300; }

/* ---------- Order success ---------- */
.success { text-align: center; padding: 5rem 1.2rem; }
.success .big { font-size: 5rem; animation: float 3s ease-in-out infinite; }
.success h2 { font-family: var(--serif); font-weight: 300; font-size: 2.4rem; letter-spacing: -.03em; margin: 1rem 0 .5rem; }
.success p { color: var(--ink-soft); max-width: 440px; margin: 0 auto 1.4rem; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .container { padding: 0 1.5rem; }
  .nav { display: none; }
  .burger { display: grid; }
  .hero .container, .product, .checkout { grid-template-columns: 1fr; }
  .hero-art { order: -1; height: 360px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .why { grid-template-columns: 1fr; }
  .footer .cols { grid-template-columns: 1fr 1fr; }
  .flash { flex-direction: column; text-align: center; }
  .newsletter { padding: 2.4rem 1.5rem; }
  .nl-form { flex-direction: column; }
  .summary-card { position: static; }
}
@media (max-width: 500px) {
  .hero-mini { gap: 1.5rem; flex-wrap: wrap; }
  .countdown { flex-wrap: wrap; justify-content: center; }
  .stats { grid-template-columns: 1fr 1fr; }
}
