/* =========================================================
   WEBZAC — Design Tokens
   Palette: Ink #0B0B0C · Paper #FFFFFF · Warm Paper #FBF4F2
            Red #D60000 · Red Deep #8F0000 · Muted #6E6E6E
   Display: Space Grotesk · Body: Inter · Data: Geist Mono
   Signature: stitched-thread divider (Tiruppur textile motif)
   ========================================================= */
:root {
  --ink: #0b0b0c;
  --paper: #ffffff;
  --paper-warm: #fbf4f2;
  --red: #d60000;
  --red-deep: #8f0000;
  --muted: #6e6e6e;
  --line: rgba(11,11,12,.12);
  --line-on-ink: rgba(255,255,255,.14);
  --radius: 18px;
  --ease: cubic-bezier(.16,1,.3,1);
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.02;
  letter-spacing: -.02em;
  margin: 0 0 1rem;
}
h1 { font-size: clamp(2.8rem, 6.4vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h3 { font-size: 1.3rem; }
p { color: var(--muted); line-height: 1.7; margin: 0 0 1rem; }
.mono { font-family: "Geist Mono", monospace; }

/* ---------- Layout shell (full-bleed, no gaps) ---------- */
.wrap { width: min(1280px, 100%); margin: 0 auto; padding: 0 var(--gutter); }
.band { position: relative; }
.band-paper { background: var(--paper); color: var(--ink); }
.band-warm  { background: var(--paper-warm); color: var(--ink); }
.band-ink   { background: var(--ink); color: #fff; }
.band-red   { background: var(--red); color: #fff; }
.band-ink p, .band-red p { color: rgba(255,255,255,.78); }
.pad-lg { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.pad-md { padding: clamp(2.5rem, 6vw, 4rem) 0; }

/* ---------- Stitched thread divider (signature element) ---------- */
.thread {
  display: block;
  width: 100%;
  height: 28px;
  line-height: 0;
}
.thread svg { width: 100%; height: 100%; display: block; }
.thread .stitch {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-dasharray: 9 8;
  stroke-linecap: round;
  opacity: .55;
}
.thread--onpaper { color: var(--ink); }
.thread--onink { color: #fff; }
.thread--onred { color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-shell {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 76px; gap: 1rem;
}
.container {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 1.75rem);
}
.logo {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700; font-size: 1.3rem; letter-spacing: -.01em;
  display: flex; align-items: center; gap: .4rem;
}
.logo::before {
  content: "";
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--red);
  display: inline-block;
}
.site-nav { display: flex; align-items: center; gap: 1.5rem; }
.site-nav a { position: relative; font-size: .95rem; padding-bottom: 3px; }
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--red);
  transition: width .3s var(--ease);
}
.site-nav a:hover::after { width: 100%; }
.nav-toggle { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 50px; padding: .9rem 1.6rem; border-radius: 999px;
  font-weight: 700; font-size: .95rem;
  border: 1.5px solid transparent;
  position: relative; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 10px 28px rgba(214,0,0,.25); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(214,0,0,.34); }
.btn-secondary { background: transparent; border-color: currentColor; color: inherit; }
.btn-secondary:hover { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-3px); }
.band-ink .btn-secondary:hover, .band-red .btn-secondary:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn::before {
  content: ""; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-20deg); transition: left .6s var(--ease);
}
.btn:hover::before { left: 130%; }

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  min-height: calc(100vh - 76px);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  text-transform: uppercase; letter-spacing: .18em; font-size: .74rem; font-weight: 700;
  color: var(--red); margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--red); }
.hero-title span { color: var(--red); }
.hero-sub { font-size: 1.15rem; max-width: 34rem; color: var(--ink); opacity: .8; }
.hero-body { max-width: 38rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin: 1.7rem 0 1.4rem; }
.hero-tags { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 1.2rem; }
.hero-tags span {
  padding: .5rem .95rem; border: 1px solid var(--line); border-radius: 999px; font-size: .85rem;
  transition: border-color .25s ease, color .25s ease, transform .25s ease;
}
.hero-tags span:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }
.hero-proof { display: flex; align-items: center; gap: .7rem; font-size: .92rem; color: var(--muted); }
.hero-proof .stars { color: var(--red); letter-spacing: .1em; }
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.content-box {
  min-width: 0;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 1rem;
}
.section-label::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--red);
}

