/* ==========================================================================
   Velocity Brands USA LLC — styles.css
   DARK theme · Products / Wholesale focus
   Palette: #0F1B2E navy · #10B981 green · #FFFFFF · #1E293B slate · #E5E7EB · #6B7280 gray
   Type: Poppins (Bold / Medium)
   Mobile-first · no frameworks
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --navy:    #0F1B2E;   /* primary background */
  --navy-2:  #0a1422;   /* darker alt sections */
  --panel:   #1E293B;   /* slate — card / panel background */
  --panel-hi:#263449;   /* hover panel */
  --slate:   #1E293B;
  --green:   #10B981;   /* brand emerald */
  --green-d: #0e9f6e;
  --green-l: #34d399;
  --gray:    #6B7280;
  --light:   #E5E7EB;
  --white:   #FFFFFF;

  --heading: #FFFFFF;
  --text:    #9fadc0;
  --muted:   #6B7280;
  --line:    rgba(255,255,255,.08);
  --line-2:  rgba(255,255,255,.14);

  --radius:  16px;
  --radius-s:10px;
  --shadow:  0 12px 30px rgba(0,0,0,.38);
  --shadow-lg:0 24px 60px rgba(0,0,0,.55);
  --container:1180px;
  --ease: cubic-bezier(.16,.84,.44,1);

  --ff-head: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  --ff: 'Poppins', 'Segoe UI', system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--ff); color: var(--text); background: var(--navy); line-height: 1.6; overflow-x: hidden; }
