/* ===========================================================
   Squishy Society — starter stylesheet
   Swap the colors in :root to re-theme the whole site.
   =========================================================== */

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

:root {
  --pink: #ffb8d9;
  --pink-dark: #ff86bb;
  --lavender: #d9c7ff;
  --mint: #bdf5da;
  --cream: #fff8f2;
  --ink: #4a3b52;
  --ink-light: #7a6b82;
  --white: #ffffff;
  --radius: 20px;
  --shadow: 0 10px 30px rgba(154, 106, 168, 0.15);
  --shadow-soft: 0 4px 14px rgba(154, 106, 168, 0.12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Quicksand', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
}

h1, h2, h3, .logo {
  font-family: 'Baloo 2', cursive;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 242, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo .dot { color: var(--pink-dark); }

.nav-links {
  display: flex;
  gap: 28px;
  font-weight: 600;
}

.nav-links a:hover { color: var(--pink-dark); }

.nav-actions { display: flex; align-items: center; gap: 16px; }

.cart-btn {
  position: relative;
  background: var(--pink);
  border: none;
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 700;
  font-family: 'Quicksand', sans-serif;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cart-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--ink);
  color: #fff;
  font-size: 0.7rem;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* ---------- Hero ---------- */
.hero {
  padding: 72px 0 56px;
  text-align: center;
  background: radial-gradient(circle at 20% 20%, var(--mint) 0%, transparent 45%),
              radial-gradient(circle at 80% 10%, var(--lavender) 0%, transparent 40%),
              radial-gradient(circle at 50% 90%, var(--pink) 0%, transparent 45%);
}

.hero-badge {
  display: inline-block;
  background: var(--white);
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow-soft);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 0 0 16px;
}

.hero p {
  max-width: 560px;
  margin: 0 auto 28px;
  color: var(--ink-light);
  font-size: 1.1rem;
}

.btn {
  display: inline-block;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: 'Quicksand', sans-serif;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.btn.secondary {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

/* ---------- Trust strip ---------- */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  padding: 20px 0;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-light);
}

.trust-strip span { display: flex; align-items: center; gap: 8px; }

/* ---------- Section headings ---------- */
.section { padding: 56px 0; }

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px;
}

.section-head h2 { font-size: 2rem; margin-bottom: 10px; }
.section-head p { color: var(--ink-light); margin: 0; }

/* ---------- Product grid ---------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}

.filter-btn {
  border: 2px solid var(--pink);
  background: transparent;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-family: 'Quicksand', sans-serif;
  cursor: pointer;
  color: var(--ink);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--pink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.product-thumb {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--cream);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Shown if a hot-linked supplier photo fails to load */
.product-thumb.img-missing::after {
  content: "🧸";
  font-size: 3rem;
  opacity: 0.35;
}

.product-info { padding: 16px 18px 20px; flex: 1; display: flex; flex-direction: column; }

.product-info h3 { margin: 0 0 6px; font-size: 1.05rem; }