/* Hero visual: image collage of real client work (swap placeholders for photos) */
.hero-visual { position: relative; }
.hero-visual, .glass-card, .orb-card {
  min-width: 0;
}
.collage {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: repeat(2, 1fr);
  gap: .9rem;
  height: 460px;
}
.collage-tile {
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex; align-items: flex-end;
  animation: floatSlow 7s ease-in-out infinite;
}
.collage-tile:nth-child(2) { animation-delay: .6s; }
.collage-tile:nth-child(3) { animation-delay: 1.2s; }
.collage-tile.main { grid-row: 1 / 3; }
.collage-tile img, .collage-tile .art { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.collage-tile .tile-label {
  position: relative; z-index: 2; padding: .9rem 1rem;
  font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: .88rem;
  color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,.35);
}
.collage-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.55) 100%);
  z-index: 1;
}

/* ---------- Generated art patterns (swap with real photography anytime) ---------- */
.art-weave {
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.10) 0 2px, transparent 2px 14px),
    repeating-linear-gradient(-45deg, rgba(214,0,0,.35) 0 2px, transparent 2px 14px),
    linear-gradient(135deg, var(--ink), #2a0000);
}
.art-lines {
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,.14) 0 2px, transparent 2px 16px),
    linear-gradient(160deg, var(--red-deep), var(--ink));
}
.art-dots {
  background:
    radial-gradient(rgba(255,255,255,.5) 1.5px, transparent 1.6px) 0 0/18px 18px,
    linear-gradient(160deg, var(--ink), var(--red-deep));
}
.art-grid {
  background:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px) 0 0/22px 22px,
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px) 0 0/22px 22px,
    linear-gradient(135deg, var(--ink), #3a0000);
}

/* ---------- Marquee ---------- */
.marquee-wrap { overflow: hidden; }
.marquee-track {
  display: flex; gap: 3rem; white-space: nowrap;
  animation: marquee 24s linear infinite;
  padding: 1.1rem 0;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 1rem; letter-spacing: .02em; }
.marquee-track span::after { content: "\2022"; margin-left: 3rem; opacity: .5; }

