/* MyHome — styles.css: טוקנים, בסיס, כרום (כותרת/פוטר/ניווט).
   רכיבי מסחר (כרטיסים/עגלה/checkout) — store.css. אנימציות — design.css. */

/* ---------- Design tokens ---------- */
/* מייקאובר 7/2026 — שפה גרפית לפי הלוגו החדש: תג עגול שחור, "MY" לבן, "HOME" אדום.
   שמות המשתנים נשמרו (brand-green/terra/sand) כדי לא לשבור כל קובץ שמפנה אליהם —
   רק הערכים הוחלפו: green→שחור-פחמי (המשטח הכהה), terra→אדום הלוגו (המבטא/ה-CTA),
   sand נשאר ניטרלי-חמים לגישור מול תמונות הלייף-סטייל. */
:root {
  --brand-green: #15120E;
  --brand-green-soft: #241F18;
  --brand-terra: #E10600;
  --brand-terra-deep: #B00500;
  --brand-sand: #E8C9A0;
  --brand-cream: #FAF7F2;

  --bg-base: #FAF7F2;
  --surface-card: #FFFFFF;
  --surface-alt: #F3EDE3;
  --border-subtle: #E7DFD2;
  --border-strong: #CFC4B0;

  --text-primary: #1C1A15;
  --text-secondary: #55534A;
  --text-muted: #8B887C;
  --text-invert: #FBF9F5;

  --price-color: #15120E;
  --sale-color: #E10600;
  --success: #2E7D32;
  --danger: #C1121F;
  --star: #E9A426;

  --brand-gradient: linear-gradient(135deg, #100D0A 0%, #201A14 55%, #2C231A 100%);
  --terra-gradient: linear-gradient(135deg, #FF3B2E 0%, #E10600 55%, #B00500 100%);

  --shadow-card: 0 1px 2px rgba(21, 18, 14, 0.07), 0 6px 18px rgba(21, 18, 14, 0.08);
  --shadow-lift: 0 4px 10px rgba(21, 18, 14, 0.12), 0 14px 34px rgba(21, 18, 14, 0.16);
  --focus-ring: 0 0 0 3px rgba(225, 6, 0, 0.32);

  --font-brand: 'Playfair Display', 'LocalSerif', Georgia, serif;
  --font-heading: 'Heebo', 'LocalSans', sans-serif;
  --font-body: 'Heebo', 'LocalSans', sans-serif;

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  --container: 1200px;
  --header-h: 64px;
  --tabbar-h: 60px;
}

html[lang='ar'] {
  --font-heading: 'Cairo', 'LocalSans', sans-serif;
  --font-body: 'Cairo', 'LocalSans', sans-serif;
}

html[data-theme='dark'] {
  --bg-base: #16130F;
  --surface-card: #211C16;
  --surface-alt: #2A231B;
  --border-subtle: #3B332A;
  --border-strong: #4F4436;
  --text-primary: #EFEDE6;
  --text-secondary: #C7C2B7;
  --text-muted: #928D80;
  --price-color: #ECC98A;
  --brand-cream: #211C16;
  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.4), 0 6px 18px rgba(0, 0, 0, 0.35);
  --shadow-lift: 0 4px 10px rgba(0, 0, 0, 0.5), 0 14px 34px rgba(0, 0, 0, 0.45);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg-base);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  margin: 0 0 0.5em;
  color: var(--text-primary);
  font-weight: 700;
}

h1 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); }
h2 { font-size: clamp(1.35rem, 2.6vw, 1.8rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1em; }

a { color: var(--brand-green-soft); text-decoration: none; }
a:hover { color: var(--brand-terra-deep); }

:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: 6px; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: 20px; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 22px;
  border: none; border-radius: var(--radius-md);
  font-family: var(--font-heading); font-size: 1rem; font-weight: 600;
  cursor: pointer; text-align: center;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, opacity 0.2s;
}
.btn:active { transform: translateY(1px); }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; }

