/* ============================================================
   UMARELL — stylesheet
   Minimalist black & white e-commerce, adapted for caps.
   ============================================================ */

:root {
  --black: #111111;
  --white: #ffffff;
  --grey: #767676;
  --line: #e6e6e6;
  --bg-soft: #f5f4f2;
  --max: 1360px;
  --header-h: 64px;
  --font: 'Helvetica Neue', Arial, -apple-system, BlinkMacSystemFont, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* --- Placeholder fallback for missing images --- */
.placeholder {
  background: repeating-linear-gradient(45deg, #ededed, #ededed 12px, #f6f6f6 12px, #f6f6f6 24px);
  min-height: 100%;
}
img.placeholder { object-fit: cover; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--black);
  transition: all 0.2s ease;
  font-weight: 500;
}
.btn-solid { background: var(--black); color: var(--white); }
.btn-solid:hover { background: #333; }
.btn-outline { background: transparent; color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-block { width: 100%; }

.icon-btn {
  background: none; border: none; cursor: pointer;
  color: var(--black); padding: 6px; display: inline-flex;
  align-items: center; justify-content: center; position: relative;
}

/* Moroccan Darija label shown next to the English one */
.ar {
  unicode-bidi: isolate;
  font-size: 0.94em; opacity: 0.92; font-weight: 600;
  letter-spacing: 0; margin-inline-start: 6px;
}
.ar::before {
  content: "-"; margin-inline-end: 6px;
  font-weight: 400; opacity: 0.55;
}
/* Darija line used in the size section */
.ar-line {
  direction: rtl; text-align: right;
  font-size: 13px; font-weight: 500; color: #333;
  margin-top: 8px; padding-top: 8px; border-top: 1px dashed var(--line);
  line-height: 1.6;
}

/* ============ ANNOUNCEMENT ============ */
.announcement {
  background: var(--black); color: var(--white);
  overflow: hidden; font-size: 12px; letter-spacing: 0.1em;
  padding: 9px 0;
}
.announcement-track {
  display: flex; gap: 40px; white-space: nowrap;
  animation: marquee 22s linear infinite; width: max-content;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ HEADER ============ */
/* Sticky top bar keeps the announcement + nav visible on every page */
.topbar { position: sticky; top: 0; z-index: 50; }
.header {
  background: var(--white); border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--max); margin: 0 auto; height: var(--header-h);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 0 24px; gap: 12px;
}
.logo {
  grid-column: 2; text-align: center;
  font-weight: 700; font-size: 24px; letter-spacing: 0.18em;
  display: inline-flex; align-items: center; justify-content: center;
}
.logo-img { height: 40px; width: auto; display: block; }
.footer-logo-img { height: 46px; width: auto; margin-bottom: 12px; }
.nav-left { grid-column: 1; justify-self: start; }
.header-actions { grid-column: 3; justify-self: end; display: flex; gap: 4px; }

.nav { display: flex; gap: 28px; }
.nav-item { position: relative; }
.nav-item > a {
  font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 22px 0; display: inline-block;
}
.nav-item > a:hover { opacity: 0.6; }

.dropdown {
  position: absolute; top: 100%; left: 0;
  background: var(--white); border: 1px solid var(--line);
  min-width: 200px; padding: 10px 0;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: all 0.18s ease; box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 9px 22px; font-size: 13px;
  letter-spacing: 0.03em;
}
.dropdown a:hover { background: var(--bg-soft); }

.cart-count {
  position: absolute; top: -2px; right: -2px;
  background: var(--black); color: var(--white);
  font-size: 10px; width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.menu-toggle { display: none; }

/* ============ MOBILE MENU ============ */
.mobile-menu {
  display: none; /* hidden on desktop — nav-left is used instead */
  position: fixed; top: calc(var(--header-h) + 34px); left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--line);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 40; padding: 12px 24px 24px;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu a {
  display: block; padding: 14px 0; border-bottom: 1px solid var(--line);
  font-size: 15px; letter-spacing: 0.04em; text-transform: uppercase;
}

/* ============ HERO ============ */
.hero {
  position: relative; height: calc(100vh - var(--header-h) - 34px);
  min-height: 520px; max-height: 820px;
  display: flex; align-items: center;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media img.placeholder { min-height: 100%; }
.hero-content {
  position: relative; z-index: 1;
  max-width: var(--max); width: 100%; margin: 0 auto; padding: 0 48px;
  color: var(--white);
}
/* When hero image is a light placeholder, keep text readable */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.05) 60%);
}
.hero-content { z-index: 2; }
.hero-eyebrow { font-size: 12px; letter-spacing: 0.25em; margin-bottom: 16px; }
.hero-title { font-size: clamp(38px, 6vw, 76px); line-height: 1.02; font-weight: 700; letter-spacing: -0.01em; }
.hero-sub { margin: 20px 0 32px; font-size: 17px; max-width: 380px; }

/* ============ VALUE STRIP ============ */
.value-strip {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 40px;
  padding: 22px 24px; border-bottom: 1px solid var(--line);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey);
}
.value span { color: var(--black); margin-right: 6px; }

/* ============ SECTIONS ============ */
.section { max-width: var(--max); margin: 0 auto; padding: 72px 24px; }
.section-shop { padding-top: 44px; }
.section-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 36px;
}
.section-head.center { flex-direction: column; align-items: center; text-align: center; gap: 8px; }
.section-title { font-size: clamp(22px, 3vw, 32px); font-weight: 700; letter-spacing: 0.01em; }
.section-sub { color: var(--grey); font-size: 14px; }
.section-link { font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; }
.section-link:hover { opacity: 0.6; }