/* ---------- Section heads ---------- */
.head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.head .eyebrow { color: inherit; }
.band-ink .eyebrow, .band-red .eyebrow { color: #fff; }
.band-ink .eyebrow::before, .band-red .eyebrow::before { background: #fff; }

/* ---------- Services grid (edge-to-edge, no card gaps) ---------- */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
.service-cell {
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 2.2rem; position: relative; overflow: hidden;
  transition: background .3s var(--ease);
}
.service-cell:hover { background: var(--paper-warm); }
.service-cell .num { font-family: "Geist Mono", monospace; color: var(--red); font-size: .85rem; }
.service-cell h3 { margin: .8rem 0 .5rem; }
.service-cell::before {
  content: ""; position: absolute; left: 0; top: 0; width: 3px; height: 0;
  background: var(--red); transition: height .35s var(--ease);
}
.service-cell:hover::before { height: 100%; }

/* ---------- Stats ---------- */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { text-align: center; padding: 0 1rem; border-left: 1px solid var(--line-on-ink); }
.stat:first-child { border-left: none; }
.stat strong { display: block; font-family: "Space Grotesk", sans-serif; font-size: clamp(2rem, 4.4vw, 3rem); }
.stat span { font-size: .85rem; opacity: .75; text-transform: uppercase; letter-spacing: .1em; }

/* ---------- Process (thread ties steps together) ---------- */
.process-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  position: relative;
}
.process-row::before {
  content: ""; position: absolute; top: 26px; left: 6%; right: 6%; height: 2px;
  background-image: linear-gradient(90deg, var(--line) 60%, transparent 0);
  background-size: 14px 2px; background-repeat: repeat-x;
}
.process-step { position: relative; }
.process-step .dot {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: "Geist Mono", monospace; color: var(--red); font-weight: 700;
  margin-bottom: 1.1rem; position: relative; z-index: 1;
}

/* ---------- Industries (line-art tiles) ---------- */
.industry-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.industry-tile {
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 2rem 1.4rem; text-align: center;
  transition: background .3s ease, transform .3s var(--ease);
}
.industry-tile:hover { background: var(--paper-warm); transform: translateY(-4px); }
.industry-tile svg { width: 46px; height: 46px; margin-bottom: .9rem; stroke: var(--red); }
.industry-tile h3 { font-size: 1rem; margin-bottom: .3rem; }
.industry-tile p { font-size: .85rem; margin: 0; }

/* ---------- Portfolio (image tiles) ---------- */
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); }
.portfolio-tile { background: var(--paper); position: relative; overflow: hidden; }
.portfolio-media { height: 260px; position: relative; overflow: hidden; }
.portfolio-media .art { width: 100%; height: 100%; }
.portfolio-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.5)); }
.portfolio-tag {
  position: absolute; left: 1.2rem; bottom: 1.1rem; z-index: 2; color: #fff;
  font-family: "Space Grotesk", sans-serif; font-weight: 600;
}
.portfolio-tag small { display: block; text-transform: uppercase; letter-spacing: .08em; font-size: .68rem; opacity: .85; margin-bottom: .2rem; }
.portfolio-body { padding: 1.6rem 1.8rem; }
.portfolio-body p { margin: 0 0 .8rem; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-on-ink); }
.testi-card { background: var(--ink); padding: 2rem; }
.testi-card blockquote { margin: 0 0 1.2rem; font-size: 1.05rem; color: #fff; }
.testi-card cite { font-size: .85rem; color: rgba(255,255,255,.6); font-style: normal; }

/* ---------- FAQ ---------- */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; color: var(--red); font-size: 1.4rem; flex-shrink: 0;
  transition: transform .3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 0 1.6rem; max-width: 46rem; }
.faq-item .faq-a p { margin: 0; }