.btn-primary { background: var(--terra-gradient); color: #fff; }
.btn-primary:hover { color: #fff; box-shadow: 0 6px 18px rgba(217, 123, 79, 0.4); }

.btn-dark { background: var(--brand-gradient); color: var(--text-invert); }
.btn-dark:hover { color: var(--text-invert); box-shadow: 0 6px 18px rgba(30, 58, 52, 0.35); }

.btn-outline {
  background: transparent; color: var(--brand-green-soft);
  border: 1.5px solid var(--border-strong);
}
.btn-outline:hover { border-color: var(--brand-terra); color: var(--brand-terra-deep); }

.btn-sm { padding: 7px 14px; font-size: 0.9rem; border-radius: var(--radius-sm); }
.btn-lg { padding: 14px 30px; font-size: 1.08rem; }
.btn-block { width: 100%; }

/* ---------- Forms ---------- */
input[type='text'], input[type='search'], input[type='email'], input[type='tel'],
input[type='number'], input[type='password'], select, textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  background: var(--surface-card);
  color: var(--text-primary);
  font-family: var(--font-body); font-size: 1rem;
  transition: border-color 0.2s;
}
input:focus, select:focus, textarea:focus { border-color: var(--brand-terra); outline: none; }
label { font-weight: 500; font-size: 0.92rem; display: block; margin-bottom: 4px; }
.field { margin-bottom: 14px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hp { position: absolute; inset-inline-start: -9999px; height: 0; width: 0; opacity: 0; }
.form-message { min-height: 1.4em; font-size: 0.92rem; margin: 6px 0 0; }
.form-message.ok { color: var(--success); }
.form-message.err { color: var(--danger); }

/* ---------- Announcement bar ---------- */
.announce-bar {
  background: var(--brand-gradient); color: var(--text-invert);
  text-align: center; font-size: 0.9rem; padding: 7px 16px;
}
.announce-bar a { color: var(--brand-sand); font-weight: 600; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--surface-card);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 1px 0 rgba(38, 37, 31, 0.03);
}
.site-header.scrolled { box-shadow: var(--shadow-card); }

.header-main {
  display: flex; align-items: center; gap: 18px;
  min-height: var(--header-h); padding-block: 8px;
}

.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-mark { display: block; border-radius: 50%; flex-shrink: 0; transition: transform 0.2s ease; }
.logo:hover .logo-mark { transform: rotate(-4deg) scale(1.04); }
.logo-sub { font-size: 0.78rem; font-weight: 500; color: var(--text-secondary); letter-spacing: 0.1px; }

/* חיפוש */
.header-search { position: relative; flex: 1; max-width: 520px; display: flex; }
.header-search input {
  border-radius: 999px; padding-inline: 20px 46px;
  background: var(--surface-alt); border-color: transparent;
}
html[dir='ltr'] .header-search input { padding-inline: 20px 46px; }
.header-search button {
  position: absolute; inset-inline-end: 6px; top: 50%; transform: translateY(-50%);
  background: var(--brand-green); color: #fff; border: none; cursor: pointer;
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
}
.header-search button:hover { background: var(--brand-terra-deep); }
.search-suggest {
  position: absolute; top: calc(100% + 8px); inset-inline: 0; z-index: 70;
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lift);
  max-height: 420px; overflow-y: auto; padding: 6px;
  animation: picker-in 0.18s cubic-bezier(0.25, 0.8, 0.35, 1);
}
.search-suggest a {
  display: flex; align-items: center; gap: 10px; padding: 8px 10px;
  border-radius: var(--radius-sm); color: var(--text-primary);
}
.search-suggest a:hover { background: var(--surface-alt); }
.search-suggest img { width: 42px; height: 42px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.search-suggest .s-price { margin-inline-start: auto; font-weight: 600; color: var(--price-color); white-space: nowrap; }
.search-suggest .s-head {
  font-size: 0.78rem; color: var(--text-muted); padding: 6px 10px 2px;
  display: flex; justify-content: space-between; align-items: center;
}
.search-suggest .s-head button { background: none; border: none; color: var(--brand-terra-deep); cursor: pointer; font-size: 0.78rem; }

/* אייקונים */
.header-actions { display: flex; align-items: center; gap: 6px; margin-inline-start: auto; }
.header-icon {
  position: relative; display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 50%;
  color: var(--text-primary);
}
.header-icon:hover { background: var(--surface-alt); color: var(--brand-terra-deep); }
.icon-badge {
  position: absolute; top: 2px; inset-inline-end: 0;
  min-width: 17px; height: 17px; padding-inline: 4px;
  background: var(--brand-terra); color: #fff;
  font-size: 0.68rem; font-weight: 700; line-height: 17px;
  border-radius: 999px; text-align: center;
}

/* מחליף שפות + ערכה */
.lang-picker { position: relative; }
.lang-picker-btn {
  display: flex; align-items: center; gap: 6px;
  background: none; border: none; cursor: pointer;
  color: var(--text-secondary); font-family: var(--font-body); font-size: 0.88rem;
  padding: 8px; border-radius: var(--radius-sm);
}
.lang-picker-btn:hover { background: var(--surface-alt); }
.lang-picker-menu {
  position: absolute; top: calc(100% + 6px); inset-inline-end: 0; z-index: 70;
  display: flex; flex-direction: column; min-width: 130px;
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lift); padding: 6px;
}
.lang-picker-menu[hidden] { display: none; }
.lang-picker-menu a, .lang-picker-menu span { padding: 8px 12px; border-radius: 8px; font-size: 0.92rem; }
.lang-picker-menu a:hover { background: var(--surface-alt); }
.lang-picker-menu span { color: var(--text-muted); }

