/* ============================================================
   Siddur Ariel – Shop Page Stylesheet
   Template: siddur-ariel
   Direction: RTL (Hebrew)
   ============================================================ */

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #1b2d6b;
  --navy-dark: #0a1e38;
  --gold:      #c8a232;
  --gold-dark: #b8921e;
  --red:       #d32f2f;
  --green:     #2e7d32;
  --bg:        #f8f6f5;
  --white:     #ffffff;
  --gray:      #666;
  --border:    #ddd;
  --card-bg:   #ffffff;
}

body {
  font-family: 'Assistant', sans-serif;
  background: var(--bg);
  color: #222;
  direction: rtl;
}

/* ── GLOBAL CONTAINER ── */
.container {
  max-width: 1150px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
}

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: var(--navy-dark);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 24px;
  border-bottom: 2px solid var(--gold-dark);
}
.announce-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.announce-content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.announce-text {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.announce-van {
  color: #fff;
  flex-shrink: 0;
}
.announce-timer {
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.countdown-time {
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 15px;
}

/* ── SITE HEADER ── */
.site-header {
  background: #f8f1e9;
  position: sticky;
  top: 0;
  z-index: 500;
  border-top: 4px solid #0a1e38;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

/* Logo */
.logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo-img {
  height: 109px;
  width: auto;
  display: block;
  margin-top: 40px;
  transition: height 0.3s ease, margin-top 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.08); border-top: none; }
.site-header.scrolled .logo-img { height: 52px; margin-top: 0; }
.site-header.scrolled .header-inner { height: 60px; transition: height 0.3s ease; }
.header-inner { transition: height 0.3s ease; }

/* Nav */
.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.main-nav ul li a {
  text-decoration: none;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s;
  position: relative;
}
.main-nav ul li a:hover,
.main-nav ul li a.active { color: var(--gold-dark); }
.main-nav ul li a.active::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--gold-dark);
  border-radius: 2px;
  margin-top: 2px;
}

/* Header action buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.header-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.header-btn:hover { background: #ede8e0; }


/* ── HERO ── */
.hero {
  background: url('../images/shop-bg.png') center/cover no-repeat;
  min-height: 450px;
  padding: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero h1 {
  font-size: 32px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
  position: relative;
}
.hero h2 {
  font-size: 70px;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.15;
  margin-bottom: 16px;
  position: relative;
}
.hero h2 .dot { color: var(--gold); }
.hero p {
  font-size: 24px;
  color: #555;
  position: relative;
  margin-bottom: 0;
}

/* Hero divider */
.hero-divider {
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
}
.hero-divider .line {
  display: block;
  width: 140px;
  height: 2px;
}
.hero-divider .line:first-child {
  background: linear-gradient(to right, var(--gold-dark) 20%, transparent);
}
.hero-divider .line:last-child {
  background: linear-gradient(to left, var(--gold-dark) 20%, transparent);
}
.hero-divider .diamond {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
  margin: 0 2px;
}

/* ── FILTER TABS ── */
.filter-section {
  max-width: 860px;
  margin: 36px auto 28px;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  background: #f8f6f5;
  border: 1.5px solid #d0ccc6;
  border-radius: 20px;
  gap: 0;
}
.filter-btn {
  flex: 0 0 auto;
  padding: 11px 24px;
  border-radius: 15px;
  border: none;
  background: transparent;
  color: var(--navy);
  font-family: 'Assistant', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  white-space: nowrap;
}
.filter-btn:hover {
  background: #f0edf8;
  border-radius: 15px;
}
.filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-radius: 15px;
}

/* ── PRODUCT GRID ──
   WooCommerce: ul.products li.product
   ─────────────────────────────────── */