/* ---------- CTA ---------- */
.cta-row { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-row h2 { margin-bottom: .5rem; }
.cta-row p { max-width: 34rem; margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2rem; padding: clamp(3rem,6vw,4.5rem) 0 2rem; }
.footer-grid h3 { font-size: .95rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.55); margin-bottom: 1rem; }
.footer-grid a, .footer-grid p { display: block; margin: .5rem 0; color: rgba(255,255,255,.85); }
.footer-grid a:hover { color: var(--red); }
.footer-logo { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 1.4rem; margin-bottom: .8rem; }
.footer-brand { min-width: 0; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding: 1.4rem 0; border-top: 1px solid var(--line-on-ink);
  font-size: .85rem; color: rgba(255,255,255,.55);
}

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

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes floatSlow { 50% { transform: translateY(-8px); } }

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

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); row-gap: 1.5rem; }
  .stat:nth-child(3) { border-left: none; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .collage { height: 340px; }
  .split { grid-template-columns: 1fr !important; }
  .process-row { grid-template-columns: repeat(2, 1fr); row-gap: 2rem; }
  .process-row::before { display: none; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + .65rem);
    padding: .75rem;
    display: none;
    flex-direction: column;
    gap: .35rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(11,11,12,.12);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a {
    padding: .8rem .9rem;
    border-radius: 12px;
  }
  .site-nav .nav-cta {
    width: 100%;
    text-align: center;
    margin-top: .25rem;
  }
  .container, .wrap { padding-left: 1rem; padding-right: 1rem; }
  .hero-actions, .cta-row { width: 100%; }
  .hero-actions .btn, .cta-row .btn { width: 100%; }
  .split { grid-template-columns: 1fr !important; gap: 1.25rem !important; }
  .hero-proof { align-items: flex-start; }
  .hero-proof .stars { flex-shrink: 0; }
  .collage { grid-template-columns: 1fr; grid-template-rows: auto; height: auto; }
  .collage-tile { min-height: 210px; }
  .services-grid, .industry-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-row { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-grid h3 { margin-top: 1rem; }
  .footer-brand { margin-bottom: .5rem; }
  .faq-item summary { font-size: 1rem; }
  .process-row { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-media { height: 220px; }
  .portfolio-body { padding: 1.25rem; }
  .shop-layout { gap: 1rem; }
  .shop-grid { gap: 1rem; }
  .shop-card { border-radius: 18px; }
  .shop-media { min-height: 210px; }
  .shop-body { padding: 1rem; }
  .shop-actions { flex-direction: column; }
  .shop-actions .btn { width: 100%; }
  .cart-panel { padding: 1.1rem; border-radius: 18px; }
  .cart-item { font-size: .88rem; }
  .shop-toolbar .btn, .shop-toolbar .shop-search { width: 100%; }
  .shop-chip-row { gap: .5rem; }
  .shop-chip { padding: .5rem .8rem; font-size: .85rem; }
  .checkout-grid { grid-template-columns: 1fr !important; }
  .success-grid { grid-template-columns: 1fr !important; }
}

/* ---------- Shop page ---------- */
.shop-hero {
  background:
    radial-gradient(circle at top left, rgba(214,0,0,.12), transparent 28%),
    radial-gradient(circle at top right, rgba(11,11,12,.10), transparent 24%),
    linear-gradient(180deg, #fff 0%, #fff7f5 100%);
}
.shop-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) auto auto;
  gap: 1rem;
  align-items: center;
}
.shop-search {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .8rem 1rem;
  box-shadow: 0 10px 30px rgba(11,11,12,.05);
}
.shop-search input {
  border: 0;
  outline: 0;
  width: 100%;
  font: inherit;
  background: transparent;
}
.shop-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.5rem;
}
.shop-chip {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: .55rem .95rem;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: transform .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.shop-chip:hover, .shop-chip.is-active {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-1px);
}
.shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1.5rem;
  align-items: start;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.shop-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(11,11,12,.05);
  display: flex;
  flex-direction: column;
}
.shop-media {
  min-height: 240px;
  position: relative;
  overflow: hidden;
}
.shop-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.shop-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  border-radius: 999px;
  padding: .35rem .75rem;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.shop-body {
  padding: 1.2rem 1.2rem 1.3rem;
}
.shop-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  margin-bottom: .45rem;
}
.shop-meta {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  align-items: center;
  margin-bottom: .9rem;
  flex-wrap: wrap;
}
.shop-price {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--ink);
}
.shop-delivery {
  font-size: .85rem;
  color: var(--muted);
}
.shop-specs {
  display: grid;
  gap: .35rem;
  margin: .9rem 0 1.1rem;
  font-size: .92rem;
}
.shop-actions {
  display: flex;
  gap: .75rem;
}
.shop-actions .btn {
  min-height: 44px;
  flex: 1;
}
.cart-panel {
  position: sticky;
  top: 96px;
  background: var(--ink);
  color: #fff;
  border-radius: 22px;
  padding: 1.4rem;
  box-shadow: 0 18px 48px rgba(11,11,12,.18);
}
.cart-panel h3 { color: #fff; }
.cart-list {
  display: grid;
  gap: .85rem;
  margin-top: 1rem;
}
.cart-item {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  padding-bottom: .85rem;
  border-bottom: 1px solid rgba(255,255,255,.14);
  font-size: .92rem;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 0 1.2rem;
  font-weight: 700;
  font-size: 1.05rem;
}
.cart-note {
  font-size: .85rem;
  color: rgba(255,255,255,.72);
}
@media (max-width: 1100px) {
  .shop-layout { grid-template-columns: 1fr; }
  .cart-panel { position: static; }
}
@media (max-width: 900px) {
  .shop-toolbar { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
}