.product-meta {
  color: var(--ink-light);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.product-price {
  font-weight: 800;
  font-size: 1.15rem;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.add-btn {
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 999px;
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
}

.add-btn:hover { background: var(--pink-dark); }

/* ---------- Why us / features ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.feature-card .emoji { font-size: 2.2rem; margin-bottom: 12px; }
.feature-card h3 { margin: 0 0 8px; }
.feature-card p { color: var(--ink-light); margin: 0; font-size: 0.92rem; }

/* ---------- Newsletter ---------- */
.newsletter {
  background: var(--lavender);
  border-radius: 28px;
  padding: 48px 32px;
  text-align: center;
}

.newsletter h2 { margin: 0 0 10px; }
.newsletter p { color: var(--ink); opacity: 0.75; margin: 0 0 24px; }

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 14px 18px;
  border-radius: 999px;
  border: none;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
}

/* ---------- Footer ---------- */
footer {
  background: var(--ink);
  color: #fff;
  padding: 48px 0 24px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

footer h4 { margin: 0 0 14px; font-family: 'Quicksand', sans-serif; }
footer a { display: block; opacity: 0.75; margin-bottom: 8px; font-size: 0.9rem; }
footer a:hover { opacity: 1; }
footer p { opacity: 0.7; font-size: 0.9rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.6;
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Product modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(74, 59, 82, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 100;
}

.modal-overlay.open { display: flex; }

.modal {
  background: var(--white);
  border-radius: 24px;
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--cream);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
}

.modal-thumb {
  text-align: center;
  padding: 0 0 16px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-thumb img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
}

.modal-thumb.img-missing::after,
.cart-item-thumb.img-missing::after {
  content: "🧸";
  opacity: 0.35;
}

.modal-thumb.img-missing::after { font-size: 4rem; }

.cart-item-thumb.img-missing {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-item-thumb.img-missing::after { font-size: 1.6rem; }

.modal h2 { margin: 0 0 8px; }
.modal .product-price { font-size: 1.4rem; margin-bottom: 18px; }
.modal .desc { color: var(--ink-light); margin-bottom: 10px; }
.modal .source-note { color: var(--ink-light); font-size: 0.8rem; margin-bottom: 24px; }

/* ---------- Cart drawer ---------- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(74, 59, 82, 0.35);
  display: none;
  z-index: 100;
}

.cart-overlay.open { display: block; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 380px;
  max-width: 90vw;
  background: var(--cream);
  box-shadow: -10px 0 30px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}

.cart-overlay.open .cart-drawer { transform: translateX(0); }

.cart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }

.cart-item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  align-items: center;
}

.cart-item-thumb {
  background: var(--white);
  width: 52px;
  height: 52px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info { flex: 1; }
.cart-item-info .name { font-weight: 700; font-size: 0.92rem; }
.cart-item-info .qty-row { display: flex; align-items: center; gap: 8px; margin-top: 6px; }

.qty-btn {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--ink-light);
  background: transparent;
  cursor: pointer;
  line-height: 1;
}

.remove-btn {
  background: none;
  border: none;
  color: var(--ink-light);
  cursor: pointer;
  font-size: 0.8rem;
  text-decoration: underline;
}

.cart-foot {
  padding: 20px 24px 28px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.empty-cart {
  text-align: center;
  color: var(--ink-light);
  padding: 60px 0;
}

.snipcart-hint {
  font-size: 0.75rem;
  color: var(--ink-light);
  text-align: center;
  margin-top: 10px;
}

/* ===========================================================
   Added: announcement bar, tiles, badges, product page,
   contact form, shipping meter
   =========================================================== */

.announce {
  background: var(--ink);
  color: #fff;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 9px 16px;
  letter-spacing: 0.01em;
}

/* ---------- Category tiles ---------- */
.tile-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 18px;
}

.tile {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Quicksand', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 6px;
}

.tile-img {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  border: 3px solid transparent;
  transition: border-color 0.15s ease, transform 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tile:hover .tile-img { border-color: var(--pink-dark); transform: translateY(-3px); }
.tile-img img { width: 100%; height: 100%; object-fit: cover; }
.tile-emoji {
  position: absolute;
  right: 2px; bottom: 2px;
  background: var(--white);
  border-radius: 50%;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-soft);
}
.tile-img.img-missing::after { content: "🧸"; font-size: 2.4rem; opacity: 0.35; }
.tile-name { font-weight: 700; font-size: 0.95rem; }
.tile-count { font-size: 0.78rem; color: var(--ink-light); }

/* ---------- Shop bar (count + sort) ---------- */
.shop-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 22px;
  flex-wrap: wrap;
  gap: 12px;
}
.shop-bar .count { color: var(--ink-light); font-weight: 600; font-size: 0.9rem; }
.sort-wrap { font-weight: 600; font-size: 0.9rem; color: var(--ink-light); }
.sort-wrap select {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  border: 2px solid var(--pink);
  background: var(--white);
  margin-left: 6px;
  cursor: pointer;
  color: var(--ink);
}

/* ---------- Card tweaks ---------- */
.product-card { text-decoration: none; color: inherit; position: relative; }
.product-thumb { position: relative; }
.card-badge {
  position: absolute;
  top: 10px; left: 10px;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.card-badge.new { background: var(--mint); color: #17603f; }
.card-badge.mystery { background: var(--lavender); color: #4b2e83; }
.view-link { font-size: 0.85rem; font-weight: 700; color: var(--pink-dark); }

.drop-section { background: linear-gradient(180deg, rgba(189,245,218,0.35), transparent); }

/* ---------- Breadcrumbs ---------- */
.crumbs { font-size: 0.85rem; color: var(--ink-light); margin-bottom: 22px; }
.crumbs a { color: var(--ink-light); }
.crumbs a:hover { color: var(--pink-dark); }

/* ---------- Product detail page ---------- */
.pdp-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 1fr);
  gap: 44px;
  align-items: start;
}

.pdp-main {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-soft);
  display: flex; align-items: center; justify-content: center;
}
.pdp-main img { width: 100%; height: 100%; object-fit: cover; }
.pdp-main.img-missing::after { content: "🧸"; font-size: 6rem; opacity: 0.3; }

.pdp-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.pdp-thumb {
  width: 68px; height: 68px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  background: var(--white);
  cursor: pointer;
  padding: 0;
}
.pdp-thumb.active { border-color: var(--pink-dark); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }

.pdp-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.badge {
  font-size: 0.7rem; font-weight: 800; padding: 5px 11px;
  border-radius: 999px; text-transform: uppercase; letter-spacing: 0.04em;
}
.badge-new { background: var(--mint); color: #17603f; }
.badge-mystery { background: var(--lavender); color: #4b2e83; }
.badge-cat { background: var(--cream); color: var(--ink-light); }

.pdp-info h1 { font-size: 2rem; margin: 0 0 10px; }
.pdp-price { font-size: 1.6rem; font-weight: 800; margin-bottom: 4px; }
.pdp-price-note { font-size: 0.78rem; color: var(--ink-light); margin-bottom: 16px; }
.pdp-desc { color: var(--ink-light); margin-bottom: 18px; }

.mystery-note {
  background: var(--lavender);
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.pdp-field { margin-bottom: 20px; }
.pdp-label { display: block; font-weight: 700; margin-bottom: 8px; font-size: 0.92rem; }

.opt-row { display: flex; flex-wrap: wrap; gap: 8px; }
.opt-btn {
  border: 2px solid #e6dced;
  background: var(--white);
  padding: 9px 15px;
  border-radius: 999px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  color: var(--ink);
}
.opt-btn:hover { border-color: var(--pink); }
.opt-btn.selected { border-color: var(--ink); background: var(--ink); color: #fff; }

.qty-stepper { display: inline-flex; align-items: center; gap: 0; border: 2px solid #e6dced; border-radius: 999px; overflow: hidden; }
.qty-stepper button {
  width: 40px; height: 42px; border: none; background: var(--white);
  font-size: 1.2rem; cursor: pointer; color: var(--ink);
}
.qty-stepper button:hover { background: var(--cream); }
.qty-stepper input {
  width: 54px; height: 42px; border: none; text-align: center;
  font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 1rem;
  -moz-appearance: textfield;
}
.qty-stepper input::-webkit-outer-spin-button,
.qty-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.pdp-add { width: 100%; margin-top: 4px; }

.pdp-facts { list-style: none; padding: 0; margin: 24px 0 0; font-size: 0.88rem; color: var(--ink-light); }
.pdp-facts li { padding: 7px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.pdp-facts a { color: var(--pink-dark); font-weight: 600; }

/* ---------- Supplier review box ---------- */
.supplier-box {
  margin-top: 26px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  padding: 18px 20px;
}
.supplier-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.supplier-score { font-weight: 800; color: var(--pink-dark); }
.supplier-sub { font-size: 0.82rem; color: var(--ink-light); margin: 8px 0 14px; line-height: 1.5; }
.supplier-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.stag {
  background: var(--cream);
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
}
.supplier-foot { font-size: 0.74rem; color: var(--ink-light); margin: 12px 0 0; font-style: italic; }

.supplier-quotes { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.squote {
  background: var(--cream);
  border-radius: 12px;
  padding: 12px 14px;
}
.squote p { margin: 0 0 6px; font-size: 0.88rem; line-height: 1.5; color: var(--ink); font-style: italic; }
.squote-meta { font-size: 0.72rem; color: var(--ink-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em; }

.own-reviews {
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px dashed rgba(0,0,0,0.15);
  border-radius: 16px;
}
.own-reviews h3 { margin: 0 0 6px; font-size: 1.05rem; }
.own-reviews p { margin: 0; color: var(--ink-light); font-size: 0.88rem; }

.pdp-missing { text-align: center; padding: 70px 0; }

/* ---------- Cart additions ---------- */
.variant-line { font-size: 0.78rem; color: var(--ink-light); margin-top: 2px; }
.ship-meter { padding: 12px 24px 0; }
.ship-msg { font-size: 0.82rem; font-weight: 700; margin-bottom: 6px; }
.ship-msg.done { color: #17603f; }
.ship-bar { height: 7px; background: rgba(0,0,0,0.08); border-radius: 999px; overflow: hidden; }
.ship-bar span { display: block; height: 100%; background: var(--pink-dark); border-radius: 999px; transition: width 0.25s ease; }

/* ---------- Contact page ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-intro h1 { margin-top: 0; }
.contact-direct { font-weight: 600; }
.contact-direct a { color: var(--pink-dark); }

.faq-quick { margin-top: 28px; }
.faq-quick h3 { margin-bottom: 12px; }
.faq-quick details {
  background: var(--white);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 9px;
  box-shadow: var(--shadow-soft);
}
.faq-quick summary { font-weight: 700; cursor: pointer; font-size: 0.92rem; }
.faq-quick p { font-size: 0.87rem; color: var(--ink-light); margin: 10px 0 0; }
.faq-quick a { color: var(--pink-dark); font-weight: 600; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-soft);
}
.contact-form h2 { margin-top: 0; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; margin-bottom: 6px; font-size: 0.9rem; }
.field .req { color: var(--pink-dark); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 2px solid #e6dced;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--pink-dark); background: #fff;
}
.field small { display: block; margin-top: 5px; font-size: 0.76rem; color: var(--ink-light); }
.form-note { margin-top: 12px; font-size: 0.86rem; font-weight: 600; }
.form-note.err { color: #c0392b; }
.form-note.ok { color: #17603f; }

@media (max-width: 860px) {
  .pdp-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 32px; }
}