h1,h2,h3,h4,.logo__name { font-family: var(--ff-head); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ---------- Brand logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo__v { display: block; flex: none; }
.logo__stack { display: flex; flex-direction: column; line-height: 1; }
.logo__name { font-weight: 800; font-size: 21px; letter-spacing: 1px; color: var(--white); }
.logo__sub  { font-weight: 700; font-size: 10.5px; letter-spacing: 3px; color: var(--green-l); margin-top: 4px; }
.logo__llc  { display: flex; align-items: center; gap: 6px; font-weight: 600; font-size: 8px; letter-spacing: 4px; color: var(--light); margin-top: 3px; }
.logo__llc::before, .logo__llc::after { content: ""; height: 1px; flex: 1; background: rgba(255,255,255,.28); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--ff); font-weight: 600; font-size: 15px;
  padding: 13px 24px; border-radius: 8px; border: 1.5px solid transparent; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s, border-color .2s;
  white-space: nowrap; line-height: 1; letter-spacing: .2px;
}
.btn svg { flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--green); color: #fff; box-shadow: 0 8px 22px rgba(16,185,129,.32); }
.btn--primary:hover { background: var(--green-d); box-shadow: 0 12px 28px rgba(16,185,129,.45); }
.btn--ghost { background: transparent; color: var(--white); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--green); color: var(--green-l); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { box-shadow: var(--shadow-lg); }
.btn--wa { background: transparent; color: var(--green-l); border-color: rgba(16,185,129,.5); }
.btn--wa:hover { background: var(--green); color: #fff; border-color: var(--green); }
.btn--block { width: 100%; }
.btn--sm { padding: 9px 16px; font-size: 14px; }

/* ---------- Top bar ---------- */
.topbar { background: linear-gradient(90deg, var(--green-d), var(--green)); color: #fff; font-size: 13px; font-weight: 500; }
.topbar__inner { display: flex; align-items: center; justify-content: center; gap: 10px; text-align: center; padding: 8px 16px; }
.topbar__ic { opacity: .85; }
.topbar strong { font-weight: 700; }

/* ---------- Header ---------- */
.header { position: sticky; top: 0; z-index: 100; background: rgba(10,20,34,.75); backdrop-filter: saturate(160%) blur(14px); border-bottom: 1px solid transparent; transition: box-shadow .25s, border-color .25s, background .25s; }
.header.is-scrolled { background: rgba(10,20,34,.94); box-shadow: 0 10px 30px rgba(0,0,0,.5); border-bottom-color: var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.nav { display: flex; gap: 2px; }
.nav__link { position: relative; font-weight: 600; font-size: 12.5px; letter-spacing: .5px; text-transform: uppercase; color: var(--text); padding: 8px 13px; border-radius: 8px; transition: color .2s; }
.nav__link::after { content: ""; position: absolute; left: 13px; right: 13px; bottom: 4px; height: 2px; background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { transform: scaleX(1); }
.header__actions { display: flex; align-items: center; gap: 10px; }
.hamburger { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; border: 1px solid var(--line-2); border-radius: 10px; background: rgba(255,255,255,.03); cursor: pointer; align-items: center; justify-content: center; }
.hamburger span { width: 20px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .3s, opacity .2s; }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; background: radial-gradient(900px 480px at 82% 20%, rgba(16,185,129,.18), transparent 60%), radial-gradient(700px 400px at 8% -10%, rgba(16,185,129,.06), transparent 60%), linear-gradient(180deg, var(--navy-2) 0%, var(--navy) 100%); padding: 66px 0 76px; overflow: hidden; }
.hero__glow { position: absolute; top: -120px; right: -100px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(16,185,129,.3), transparent 70%); filter: blur(24px); z-index: 0; }
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(16,185,129,.13); color: var(--green-l); border: 1px solid rgba(16,185,129,.32); font-size: 12px; font-weight: 600; letter-spacing: .4px; padding: 7px 14px; border-radius: 999px; margin-bottom: 20px; }
.badge__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(16,185,129,.5); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(16,185,129,.5);} 70%{box-shadow:0 0 0 8px rgba(16,185,129,0);} 100%{box-shadow:0 0 0 0 rgba(16,185,129,0);} }
.hero__title { font-size: clamp(2rem, 6vw, 3.4rem); line-height: 1.08; font-weight: 800; letter-spacing: -1px; color: var(--white); margin-bottom: 18px; }
.rotator { display: inline-block; color: var(--green-l); position: relative; min-width: 3ch; animation: rotIn .5s var(--ease); }
.rotator::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 4px; border-radius: 4px; background: linear-gradient(90deg, var(--green), transparent); }
@keyframes rotIn { from{opacity:0;transform:translateY(10px);} to{opacity:1;transform:translateY(0);} }
.hero__sub { font-size: 17px; color: var(--text); max-width: 520px; margin-bottom: 28px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }
.hero__stats { display: flex; gap: 30px; flex-wrap: wrap; }
.stat strong { display: block; font-family: var(--ff-head); font-size: 26px; font-weight: 800; color: var(--white); }
.stat span { font-size: 13px; color: var(--muted); }
.hero__collage { position: relative; height: 520px; }
.collage { position: absolute; border-radius: var(--radius); box-shadow: var(--shadow-lg); object-fit: cover; }
.collage--1 { top: 0; right: 0; width: 68%; height: 78%; z-index: 1; border: 1px solid var(--line); }
.collage--2 { bottom: 0; left: 0; width: 46%; height: 46%; z-index: 2; border: 5px solid var(--panel); }
.collage--3 { top: 8%; left: 0; width: 34%; height: 34%; z-index: 2; border: 5px solid var(--panel); }
.collage__pill { position: absolute; bottom: 14%; right: -6px; z-index: 3; display: inline-flex; align-items: center; gap: 8px; background: var(--panel); color: var(--white); font-size: 13px; font-weight: 700; padding: 10px 16px; border-radius: 999px; border: 1px solid var(--line); box-shadow: var(--shadow-lg); }
.collage__pill svg { color: var(--green-l); }
.float { animation: floaty 6s ease-in-out infinite; }
.collage--2 { animation-delay: -2s; } .collage--3 { animation-delay: -4s; } .collage__pill { animation-delay: -1s; }
@keyframes floaty { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-12px);} }