/* ============ PRODUCT GRID ============ */
.product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 24px;
}
.product-card { cursor: pointer; }
.product-media {
  position: relative; aspect-ratio: 1/1; background: var(--bg-soft);
  overflow: hidden; margin-bottom: 14px;
}
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-media img { transform: scale(1.04); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--black); color: var(--white);
  font-size: 10px; letter-spacing: 0.1em; padding: 5px 9px; text-transform: uppercase;
}
.product-add {
  position: absolute; left: 12px; right: 12px; bottom: 12px;
  background: var(--white); color: var(--black); border: 1px solid var(--black);
  padding: 11px; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; opacity: 0; transform: translateY(8px); transition: all 0.22s ease;
}
.product-card:hover .product-add { opacity: 1; transform: translateY(0); }
.product-add:hover { background: var(--black); color: var(--white); }
.product-name { font-size: 14px; font-weight: 500; }
.product-row { display: flex; justify-content: space-between; align-items: baseline; margin-top: 3px; gap: 8px; }
.product-price { font-size: 14px; color: var(--black); }
.product-stock { font-size: 12px; color: var(--grey); }
.product-stock.sold { color: #c0392b; }
.product-card.is-sold .product-media img { opacity: 0.55; }
.product-add[disabled] { opacity: 1; cursor: not-allowed; background: #eee; color: #999; border-color: #ddd; }
.product-card.is-sold .product-add { opacity: 1; transform: none; }

/* ============ SHOWCASE ============ */
.showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.showcase-card { position: relative; aspect-ratio: 3/2; overflow: hidden; background: var(--bg-soft); }
.showcase-media { position: absolute; inset: 0; }
.showcase-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.showcase-card:hover .showcase-media img { transform: scale(1.05); }
.showcase-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 26px; color: var(--white);
  background: linear-gradient(0deg, rgba(0,0,0,0.4), transparent);
  font-size: 17px; letter-spacing: 0.04em; font-weight: 500;
}
.showcase-arrow { transition: transform 0.25s ease; }
.showcase-card:hover .showcase-arrow { transform: translateX(6px); }

/* ============ ABOUT ============ */
.about { background: var(--bg-soft); padding: 90px 24px; text-align: center; }
.about-inner { max-width: 620px; margin: 0 auto; }
.about-title { font-size: clamp(24px, 3vw, 34px); font-weight: 700; margin-bottom: 20px; }
.about p { color: #444; font-size: 16px; margin-bottom: 28px; }

/* ============ ABOUT PAGE ============ */
.about-hero {
  max-width: 760px; margin: 0 auto; padding: 64px 24px 40px; text-align: center;
  border-bottom: 1px solid var(--line);
}
.about-eyebrow { font-size: 12px; letter-spacing: 0.25em; color: var(--grey); margin-bottom: 14px; }
.about-page-title { font-size: clamp(30px, 5vw, 46px); font-weight: 700; line-height: 1.1; }
.about-lead { margin-top: 18px; font-size: 17px; color: #444; line-height: 1.7; }

.about-section { max-width: 760px; margin: 0 auto; padding: 20px 24px 60px; }
.about-block { padding: 34px 0; border-bottom: 1px solid var(--line); }
.about-block:last-child { border-bottom: none; }
.about-block h2 { font-size: 21px; font-weight: 700; margin-bottom: 14px; }
.about-block p { color: #444; font-size: 15px; line-height: 1.75; margin-bottom: 12px; }
.about-block p:last-child { margin-bottom: 0; }
.about-list { list-style: none; padding: 0; margin: 6px 0 12px; }
.about-list li {
  color: #444; font-size: 15px; line-height: 1.7;
  padding: 9px 0 9px 20px; position: relative;
}
.about-list li::before { content: "—"; position: absolute; left: 0; color: var(--grey); }
.about-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }

.about-cta { background: var(--bg-soft); padding: 70px 24px; text-align: center; }
.about-cta h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 700; margin-bottom: 10px; }
.about-cta p { color: var(--grey); margin-bottom: 26px; }

/* ============ COMMUNITY ============ */
.community-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.community-item { aspect-ratio: 1; overflow: hidden; background: var(--bg-soft); }
.community-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.community-item:hover img { transform: scale(1.06); }

/* ============ NEWSLETTER ============ */
.newsletter { background: var(--black); color: var(--white); padding: 80px 24px; text-align: center; }
.newsletter-inner { max-width: 500px; margin: 0 auto; }
.newsletter h2 { font-size: 30px; font-weight: 700; margin-bottom: 12px; }
.newsletter p { color: #bbb; margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input {
  flex: 1; padding: 14px 16px; border: 1px solid #555; background: transparent;
  color: var(--white); font-size: 14px; font-family: var(--font);
}
.newsletter-form input::placeholder { color: #888; }
.newsletter-form .btn-solid { background: var(--white); color: var(--black); border-color: var(--white); }
.newsletter-form .btn-solid:hover { background: #ddd; }
.newsletter-note { margin-top: 16px; font-size: 13px; color: #8fd18f; min-height: 18px; }

/* ============ FOOTER ============ */
.footer { border-top: 1px solid var(--line); padding: 60px 24px 30px; }
.footer-cols {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px;
}
.footer-logo { font-weight: 700; font-size: 22px; letter-spacing: 0.18em; margin-bottom: 12px; }
.brand-col p { color: var(--grey); font-size: 14px; }
.footer-col h4 { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: var(--grey); padding: 5px 0; }
.footer-col a:hover { color: var(--black); }
.footer-col .footer-label { display: block; font-size: 14px; color: var(--grey); padding: 5px 0; cursor: default; }
.footer-bottom {
  max-width: var(--max); margin: 40px auto 0; padding-top: 24px;
  border-top: 1px solid var(--line); font-size: 13px; color: var(--grey);
}

/* ============ CART DRAWER ============ */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 60;
  opacity: 0; visibility: hidden; transition: opacity 0.25s ease;
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: 400px; max-width: 90vw;
  background: var(--white); z-index: 61; transform: translateX(100%);
  transition: transform 0.28s ease; display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 24px; border-bottom: 1px solid var(--line);
}
.cart-header h3 { font-size: 16px; letter-spacing: 0.05em; text-transform: uppercase; }
.cart-items { flex: 1; overflow-y: auto; padding: 12px 24px; }
.cart-empty { color: var(--grey); text-align: center; padding: 60px 0; font-size: 14px; }
.cart-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-item-img { width: 74px; height: 74px; background: var(--bg-soft); object-fit: cover; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 14px; font-weight: 500; }
.cart-item-price { font-size: 13px; color: var(--grey); margin-top: 2px; }
.cart-qty { display: flex; align-items: center; gap: 10px; margin-top: 10px; }
.cart-qty button { width: 26px; height: 26px; border: 1px solid var(--line); background: none; cursor: pointer; font-size: 15px; }
.cart-item-remove { font-size: 12px; color: var(--grey); text-decoration: underline; cursor: pointer; background: none; border: none; margin-top: 8px; }
.cart-footer { padding: 20px 24px; border-top: 1px solid var(--line); }
.cart-total { display: flex; justify-content: space-between; font-size: 16px; font-weight: 600; margin-bottom: 16px; }
.cart-note { font-size: 12px; color: var(--grey); text-align: center; margin-top: 12px; }

/* ============ CHECKOUT MODAL ============ */
.checkout-modal {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%, -46%);
  width: 460px; max-width: 92vw; max-height: 90vh; overflow-y: auto;
  background: var(--white); z-index: 61;
  opacity: 0; visibility: hidden; transition: all 0.25s ease;
}
.checkout-modal.open { opacity: 1; visibility: visible; transform: translate(-50%, -50%); }
.checkout-inner { padding: 26px 28px 30px; }
.checkout-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.checkout-head h3 { font-size: 18px; letter-spacing: 0.05em; text-transform: uppercase; }
.checkout-summary { background: var(--bg-soft); padding: 16px; margin-bottom: 20px; }
.co-line { display: flex; justify-content: space-between; font-size: 14px; padding: 4px 0; }
.co-total { font-weight: 700; border-top: 1px solid var(--line); margin-top: 6px; padding-top: 10px; }
.co-ship { font-size: 12px; color: var(--grey); margin-top: 10px; }
.checkout-form { display: flex; flex-direction: column; gap: 14px; }
.checkout-form label { font-size: 13px; font-weight: 500; display: flex; flex-direction: column; gap: 6px; }
.checkout-form input, .checkout-form textarea {
  padding: 12px 14px; border: 1px solid var(--line); font-size: 15px;
  font-family: var(--font); border-radius: 0; resize: vertical;
}
.checkout-form input:focus, .checkout-form textarea:focus { outline: none; border-color: var(--black); }
.checkout-form button { margin-top: 6px; }
.checkout-fine { font-size: 12px; color: var(--grey); text-align: center; }
.checkout-country { font-size: 13px; color: #444; background: var(--bg-soft); padding: 10px 12px; text-align: center; }
.checkout-success { text-align: center; padding: 20px 0 8px; }
.check-circle {
  width: 60px; height: 60px; border-radius: 50%; background: var(--black); color: var(--white);
  font-size: 30px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
}
.checkout-success h3 { font-size: 22px; margin-bottom: 10px; }
.checkout-success p { color: var(--grey); font-size: 14px; margin-bottom: 20px; }
.success-ar { direction: rtl; font-weight: 500; color: #444 !important; line-height: 1.8; }

/* ============ TOAST ============ */
.toast {
  position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--black); color: var(--white); padding: 13px 22px; font-size: 14px;
  z-index: 80; opacity: 0; visibility: hidden; transition: all 0.25s ease; max-width: 90vw; text-align: center;
}
.toast.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

/* ============ PRODUCT DETAIL PAGE ============ */
.pdp { max-width: var(--max); margin: 0 auto; padding: 28px 24px 20px; }
.pdp-crumb { font-size: 13px; color: var(--grey); margin-bottom: 22px; }
.pdp-crumb a:hover { color: var(--black); }
.pdp-crumb span { margin: 0 6px; }
.pdp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.pdp-media { position: relative; aspect-ratio: 1/1; background: var(--bg-soft); overflow: hidden; }
.pdp-media img { width: 100%; height: 100%; object-fit: cover; }
.pdp-info { padding-top: 6px; }
.pdp-name { font-size: clamp(26px, 3vw, 36px); font-weight: 700; }
.pdp-price { font-size: 22px; margin: 12px 0 8px; }
.pdp-stock { font-size: 14px; color: var(--grey); }
.pdp-stock.sold { color: #c0392b; }
.pdp-desc { color: #444; font-size: 13px; margin: 14px 0; line-height: 1.6; }
.pdp-size { border: 1px solid var(--line); padding: 11px 13px; margin: 4px 0 16px; }
.pdp-size h3 { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); margin-bottom: 6px; }
.pdp-size p { font-size: 13px; }
.pdp-size-note { color: var(--grey); margin-top: 3px; font-size: 12px; }
.pdp-qty { margin-bottom: 14px; }
.pdp-qty label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 6px; }
.qty-box { display: inline-flex; align-items: center; border: 1px solid var(--line); }
.qty-box button { width: 42px; height: 42px; border: none; background: none; font-size: 18px; cursor: pointer; }
.qty-box span { min-width: 44px; text-align: center; font-size: 15px; }
.pdp-actions { display: flex; flex-direction: column; gap: 12px; max-width: 360px; }
.pdp-perks { list-style: none; margin: 28px 0 0; padding: 22px 0 0; border-top: 1px solid var(--line); }
.pdp-perks li { font-size: 14px; color: #444; padding: 6px 0; }
.pdp-missing { max-width: 600px; margin: 0 auto; text-align: center; padding: 80px 24px; }
.pdp-missing h1 { font-size: 30px; margin-bottom: 12px; }
.pdp-missing p { color: var(--grey); margin-bottom: 24px; }

/* ============ CHECKOUT PAGE ============ */
.checkout-page { max-width: 980px; margin: 0 auto; padding: 32px 24px 70px; }
.checkout-page-title { font-size: clamp(26px, 3vw, 34px); font-weight: 700; margin-bottom: 28px; }
.checkout-empty { text-align: center; padding: 60px 0; }
.checkout-empty p { color: var(--grey); margin-bottom: 22px; font-size: 16px; }
.checkout-cols { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }
.co-heading { font-size: 16px; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 18px; }
.checkout-summary-col { background: var(--bg-soft); padding: 22px; }
.checkout-summary-col .checkout-summary { background: none; padding: 0; margin: 0; }
.co-item { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.co-thumb { width: 60px; height: 60px; background: #fff; overflow: hidden; flex-shrink: 0; }
.co-thumb img { width: 100%; height: 100%; object-fit: cover; }
.co-item-info { flex: 1; }
.co-item-name { font-size: 14px; font-weight: 500; }
.co-item-qty { font-size: 13px; color: var(--grey); }
.co-item-price { font-size: 14px; font-weight: 500; white-space: nowrap; }
.checkout-summary-col .co-line { padding-top: 12px; }
.success-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }
.checkout-page .checkout-success { max-width: 560px; margin: 40px auto 0; }

/* ============ RESPONSIVE ============ */
@media (max-width: 860px) {
  .pdp-grid { grid-template-columns: 1fr; gap: 28px; }
  .pdp-actions { max-width: none; }
  .checkout-cols { grid-template-columns: 1fr; gap: 30px; }
  .checkout-summary-col { order: -1; }
}
/* ============ RESPONSIVE (base) ============ */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-cols { grid-template-columns: 1fr 1fr 1fr; }
  .brand-col { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .nav-left { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-menu { display: block; } /* only available on mobile, via the ☰ button */
  .header-inner { grid-template-columns: auto 1fr auto; }
  .logo { font-size: 20px; }
  .hero-content { padding: 0 24px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 14px; }
  .showcase { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .value-strip { gap: 20px; }
  /* Compact add-to-cart bar on mobile cards (was covering the image) */
  .product-add {
    opacity: 1; transform: none;
    left: 8px; right: 8px; bottom: 8px;
    padding: 6px 4px; font-size: 9px; letter-spacing: 0.03em; line-height: 1.3;
  }
  .product-add .ar { font-size: 0.95em; margin-inline-start: 4px; }
  .product-add .ar::before { margin-inline-end: 3px; }
}
@media (max-width: 480px) {
  .newsletter-form { flex-direction: column; }
  .section { padding: 48px 20px; }
}
