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

:root {
  --brand-dark: #387c28;
  --brand-darker: #213b1e;
  --brand-light: #86b885;
  --brand-light-soft: #9fc99e;
  --brand-accent: #578859;
  --rust: #a54a28;
  --ink: #3a2c20;
  --cream: #f7f5f0;
  --white: #ffffff;
  --tan: #e3ddc9;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
}

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

h1, h2, h3, .display {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  margin: 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

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

/* Nav */
.site-nav {
  background: var(--brand-dark);
  padding: 18px 0;
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: white;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
  color: white;
  flex-wrap: wrap;
}

.nav-links a:hover { opacity: 0.75; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.btn-accent { background: var(--brand-accent); color: white; }
.btn-rust { background: var(--rust); color: white; }
.btn-white { background: white; color: var(--ink); }

/* Hero */
.hero {
  background: var(--brand-light);
  position: relative;
  overflow: hidden;
  padding: 64px 0 72px;
}

.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: var(--brand-light-soft);
  opacity: 0.6;
  top: -180px;
  right: -140px;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  flex-wrap: wrap;
}

.hero-copy { flex: 1 1 420px; }

.hero h1 {
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: white;
}

.hero p {
  margin-top: 18px;
  font-size: 16px;
  max-width: 420px;
  color: rgba(58, 44, 32, 0.78);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-mascot {
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.speech-bubble {
  background: white;
  border-radius: 22px 22px 22px 6px;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  max-width: 210px;
  box-shadow: 0 14px 32px rgba(58, 44, 32, 0.18);
  margin-bottom: 16px;
}

.mascot-img {
  width: 160px;
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 20px rgba(58, 44, 32, 0.3));
}

/* Sections */
.section { padding: 64px 0; }
.section h2 { font-size: 26px; margin-bottom: 26px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.step-card {
  background: white;
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 10px 26px rgba(58, 44, 32, 0.08);
}

.step-num {
  width: 34px;
  height: 34px;
  border-radius: 100px;
  color: white;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.step-card h3 { font-size: 15px; margin-bottom: 6px; }
.step-card p { font-size: 13px; color: rgba(58, 44, 32, 0.7); margin: 0; }

.section-stores {
  background: var(--brand-dark);
  padding: 64px 0;
}

.section-stores h2 { color: white; }

.filter-pills {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.pill {
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.pill.active { background: var(--rust); color: white; }
.pill:not(.active) { background: white; color: var(--ink); }

.store-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.store-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  border-radius: 20px;
  padding: 16px 20px;
  gap: 12px;
  flex-wrap: wrap;
}

.store-name { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 14px; }

.badge {
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
}

.badge-local { background: var(--rust); color: white; }
.badge-chain { background: var(--tan); color: var(--ink); }

.store-meta { font-size: 13px; color: rgba(58, 44, 32, 0.55); font-weight: 600; }

/* Footer */
.site-footer {
  background: var(--brand-darker);
  padding: 30px 0;
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; }
.footer-brand .name { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 15px; color: #ecf4eb; }
.footer-brand .tagline { font-size: 12px; font-weight: 600; color: #b0d2ad; }
.footer-note { font-size: 13px; font-weight: 700; color: #ecf4eb; }

/* Style page */
.style-header {
  background: var(--brand-dark);
  padding: 48px 0;
}

.style-header .container {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.style-mascot {
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  border-radius: 50%;
  background: var(--brand-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(58, 44, 32, 0.2);
}

.style-mascot img {
  width: 86%;
  height: 86%;
  object-fit: contain;
  display: block;
}

.style-header h1 { font-size: 30px; color: white; margin-top: 14px; }

.style-page-bg { background: var(--brand-light); }

.style-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 48px 0 0;
}

.style-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  height: 230px;
  box-shadow: 0 10px 26px rgba(58, 44, 32, 0.1);
  display: block;
}

.style-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.style-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(35,25,15,0.65) 0%, rgba(35,25,15,0.05) 55%);
}

.style-card.selected {
  box-shadow: 0 0 0 4px var(--brand-accent), 0 12px 28px rgba(87,136,89,0.35);
}

.style-label {
  position: absolute;
  left: 14px;
  bottom: 12px;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--brand-accent);
  color: white;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 14px;
  z-index: 2;
}

.style-check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.style-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px 0 48px;
  background: var(--rust);
  border-radius: 24px;
  padding: 20px 26px;
  gap: 16px;
  flex-wrap: wrap;
}

.style-cta p { color: white; font-weight: 700; font-size: 13px; max-width: 380px; margin: 0; }

/* About page */
.about-hero {
  background: var(--brand-light);
  padding: 56px 0;
  text-align: center;
}

.about-hero h1 { color: white; font-size: 38px; }

.about-section { padding: 48px 0; }
.about-section h2 { font-size: 22px; margin-bottom: 14px; }
.about-section p { max-width: 720px; margin: 0 0 16px; }

.goals-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.goal-card {
  background: white;
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 10px 26px rgba(58, 44, 32, 0.08);
}

.goal-card h3 { font-size: 15px; margin-bottom: 8px; }
.goal-card p { font-size: 13px; color: rgba(58, 44, 32, 0.7); margin: 0; }

.placeholder-note {
  font-size: 12px;
  color: rgba(58, 44, 32, 0.5);
  font-style: italic;
  margin-top: 6px;
}

.signup-form {
  margin-top: 22px;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row { display: flex; gap: 16px; flex-wrap: wrap; }
.form-row .form-field { flex: 1 1 220px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 13px; font-weight: 700; color: var(--ink); }
.form-field input,
.form-field select,
.form-field textarea {
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid rgba(58, 44, 32, 0.18);
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--ink);
  background: white;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { outline: 2px solid var(--brand-accent); }
.signup-form .btn { align-self: flex-start; }
.form-note { font-size: 12px; color: rgba(58, 44, 32, 0.55); }

.stat-counter {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: var(--brand-dark);
  margin-top: 4px;
}
.stat-counter-sub { font-size: 12px; font-weight: 600; color: rgba(58, 44, 32, 0.55); margin-top: 2px; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.testimonial-card {
  background: var(--cream);
  border-radius: 24px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.testimonial-quote { font-size: 14px; line-height: 1.55; color: var(--ink); }
.testimonial-quote::before { content: '“'; }
.testimonial-quote::after { content: '”'; }
.testimonial-author { font-size: 12.5px; font-weight: 700; color: rgba(58, 44, 32, 0.6); }

@media (max-width: 700px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* Aanbod (search/listing page) */
.aanbod-header {
  background: var(--brand-dark);
  padding: 44px 0 32px;
}

.aanbod-header h1 { color: white; font-size: 30px; }
.aanbod-header p { color: rgba(255,255,255,0.85); margin: 10px 0 0; font-size: 14px; max-width: 560px; }

.profile-banner {
  margin-top: 18px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.profile-banner span { color: white; font-size: 13px; font-weight: 600; }
.profile-banner a { color: white; font-size: 13px; font-weight: 800; text-decoration: underline; }

.filter-bar {
  background: white;
  padding: 20px 0;
  border-bottom: 1px solid rgba(58,44,32,0.08);
}

.filter-bar .container {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.search-input {
  flex: 1 1 220px;
  padding: 11px 18px;
  border-radius: 100px;
  border: 1.5px solid rgba(58,44,32,0.15);
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--ink);
  background: var(--cream);
}

.search-input:focus { outline: 2px solid var(--brand-accent); }

.filter-group { display: flex; gap: 8px; flex-wrap: wrap; }

.filter-group .pill:not(.active) { background: var(--cream); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 40px 0 64px;
}

.product-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(58, 44, 32, 0.08);
  display: flex;
  flex-direction: column;
}

.product-swatch {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-swatch .placeholder-label {
  font-size: 11px;
  font-weight: 700;
  color: white;
  background: rgba(58,44,32,0.72);
  padding: 3px 9px;
  border-radius: 100px;
}

.product-status {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  background: white;
  color: var(--ink);
  border: 1px solid rgba(58,44,32,0.12);
}

.match-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--brand-accent);
  color: white;
}

.fav-btn {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.88);
  color: var(--rust);
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: transform 0.15s ease;
}
.fav-btn:hover { transform: scale(1.12); }
.fav-btn.active { background: white; }

.btn-store-link {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12.5px;
  font-weight: 700;
  color: white;
  background: var(--brand-accent);
  padding: 9px 14px;
  border-radius: 100px;
  text-decoration: none;
}
.btn-store-link:hover { opacity: 0.85; }

.deal-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--rust);
  color: white;
}

.product-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.product-name { font-weight: 800; font-size: 14px; }
.product-store { font-size: 12px; color: rgba(58,44,32,0.6); font-weight: 600; display: flex; align-items: center; gap: 6px; }
.product-price-row { display: flex; align-items: baseline; gap: 8px; margin-top: 4px; }
.product-price { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 16px; }
.product-price-sale { color: var(--rust); }
.product-price-old { font-size: 13px; font-weight: 600; color: rgba(58,44,32,0.45); text-decoration: line-through; }
.product-style-tag { font-size: 11px; font-weight: 700; color: var(--brand-dark); }

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: rgba(58,44,32,0.55);
  font-size: 14px;
}

/* Vragenlijst (style questionnaire) */
.quiz-intro { padding: 44px 0 12px; }
.quiz-intro p { max-width: 560px; color: rgba(58,44,32,0.7); }

.quiz-category {
  padding: 24px 0;
  border-top: 1px solid rgba(58,44,32,0.1);
}

.quiz-category h3 { font-size: 16px; margin-bottom: 14px; }

.swatch-row { display: flex; gap: 12px; flex-wrap: wrap; }

.color-swatch {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  position: relative;
  box-shadow: 0 2px 6px rgba(58,44,32,0.15);
}

.color-swatch[data-color="Wit"] { border: 1px solid rgba(58,44,32,0.2); }

.color-swatch.selected {
  border-color: var(--brand-dark);
  box-shadow: 0 0 0 3px white, 0 0 0 6px var(--brand-dark);
}

.color-swatch .check {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
}

.color-swatch.selected .check { display: flex; }

.swatch-label {
  text-align: center;
  font-size: 10px;
  margin-top: 4px;
  color: rgba(58,44,32,0.6);
}

.swatch-wrap { display: flex; flex-direction: column; align-items: center; gap: 2px; }

/* Swipe-smaakprofiel (vragenlijst.html) */
.swipe-page { padding: 36px 0 60px; display: flex; flex-direction: column; align-items: center; }

.swipe-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  width: 100%;
  max-width: 780px;
  align-items: start;
}
@media (min-width: 820px) {
  .swipe-layout { grid-template-columns: minmax(0, 340px) minmax(260px, 1fr); }
}
.swipe-main { display: flex; flex-direction: column; align-items: center; }

.swipe-live-panel {
  background: white;
  border-radius: 24px;
  padding: 22px 24px;
  box-shadow: 0 14px 32px rgba(33,59,30,0.16);
}
.swipe-live-panel h3 { font-size: 16px; margin-bottom: 4px; }
.live-sub { font-size: 12.5px; color: rgba(58,44,32,0.55); margin-bottom: 18px; }
.live-section + .live-section { margin-top: 22px; }
.live-section-title {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  color: rgba(58,44,32,0.45); margin-bottom: 10px;
}
.live-empty { font-size: 12.5px; color: rgba(58,44,32,0.45); font-style: italic; }

.live-bar-row { display: grid; grid-template-columns: 92px 1fr 22px; align-items: center; gap: 10px; margin-bottom: 8px; font-size: 12.5px; }
.live-bar-label { font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.live-bar-track { height: 8px; border-radius: 100px; background: var(--cream); overflow: hidden; }
.live-bar-fill { height: 100%; border-radius: 100px; background: var(--brand-accent); transition: width 0.3s ease; }
.live-bar-count { text-align: right; font-weight: 700; color: var(--brand-dark); font-variant-numeric: tabular-nums; }

.live-color-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 12.5px; }
.live-color-dot { width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0; box-shadow: inset 0 0 0 1px rgba(58,44,32,0.15); }
.live-color-dot-empty {
  display: flex; align-items: center; justify-content: center;
  background: var(--cream); color: rgba(58,44,32,0.4); font-size: 10px; font-weight: 700;
}
.live-color-label-empty { color: rgba(58,44,32,0.45); }

.swipe-progress-track {
  width: 100%; max-width: 340px; height: 6px;
  background: rgba(255,255,255,0.4); border-radius: 100px; overflow: hidden;
}
.swipe-progress-bar { height: 100%; width: 0; background: white; border-radius: 100px; transition: width 0.25s ease; }
.swipe-progress-label { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.9); margin-top: 8px; }

.swipe-stage { position: relative; width: 100%; max-width: 340px; height: 440px; margin: 20px 0 26px; touch-action: none; }

.swipe-card {
  position: absolute; inset: 0;
  background: white; border-radius: 28px; overflow: hidden;
  box-shadow: 0 18px 40px rgba(33,59,30,0.3);
  display: flex; flex-direction: column;
  cursor: grab; user-select: none; -webkit-user-select: none;
  will-change: transform; transition: transform 0.25s ease, opacity 0.25s ease;
}
.swipe-card.dragging { transition: none; cursor: grabbing; }

.swipe-card-swatch { flex: 1 1 auto; position: relative; display: flex; align-items: center; justify-content: center; }
.swipe-card-icon { font-size: 68px; opacity: 0.5; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.18)); }