/* ---------- Brands bar ---------- */
.brands { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 28px 0; background: var(--navy-2); }
.brands__label { text-align: center; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; }
.brands__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 34px; }
.brandlogo { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 16px; color: #6b7c95; transition: color .25s, transform .25s; }
.brandlogo:hover { color: var(--green-l); transform: translateY(-2px); }

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section--tint { background: var(--navy-2); }
.section__head { text-align: center; max-width: 660px; margin: 0 auto 48px; }
.section__head--row { display: flex; align-items: flex-end; justify-content: space-between; text-align: left; max-width: none; gap: 20px; }
.eyebrow { display: inline-block; font-family: var(--ff-head); font-size: 13px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--green-l); margin-bottom: 12px; }
.section__title { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; color: var(--white); letter-spacing: -.5px; }
.section__lead { color: var(--muted); font-size: 16px; margin-top: 12px; }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Product cards ---------- */
.card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(16,185,129,.4); }
.card__media { position: relative; overflow: hidden; aspect-ratio: 3 / 2; background: #fff; }
.card__media img { width: 100%; height: 100%; object-fit: contain; padding: 14px; transition: transform .5s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__tag { position: absolute; top: 12px; left: 12px; background: var(--green); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 11px; border-radius: 999px; }
.card__tag--hot { background: #e2574c; color: #fff; }
.card__rank { position: absolute; top: 12px; left: 12px; background: var(--green); color: #fff; font-size: 13px; font-weight: 800; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; }
.card__body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card__cat { font-size: 12px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--green-l); }
.card__title { font-size: 18px; font-weight: 700; color: var(--white); line-height: 1.3; }
.card__price { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.card__price span { font-size: 13px; font-weight: 500; color: var(--muted); }
.card__body .btn { margin-top: auto; }
.card--compact .card__body { padding: 15px; }
.card--compact .card__title { font-size: 16px; }
.card--compact .card__price { font-size: 18px; }

/* ---------- Category cards ---------- */
.catcard { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 300px; display: block; border: 1px solid var(--line); box-shadow: var(--shadow); }
.catcard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.catcard:hover img { transform: scale(1.08); }
.catcard__overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; gap: 6px; padding: 24px; color: #fff; background: linear-gradient(180deg, rgba(15,27,46,.15) 20%, rgba(15,27,46,.92) 100%); }
.catcard__ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(16,185,129,.2); color: var(--green-l); backdrop-filter: blur(4px); margin-bottom: auto; }
.catcard__overlay h3 { font-size: 22px; font-weight: 800; }
.catcard__overlay p { font-size: 14px; opacity: .82; }
.catcard__go { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 14px; color: var(--green-l); margin-top: 6px; transition: gap .25s; }
.catcard:hover .catcard__go { gap: 12px; }

/* ---------- Zigzag benefits ---------- */
.zigzag { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; margin-bottom: 52px; }
.zigzag:last-child { margin-bottom: 0; }
.zigzag--reverse .zigzag__media { order: 2; }
.zigzag__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; border: 1px solid var(--line); }
.zigzag__ic { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: rgba(16,185,129,.15); color: var(--green-l); margin-bottom: 18px; }
.zigzag__text h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 800; color: var(--white); margin-bottom: 12px; }
.zigzag__text p { color: var(--text); font-size: 16px; margin-bottom: 18px; }
.ticks { display: grid; gap: 10px; }
.ticks li { position: relative; padding-left: 30px; font-weight: 500; color: var(--text); }
.ticks li::before { content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px; border-radius: 50%; background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath d='M5 13l4 4L19 7' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px no-repeat; }

/* ---------- Testimonials ---------- */
.carousel { position: relative; max-width: 760px; margin: 0 auto; }
.carousel__viewport { overflow: hidden; border-radius: var(--radius); }
.carousel__track { display: flex; transition: transform .6s var(--ease); }
.testimonial { min-width: 100%; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; text-align: center; }
.testimonial__stars { color: #f5b301; font-size: 20px; letter-spacing: 3px; margin-bottom: 16px; }
.testimonial blockquote { font-size: clamp(1.05rem, 2.4vw, 1.35rem); font-weight: 600; color: var(--white); line-height: 1.5; margin-bottom: 24px; }
.testimonial figcaption { display: inline-flex; align-items: center; gap: 12px; }
.testimonial figcaption img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--green); }
.testimonial figcaption span { text-align: left; display: flex; flex-direction: column; }
.testimonial figcaption strong { color: var(--white); font-size: 15px; }
.testimonial figcaption small { color: var(--muted); font-size: 13px; }
.carousel__arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%; background: var(--panel); border: 1px solid var(--line-2); color: var(--white); cursor: pointer; display: grid; place-items: center; box-shadow: var(--shadow); z-index: 3; transition: background .2s, color .2s; }
.carousel__arrow:hover { background: var(--green); color: #fff; border-color: var(--green); }
.carousel__arrow--prev { left: -14px; } .carousel__arrow--next { right: -14px; }
.carousel__dots { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
.carousel__dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: #2c3f57; cursor: pointer; transition: width .2s, background .2s; }
.carousel__dots button.is-active { background: var(--green); width: 24px; border-radius: 999px; }

/* ---------- CTA strip ---------- */
.ctastrip { background: radial-gradient(600px 320px at 88% -40%, rgba(16,185,129,.38), transparent 60%), linear-gradient(120deg, #0c2340, #081525); color: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ctastrip__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: 52px 20px; }
.ctastrip h2 { font-size: clamp(1.6rem, 4vw, 2.3rem); font-weight: 800; margin-bottom: 6px; color: #fff; }
.ctastrip p { color: var(--text); }

/* ---------- Footer ---------- */
.footer { background: var(--navy-2); color: var(--text); border-top: 1px solid var(--line); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 40px; padding: 62px 20px 44px; }
.footer__tag { margin: 16px 0; color: var(--muted); max-width: 260px; }
.footer__contact { color: var(--green-l); font-weight: 600; }
.footer__contact:hover { text-decoration: underline; }
.footer__col h4, .footer__news h4 { color: #fff; font-family: var(--ff-head); font-size: 14px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; font-weight: 700; }
.footer__col a { display: block; padding: 5px 0; color: var(--muted); transition: color .2s, padding-left .2s; }
.footer__col a:hover { color: #fff; padding-left: 4px; }
.footer__news p { color: var(--muted); font-size: 14px; margin-bottom: 14px; }
.news { display: flex; gap: 8px; }
.news input { flex: 1; min-width: 0; background: rgba(255,255,255,.05); border: 1px solid var(--line-2); color: #fff; padding: 11px 14px; border-radius: 8px; font-size: 14px; font-family: inherit; transition: border-color .2s, background .2s; }
.news input::placeholder { color: var(--muted); }
.news input:focus { outline: none; border-color: var(--green); background: rgba(255,255,255,.08); }
.news__msg { min-height: 18px; font-size: 13px; color: var(--green-l); margin-top: 8px; }
.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.05); border: 1px solid var(--line-2); color: var(--text); transition: transform .2s, background .2s, color .2s; }
.socials a:hover { background: var(--green); color: #fff; transform: translateY(-3px); }
.footer__bottom { border-top: 1px solid var(--line); }
.footer__bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding: 20px; font-size: 13px; color: var(--muted); }

/* ---------- Floating WhatsApp ---------- */
.wafab { position: fixed; bottom: 22px; right: 22px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; box-shadow: 0 12px 28px rgba(16,185,129,.5); animation: floaty 5s ease-in-out infinite; transition: transform .2s, background .2s; }
.wafab:hover { transform: scale(1.08); background: var(--green-d); }

/* ---------- Mission / Vision / Values ---------- */
.mvgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 44px; }
.mv { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; position: relative; overflow: hidden; }
.mv::before { content: ""; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--green); }
.mv__ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: rgba(16,185,129,.14); color: var(--green-l); margin-bottom: 18px; }
.mv h3 { font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.mv p { color: var(--text); font-size: 15.5px; }
.values { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.value { text-align: center; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 14px; transition: transform .28s var(--ease), border-color .28s, background .28s; }
.value:hover { transform: translateY(-6px); border-color: rgba(16,185,129,.5); background: var(--panel-hi); }
.value__ic { width: 54px; height: 54px; margin: 0 auto 14px; border-radius: 14px; display: grid; place-items: center; background: rgba(16,185,129,.14); color: var(--green-l); transition: background .28s, color .28s; }
.value:hover .value__ic { background: var(--green); color: #fff; }
.value h4 { font-size: 15px; font-weight: 700; color: var(--white); letter-spacing: .3px; }
@media (max-width: 980px) { .values { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .mvgrid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .values { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .hero__grid { grid-template-columns: 1fr; gap: 30px; }
  .hero__collage { height: 420px; max-width: 480px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__news { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .nav { position: fixed; top: 0; right: 0; height: 100vh; width: min(80vw, 310px); flex-direction: column; gap: 4px; background: var(--navy); box-shadow: -10px 0 40px rgba(0,0,0,.55); border-left: 1px solid var(--line); padding: 92px 20px 20px; transform: translateX(100%); transition: transform .35s var(--ease); z-index: 95; }
  .nav.is-open { transform: translateX(0); }
  .nav__link { font-size: 14px; padding: 12px 14px; border-radius: 10px; }
  .nav__link::after { display: none; }
  .nav__link:hover { background: rgba(255,255,255,.05); }
  .hamburger { display: flex; }
  .grid--3 { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 58px 0; }
  .section__head--row { flex-direction: column; align-items: flex-start; }
  .zigzag { grid-template-columns: 1fr; gap: 24px; }
  .zigzag--reverse .zigzag__media { order: 0; }
  .carousel__arrow--prev { left: 4px; } .carousel__arrow--next { right: 4px; }
  .testimonial { padding: 30px 22px; }
}
@media (max-width: 480px) {
  .header__actions .btn--primary { display: none; }
  .grid--4 { grid-template-columns: 1fr; }
  .hero__stats { gap: 20px; }
  .hero__collage { height: 340px; }
  .collage__pill { font-size: 11px; padding: 8px 12px; }
  .footer__grid { grid-template-columns: 1fr; }
  .ctastrip__inner { flex-direction: column; align-items: flex-start; }
  .topbar { font-size: 11.5px; } .topbar__inner { gap: 7px; }
  .logo__name { font-size: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   Shopping cart · Contact form · Toast  (appended)
   ========================================================================== */

/* ---------- Header cart button ---------- */
.cartbtn { position: relative; width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--line-2); background: rgba(255,255,255,.03); color: var(--white); cursor: pointer; display: grid; place-items: center; transition: background .2s, border-color .2s, color .2s; }
.cartbtn:hover { border-color: var(--green); color: var(--green-l); }
.cartbtn__count { position: absolute; top: -6px; right: -6px; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 999px; background: var(--green); color: #fff; font-size: 11px; font-weight: 700; display: none; align-items: center; justify-content: center; line-height: 1; }
.cartbtn__count.is-visible { display: flex; }

/* ---------- Cart drawer ---------- */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.55); opacity: 0; visibility: hidden; transition: opacity .3s; z-index: 110; }
.cart-overlay.is-open { opacity: 1; visibility: visible; }
.cart { position: fixed; top: 0; right: 0; height: 100%; width: min(92vw, 400px); background: var(--navy-2); border-left: 1px solid var(--line); box-shadow: -20px 0 50px rgba(0,0,0,.5); transform: translateX(100%); transition: transform .35s var(--ease); z-index: 120; display: flex; flex-direction: column; }
.cart.is-open { transform: translateX(0); }
.cart__head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--line); }
.cart__head h3 { font-family: var(--ff-head); font-size: 18px; color: var(--white); font-weight: 700; }
.cart__count-lbl { color: var(--muted); font-weight: 600; font-size: 14px; }
.cart__close { width: 38px; height: 38px; border-radius: 10px; border: none; background: rgba(255,255,255,.05); color: var(--white); cursor: pointer; display: grid; place-items: center; transition: background .2s; }
.cart__close:hover { background: rgba(255,255,255,.12); }
.cart__body { flex: 1; overflow-y: auto; padding: 4px 16px; }
.cart__empty { text-align: center; color: var(--muted); padding: 56px 20px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.cart__empty svg { opacity: .55; }
.cart__items { display: flex; flex-direction: column; }
.cart-item { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 12px; padding: 16px 6px; border-bottom: 1px solid var(--line); }
.cart-item__info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cart-item__brand { font-size: 10.5px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--green-l); }
.cart-item__name { font-size: 14px; color: var(--white); font-weight: 600; line-height: 1.3; }
.cart-item__price { font-size: 13px; color: var(--muted); }
.cart-item__qty { display: flex; align-items: center; gap: 8px; }
.qtybtn { width: 26px; height: 26px; border-radius: 7px; border: 1px solid var(--line-2); background: transparent; color: var(--white); font-size: 15px; line-height: 1; cursor: pointer; display: grid; place-items: center; transition: background .2s, border-color .2s, color .2s; }
.qtybtn:hover { border-color: var(--green); color: var(--green-l); }
.cart-item__qty span { min-width: 16px; text-align: center; font-weight: 700; color: var(--white); font-size: 14px; }
.cart-item__remove { border: none; background: transparent; color: var(--muted); font-size: 20px; cursor: pointer; line-height: 1; padding: 2px 4px; transition: color .2s; }
.cart-item__remove:hover { color: #ef6b6b; }
.cart__foot { border-top: 1px solid var(--line); padding: 18px 22px 22px; }
.cart__total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.cart__total span { color: var(--muted); font-size: 14px; }
.cart__total strong { font-family: var(--ff-head); font-size: 22px; color: var(--white); font-weight: 800; }
.cart__note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 10px; }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
.contact__info h3 { font-family: var(--ff-head); font-size: 22px; color: var(--white); font-weight: 800; margin-bottom: 10px; }
.contact__info > p { color: var(--text); margin-bottom: 24px; }
.contact__list { display: flex; flex-direction: column; gap: 16px; }
.contact__list li { display: flex; align-items: center; gap: 14px; color: var(--text); }
.contact__list a { color: var(--text); transition: color .2s; }
.contact__list a:hover { color: var(--green-l); }
.contact__ic { flex: none; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(16,185,129,.14); color: var(--green-l); }
.contact__form { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--light); margin-bottom: 6px; }
.field input, .field textarea { width: 100%; background: rgba(255,255,255,.04); border: 1px solid var(--line-2); color: #fff; padding: 12px 14px; border-radius: 10px; font-size: 15px; font-family: inherit; transition: border-color .2s, background .2s; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--green); background: rgba(255,255,255,.07); }
.field textarea { resize: vertical; min-height: 120px; }
.form__msg { min-height: 20px; font-size: 13.5px; margin-top: 12px; line-height: 1.4; }

/* ---------- Toast ---------- */
.toast { position: fixed; bottom: 92px; right: 22px; z-index: 130; background: var(--panel); color: #fff; border: 1px solid var(--line-2); border-left: 4px solid var(--green); border-radius: 10px; padding: 13px 18px; font-size: 14px; font-weight: 600; box-shadow: var(--shadow-lg); transform: translateY(20px); opacity: 0; visibility: hidden; transition: transform .3s var(--ease), opacity .3s; max-width: 300px; }
.toast.is-visible { transform: translateY(0); opacity: 1; visibility: visible; }

@media (max-width: 760px) {
  .contact { grid-template-columns: 1fr; gap: 28px; }
  .toast { left: 16px; right: 16px; bottom: 84px; max-width: none; }
}
