/* Wrapelina — Ajándékcsomagolás Stúdió — shared stylesheet */

:root {
  --bg: oklch(0.97 0.015 85);
  --text: oklch(0.24 0.02 90);
  --text-soft: oklch(0.3 0.02 90);
  --text-soft2: oklch(0.35 0.02 90);
  --muted: oklch(0.5 0.02 90);
  --muted-ph: oklch(0.6 0.02 90);
  --green: oklch(0.42 0.08 155);
  --green-dark: oklch(0.32 0.08 155);
  --green-light: oklch(0.95 0.03 155);
  --green-text: oklch(0.28 0.06 155);
  --terracotta: oklch(0.55 0.1 40);
  --terracotta-light: oklch(0.97 0.02 40);
  --white: oklch(0.995 0.004 85);
  --border: oklch(0.89 0.012 85);
  --border-soft: oklch(0.92 0.01 85);
  --input-border: oklch(0.85 0.012 85);
  --ph-a: oklch(0.93 0.01 85);
  --ph-b: oklch(0.9 0.012 85);
  --dark: oklch(0.24 0.02 90);
  --dark-soft: oklch(0.28 0.015 90);
  --dark-border: oklch(0.35 0.015 90);
  --dark-muted: oklch(0.7 0.01 90);
  --dark-muted2: oklch(0.75 0.01 90);
  --dark-icon: oklch(0.32 0.02 90);
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-dark); }
img { max-width: 100%; display: block; }
input, textarea, button, select { font-family: var(--font-sans); }
::placeholder { color: var(--muted-ph); }
h1, h2, h3 { font-family: var(--font-serif); margin: 0; }
ul { margin: 0; }
button { font-family: var(--font-sans); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
main { flex: 1; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--green-dark);
  color: oklch(0.97 0.02 85);
  text-align: center;
  padding: 9px 16px;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.topbar a { color: inherit; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  cursor: pointer;
}
.brand-name {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--green-dark);
}
.brand-tag {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.main-nav { display: flex; gap: 26px; flex-wrap: wrap; }
.main-nav a {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  padding: 6px 0;
}
.main-nav a[aria-current="page"] {
  color: var(--green);
  font-weight: 700;
}
.cart-btn {
  position: relative;
  background: var(--green);
  color: white;
  border: none;
  border-radius: 24px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-count {
  background: var(--terracotta);
  border-radius: 999px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}
.cart-count[hidden] { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  padding: 15px 28px;
  text-align: center;
}
.btn-primary { background: var(--green); color: white; }
.btn-primary:hover { background: var(--green-dark); color: white; }
.btn-outline {
  background: none;
  border: 2px solid var(--text);
  color: var(--text);
  padding: 13px 26px;
}
.btn-outline:hover { color: var(--text); background: var(--border-soft); }
.btn-dark { background: var(--text); color: white; padding: 9px; font-size: 13px; border-radius: 6px; width: 100%; }
.btn-dark:hover { color: white; opacity: 0.9; }
.btn-white { background: white; color: var(--green-dark); padding: 14px 28px; border-radius: 6px; font-weight: 700; }
.btn-white:hover { color: var(--green-dark); opacity: 0.9; }
.btn-link { background: none; border: none; color: var(--green); font-weight: 600; cursor: pointer; font-size: 14px; padding: 0; }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* ---------- Hero ---------- */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 32px 60px;
  display: flex;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}
.hero-copy { flex: 1; min-width: 320px; }
.eyebrow {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 14px;
}
.hero-copy h1 {
  font-size: 52px;
  line-height: 1.1;
  margin: 0 0 20px;
}
.hero-copy p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 460px;
  margin: 0 0 30px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-media {
  flex: 1;
  min-width: 320px;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.media-ph {
  height: 100%;
  background: repeating-linear-gradient(45deg, var(--ph-a), var(--ph-a) 12px, var(--ph-b) 12px, var(--ph-b) 24px);
  display: flex; align-items: center; justify-content: center;
  font-family: monospace; font-size: 13px; color: oklch(0.45 0.02 90);
  text-align: center; padding: 20px; border-radius: 12px;
}

/* ---------- Feature strip ---------- */
.feature-strip { background: white; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 40px 0; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-dot { width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; }
.feature-dot.c1 { background: var(--green); }
.feature-dot.c2 { background: var(--terracotta); }
.feature-title { font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.feature-desc { font-size: 13px; color: var(--muted); }

/* ---------- Section basics ---------- */
.section { max-width: var(--max); margin: 0 auto; padding: 80px 32px; }
.section-white { background: white; border-top: 1px solid var(--border); }
.section-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 36px; flex-wrap: wrap; gap: 12px;
}
.section-title { font-size: 32px; }
.section-title-center { font-size: 32px; text-align: center; margin: 0 0 36px; }

/* ---------- Two-up tools (calculator / idea generator) ---------- */
.tools-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.card {
  background: white; border: 1px solid var(--border); border-radius: 14px; padding: 36px;
}
.card h3 { font-size: 24px; margin: 0 0 8px; }
.card > p { font-size: 14px; color: var(--muted); margin: 0 0 22px; }
.field-label { font-size: 13px; font-weight: 600; margin-bottom: 8px; color: var(--muted); }
.pill-row { display: flex; gap: 10px; margin-bottom: 20px; }
.pill-row.spaced { margin-bottom: 24px; }
.pill-btn {
  flex: 1; border: 1px solid var(--input-border); border-radius: 6px; padding: 10px;
  font-size: 14px; cursor: pointer; background: white; color: var(--text);
}
.pill-btn[aria-pressed="true"] { background: var(--green); color: white; border-color: var(--green); }
.calc-total {
  display: flex; align-items: baseline; justify-content: space-between;
  border-top: 1px solid var(--border); padding-top: 18px;
}
.calc-total-label { font-size: 14px; color: var(--muted); }
.calc-total-value { font-family: var(--font-serif); font-size: 28px; font-weight: 700; color: var(--green-dark); }

.card-dark {
  background: var(--green-dark); border-radius: 14px; padding: 36px; color: white;
  display: flex; flex-direction: column;
}
.card-dark h3 { margin: 0 0 8px; }
.card-dark > p { font-size: 14px; color: oklch(0.88 0.02 155); margin: 0 0 22px; }
.idea-text {
  flex: 1; display: flex; align-items: center; font-size: 17px; line-height: 1.6;
  font-family: var(--font-serif); font-style: italic; padding: 10px 0;
}
.card-dark .btn-white { align-self: flex-start; margin-top: 12px; }

/* ---------- Product cards ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-grid.full { grid-template-columns: repeat(3, 1fr); gap: 26px; }
.product-card {
  border: 1px solid var(--border); border-radius: 10px; overflow: hidden;
  display: flex; flex-direction: column; background: white;
}
.product-media { height: 150px; overflow: hidden; }
.product-grid.full .product-media { height: 170px; }
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.product-grid.full .product-body { padding: 20px; }
.product-name { font-size: 14px; font-weight: 600; margin-bottom: 6px; flex: 1; }
.product-grid.full .product-name { font-size: 15px; }
.product-desc { font-size: 13px; color: var(--muted); line-height: 1.5; margin-bottom: 14px; flex: 1; }
.product-price { font-size: 16px; font-weight: 700; color: var(--green-dark); margin-bottom: 12px; }
.product-grid.full .product-price { font-size: 17px; margin-bottom: 0; }
.product-foot { display: flex; align-items: center; justify-content: space-between; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testi-card { background: white; border: 1px solid var(--border); border-radius: 10px; padding: 26px; }
.testi-quote { font-style: italic; font-size: 15px; line-height: 1.6; margin: 0 0 16px; color: var(--text-soft); }
.testi-name { font-weight: 600; font-size: 14px; }
.testi-loc { font-size: 12px; color: var(--muted); }

/* ---------- CTA banners ---------- */
.cta-band { background: var(--terracotta); padding: 60px 0; }
.cta-band .container {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.cta-band h2 { font-size: 28px; margin: 0 0 8px; color: white; }
.cta-band p { margin: 0; color: var(--terracotta-light); font-size: 15px; }

.cta-box {
  background: var(--green-dark); border-radius: 14px; padding: 40px; color: white;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px;
}
.cta-box h3 { font-size: 24px; margin: 0 0 8px; }
.cta-box p { margin: 0; font-size: 14px; color: oklch(0.88 0.02 155); max-width: 480px; }

/* ---------- Services / pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 70px; }
.price-card { border: 1px solid var(--border); border-radius: 12px; padding: 32px; background: white; position: relative; }
.price-card.featured { border: 2px solid var(--green); }
.price-badge {
  position: absolute; top: -12px; right: 24px; background: var(--green); color: white;
  font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 4px;
}
.price-tier { font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 6px; }
.price-tier.tier-featured { color: var(--green); }
.price-tier.tier-luxe { color: var(--terracotta); }
.price-amount { font-family: var(--font-serif); font-size: 30px; font-weight: 700; margin-bottom: 16px; }
.price-amount span { font-size: 14px; font-weight: 400; color: var(--muted); }
.price-list { padding: 0 0 0 18px; margin: 0; font-size: 14px; line-height: 2; color: var(--text-soft2); }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 70px; text-align: center; }
.process-num {
  width: 52px; height: 52px; border-radius: 50%; background: var(--green); color: white;
  display: flex; align-items: center; justify-content: center; font-family: var(--font-serif);
  font-size: 20px; margin: 0 auto 14px;
}
.process-title { font-weight: 600; margin-bottom: 6px; }
.process-desc { font-size: 13px; color: var(--muted); max-width: 220px; margin: 0 auto; }

/* ---------- About ---------- */
.about-hero { display: flex; gap: 56px; flex-wrap: wrap; align-items: center; margin-bottom: 70px; }
.about-hero-copy { flex: 1; min-width: 300px; }
.about-hero-copy h1 { font-size: 38px; margin: 0 0 18px; }
.about-hero-copy p { font-size: 15px; line-height: 1.75; color: var(--text-soft2); margin: 0 0 14px; }
.about-hero-media { flex: 1; min-width: 300px; height: 320px; border-radius: 12px; overflow: hidden; }
.about-hero-media img { width: 100%; height: 100%; object-fit: cover; }

.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 70px; text-align: center; }
.stat-num { font-family: var(--font-serif); font-size: 36px; font-weight: 700; color: var(--green); }
.stat-label { font-size: 13px; color: var(--muted); }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card { text-align: center; }
.team-photo { height: 200px; border-radius: 10px; margin-bottom: 14px; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-weight: 600; }
.team-role { font-size: 13px; color: var(--muted); }

/* ---------- Gallery ---------- */
.gallery-chips { display: flex; gap: 10px; margin-bottom: 34px; flex-wrap: wrap; }
.chip {
  border: 1px solid var(--input-border); padding: 9px 18px; border-radius: 20px; font-size: 13px;
  cursor: pointer; background: transparent; color: var(--text);
}
.chip[aria-pressed="true"] { background: var(--green); color: white; border-color: var(--green); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gallery-item {
  border-radius: 8px; overflow: hidden; position: relative; height: 190px;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-cat {
  position: absolute; left: 10px; bottom: 10px; font-size: 10px; padding: 2px 8px; border-radius: 10px;
  background: oklch(0.99 0.004 85 / 0.9); color: var(--muted);
}
.gallery-item[hidden] { display: none; }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.blog-card { cursor: pointer; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; background: white; }
.blog-media { height: 150px; overflow: hidden; }
.blog-media img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 22px; }
.blog-title { font-family: var(--font-serif); font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.blog-excerpt { font-size: 14px; color: var(--muted); line-height: 1.6; }

.post { max-width: 760px; margin: 0 auto; padding: 70px 32px; }
.post-back { background: none; border: none; color: var(--green); font-weight: 600; cursor: pointer; font-size: 14px; margin-bottom: 24px; padding: 0; display: inline-block; }
.post h1 { font-size: 36px; margin: 0 0 24px; }
.post-cover { height: 280px; border-radius: 10px; margin-bottom: 30px; overflow: hidden; }
.post-cover img { width: 100%; height: 100%; object-fit: cover; }
.post p.body-p { font-size: 16px; line-height: 1.8; color: var(--text-soft); margin: 0 0 18px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.form-stack { display: flex; flex-direction: column; gap: 16px; }
.form-group label { font-size: 13px; font-weight: 600; display: block; margin-bottom: 6px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 12px; border: 1px solid var(--input-border); border-radius: 6px; font-size: 14px;
}
.form-group textarea { resize: vertical; }
.alert-success {
  background: var(--green-light); border: 1px solid var(--green); border-radius: 10px;
  padding: 24px; color: var(--green-text); font-size: 15px; margin-bottom: 20px;
}
.contact-media { height: 200px; border-radius: 10px; margin-bottom: 26px; overflow: hidden; }
.contact-media img { width: 100%; height: 100%; object-fit: cover; }
.contact-info { display: flex; flex-direction: column; gap: 14px; font-size: 14px; color: var(--text-soft); }

/* ---------- Checkout ---------- */
.checkout-wrap { max-width: 900px; margin: 0 auto; padding: 70px 32px; }
.checkout-wrap h1 { font-size: 36px; margin: 0 0 30px; }
.checkout-empty { text-align: center; padding: 40px 0; }
.checkout-empty p { color: var(--muted); margin-bottom: 20px; }
.checkout-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 44px; }
.checkout-note { font-size: 12px; color: var(--muted); line-height: 1.6; }
.summary-card { background: white; border: 1px solid var(--border); border-radius: 10px; padding: 24px; align-self: start; }
.summary-title { font-weight: 700; margin-bottom: 16px; }
.summary-line { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 10px; color: var(--text-soft2); }
.summary-total {
  display: flex; justify-content: space-between; border-top: 1px solid var(--border);
  padding-top: 14px; margin-top: 8px; font-weight: 700;
}

/* ---------- Legal ---------- */
.legal { max-width: 760px; margin: 0 auto; padding: 70px 32px; }
.legal h1 { font-size: 34px; margin: 0 0 30px; }
.legal-body { font-size: 15px; line-height: 1.8; color: var(--text-soft); }
.legal-body h3 { font-size: 19px; margin: 24px 0 10px; }
.legal-body .box { border: 1px solid var(--border); border-radius: 8px; padding: 16px; margin-bottom: 14px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: var(--dark-muted2); margin-top: auto; }
.footer-grid {
  max-width: var(--max); margin: 0 auto; padding: 60px 32px 30px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px;
}
.footer-brand { font-family: var(--font-serif); font-size: 24px; font-weight: 700; color: white; margin-bottom: 12px; }
.footer-about { font-size: 13px; line-height: 1.7; color: var(--dark-muted); max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social span {
  width: 32px; height: 32px; border-radius: 50%; background: var(--dark-icon);
  display: flex; align-items: center; justify-content: center; font-size: 11px; color: white;
}
.footer-heading { font-weight: 600; color: white; margin-bottom: 14px; font-size: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; list-style: none; padding: 0; margin: 0; }
.footer-links a { background: none; border: none; color: var(--dark-muted2); font-size: 13px; text-align: left; cursor: pointer; padding: 0; }
.footer-links a:hover { color: white; }
.footer-newsletter p { font-size: 13px; color: var(--dark-muted); margin: 0 0 12px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1; padding: 10px; border-radius: 6px; border: 1px solid var(--dark-border);
  background: var(--dark-soft); color: white; font-size: 13px;
}
.newsletter-msg { font-size: 12px; color: oklch(0.75 0.08 155); margin-top: 8px; }
.footer-bottom {
  border-top: 1px solid var(--dark-border); padding: 20px 32px; text-align: center;
  font-size: 12px; color: oklch(0.6 0.01 90);
}

/* ---------- Cart drawer ---------- */
.drawer-overlay {
  position: fixed; inset: 0; background: oklch(0.1 0.01 90 / 0.45); z-index: 50; border: none; padding: 0;
}
.drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: 400px; max-width: 90vw; background: white;
  z-index: 51; display: flex; flex-direction: column; box-shadow: -8px 0 30px oklch(0.1 0.01 90 / 0.15);
}
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--border); }
.drawer-title { font-family: var(--font-serif); font-size: 20px; font-weight: 700; }
.drawer-close { background: none; border: none; font-size: 20px; cursor: pointer; color: var(--muted); }
.drawer-body { flex: 1; overflow-y: auto; padding: 20px 24px; }
.drawer-empty { text-align: center; color: var(--muted); padding: 40px 0; font-size: 14px; }
.drawer-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border-soft); }
.drawer-thumb { width: 60px; height: 60px; border-radius: 6px; flex-shrink: 0; overflow: hidden; }
.drawer-thumb img { width: 100%; height: 100%; object-fit: cover; }
.drawer-item-name { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.drawer-item-price { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.drawer-item-actions { display: flex; align-items: center; gap: 10px; }
.qty-btn { width: 22px; height: 22px; border: 1px solid var(--input-border); background: white; border-radius: 4px; cursor: pointer; font-size: 13px; }
.remove-btn { margin-left: auto; background: none; border: none; color: var(--terracotta); font-size: 12px; cursor: pointer; }
.drawer-foot { padding: 22px 24px; border-top: 1px solid var(--border); }
.drawer-total { display: flex; justify-content: space-between; font-size: 15px; font-weight: 700; margin-bottom: 16px; }
[hidden] { display: none !important; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid.full { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hero-copy h1 { font-size: 36px; }
  .feature-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .product-grid.full { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .drawer { width: 100%; }
  .section, .hero { padding-left: 20px; padding-right: 20px; }
}