.swipe-stamp {
  position: absolute; top: 22px;
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 24px; letter-spacing: 0.04em;
  padding: 6px 14px; border: 4px solid; border-radius: 10px;
  opacity: 0; transition: opacity 0.15s ease;
}
.swipe-stamp-like { left: 18px; color: var(--brand-accent); border-color: var(--brand-accent); transform: rotate(-16deg); }
.swipe-stamp-nope { right: 18px; color: var(--rust); border-color: var(--rust); transform: rotate(16deg); }
.swipe-card.show-like .swipe-stamp-like { opacity: 1; }
.swipe-card.show-nope .swipe-stamp-nope { opacity: 1; }

.swipe-card-body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 4px; background: white; }
.swipe-card-body .product-price { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 15px; margin-top: 4px; }

.swipe-actions { display: flex; gap: 22px; }
.swipe-btn {
  width: 58px; height: 58px; border-radius: 50%; border: none; background: white;
  font-size: 22px; box-shadow: 0 10px 22px rgba(58,44,32,0.2);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: transform 0.15s ease;
}
.swipe-btn:hover { transform: scale(1.08); }
.swipe-btn-no { color: var(--rust); }
.swipe-btn-yes { color: var(--brand-accent); }

.swipe-hint { margin-top: 14px; font-size: 12.5px; color: rgba(255,255,255,0.9); text-align: center; }

