/* ============================================================
   EcoMarec Theme - Main CSS
   Brand: Primary #B91C1C | Secondary #991B1B | Accent #EF4444
   ============================================================ */

:root {
  --primary: #B91C1C;
  --primary-dark: #991B1B;
  --accent: #EF4444;
  --text: #111827;
  --text-light: #6B7280;
  --bg: #FFFFFF;
  --bg-gray: #F9FAFB;
  --bg-dark: #1F2937;
  --border: #E5E7EB;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 2px 15px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --transition: 0.25s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; font-size: 16px; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }

.container { max-width: 1300px; margin: 0 auto; padding: 0 20px; }

/* ---- BUTTONS ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 28px; border-radius: var(--radius); font-weight: 600; font-size: 15px; cursor: pointer; transition: all var(--transition); border: 2px solid transparent; text-decoration: none; gap: 8px; }
.btn-primary { background: var(--primary); color: white; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: white; transform: translateY(-1px); box-shadow: 0 4px 15px rgba(185,28,28,0.3); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }
.btn-outline-white { background: transparent; color: white; border-color: white; }
.btn-outline-white:hover { background: white; color: var(--primary); }
.btn-white { background: white; color: var(--primary); border-color: white; }
.btn-white:hover { background: var(--primary); color: white; border-color: var(--primary); }
.btn-white-red { background: white; color: var(--primary); font-weight: 700; border-color: white; }
.btn-white-red:hover { background: var(--primary); color: white; border-color: var(--primary); }
.btn-lg { padding: 15px 35px; font-size: 16px; border-radius: 50px; }

/* ---- TOPBAR ---- */
.topbar { background: var(--text); color: #fff; font-size: 13px; padding: 8px 0; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; }
.topbar-left { display: flex; gap: 20px; }
.topbar-right { display: flex; gap: 16px; }
.topbar-right a { color: #ccc; }
.topbar-right a:hover { color: white; }

/* ---- HEADER ---- */
.site-header { background: white; box-shadow: 0 2px 10px rgba(0,0,0,0.06); position: relative; z-index: 1000; }
.sticky-header { position: sticky; top: 0; }
.header-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; padding: 18px 20px; }
.logo-text { display: flex; align-items: center; gap: 6px; font-size: 24px; font-weight: 800; color: var(--text); }
.logo-text:hover { color: var(--primary); }
.logo-icon { color: var(--primary); font-size: 20px; }
.logo-brand { color: var(--text); }
.logo-brand strong { color: var(--primary); }
.logo-text-white .logo-brand { color: white; }
.logo-text-white .logo-brand strong { color: #fca5a5; }

/* Search */
.header-search { flex: 1; }
.search-form { display: flex; border: 2px solid var(--border); border-radius: 50px; overflow: hidden; transition: border-color var(--transition); }
.search-form:focus-within { border-color: var(--primary); }
.search-cat { border: none; border-right: 1px solid var(--border); padding: 10px 14px; background: var(--bg-gray); color: var(--text); font-size: 14px; outline: none; cursor: pointer; }
.search-form input[type=search] { flex: 1; border: none; padding: 10px 16px; font-size: 15px; outline: none; background: white; }
.search-btn { background: var(--primary); color: white; border: none; padding: 10px 20px; cursor: pointer; transition: background var(--transition); }
.search-btn:hover { background: var(--primary-dark); }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-action-btn { display: flex; flex-direction: column; align-items: center; gap: 3px; color: var(--text); font-size: 11px; padding: 6px 10px; border-radius: var(--radius); transition: all var(--transition); position: relative; text-decoration: none; }
.header-action-btn:hover { color: var(--primary); background: var(--bg-gray); }
.cart-btn { position: relative; }
.cart-count { position: absolute; top: -4px; right: -4px; background: var(--primary); color: white; border-radius: 50%; width: 20px; height: 20px; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.action-label { font-size: 11px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); transition: all 0.3s; border-radius: 2px; }

/* Navigation */
.main-nav { background: var(--primary); }
.nav-menu { display: flex; list-style: none; }
.nav-menu > li > a { display: block; color: white; padding: 13px 18px; font-weight: 500; font-size: 14px; transition: background var(--transition); white-space: nowrap; }
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a { background: rgba(0,0,0,0.2); color: white; }
.nav-menu li { position: relative; }

/* ---- HERO SECTION ---- */
.hero-section { background: linear-gradient(135deg, #f8f0f0 0%, #fff5f5 50%, #f0f9f0 100%); min-height: 600px; display: flex; align-items: center; overflow: hidden; position: relative; }
.hero-bg { width: 100%; }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 80px 20px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--primary); color: white; padding: 6px 16px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 20px; }
.badge-dot { width: 8px; height: 8px; background: white; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }
.hero-title { font-size: clamp(32px, 4vw, 52px); font-weight: 800; line-height: 1.15; color: var(--text); margin-bottom: 16px; }
.hero-subtitle { font-size: 18px; color: var(--text-light); margin-bottom: 24px; }
.hero-bullets { margin-bottom: 32px; }
.hero-bullets li { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 15px; font-weight: 500; }
.bullet-icon { color: var(--primary); font-weight: 700; font-size: 18px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust { display: flex; gap: 24px; font-size: 14px; color: var(--text-light); }
.hero-trust span strong { color: var(--primary); }
.hero-image { position: relative; }
.hero-animal-grid { display: grid; grid-template-columns: 1fr auto; gap: 12px; }
.hero-animal-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-animal-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-horse { height: 420px; }
.hero-animal-col { display: flex; flex-direction: column; gap: 12px; }
.hero-animal-col .hero-animal-card { width: 180px; height: 200px; }

/* ---- BENEFITS ---- */
.benefits-section { padding: 60px 0; background: white; }
.benefits-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.benefit-card { text-align: center; padding: 36px 24px; background: var(--bg-gray); border-radius: var(--radius-lg); transition: all var(--transition); border: 1px solid transparent; }
.benefit-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.benefit-icon { width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.benefit-icon-red { background: #FEE2E2; }
.benefit-icon-green { background: #D1FAE5; }
.benefit-icon-blue { background: #DBEAFE; }
.benefit-icon-orange { background: #FEF3C7; }
.benefit-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.benefit-card p { color: var(--text-light); font-size: 14px; line-height: 1.6; }

/* ---- CATEGORIES ---- */
.categories-section { padding: 80px 0; background: var(--bg-gray); }
.section-header { text-align: center; margin-bottom: 48px; position: relative; }
.section-title { font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: var(--text); margin-bottom: 12px; }
.section-subtitle { color: var(--text-light); font-size: 16px; max-width: 500px; margin: 0 auto 16px; }
.view-all-btn { display: inline-flex; align-items: center; color: var(--primary); font-weight: 600; font-size: 14px; }
.view-all-btn:hover { color: var(--primary-dark); text-decoration: underline; }
.section-label { color: var(--primary); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.categories-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 16px; }
.category-card { display: block; border-radius: var(--radius-lg); overflow: hidden; background: white; box-shadow: var(--shadow); transition: all var(--transition); }
.category-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.category-img-wrap { position: relative; height: 160px; overflow: hidden; }
.category-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.category-card:hover .category-img-wrap img { transform: scale(1.08); }
.category-overlay { position: absolute; inset: 0; }
.category-info { padding: 16px; text-align: center; }
.category-emoji { font-size: 24px; display: block; margin-bottom: 6px; }
.category-name { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.category-arrow { font-size: 12px; color: var(--primary); font-weight: 600; }

/* ---- PRODUCTS SECTION ---- */
.products-section { padding: 80px 0; background: white; }
.products-grid { display: grid; gap: 20px; }
.products-grid-4 { grid-template-columns: repeat(4,1fr); }
.products-grid-3 { grid-template-columns: repeat(3,1fr); }

/* Product Card */
.product-card { background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: all var(--transition); border: 1px solid var(--border); }
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.product-img-wrap { position: relative; overflow: hidden; aspect-ratio: 1; background: var(--bg-gray); }
.product-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-img { transform: scale(1.06); }
.sale-badge { position: absolute; top: 12px; left: 12px; background: var(--primary); color: white; font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 50px; z-index: 1; }
.product-actions { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(185,28,28,0.95); padding: 14px; transform: translateY(100%); transition: transform 0.3s ease; display: flex; justify-content: center; }
.product-card:hover .product-actions { transform: translateY(0); }
.add-to-cart-btn { background: white; color: var(--primary); border: none; padding: 10px 20px; border-radius: 50px; font-weight: 700; font-size: 14px; cursor: pointer; transition: all var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.add-to-cart-btn:hover { background: var(--primary); color: white; }
.product-info { padding: 16px; }
.product-cats { font-size: 11px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.product-name { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 8px; line-height: 1.4; }
.product-name a { color: var(--text); }
.product-name a:hover { color: var(--primary); }
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.product-price { font-size: 18px; font-weight: 700; color: var(--primary); }
.product-price ins { text-decoration: none; }
.product-price del { color: var(--text-light); font-size: 14px; font-weight: 400; }
.woocommerce-loop-product__title { font-size: 15px !important; font-weight: 600 !important; }

/* ---- PROMO BANNER ---- */
.promo-banner { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, #7f1d1d 100%); padding: 80px 0; overflow: hidden; }
.promo-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.promo-logo { font-size: 28px; font-weight: 900; color: white; display: block; margin-bottom: 12px; }
.promo-title { font-size: clamp(32px, 4vw, 56px); font-weight: 900; color: white; line-height: 1.1; margin-bottom: 16px; }
.promo-subtitle { color: rgba(255,255,255,0.85); font-size: 16px; margin-bottom: 24px; line-height: 1.7; }
.promo-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 36px; }
.promo-features span { color: white; font-weight: 500; display: flex; align-items: center; gap: 8px; }
.promo-image { position: relative; display: flex; align-items: center; justify-content: center; }
.promo-product-img { border-radius: var(--radius-lg); box-shadow: 0 20px 60px rgba(0,0,0,0.3); max-height: 400px; width: 100%; object-fit: cover; }
.promo-checkmark { position: absolute; top: -20px; right: 20px; width: 80px; height: 80px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 3px solid rgba(255,255,255,0.5); }
.promo-cta { margin-top: 8px; }

/* ---- ABOUT SECTION ---- */
.about-section { padding: 100px 0; background: white; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image { position: relative; }
.about-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; max-height: 500px; }
.about-badge-floating { position: absolute; bottom: -20px; right: -20px; background: var(--primary); color: white; padding: 16px 24px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); text-align: center; }
.about-badge-floating span { font-size: 18px; display: block; margin-bottom: 4px; }
.about-content { }
.about-features { margin: 20px 0 36px; display: flex; flex-direction: column; gap: 12px; }
.about-features li { display: flex; align-items: center; gap: 12px; font-weight: 500; font-size: 16px; }

/* ---- REVIEWS ---- */
.reviews-section { padding: 80px 0; background: var(--bg-gray); }
.overall-rating { display: flex; align-items: center; gap: 12px; justify-content: center; margin-top: 8px; }
.overall-rating .stars { color: #F59E0B; font-size: 24px; }
.reviews-tabs { display: flex; gap: 8px; margin-bottom: 32px; border-bottom: 2px solid var(--border); padding-bottom: 0; }
.review-tab { padding: 10px 20px; background: none; border: none; cursor: pointer; font-weight: 500; color: var(--text-light); border-bottom: 3px solid transparent; margin-bottom: -2px; transition: all var(--transition); }
.review-tab.active, .review-tab:hover { color: var(--primary); border-bottom-color: var(--primary); }
.reviews-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 24px; }
.review-card { background: white; border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.review-header { display: flex; gap: 16px; margin-bottom: 12px; }
.reviewer-avatar img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.reviewer-name { font-weight: 700; font-size: 15px; margin-bottom: 2px; }
.reviewer-label { font-size: 12px; color: var(--text-light); margin-bottom: 4px; }
.review-stars { color: #F59E0B; font-size: 16px; margin-bottom: 4px; }
.review-title { font-weight: 700; font-size: 15px; color: var(--text); }
.review-date { font-size: 13px; color: var(--text-light); margin-bottom: 12px; }
.review-body { color: var(--text); line-height: 1.7; font-size: 15px; margin-bottom: 16px; }
.review-see-more { color: var(--primary); font-weight: 600; }
.review-images { display: flex; gap: 8px; margin-bottom: 16px; }
.review-img { width: 80px; height: 80px; border-radius: var(--radius); object-fit: cover; }
.review-actions { display: flex; gap: 12px; }
.helpful-btn, .share-btn { background: none; border: 1px solid var(--border); padding: 6px 14px; border-radius: 50px; cursor: pointer; font-size: 14px; display: flex; align-items: center; gap: 6px; transition: all var(--transition); }
.helpful-btn:hover, .share-btn:hover { border-color: var(--primary); color: var(--primary); }

/* ---- TRUST BADGES ---- */
.trust-section { padding: 60px 0; background: white; border-top: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.trust-badge { padding: 36px 20px; }
.trust-icon { margin: 0 auto 16px; }
.trust-badge h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.trust-badge p { color: var(--text-light); font-size: 14px; }

/* ---- NEWSLETTER ---- */
.newsletter-section { background: var(--primary); padding: 60px 0; }
.newsletter-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.newsletter-text h3 { font-size: 28px; font-weight: 800; color: white; margin-bottom: 8px; }
.newsletter-text p { color: rgba(255,255,255,0.85); }
.newsletter-input-group { display: flex; gap: 12px; margin-bottom: 12px; }
.newsletter-form input[type=email] { flex: 1; padding: 14px 20px; border: 2px solid rgba(255,255,255,0.3); border-radius: 50px; background: rgba(255,255,255,0.1); color: white; font-size: 15px; outline: none; }
.newsletter-form input[type=email]::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form input[type=email]:focus { border-color: white; background: rgba(255,255,255,0.2); }
.newsletter-disclaimer { color: rgba(255,255,255,0.6); font-size: 13px; }

/* ---- FOOTER ---- */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,0.8); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-about { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.8; margin: 16px 0 24px; }
.footer-social { display: flex; gap: 12px; }
.social-link { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: all var(--transition); }
.social-link:hover { background: var(--primary); color: white; }
.footer-heading { color: white; font-size: 16px; font-weight: 700; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 14px; transition: color var(--transition); }
.footer-links a:hover { color: white; }
.footer-contact { font-size: 14px; line-height: 2; }
.footer-badges { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.footer-badge { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.badge-icon { font-size: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copyright { color: rgba(255,255,255,0.5); font-size: 13px; }
.footer-bottom-nav { display: flex; gap: 20px; }
.footer-bottom-nav a { color: rgba(255,255,255,0.5); font-size: 13px; }
.footer-bottom-nav a:hover { color: white; }

/* ---- SHOP/WOOCOMMERCE ---- */
.ecomarec-woo-wrapper, .woo-main { padding: 60px 0; }
.woocommerce ul.products { display: grid; grid-template-columns: repeat(4,1fr) !important; gap: 20px; }
.woocommerce ul.products li.product { margin: 0 !important; float: none !important; width: 100% !important; }
.woocommerce-loop-product__title { font-family: var(--font) !important; }
.woocommerce .price { color: var(--primary) !important; font-weight: 700 !important; }
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button { background: var(--primary) !important; color: white !important; border-radius: 50px !important; font-weight: 600 !important; padding: 10px 20px !important; }
.woocommerce a.button:hover, .woocommerce button.button:hover { background: var(--primary-dark) !important; }
.woocommerce .woocommerce-message { border-top-color: var(--primary) !important; }
.woocommerce-breadcrumb { color: var(--text-light); font-size: 14px; margin-bottom: 24px; }

/* ---- MISC PAGES ---- */
.page-content, .single-content { max-width: 900px; margin: 0 auto; padding: 60px 20px; }
.page-header, .post-header { margin-bottom: 40px; padding-bottom: 24px; border-bottom: 2px solid var(--border); }
.page-title, .post-title { font-size: 36px; font-weight: 800; color: var(--text); }
.page-body, .post-body { font-size: 16px; line-height: 1.8; color: var(--text); }
.page-body p, .post-body p { margin-bottom: 20px; }
.page-body h2, .post-body h2 { font-size: 26px; font-weight: 700; margin: 32px 0 16px; }
.page-body h3, .post-body h3 { font-size: 20px; font-weight: 600; margin: 24px 0 12px; }
.posts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.post-card { background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.post-thumbnail img { width: 100%; height: 220px; object-fit: cover; }
.post-card .post-content { padding: 24px; }
.post-card .post-meta { color: var(--text-light); font-size: 13px; margin-bottom: 8px; }
.post-card .post-title { font-size: 20px; font-weight: 700; margin-bottom: 12px; line-height: 1.4; }
.post-card .post-excerpt { color: var(--text-light); font-size: 14px; margin-bottom: 20px; }
.error-404 { text-align: center; }
.error-code { font-size: 120px; font-weight: 900; color: var(--primary); line-height: 1; }
.sample-card { cursor: pointer; }
.text-center { text-align: center; }

/* ---- RESPONSIVE ---- */
@media(max-width:1200px) {
  .categories-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; }
}
@media(max-width:992px) {
  .header-inner { grid-template-columns: auto 1fr; }
  .header-search { display: none; }
  .hamburger { display: flex; }
  .main-nav { display: none; }
  .main-nav.active { display: block; }
  .nav-menu { flex-direction: column; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .benefits-grid { grid-template-columns: repeat(2,1fr); }
  .products-grid-4 { grid-template-columns: repeat(2,1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { display: none; }
  .promo-inner { grid-template-columns: 1fr; }
  .promo-image { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .woocommerce ul.products { grid-template-columns: repeat(2,1fr) !important; }
}
@media(max-width:600px) {
  .topbar { display: none; }
  .categories-grid { grid-template-columns: repeat(2,1fr); }
  .benefits-grid { grid-template-columns: 1fr; }
  .products-grid-4 { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .hero-cta { flex-direction: column; }
  .newsletter-input-group { flex-direction: column; }
  .posts-grid { grid-template-columns: 1fr; }
  .woocommerce ul.products { grid-template-columns: 1fr !important; }
}