.theme-toggle {
  background: none; border: none; cursor: pointer; color: var(--text-secondary);
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
}
.theme-toggle:hover { background: var(--surface-alt); }
html[data-theme='light'] .icon-sun { display: none; }
html[data-theme='dark'] .icon-moon { display: none; }

/* תפריט קטגוריות */
.cat-nav { background: var(--surface-card); border-top: 1px solid var(--border-subtle); }
.cat-nav-inner { display: flex; gap: 4px; overflow-x: auto; scrollbar-width: none; }
.cat-nav-inner::-webkit-scrollbar { display: none; }
.cat-item { position: relative; flex-shrink: 0; }
.cat-item > a {
  display: block; padding: 10px 14px;
  font-weight: 500; font-size: 0.95rem; color: var(--text-primary);
  border-bottom: 2.5px solid transparent;
}
.cat-item > a:hover, .cat-item > a[aria-current='page'] {
  color: var(--brand-terra-deep); border-bottom-color: var(--brand-terra);
}
.cat-sale > a { color: var(--sale-color); font-weight: 700; }
.cat-new > a { color: var(--brand-green-soft); font-weight: 700; }
.cat-dropdown {
  position: absolute; top: 100%; inset-inline-start: 0; z-index: 65;
  min-width: 210px; padding: 8px;
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-radius: 0 0 var(--radius-md) var(--radius-md); box-shadow: var(--shadow-lift);
  display: none; flex-direction: column;
}
.cat-item.has-children:hover .cat-dropdown,
.cat-item.has-children:focus-within .cat-dropdown { display: flex; }
.cat-dropdown a { padding: 8px 12px; border-radius: 8px; color: var(--text-primary); font-size: 0.92rem; }
.cat-dropdown a:hover { background: var(--surface-alt); color: var(--brand-terra-deep); }

/* המבורגר ומובייל */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 22px; height: 2.5px; margin: 4.5px 0;
  background: var(--text-primary); border-radius: 2px; transition: transform 0.25s, opacity 0.2s;
}

.nav-backdrop { display: none; }
.cat-nav-head, .cat-nav-foot { display: none; }