.products-section {
  max-width: 1200px;
  margin: 0 auto 48px;
  padding: 0 24px;
}
.products-grid {                        /* woo: ul.products */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.products-grid.row-3 {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Product Card ──
   WooCommerce: li.product
   ─────────────────────── */
.product-card {                         /* woo: li.product */
  background: #f6f3ed;
  border-radius: 20px;
  border: 1px solid #ece8e3;
  box-shadow: 0 2px 12px rgba(27,45,107,0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s, box-shadow 0.22s;
  overflow: hidden;
  text-align: center;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(27,45,107,0.14);
}

/* Image wrapper — woo: .woocommerce-LoopProduct-link / .product-thumbnail */
.product-img-wrap {
  background: #f4f1ec;
  display: block;
  width: 100%;
  height: 260px;
  position: relative;
  overflow: hidden;
  padding: 14px 14px 0;
}
.product-img-wrap img,
.product-img-wrap .attachment-woocommerce_thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s;
}
.product-card:hover .product-img-wrap img,
.product-card:hover .product-img-wrap .attachment-woocommerce_thumbnail {
  transform: scale(1.05) translateY(-4px);
}

/* Book cover placeholders (remove when using real images) */
.book-placeholder {
  width: 130px;
  height: 185px;
  border-radius: 8px 3px 3px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.22));
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.product-card:hover .book-placeholder { transform: scale(1.05) translateY(-4px); }
.book-spine {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 16px;
  opacity: 0.75;
}
.book-text {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  padding: 0 20px 0 6px;
  line-height: 1.4;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

/* Product info — woo: .product-info wrapper */
.product-info {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: center;
}

/* Title — woo: .woocommerce-loop-product__title */
.product-title,
.woocommerce-loop-product__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 14px;
  text-align: center;
  flex: 1;
  width: 100%;
}

/* Price block — woo: .price */
.price-block,
.price {
  text-align: center;
  margin-bottom: 6px;
  width: 100%;
}
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
}

/* woo: .woocommerce-Price-amount */
.price-current,
.woocommerce-Price-amount {
  font-size: 30px;
  font-weight: 700;
  color: var(--navy-dark);
  letter-spacing: -0.5px;
}
.price-current .currency,
.woocommerce-Price-currencySymbol {
  font-size: 20px;
  font-weight: 700;
  margin-right: 4px;
}
.price-original,
.price del {
  font-size: 15px;
  color: #bbb;
  text-decoration: line-through;
}
.price-original .woocommerce-Price-amount,
del .woocommerce-Price-amount,
del span {
  font-size: 20px !important;
  font-weight: 400 !important;
  color: #bbb !important;
  letter-spacing: 0;
}
.discount-badge {
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
  margin-top: 6px;
  text-align: center;
  background: rgba(46, 125, 50, 0.10);
  border-radius: 0;
  padding: 2px 8px;
  display: inline-block;
}
.shipping-note {
  font-size: 14px;
  font-weight: 800;
  color: var(--red);
  margin-top: 5px;
  text-align: center;
}

/* Add to cart button — woo: .add_to_cart_button */
.btn-add,
.add_to_cart_button {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 14px 24px;
  font-family: 'Assistant', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  width: 100%;
  text-decoration: none;
  letter-spacing: 0.3px;
}
.btn-add:hover,
.add_to_cart_button:hover {
  background: var(--navy-dark);
  transform: scale(1.02);
  color: #fff;
}
.btn-add svg,
.add_to_cart_button svg { flex-shrink: 0; }

/* ── FEATURES STRIP ── */
.features-strip {
  background: var(--bg);
  padding: 20px 24px 28px;
}
.features-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background: #f8f6f5;
  border: 1.5px solid #d0ccc6;
  border-radius: 32px;
  padding: 10px 32px;
}
.feature-item {
  flex: 1;
  display: flex;
  flex-direction: row-reverse;   /* icon LEFT, text RIGHT in RTL */
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 0;
}
.feature-divider {
  width: 1px;
  height: 36px;
  background: #d0ccc6;
  flex-shrink: 0;
}
.feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}
.feature-icon svg {
  width: 28px;
  height: 28px;
}
.feature-text {
  text-align: center;
}
.feature-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
}
.feature-desc {
  font-size: 14px;
  color: var(--gray);
  margin-top: 1px;
  line-height: 1.4;
}

/* ── FOOTER ── */
.site-footer { background: var(--navy-dark); }

/* WhatsApp bar */
.footer-wa-bar {
  background: #021528;
  border-bottom: 2px solid rgba(255,255,255,0.08);
  padding: 14px 24px;
}
.footer-wa-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.wa-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #2f8135;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-wa-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: right;
}
.footer-wa-title {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
.footer-wa-sub {
  font-size: 12px;
  color: rgb(48 128 54 / 79%);
}
.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2f8135;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 12px;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
  margin-right: 12px;
}
.footer-wa-btn:hover { background: #236b28; }

/* Footer columns */
.footer-main {
  padding: 36px 24px 32px;
}
.footer-main-inner {
  max-width: 950px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.footer-col {
  padding: 0 60px 0 24px;
  border-left: 1px solid rgba(255,255,255,0.08);
}
.footer-col:last-child { border-left: none; }

.footer-col-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  text-align: right;
}

/* Col 1 – Brand */
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
  text-align: center;
}
.footer-socials {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.2s;
}
.social-icon:hover { border-color: var(--gold); color: var(--gold); }

