/* ============================================================
   RePlast — Modern Recycling Demo
   Shared stylesheet (landing + shop)
   ============================================================ */

:root {
  --green-900: #0b3d2e;
  --green-700: #12694c;
  --green-500: #1faa71;
  --green-400: #2ecb8b;
  --lime: #a8e063;
  --teal: #16c2b0;
  --ink: #0c1512;
  --ink-soft: #16241f;
  --paper: #f4f8f5;
  --paper-2: #eaf2ec;
  --white: #ffffff;
  --muted: #6b7f78;
  --line: rgba(12, 21, 18, 0.08);
  --shadow-sm: 0 2px 8px rgba(11, 61, 46, 0.06);
  --shadow-md: 0 12px 34px rgba(11, 61, 46, 0.12);
  --shadow-lg: 0 30px 60px rgba(11, 61, 46, 0.18);
  --radius: 18px;
  --radius-lg: 28px;
  --grad-hero: radial-gradient(120% 120% at 20% 10%, #16c2b0 0%, #1faa71 40%, #0b3d2e 100%);
  --grad-accent: linear-gradient(120deg, var(--green-400), var(--teal));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* ---------- Cinematic intro ---------- */
#intro {
  position: fixed; inset: 0; z-index: 9999;
  background: radial-gradient(120% 120% at 50% 40%, #0d4a37 0%, #072a1f 55%, #04160f 100%);
  display: grid; place-items: center; overflow: hidden;
  transform-origin: 50% 46%; will-change: transform, opacity;
}
#intro.gone { opacity: 0 !important; pointer-events: none; transition: opacity .5s ease; }
#introCanvas { position: absolute; inset: 0; }
.intro-brand {
  position: relative; z-index: 2; text-align: center; color: #fff;
  opacity: 0; transform: translateY(14px); transition: opacity .7s var(--ease), transform .7s var(--ease);
  pointer-events: none;
}
.intro-brand.show { opacity: 1; transform: none; }
.intro-brand .b-name { font-size: clamp(2.4rem, 7vw, 4.4rem); font-weight: 800; letter-spacing: -0.03em; }
.intro-brand .b-name span { background: linear-gradient(120deg, var(--lime), #eafff5); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.intro-brand .b-sub { margin-top: 6px; font-size: 0.8rem; letter-spacing: 0.34em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.intro-skip {
  position: absolute; bottom: 28px; right: 30px; z-index: 3;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.75);
  padding: 9px 18px; border-radius: 100px; font: inherit; font-size: 0.82rem; font-weight: 600; cursor: pointer;
  transition: background .3s, color .3s;
}
.intro-skip:hover { background: rgba(255,255,255,0.16); color: #fff; }
.intro-fx-in { opacity: 0; transform: translateY(30px) scale(.98); }
body.intro-done .intro-fx-in { opacity: 1; transform: none; transition: opacity 1s var(--ease), transform 1s var(--ease); }

body {
  font-family: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
section { position: relative; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--green-500);
  padding: 7px 14px; border-radius: 100px;
  background: rgba(31, 170, 113, 0.1);
  border: 1px solid rgba(31, 170, 113, 0.2);
}
.eyebrow.light { color: #cffbe9; background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.18); }

.section-head { max-width: 640px; margin-bottom: 54px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin: 18px 0 14px; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px; border-radius: 100px;
  font-weight: 700; font-size: 0.98rem; cursor: pointer;
  border: none; transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s;
  position: relative; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform .35s var(--ease); }
.btn-primary { background: var(--grad-accent); color: #04241a; box-shadow: 0 12px 28px rgba(22, 194, 176, 0.35); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(22, 194, 176, 0.5); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost { background: rgba(255,255,255,0.08); color: var(--white); border: 1px solid rgba(255,255,255,0.28); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,0.16); transform: translateY(-3px); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-light { background: var(--white); color: var(--green-700); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s, box-shadow .4s, padding .4s;
  padding: 20px 0;
}
.nav.scrolled { background: rgba(244, 248, 245, 0.85); backdrop-filter: blur(14px); box-shadow: var(--shadow-sm); padding: 12px 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 1.22rem; letter-spacing: -0.03em; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: var(--grad-accent); box-shadow: 0 6px 16px rgba(22,194,176,0.4);
}
.logo-mark svg { width: 22px; height: 22px; animation: spin 9s linear infinite; }
.nav.scrolled .logo, .nav.scrolled .nav-links a { color: var(--ink); }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-weight: 600; font-size: 0.95rem; color: var(--white); position: relative; transition: color .25s; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -5px; height: 2px; width: 0;
  background: var(--green-400); transition: width .3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--green-400); }
.nav .btn { padding: 11px 22px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s; }
.nav.scrolled .nav-toggle span { background: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--grad-hero); color: var(--white);
  position: relative; overflow: hidden; padding: 120px 0 80px;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; position: relative; z-index: 3; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); margin: 22px 0; }