@media (max-width: 900px) {
  .header-main { flex-wrap: wrap; gap: 10px; }
  .nav-toggle { display: block; order: -1; z-index: 2; }
  .nav-toggle[aria-expanded='true'] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded='true'] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .logo-sub { display: none; }
  .header-search { order: 5; flex-basis: 100%; max-width: none; }

  /* תפריט ניווט → מגירה צדדית */
  .nav-backdrop {
    display: block; position: fixed; inset: 0; z-index: 115;
    background: rgba(15, 12, 9, 0.5);
    opacity: 0; pointer-events: none; transition: opacity 0.25s ease;
  }
  .nav-backdrop.open { opacity: 1; pointer-events: auto; }

  .cat-nav {
    position: fixed; inset-block: 0; z-index: 120;
    width: min(84vw, 340px); max-width: 340px;
    background: var(--surface-card);
    display: flex; flex-direction: column;
    transition: transform 0.28s cubic-bezier(0.25, 0.8, 0.35, 1);
  }
  html[dir='rtl'] .cat-nav { right: 0; transform: translateX(100%); box-shadow: -10px 0 34px rgba(0, 0, 0, 0.22); }
  html[dir='ltr'] .cat-nav { left: 0; transform: translateX(-100%); box-shadow: 10px 0 34px rgba(0, 0, 0, 0.22); }
  html[dir='rtl'] .cat-nav.open, html[dir='ltr'] .cat-nav.open { transform: translateX(0); }

  .cat-nav-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 18px; border-bottom: 1px solid var(--border-subtle);
    font-weight: 700; font-size: 1.02rem; flex-shrink: 0;
  }
  .nav-close {
    background: var(--surface-alt); border: none; cursor: pointer;
    width: 32px; height: 32px; border-radius: 50%; font-size: 1rem; color: var(--text-primary); flex-shrink: 0;
  }
  .cat-nav-inner { flex-direction: column; overflow-y: auto; padding: 8px 6px; flex: 1; }
  .cat-item > a { border-bottom: none; padding: 12px 10px; font-size: 1.03rem; border-radius: var(--radius-sm); }
  .cat-item > a:hover, .cat-item > a[aria-current='page'] { background: var(--surface-alt); border-bottom-color: transparent; }
  .cat-dropdown {
    position: static; display: flex; box-shadow: none; border: none;
    padding-inline-start: 18px; background: transparent;
  }
  .cat-nav-foot {
    display: block; flex-shrink: 0; padding: 14px 18px calc(14px + env(safe-area-inset-bottom, 0));
    border-top: 1px solid var(--border-subtle);
  }
  .cat-nav-foot-label { display: block; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 8px; }
  .cat-nav-langs { display: flex; gap: 8px; flex-wrap: wrap; }
  .cat-nav-langs a, .cat-nav-langs span {
    padding: 6px 14px; border-radius: 999px; font-size: 0.88rem; border: 1px solid var(--border-subtle); color: var(--text-secondary);
  }
  .cat-nav-langs span { color: var(--text-muted); background: var(--surface-alt); border-color: transparent; }
  .cat-nav-langs a:hover { border-color: var(--brand-terra); color: var(--brand-terra-deep); }

  .lang-picker { display: none; }
}

body.scroll-locked { overflow: hidden; }

/* ---------- Footer ---------- */
.site-footer { margin-top: 60px; background: var(--brand-green); color: var(--text-invert); }