.footer-col--right { text-align: right; }
.footer-col--right .footer-col-title { text-align: right; }
.footer-main-inner .footer-col:nth-child(2) .footer-col-title { text-align: right; }
.footer-col--right .footer-links-list { align-items: flex-start; }
.footer-col--right .footer-contact-list { align-items: flex-start; }
.footer-col--right .footer-cards { justify-content: flex-start; }
.footer-col--right .footer-payment-sub { text-align: right; }
.footer-main-inner .footer-col:nth-child(4) .footer-col-title { margin-bottom: 0; }

/* Col 2 – Links */
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.footer-links-list li a {
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  transition: color 0.2s;
}
.footer-links-list li a:hover { color: var(--gold); }

/* Col 3 – Contact */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  direction: rtl;
}
.footer-contact-list li svg { flex-shrink: 0; color: rgba(255,255,255,0.5); }

/* Col 4 – Payment */
.footer-payment-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
  text-align: center;
}
.footer-cards {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 28px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.card-badge.visa   { padding: 3px 4px; }
.card-badge.mc     { padding: 4px; }
.card-badge.diners { padding: 4px; }

/* ── MOBILE FILTER TOGGLE ── */
.filter-mobile-bar { display: none; padding: 12px 16px 0; margin-bottom: 20px; }
.filter-mobile-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8f6f5;
  border: 1.5px solid #d0ccc6;
  border-radius: 14px;
  padding: 12px 18px;
  font-family: 'Assistant', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  justify-content: space-between;
}
.filter-mobile-toggle span { flex: 1; text-align: right; }
.filter-chevron { transition: transform 0.25s; flex-shrink: 0; }
.filter-mobile-toggle.open .filter-chevron { transform: rotate(180deg); }