.hero h1 .accent { background: linear-gradient(120deg, var(--lime), #eafff5); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero p.lead { font-size: 1.2rem; color: rgba(255,255,255,0.88); max-width: 520px; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 54px; }
.hero-stats .num { font-size: 2.2rem; font-weight: 800; }
.hero-stats .lbl { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* floating blobs */
.blob { position: absolute; border-radius: 50%; filter: blur(8px); opacity: 0.5; z-index: 1; }
.blob.b1 { width: 380px; height: 380px; background: rgba(168,224,99,0.4); top: -120px; right: -80px; animation: float1 14s ease-in-out infinite; }
.blob.b2 { width: 300px; height: 300px; background: rgba(22,194,176,0.5); bottom: -100px; left: 30%; animation: float2 18s ease-in-out infinite; }
.hero-noise { position: absolute; inset: 0; opacity: 0.05; z-index: 2;
  background-image: radial-gradient(rgba(255,255,255,0.9) 1px, transparent 1px); background-size: 22px 22px; }

/* rotating recycle visual */
.hero-visual { position: relative; display: grid; place-items: center; z-index: 3; }
.recycle-ring { width: min(420px, 80%); aspect-ratio: 1; position: relative; }
.recycle-ring .ring {
  position: absolute; inset: 0; border-radius: 50%; border: 2px dashed rgba(255,255,255,0.35);
  animation: spin 26s linear infinite;
}
.recycle-ring .ring.r2 { inset: 14%; border-style: solid; border-color: rgba(255,255,255,0.15); animation-direction: reverse; animation-duration: 20s; }
.recycle-core {
  position: absolute; inset: 27%; border-radius: 50%; background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.25);
  display: grid; place-items: center; box-shadow: inset 0 0 40px rgba(255,255,255,0.1);
}
.recycle-core svg { width: 46%; height: 46%; animation: spin 12s linear infinite; }
.orbit-chip {
  position: absolute; padding: 9px 16px; border-radius: 100px; font-size: 0.8rem; font-weight: 700;
  background: rgba(255,255,255,0.95); color: var(--green-700); box-shadow: var(--shadow-md); white-space: nowrap;
}
.orbit-chip.c1 { top: 4%; left: 50%; transform: translateX(-50%); animation: bob 5s ease-in-out infinite; }
.orbit-chip.c2 { bottom: 12%; left: -6%; animation: bob 5s ease-in-out infinite .8s; }
.orbit-chip.c3 { bottom: 12%; right: -6%; animation: bob 5s ease-in-out infinite 1.6s; }

.scroll-hint { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 4;
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.7);
  display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-hint .mouse { width: 22px; height: 36px; border: 2px solid rgba(255,255,255,0.5); border-radius: 12px; position: relative; }
.scroll-hint .mouse::after { content:''; position:absolute; top:7px; left:50%; transform:translateX(-50%); width:4px; height:7px; border-radius:2px; background:#fff; animation: wheel 1.6s infinite; }

/* ---------- Marquee ---------- */
.marquee { background: var(--ink); color: rgba(255,255,255,0.65); padding: 20px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 60px; white-space: nowrap; animation: marquee 24s linear infinite; width: max-content; }
.marquee-track span { font-weight: 700; font-size: 1.05rem; display: flex; align-items: center; gap: 60px; letter-spacing: 0.02em; }
.marquee-track span::before { content: '♲'; color: var(--green-400); }

/* ---------- Stats band ---------- */
.stats { padding: 90px 0; background: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card { text-align: center; padding: 30px 18px; border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line); transition: transform .4s var(--ease), box-shadow .4s; }
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stat-card .num { font-size: 2.8rem; font-weight: 800; background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-card .lbl { color: var(--muted); font-weight: 600; margin-top: 6px; }

/* ---------- About ---------- */
.about { padding: 110px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-visual { position: relative; }
.about-visual .card-img {
  border-radius: var(--radius-lg); aspect-ratio: 4/3; background: var(--grad-hero);
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden; display: grid; place-items: center;
}
.about-visual .card-img svg { width: 45%; opacity: 0.9; animation: spin 20s linear infinite; }
.about-visual .float-badge {
  position: absolute; bottom: -26px; right: -18px; background: var(--white); border-radius: var(--radius);
  padding: 18px 22px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 14px;
  animation: bob 5s ease-in-out infinite;
}
.about-visual .float-badge .big { font-size: 1.8rem; font-weight: 800; color: var(--green-500); }
.feature-list { list-style: none; margin-top: 28px; display: grid; gap: 18px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .ic { width: 42px; height: 42px; flex: 0 0 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(31,170,113,0.12); color: var(--green-500); }
.feature-list h4 { font-size: 1.05rem; margin-bottom: 2px; }
.feature-list p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Process ---------- */
.process { padding: 110px 0; background: var(--ink); color: var(--white); }
.process .section-head p { color: rgba(255,255,255,0.7); }
.process .section-head h2 { color: #fff; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: var(--radius);
  padding: 30px 24px; position: relative; transition: transform .4s var(--ease), background .4s, border-color .4s;
}
.step:hover { transform: translateY(-8px); background: rgba(255,255,255,0.07); border-color: rgba(46,203,139,0.5); }
.step .step-n { font-size: 0.85rem; font-weight: 800; color: var(--green-400); letter-spacing: 0.1em; }
.step .step-ic { width: 54px; height: 54px; border-radius: 14px; background: var(--grad-accent); display: grid; place-items: center; margin: 16px 0; color: #04241a; }
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { color: rgba(255,255,255,0.65); font-size: 0.94rem; }
.step .connector { position: absolute; top: 54px; right: -13px; color: rgba(46,203,139,0.5); z-index: 2; }
.steps .step:last-child .connector { display: none; }

/* ---------- Products preview ---------- */
.products { padding: 110px 0; background: var(--paper-2); }
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.prod-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s; display: flex; flex-direction: column;
}
.prod-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.prod-thumb { aspect-ratio: 16/11; position: relative; overflow: hidden; display: grid; place-items: center; }
.prod-thumb svg { width: 40%; opacity: 0.92; transition: transform .6s var(--ease); }
.prod-card:hover .prod-thumb svg { transform: scale(1.12) rotate(6deg); }
.prod-thumb.g1 { background: linear-gradient(135deg, #1faa71, #16c2b0); }
.prod-thumb.g2 { background: linear-gradient(135deg, #12694c, #2ecb8b); }
.prod-thumb.g3 { background: linear-gradient(135deg, #0b3d2e, #1faa71); }
.prod-tag { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,0.92); color: var(--green-700); font-size: 0.72rem; font-weight: 800; padding: 6px 12px; border-radius: 100px; letter-spacing: 0.05em; }
.prod-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.prod-body h3 { font-size: 1.25rem; margin-bottom: 8px; }
.prod-body p { color: var(--muted); font-size: 0.95rem; flex: 1; }
.prod-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; }
.prod-price { font-weight: 800; font-size: 1.2rem; color: var(--green-700); }
.prod-price span { font-size: 0.8rem; color: var(--muted); font-weight: 600; }

/* ---------- Impact / CTA banner ---------- */
.impact { padding: 110px 0; }
.impact-inner {
  background: var(--grad-hero); border-radius: var(--radius-lg); color: var(--white);
  padding: 68px 60px; position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center;
}
.impact-inner h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 16px 0; }
.impact-inner p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 26px; }
.impact-bars { display: grid; gap: 18px; }
.impact-bar .bar-top { display: flex; justify-content: space-between; font-weight: 700; margin-bottom: 8px; font-size: 0.95rem; }
.impact-bar .track { height: 10px; border-radius: 100px; background: rgba(255,255,255,0.18); overflow: hidden; }
.impact-bar .fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--lime), #fff); width: 0; transition: width 1.6s var(--ease); }

/* ---------- Contact ---------- */
.contact { padding: 110px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.contact-form { display: grid; gap: 18px; }
.field label { font-size: 0.85rem; font-weight: 700; margin-bottom: 6px; display: block; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 18px; border-radius: 12px; border: 1px solid var(--line);
  background: var(--paper); font: inherit; transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--green-400); box-shadow: 0 0 0 4px rgba(46,203,139,0.15); }
.field.row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-info .info-item { display: flex; gap: 16px; margin-bottom: 26px; align-items: flex-start; }
.contact-info .ic { width: 48px; height: 48px; border-radius: 13px; background: rgba(31,170,113,0.12); color: var(--green-500); display: grid; place-items: center; flex: 0 0 48px; }
.contact-info h4 { margin-bottom: 2px; }
.contact-info p { color: var(--muted); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer .logo { color: #fff; margin-bottom: 16px; }
.footer p { font-size: 0.94rem; max-width: 300px; }
.footer h5 { color: #fff; font-size: 0.95rem; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer ul { list-style: none; display: grid; gap: 11px; }
.footer ul a { font-size: 0.94rem; transition: color .25s; }
.footer ul a:hover { color: var(--green-400); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.88rem; }
.social { display: flex; gap: 12px; }
.social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.07); display: grid; place-items: center; transition: background .3s, transform .3s; }
.social a:hover { background: var(--green-500); transform: translateY(-3px); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
.reveal.d4 { transition-delay: .4s; }

/* ---------- Keyframes ---------- */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float1 { 0%,100% { transform: translate(0,0) scale(1);} 50% { transform: translate(-40px,30px) scale(1.08);} }
@keyframes float2 { 0%,100% { transform: translate(0,0) scale(1);} 50% { transform: translate(40px,-30px) scale(1.12);} }
@keyframes bob { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-12px);} }
@keyframes marquee { to { transform: translateX(-50%);} }
@keyframes wheel { 0%{opacity:1; top:7px;} 100%{opacity:0; top:18px;} }
@keyframes cartpop { 0%{transform:scale(1);} 40%{transform:scale(1.35);} 100%{transform:scale(1);} }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   SHOP PAGE
   ============================================================ */
.shop-hero {
  background: var(--grad-hero); color: #fff; padding: 150px 0 70px; position: relative; overflow: hidden;
}
.shop-hero .blob { z-index: 0; }
.shop-hero .wrap { position: relative; z-index: 2; }
.shop-hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); margin: 16px 0 12px; }
.shop-hero p { color: rgba(255,255,255,0.85); max-width: 560px; font-size: 1.1rem; }
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 6px; }
.breadcrumb a:hover { color: #fff; }

.shop-main { padding: 54px 0 100px; }
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 34px; flex-wrap: wrap; }
.filters { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-chip {
  padding: 10px 20px; border-radius: 100px; border: 1px solid var(--line); background: var(--white);
  font-weight: 700; font-size: 0.9rem; cursor: pointer; transition: all .3s var(--ease); color: var(--muted);
}
.filter-chip:hover { border-color: var(--green-400); color: var(--green-700); }
.filter-chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.sort-select { padding: 11px 18px; border-radius: 100px; border: 1px solid var(--line); background: var(--white); font: inherit; font-weight: 600; cursor: pointer; }

.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.shop-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; transition: transform .45s var(--ease), box-shadow .45s;
}
.shop-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.shop-thumb { aspect-ratio: 1/1; position: relative; display: grid; place-items: center; overflow: hidden; }
.shop-thumb svg { width: 42%; opacity: 0.92; transition: transform .6s var(--ease); }
.shop-card:hover .shop-thumb svg { transform: scale(1.12) rotate(-6deg); }
.badge-corner { position: absolute; top: 14px; right: 14px; background: rgba(255,255,255,0.95); color: var(--green-700); font-size: 0.7rem; font-weight: 800; padding: 6px 11px; border-radius: 100px; }
.shop-info { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.shop-cat { font-size: 0.74rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green-500); }
.shop-info h3 { font-size: 1.15rem; margin: 6px 0; }
.shop-info .desc { color: var(--muted); font-size: 0.9rem; flex: 1; }
.stars { color: #f5a623; font-size: 0.85rem; margin: 8px 0; }
.stars span { color: var(--muted); margin-left: 4px; }
.shop-buy { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; }
.shop-buy .price { font-weight: 800; font-size: 1.35rem; color: var(--green-700); }
.shop-buy .price span { font-size: 0.78rem; color: var(--muted); font-weight: 600; }
.add-btn {
  border: none; background: var(--ink); color: #fff; width: 46px; height: 46px; border-radius: 13px;
  cursor: pointer; display: grid; place-items: center; transition: background .3s, transform .3s;
}
.add-btn:hover { background: var(--green-500); transform: scale(1.08); }
.add-btn:active { transform: scale(0.92); }

/* Cart drawer */
.cart-btn {
  position: relative; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  color: #fff; width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; cursor: pointer;
  transition: background .3s;
}
.nav.scrolled .cart-btn { background: var(--ink); border-color: var(--ink); }
.cart-btn:hover { background: var(--green-500); border-color: var(--green-500); }
.cart-count {
  position: absolute; top: -8px; right: -8px; background: var(--lime); color: #04241a;
  font-size: 0.72rem; font-weight: 800; min-width: 20px; height: 20px; border-radius: 100px;
  display: grid; place-items: center; padding: 0 5px;
}
.cart-count.pop { animation: cartpop .4s var(--ease); }

.drawer-overlay { position: fixed; inset: 0; background: rgba(12,21,18,0.5); z-index: 200; opacity: 0; pointer-events: none; transition: opacity .4s; backdrop-filter: blur(2px); }
.drawer-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(420px, 100%); background: var(--white);
  z-index: 201; transform: translateX(100%); transition: transform .45s var(--ease); display: flex; flex-direction: column;
  box-shadow: -20px 0 60px rgba(11,61,46,0.2);
}
.cart-drawer.open { transform: none; }
.cart-head { padding: 24px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.cart-head h3 { font-size: 1.3rem; }
.cart-close { background: var(--paper); border: none; width: 38px; height: 38px; border-radius: 10px; cursor: pointer; font-size: 1.1rem; transition: background .3s; }
.cart-close:hover { background: var(--paper-2); }
.cart-items { flex: 1; overflow-y: auto; padding: 12px 24px; }
.cart-empty { text-align: center; color: var(--muted); padding: 60px 20px; }
.cart-empty svg { width: 70px; opacity: 0.3; margin: 0 auto 16px; }
.cart-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: center; }
.cart-item .ci-thumb { width: 62px; height: 62px; border-radius: 12px; display: grid; place-items: center; flex: 0 0 62px; }
.cart-item .ci-thumb svg { width: 55%; }
.cart-item .ci-info { flex: 1; }
.cart-item .ci-info h4 { font-size: 0.95rem; margin-bottom: 3px; }
.cart-item .ci-info .ci-price { color: var(--green-700); font-weight: 700; font-size: 0.9rem; }
.qty { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.qty button { width: 26px; height: 26px; border-radius: 8px; border: 1px solid var(--line); background: var(--paper); cursor: pointer; font-weight: 700; transition: background .2s; }
.qty button:hover { background: var(--paper-2); }
.qty span { font-weight: 700; min-width: 22px; text-align: center; }
.ci-remove { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 0.8rem; transition: color .2s; }
.ci-remove:hover { color: #e05252; }
.cart-foot { padding: 22px 24px; border-top: 1px solid var(--line); }
.cart-total { display: flex; justify-content: space-between; font-weight: 800; font-size: 1.3rem; margin-bottom: 16px; }
.cart-foot .btn { width: 100%; justify-content: center; }
.cart-note { text-align: center; font-size: 0.8rem; color: var(--muted); margin-top: 12px; }

.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(120px);
  background: var(--ink); color: #fff; padding: 14px 24px; border-radius: 100px; font-weight: 700;
  box-shadow: var(--shadow-lg); z-index: 300; transition: transform .5s var(--ease); display: flex; align-items: center; gap: 10px;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast svg { width: 18px; color: var(--green-400); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid, .about-grid, .contact-grid, .impact-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .stats-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .prod-grid, .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .impact-inner { padding: 48px 32px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .stats-grid, .steps, .prod-grid, .shop-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .field.row { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
}
