/* Mobla Pikas — main stylesheet
   Colors: bg #f7f1e3, ink #3a2e22, olive #6e7a4d, olive-dark #545e3a,
   amber #e8b26a, rust #a15c3f, card #fffdf7, card-border #eee2cb,
   muted #6b5c48 / #7d6f5c / #8a765f, tag #8a5a3a, sage-bg #eef0e2 */

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #f7f1e3;
  color: #3a2e22;
  font-family: 'Nunito Sans', -apple-system, Segoe UI, Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: #6e7a4d; text-decoration: none; }
a:hover { color: #545e3a; text-decoration: underline; }
::selection { background: #d9cba4; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

input, textarea, select {
  font-family: 'Nunito Sans', -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 15px;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #f7f1e3;
  color: #3a2e22;
}

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

.eyebrow {
  font-family: 'Courier New', Courier, monospace;
  font-size: 12px;
  letter-spacing: 2px;
  color: #8a5a3a;
  font-weight: 700;
  margin-bottom: 14px;
}

.crumb {
  font-family: 'Courier New', Courier, monospace;
  font-size: 12px;
  color: #8a5a3a;
  margin-bottom: 8px;
}

h1, h2, h3 { font-family: 'Lora', Georgia, serif; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  text-decoration: none !important;
  font-family: 'Nunito Sans', sans-serif;
}
.btn-dark { background: #3a2e22; color: #f7f1e3; }
.btn-dark:hover { background: #2b2119; color: #f7f1e3; }
.btn-outline { background: transparent; color: #3a2e22; border: 1.5px solid #3a2e22; }
.btn-outline:hover { background: #3a2e2211; color: #3a2e22; }
.btn-olive { background: #6e7a4d; color: #fff; }
.btn-olive:hover { background: #545e3a; color: #fff; }
.btn-olive:disabled { background: #b9c0a4; cursor: not-allowed; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #f7f1e3ee;
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #e3d9c4;
}
.site-header__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.brand__logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #6e7a4d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f7f1e3;
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.brand__name {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.3px;
  color: #3a2e22;
}
.nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
.nav a {
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  color: #6b5c48;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
}
.nav a:hover { text-decoration: none; color: #3a2e22; }
.nav a.active { color: #3a2e22; border-bottom-color: #6e7a4d; }

.header-actions { display: flex; align-items: center; gap: 14px; }

.cart-btn {
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #3a2e22;
  color: #f7f1e3;
  padding: 9px 16px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 14px;
  border: none;
}
.cart-btn:hover { color: #f7f1e3; text-decoration: none; background: #2b2119; }
.cart-dot { width: 8px; height: 8px; border-radius: 50%; background: #e8b26a; display: inline-block; }
.cart-count {
  background: #e8b26a;
  color: #3a2e22;
  border-radius: 50%;
  min-width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  padding: 0 4px;
}
.cart-count[hidden] { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: #3a2e22;
}
.nav-toggle svg { width: 26px; height: 26px; }

/* ---------- Cart drawer ---------- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: #3a2e2266;
  z-index: 50;
  display: none;
}
.cart-overlay.open { display: block; }
.cart-drawer {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 380px;
  max-width: 92vw;
  background: #fffdf7;
  padding: 26px;
  overflow-y: auto;
  box-shadow: -8px 0 30px #3a2e2233;
}
.cart-drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.cart-drawer__title { font-family: 'Lora', serif; font-weight: 700; font-size: 20px; }
.cart-drawer__close { cursor: pointer; font-size: 22px; color: #7d6f5c; background: none; border: none; line-height: 1; }
.cart-empty { color: #7d6f5c; padding: 30px 0; text-align: center; }
.cart-empty a { color: #6e7a4d; font-weight: 700; text-decoration: underline; }

.cart-line {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #eee2cb;
}
.cart-line__thumb {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 8px;
  object-fit: cover;
  background: #e3d9c4;
}
.cart-line__body { flex: 1; min-width: 0; }
.cart-line__name { font-weight: 700; font-size: 14px; }
.cart-line__price { color: #7d6f5c; font-size: 13px; margin: 2px 0 6px; }
.qty-row { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  cursor: pointer;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #d8cca9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background: #fff;
  padding: 0;
  line-height: 1;
}
.qty-val { font-size: 13px; font-weight: 700; min-width: 14px; text-align: center; }
.remove-link { margin-left: auto; color: #a15c3f; cursor: pointer; font-size: 12px; text-decoration: underline; background: none; border: none; padding: 0; }

.cart-drawer__total {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 14px;
}
.cart-drawer__footer { margin-top: 18px; }

main { flex: 1; }

/* ---------- Hero ---------- */
.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 24px 20px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}
.hero h1 {
  font-size: 46px;
  line-height: 1.15;
  margin: 0 0 20px;
  font-weight: 700;
}
.hero p {
  font-size: 17px;
  line-height: 1.7;
  color: #6b5c48;
  margin: 0 0 28px;
  max-width: 480px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__media {
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  background: #e3d9c4;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Sections generic ---------- */
.section { max-width: 1180px; margin: 0 auto; padding: 40px 24px; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 22px;
  gap: 16px;
  flex-wrap: wrap;
}
.section-head h2 { font-size: 28px; margin: 0; }
.section-head .link-more { cursor: pointer; font-weight: 700; color: #6e7a4d; }

/* USP grid */
.usp-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.usp-card {
  background: #fffdf7;
  border: 1px solid #eee2cb;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.usp-card__badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #eef0e2;
  color: #6e7a4d;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 13px;
}
.usp-card__title { font-weight: 800; font-size: 14px; margin-bottom: 6px; }
.usp-card__desc { color: #7d6f5c; font-size: 13px; line-height: 1.5; }

/* Category tiles */
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.category-card {
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
  background: #fffdf7;
  border: 1px solid #eee2cb;
  text-decoration: none;
  color: inherit;
  display: block;
}
.category-card:hover { text-decoration: none; border-color: #d8cca9; }
.category-card__media { aspect-ratio: 1 / 1; background: #e3d9c4; overflow: hidden; }
.category-card__media img { width: 100%; height: 100%; object-fit: cover; }
.category-card__label { padding: 12px; font-weight: 700; font-size: 14px; }

/* Product grid & card */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-grid.cols-4 { grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-card {
  background: #fffdf7;
  border: 1px solid #eee2cb;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-card__media { aspect-ratio: 4 / 3; background: #e3d9c4; overflow: hidden; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; }
.product-card__body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.product-grid.cols-4 .product-card__body { padding: 14px; }
.product-card__cat {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  color: #8a5a3a;
  margin-bottom: 4px;
}
.product-card__name { font-weight: 700; font-size: 15px; margin-bottom: 6px; line-height: 1.3; }
.product-grid.cols-4 .product-card__name { font-size: 14px; }
.product-card__desc { color: #7d6f5c; font-size: 12px; margin-bottom: 10px; line-height: 1.4; flex: 1; }
.product-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 6px;
}
.product-card__price { font-weight: 800; font-size: 16px; }
.product-grid.cols-4 .product-card__price { font-size: 15px; }
.add-btn {
  cursor: pointer;
  background: #6e7a4d;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  border: none;
}
.add-btn:hover { background: #545e3a; }
.product-grid.cols-4 .add-btn { padding: 7px 12px; font-size: 12px; }

/* Testimonials */
.testimonials {
  background: #3a2e22;
  color: #f0e9d8;
  padding: 50px 24px;
  margin-top: 20px;
}
.testimonials__grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial__stars { color: #e8b26a; font-size: 16px; letter-spacing: 2px; margin-bottom: 10px; }
.testimonial__text { font-size: 15px; line-height: 1.6; margin-bottom: 12px; font-style: italic; }
.testimonial__author { font-size: 13px; color: #c9bda3; font-weight: 700; }

/* Blog cards */
.article-card {
  cursor: pointer;
  background: #fffdf7;
  border: 1px solid #eee2cb;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}
.article-card:hover { text-decoration: none; border-color: #d8cca9; }
.article-card__media { aspect-ratio: 16 / 9; background: #e3d9c4; overflow: hidden; }
.article-card__media img { width: 100%; height: 100%; object-fit: cover; }
.article-card__body { padding: 16px; }
.article-card__meta { font-family: 'Courier New', monospace; font-size: 11px; color: #8a5a3a; margin-bottom: 6px; }
.article-card__title { font-weight: 700; font-size: 15px; line-height: 1.4; }
.article-list .article-card__body { padding: 18px; }
.article-list .article-card__title { font-size: 16px; margin-bottom: 8px; }
.article-list .article-card__excerpt { color: #7d6f5c; font-size: 13px; line-height: 1.5; }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* Newsletter */
.newsletter { background: #eef0e2; padding: 50px 24px; }
.newsletter__inner { max-width: 640px; margin: 0 auto; text-align: center; }
.newsletter h2 { font-size: 26px; margin: 0 0 10px; }
.newsletter p { color: #6b5c48; margin: 0 0 20px; }
.newsletter form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.newsletter input[type="email"] {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #d8cca9;
  min-width: 260px;
}
.form-success { color: #545e3a; font-weight: 700; }

/* Field styling shared */
.field { margin-bottom: 0; }
.field label { font-size: 13px; font-weight: 700; display: block; margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #d8cca9;
}
.field textarea { resize: vertical; }

/* Page headers (catalog/blog/about/contact/legal) */
.page-head { max-width: 1180px; margin: 0 auto; padding: 48px 24px 0; }
.page-head h1 { font-size: 34px; margin: 0 0 8px; }
.page-head p { color: #6b5c48; margin: 0 0 28px; max-width: 600px; }

/* Catalog filters */
.filter-row { display: flex; gap: 10px; flex-wrap: wrap; margin: 0 24px 30px; max-width: 1132px; margin-left:auto; margin-right:auto; }
.filter-chip {
  cursor: pointer;
  padding: 9px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  background: #fffdf7;
  color: #3a2e22;
  border: 1px solid #e3d9c4;
}
.filter-chip.active { background: #6e7a4d; color: #fff; border-color: #6e7a4d; }

/* About */
.about-section { max-width: 900px; margin: 0 auto; padding: 52px 24px 70px; }
.about-section h1 { font-size: 36px; margin: 0 0 26px; }
.about-media { aspect-ratio: 21 / 9; border-radius: 14px; overflow: hidden; margin-bottom: 30px; background: #e3d9c4; }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-section p { font-size: 17px; line-height: 1.8; color: #4a3c2c; margin: 0 0 20px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 20px; }
.value-card { background: #fffdf7; border: 1px solid #eee2cb; border-radius: 12px; padding: 22px; }
.value-card__title { font-weight: 800; font-size: 15px; margin-bottom: 8px; color: #6e7a4d; }
.value-card__desc { color: #6b5c48; font-size: 13px; line-height: 1.6; }

/* Blog post */
.post { max-width: 760px; margin: 0 auto; padding: 48px 24px 80px; }
.post__back { cursor: pointer; font-weight: 700; color: #6e7a4d; font-size: 13px; }
.post__meta { font-family: 'Courier New', monospace; font-size: 12px; color: #8a5a3a; margin: 20px 0 10px; }
.post h1 { font-size: 36px; line-height: 1.2; margin: 0 0 24px; }
.post__media { aspect-ratio: 16 / 9; border-radius: 14px; overflow: hidden; margin-bottom: 30px; background: #e3d9c4; }
.post__media img { width: 100%; height: 100%; object-fit: cover; }
.post p { font-size: 16px; line-height: 1.8; color: #4a3c2c; margin: 0 0 18px; }

/* Contact */
.contact-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 52px 24px 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-section h1 { font-size: 32px; margin: 0 0 20px; }
.contact-section > div:first-child > p { color: #6b5c48; line-height: 1.7; margin: 0 0 26px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; font-size: 14px; }
.contact-media { aspect-ratio: 4 / 3; margin-top: 24px; border-radius: 12px; overflow: hidden; background: #e3d9c4; }
.contact-media img { width: 100%; height: 100%; object-fit: cover; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-success { background: #eef0e2; border-radius: 12px; padding: 30px; color: #3a2e22; font-weight: 700; }

/* Cart / checkout page */
.cart-page { max-width: 1000px; margin: 0 auto; padding: 52px 24px 80px; }
.cart-page h1 { font-size: 32px; margin: 0 0 26px; }
.order-success { background: #eef0e2; border-radius: 14px; padding: 40px; text-align: center; }
.order-success__icon { font-size: 38px; margin-bottom: 10px; }
.order-success__title { font-family: 'Lora', serif; font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.order-success p { color: #6b5c48; margin-bottom: 6px; }
.checkout-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; }
.checkout-line {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #eee2cb;
  align-items: center;
}
.checkout-line__thumb { width: 64px; height: 64px; flex-shrink: 0; border-radius: 8px; object-fit: cover; background: #e3d9c4; }
.checkout-line__body { flex: 1; min-width: 0; }
.checkout-line__name { font-weight: 700; font-size: 15px; }
.checkout-line__price { color: #7d6f5c; font-size: 13px; }
.checkout-line__total { font-weight: 800; width: 80px; text-align: right; }
.checkout-total { display: flex; justify-content: space-between; font-weight: 800; font-size: 18px; padding-top: 18px; }
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fffdf7;
  border: 1px solid #eee2cb;
  border-radius: 14px;
  padding: 24px;
}
.checkout-form input { padding: 11px; border-radius: 8px; border: 1px solid #d8cca9; width: 100%; }
.checkout-form__title { font-weight: 800; font-size: 16px; margin-bottom: 4px; }
.checkout-form__row { display: flex; gap: 10px; }
.checkout-form__row input:last-child { width: 130px; flex: none; }
.payment-title { font-weight: 800; font-size: 14px; margin: 8px 0 2px; }
.payment-options { display: flex; flex-direction: column; gap: 8px; }
.payment-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1.5px solid #e3d9c4;
  cursor: pointer;
  background: #fff;
}
.payment-option input { width: auto; margin: 0; accent-color: #6e7a4d; }
.payment-option.active { border-color: #6e7a4d; }
.payment-option span { font-size: 13px; font-weight: 700; }
.secure-note { font-size: 11px; color: #8a5a3a; margin-top: 4px; }
.terms-note { font-size: 11px; color: #8a765f; text-align: center; }
.terms-note a { text-decoration: underline; }

/* Legal pages */
.legal { max-width: 820px; margin: 0 auto; padding: 52px 24px 80px; }
.legal h1 { font-size: 32px; margin: 0 0 10px; }
.legal__updated { color: #8a765f; font-size: 13px; margin-bottom: 30px; }
.legal h2 { font-size: 19px; margin: 26px 0 10px; }
.legal p { font-size: 15px; line-height: 1.8; color: #4a3c2c; margin: 0 0 4px; }

/* 404 */
.notfound { max-width: 640px; margin: 0 auto; padding: 90px 24px; text-align: center; }
.notfound__code { font-family: 'Lora', serif; font-size: 84px; font-weight: 700; color: #6e7a4d; margin: 0; }
.notfound h1 { font-size: 26px; margin: 10px 0 14px; }
.notfound p { color: #6b5c48; margin: 0 0 26px; }

/* ---------- Footer ---------- */
.site-footer { background: #3a2e22; color: #d9cba4; margin-top: 20px; }
.site-footer__grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 50px 24px 30px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand__logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e8b26a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3a2e22;
  font-family: 'Lora', serif;
  font-weight: 700;
}
.footer-brand__name { font-family: 'Lora', serif; font-weight: 700; font-size: 18px; color: #f7f1e3; }
.site-footer p { font-size: 13px; line-height: 1.7; color: #c9bda3; max-width: 280px; }
.footer-col__title { font-weight: 800; color: #f0e9d8; margin-bottom: 14px; font-size: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 13px; }
.footer-links a { color: #c9bda3; }
.footer-links a:hover { color: #f0e9d8; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; font-size: 13px; color: #c9bda3; }
.site-footer__bottom { border-top: 1px solid #55452f; padding: 20px 24px; }
.site-footer__bottom-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: #a89678;
}

/* ---------- Cookie consent ---------- */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  max-width: 620px;
  margin: 0 auto;
  background: #3a2e22;
  color: #f0e9d8;
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 10px 30px #00000033;
  display: none;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.cookie-banner.visible { display: flex; }
.cookie-banner p { margin: 0; font-size: 13px; line-height: 1.6; color: #e5dcc7; flex: 1; min-width: 220px; }
.cookie-banner a { color: #e8b26a; text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner__actions button {
  cursor: pointer;
  border-radius: 8px;
  padding: 9px 16px;
  font-weight: 700;
  font-size: 13px;
  border: none;
}
.cookie-accept { background: #e8b26a; color: #3a2e22; }
.cookie-decline { background: transparent; color: #e5dcc7; border: 1px solid #6b5c48 !important; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 40px; gap: 30px; }
  .hero__media { order: -1; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-section { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #f7f1e3;
    border-bottom: 1px solid #e3d9c4;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 16px;
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 10px 0; width: 100%; border-bottom: none; }
  .nav a.active { color: #6e7a4d; }
  .hero h1 { font-size: 34px; }
  .usp-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .product-grid, .product-grid.cols-4 { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .checkout-form__row { flex-direction: column; }
  .checkout-form__row input:last-child { width: 100%; }
  .cart-drawer { width: 100%; }
  .site-footer__bottom-inner { flex-direction: column; }
}