.swipe-summary {
  margin-top: 8px; background: white; border-radius: 24px; padding: 26px 28px;
  max-width: 380px; width: 100%; box-shadow: 0 14px 32px rgba(33,59,30,0.2);
}
.swipe-summary h3 { font-size: 17px; margin-bottom: 14px; }
.swipe-summary-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }

@media (max-width: 400px) {
  .swipe-stage { height: 400px; }
  .swipe-card-icon { font-size: 54px; }
}

.profile-summary {
  background: white;
  border-radius: 24px;
  padding: 24px;
  margin: 24px 0 48px;
  box-shadow: 0 10px 26px rgba(58, 44, 32, 0.08);
}

.profile-summary h3 { font-size: 15px; margin-bottom: 12px; }
.profile-summary-list { display: flex; flex-direction: column; gap: 6px; font-size: 13px; margin-bottom: 18px; }
.profile-summary-list span.label { font-weight: 700; }
.save-indicator {
  font-size: 12px;
  color: var(--brand-dark);
  font-weight: 700;
  margin-top: 10px;
  opacity: 0;
  transition: opacity 0.3s;
}
.save-indicator.show { opacity: 1; }

/* Responsive */
@media (max-width: 760px) {
  .hero h1 { font-size: 34px; }
  .hero .container { flex-direction: column; align-items: flex-start; }
  .hero-mascot { align-self: center; }
  .steps-grid { grid-template-columns: 1fr; }
  .style-grid { grid-template-columns: 1fr; }
  .goals-grid { grid-template-columns: 1fr; }
  .store-row { flex-direction: column; align-items: flex-start; }
  .site-footer .container { flex-direction: column; align-items: flex-start; text-align: left; }
  .product-grid { grid-template-columns: 1fr; }
}