.newsletter-strip { background: var(--brand-sand); color: #26251F; padding: 26px 0; }
html[data-theme='dark'] .newsletter-strip { background: var(--surface-alt); color: var(--text-primary); }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.newsletter-inner h2 { margin: 0 0 2px; font-size: 1.25rem; color: inherit; }
.newsletter-inner p { margin: 0; font-size: 0.95rem; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; align-items: flex-start; position: relative; }
.newsletter-form input[type='email'] { min-width: 240px; border-radius: 999px; }
.newsletter-form .btn { border-radius: 999px; }
.newsletter-form .form-message { flex-basis: 100%; margin: 0; }

.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px;
  padding: 44px 0 28px;
}
.footer-logo { display: block; border-radius: 50%; }
.footer-tagline { color: #D8CFC1; font-size: 0.93rem; margin-top: 12px; }
.footer-contact { margin: 2px 0; font-size: 0.92rem; }
.footer-contact a { color: #D3CCC0; }
.footer-contact a:hover { color: var(--brand-terra); }
.footer-col h3 { color: var(--brand-sand); font-size: 0.95rem; margin-bottom: 10px; }
.footer-col a, .footer-langs span { display: block; padding: 3.5px 0; color: #D3CCC0; font-size: 0.92rem; }
.footer-col a:hover { color: #fff; }
.footer-col-inner + .footer-col-inner { margin-top: 20px; }
.footer-langs span { color: #8A8175; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); padding: 16px 0 22px; }
.footer-legal { margin: 0; font-size: 0.82rem; color: #AFA595; }
.footer-legal a { color: #D3CCC0; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed; bottom: 20px; inset-inline-start: 20px; z-index: 80;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, bottom 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); color: #fff; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; bottom: 16px; inset-inline: 16px; z-index: 90;
  max-width: 560px; margin-inline: auto;
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lift);
  padding: 16px 18px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.cookie-banner p { margin: 0; font-size: 0.9rem; flex: 1 1 260px; }

/* ---------- סרגל ניווט תחתון (מובייל) ---------- */
.mobile-tabbar { display: none; }
@media (max-width: 760px) {
  body:has(.mobile-tabbar) { padding-bottom: calc(var(--tabbar-h) + env(safe-area-inset-bottom, 0)); }
  .mobile-tabbar {
    display: flex; position: fixed; bottom: 0; inset-inline: 0; z-index: 90;
    height: var(--tabbar-h);
    background: var(--surface-card); border-top: 1px solid var(--border-subtle);
    padding-bottom: env(safe-area-inset-bottom, 0);
    box-shadow: 0 -4px 16px rgba(21, 18, 14, 0.08);
  }
  .mt-item {
    flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
    padding: 6px 2px; color: var(--text-secondary); font-size: 0.64rem; font-weight: 500;
    background: none; border: none; position: relative; cursor: pointer; font-family: var(--font-body);
  }
  .mt-item svg { width: 21px; height: 21px; }
  .mt-item.active { color: var(--brand-terra); }
  .mt-item .icon-badge { position: absolute; top: 2px; inset-inline-start: calc(50% + 4px); }
  body:has(.mobile-tabbar) .whatsapp-float { bottom: calc(var(--tabbar-h) + 14px); }
  body:has(.mobile-tabbar) .cookie-banner { bottom: calc(var(--tabbar-h) + 12px); }
}
.cookie-banner .btn { flex-shrink: 0; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 24px; inset-inline-end: 24px; z-index: 95;
  background: var(--brand-green); color: #fff;
  padding: 12px 20px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift); font-weight: 500;
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: none; }
@media (max-width: 760px) {
  .toast { inset-inline: 16px; text-align: center; bottom: calc(var(--tabbar-h) + 14px); }
  body:not(:has(.mobile-tabbar)) .toast { bottom: 24px; }
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { font-size: 0.85rem; color: var(--text-muted); margin: 18px 0 10px; }
.breadcrumbs a { color: var(--text-secondary); }
.breadcrumbs a:hover { color: var(--brand-terra-deep); }
.breadcrumbs .sep { margin-inline: 6px; }

/* ---------- Section headers ---------- */
.section { padding: 34px 0 6px; }
.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; margin-bottom: 18px;
}
.section-head h2 { margin: 0; position: relative; padding-bottom: 8px; }
.section-head h2::after {
  content: ''; position: absolute; bottom: 0; inset-inline-start: 0;
  width: 44px; height: 3px; border-radius: 2px; background: var(--terra-gradient);
}
.section-head .view-all { font-size: 0.9rem; font-weight: 600; white-space: nowrap; }

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .whatsapp-float, .cookie-banner, .toast, .announce-bar { display: none !important; }
  body { background: #fff; color: #000; }
}

/* ---------- Utilities (הוחלף style="" בעקבות הקשחת CSP: style-src בלי unsafe-inline) ---------- */
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }
.text-center { text-align: center; }
.text-sm { font-size: 0.92rem; }
.mt-10 { margin-top: 10px; }
.mt-12 { margin-top: 12px; }
.mt-14 { margin-top: 14px; }

.legal-page { max-width: 760px; padding-block: 20px 60px; }

.error-page { text-align: center; padding: 70px 20px; }
.error-page-emoji { font-size: 5rem; margin: 0; }
.error-page-lead { color: var(--text-secondary); max-width: 420px; margin-inline: auto; }
.error-page-actions { display: flex; gap: 12px; justify-content: center; margin-top: 24px; }

.check-inline--form { display: flex; gap: 8px; font-weight: 400; margin: 10px 0; }
.check-inline--js { display: flex; gap: 8px; }
.mt-24 { margin-top: 24px; }

.empty-msg { padding: 30px 0; }
.category-desc { max-width: 720px; }
.sort-label { display: flex; align-items: center; gap: 8px; margin: 0; }
.no-products-msg { text-align: center; color: var(--text-muted); padding: 40px 0; }
.search-hint-msg { color: var(--text-muted); padding: 30px 0; text-align: center; }

.contact-page { max-width: 640px; padding-block: 20px 60px; }
.contact-info-list { display: flex; flex-direction: column; gap: 6px; margin: 18px 0 26px; }

.field-label-strong { font-weight: 500; font-size: 0.92rem; }

.payment-instructions-title { font-size: 1.1rem; }
.payment-instructions-text { margin: 0; white-space: pre-line; }
.thankyou-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }

.blog-post-date { color: var(--text-muted); font-size: 0.88rem; }
.blog-post-image { width: 100%; border-radius: var(--radius-lg); margin-bottom: 20px; }

#summaryLines { font-size: 0.9rem; }
.summary-divider { border: none; border-top: 1px solid var(--border-subtle); margin: 8px 0; }
.newsletter-form--center { justify-content: center; }
.newsletter-input--wide { min-width: 220px; }