/* ── HAMBURGER BUTTON ── */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  z-index: 110;
}
.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
}
/* X state */
.hamburger-btn.open .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.open .hamburger-line:nth-child(2) { opacity: 0; width: 0; }
.hamburger-btn.open .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV DRAWER ── */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  width: 100%;
  background: #f8f1e9;
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
  z-index: 200;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.mobile-nav.open {
  max-height: 500px;
}
.mobile-nav ul {
  list-style: none;
  padding: 8px 0 16px;
  margin: 0;
}
.mobile-nav ul li a {
  display: block;
  padding: 13px 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  text-align: right;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav ul li:last-child a { border-bottom: none; }
.mobile-nav ul li a:hover,
.mobile-nav ul li a.active { background: #ede8e0; color: var(--gold-dark); }

/* Overlay — sits below header (z-index 490 < header 500) */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 490;
}
.mobile-nav-overlay.open { display: block; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

/* ── Tablet: 1024px ── */
@media (max-width: 1024px) {
  .header-inner { padding: 0 20px; }
  .main-nav ul { gap: 18px; }
  .products-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .products-grid.row-3 { grid-template-columns: repeat(3, 1fr); max-width: 100%; }
  .footer-main-inner { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer-col { border-left: none; padding: 0 16px; }
  .footer-payment-sub { text-align: right; }
  .footer-socials { justify-content: flex-start; }
  .footer-copy { text-align: right; }
}

/* ── Tablet: 900px ── */
@media (max-width: 900px) {
  /* Header */
  .header-inner { height: 64px; padding: 0 16px; }
  .logo-img { height: 72px; margin-top: 20px; }
  .main-nav ul { gap: 14px; }
  .main-nav ul li a { font-size: 13px; }

  /* Hero (shop) */
  .hero { min-height: 300px; padding: 32px 20px; }
  .hero h1 { font-size: 24px; }
  .hero h2 { font-size: 42px; }
  .hero p { font-size: 18px; }

  /* Products */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .products-grid.row-3 { grid-template-columns: repeat(2, 1fr); max-width: 100%; }

  /* Filter */
  .filter-section { flex-wrap: wrap; gap: 4px; padding: 6px; border-radius: 16px; }
  .filter-btn { flex: 1 1 auto; padding: 9px 14px; font-size: 13px; }

  /* Features strip */
  .features-inner { flex-wrap: wrap; padding: 16px; gap: 8px; border-radius: 20px; }
  .feature-item { flex: 1 1 45%; }
  .feature-divider { display: none; }

  /* Footer WA bar */
  .footer-wa-inner { flex-wrap: wrap; gap: 12px; justify-content: center; }
  .footer-wa-title { font-size: 18px; }
  .footer-wa-btn { margin-right: 0; }
}

/* ── Mobile filter dropdown ── */
@media (max-width: 768px) {
  .filter-mobile-bar { display: block; }
  .filter-section {
    display: none;
    flex-direction: column;
    gap: 4px;
    margin: 8px 16px 0;
    padding: 8px;
    border-radius: 14px;
    max-width: 100%;
  }
  .filter-section.open { display: flex !important; }
  .filter-btn { text-align: center; border-radius: 10px; padding: 11px 16px; }
}

/* ── Mobile: 768px ── */
@media (max-width: 768px) {
  /* Header — hamburger RIGHT, logo CENTER, actions LEFT */
  .header-inner { height: 60px; padding: 0 14px; position: relative; }
  .main-nav { display: none; }
  .logo-img { height: 60px; margin-top: 10px; }
  .hamburger-btn { display: flex; }
  .mobile-nav { display: block; }
  /* Center the logo absolutely */
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Announcement bar */
  .announce-inner { flex-wrap: wrap; gap: 6px; justify-content: center; text-align: center; }
  .announce-text { font-size: 12px; white-space: normal; text-align: center; }
  .announce-timer { font-size: 13px; }

  /* Hero (shop) */
  .hero { min-height: 240px; padding: 28px 16px; }
  .hero h1 { font-size: 20px; }
  .hero h2 { font-size: 34px; }
  .hero p { font-size: 16px; }

  /* Products */
  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .products-grid.row-3 { grid-template-columns: 1fr 1fr; }
  .product-img-wrap { height: 200px; }
  .price-current { font-size: 22px; }
  .btn-add { font-size: 14px; padding: 11px 16px; }

  /* Filter */
  .filter-section { max-width: 100%; }
  .filter-btn { font-size: 12px; padding: 8px 10px; }

  /* Features strip */
  .feature-item { flex: 1 1 100%; border-left: none; }

  /* Footer */
  .footer-main-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-col { padding: 0 12px; }
  .footer-wa-title { font-size: 16px; }
}

/* ── Small Mobile: 480px ── */
@media (max-width: 480px) {
  /* Header */
  .header-inner { height: 56px; padding: 0 12px; }
  .logo-img { height: 50px; margin-top: 6px; }
  .header-actions { gap: 4px; }
  .header-btn { width: 32px; height: 32px; }

  /* Hero (shop) */
  .hero { padding: 20px 12px; }
  .hero h1 { font-size: 17px; }
  .hero h2 { font-size: 28px; }
  .hero p { font-size: 14px; }
  .hero-divider .line { width: 80px; }

  /* Products */
  .products-grid { grid-template-columns: 1fr; gap: 14px; }
  .products-grid.row-3 { grid-template-columns: 1fr; }
  .products-section { padding: 0 12px; }
  .product-img-wrap { height: 220px; }

  /* Filter */
  .filter-btn { width: 100%; }

  /* Footer */
  .footer-col--right .footer-payment-sub { text-align: right; }
  .card-badge { width: 40px; }
  .footer-col-title { margin-bottom: 4px; }
  .footer-socials { justify-content: flex-start; }

  /* 2-col grid: all cols side by side in pairs */
  .footer-main-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 12px;
  }
  /* Row 1: Col 2 (links) right | Col 3 (contact) left */
  .footer-main-inner .footer-col:nth-child(2) { order: 1; }
  .footer-main-inner .footer-col:nth-child(3) { order: 2; }
  /* Row 2: Col 4 (payment) right | Col 1 (brand) left */
  .footer-main-inner .footer-col:nth-child(4) { order: 3; }
  .footer-main-inner .footer-col:nth-child(1) { order: 4; text-align: right; }
  .footer-copy { text-align: right; }
  .footer-col { border-left: none; padding: 0 8px; }
  .footer-wa-inner { flex-direction: column; align-items: center; text-align: center; }
  .wa-circle { display: none; }
  .footer-wa-text { align-items: center; }
  .footer-wa-btn { width: 100%; justify-content: center; margin-right: 0; }
  .footer-wa-title { white-space: normal; }
}
