/*
Theme Name: Sooqist
Theme URI: https://sooqist.ae
Author: Sooqist Store
Author URI: https://sooqist.ae
Description: A modern feminine WooCommerce theme for women's accessories and home goods — built for dropshipping stores in the UAE.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sooqist
Tags: e-commerce, woocommerce, rtl-language, feminine, dropshipping, arabic, uae
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --rose:        #C8547A;
  --rose-light:  #F5D0E0;
  --rose-pale:   #FDF0F5;
  --rose-dark:   #8B2252;
  --gold:        #D4A853;
  --gold-light:  #F5E6C8;
  --cream:       #FFF8F3;
  --dark:        #2D1B2E;
  --gray:        #6B5B6E;
  --border:      #EDD5E5;
  --white:       #FFFFFF;
  --wa-green:    #25D366;
  --wa-dark:     #128C7E;
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-full: 999px;
  --shadow-sm:   0 2px 8px rgba(200,84,122,0.08);
  --shadow-md:   0 8px 24px rgba(200,84,122,0.14);
  --shadow-lg:   0 16px 40px rgba(200,84,122,0.20);
  --font-main:   'Tajawal', sans-serif;
  --font-serif:  'Playfair Display', serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--cream);
  color: var(--dark);
  direction: rtl;
  line-height: 1.7;
  font-size: 15px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-main); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--dark);
  line-height: 1.25;
}

h1 { font-size: clamp(28px, 5vw, 48px); }
h2 { font-size: clamp(22px, 3.5vw, 32px); }
h3 { font-size: clamp(18px, 2.5vw, 24px); }
h4 { font-size: 18px; }

.section-title { color: var(--dark); font-weight: 700; }
.section-title span { color: var(--rose); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 60px 0; }
.section--bg { background: var(--rose-pale); }
.section--dark { background: var(--dark); }
.section--gold { background: var(--gold-light); }

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-main);
  border: 2px solid transparent;
  transition: all 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(200,84,122,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,84,122,0.45);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--rose);
  border-color: var(--rose);
}
.btn-outline:hover {
  background: var(--rose-pale);
}

.btn-white {
  background: var(--white);
  color: var(--rose-dark);
}
.btn-white:hover {
  background: var(--gold-light);
}

.btn-wa {
  background: linear-gradient(135deg, var(--wa-green), var(--wa-dark));
  color: var(--white);
}
.btn-wa:hover { opacity: 0.9; }

.see-all {
  color: var(--rose);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.see-all:hover { gap: 8px; }

/* ============================================================
   TOP BAR
   ============================================================ */
#topbar {
  background: var(--rose-dark);
  color: var(--white);
  text-align: center;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.3px;
}
#topbar a { color: var(--gold-light); text-decoration: underline; }

/* ============================================================
   HEADER
   ============================================================ */
#masthead {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.logo-wordmark { line-height: 1.1; }
.logo-wordmark .brand-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--rose-dark);
  letter-spacing: 1px;
  display: block;
}
.logo-wordmark .brand-tagline {
  font-size: 9px;
  color: var(--gray);
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
}

/* Primary Nav */
.primary-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.primary-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.primary-nav a:hover,
.primary-nav a.current-menu-item {
  color: var(--rose);
  border-bottom-color: var(--rose);
}

/* Header Icons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-icon-btn {
  background: none;
  border: none;
  color: #1a1a1a;
  font-size: 22px;
  line-height: 1;
  padding: 4px;
  position: relative;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.header-icon-btn:hover { color: var(--rose); }

.cart-count {
  position: absolute;
  top: -5px;
  right: -7px;
  background: var(--rose);
  color: var(--white);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: #1a1a1a;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  background: linear-gradient(135deg, var(--rose-pale) 0%, #FDE8F0 55%, var(--gold-light) 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,84,122,0.1), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -80px; right: 15%;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(212,168,83,0.12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.hero-content { flex: 1; }

.hero-badge {
  display: inline-block;
  background: rgba(200,84,122,0.12);
  color: var(--rose-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--rose-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 440px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual { flex: 0 0 280px; }
.hero-product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
}
.hero-product-card .discount-badge {
  position: absolute;
  top: -12px; right: -12px;
  background: var(--rose);
  color: var(--white);
  border-radius: 50%;
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  flex-direction: column;
  line-height: 1.15;
}
.hero-product-img {
  width: 100px; height: 100px;
  background: linear-gradient(135deg, var(--rose-light), var(--rose-pale));
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
}
.hero-product-name { font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.hero-stars { color: var(--gold); font-size: 14px; margin-bottom: 10px; }
.hero-price-old {
  color: var(--gray);
  text-decoration: line-through;
  font-size: 13px;
  margin-left: 8px;
}
.hero-price { color: var(--rose); font-size: 20px; font-weight: 900; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}
.stat-item {
  text-align: center;
  padding: 22px 16px;
  border-left: 1px solid var(--border);
}
.stat-item:first-child { border-left: none; }
.stat-number {
  font-size: 26px;
  font-weight: 900;
  color: var(--rose-dark);
  display: block;
}
.stat-label {
  font-size: 12px;
  color: var(--gray);
  margin-top: 3px;
  display: block;
}

/* ============================================================
   CATEGORY GRID
   ============================================================ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.category-card {
  background: var(--rose-pale);
  border-radius: var(--radius-md);
  padding: 22px 12px;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
}
.category-card:hover,
.category-card.active {
  background: var(--white);
  border-color: var(--rose);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.category-icon { font-size: 32px; display: block; margin-bottom: 10px; }
.category-name { font-size: 13px; font-weight: 700; color: var(--dark); display: block; }
.category-count { font-size: 11px; color: var(--gray); margin-top: 3px; display: block; }

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* WooCommerce product card overrides */
.woocommerce ul.products li.product,
.product-card {
  background: var(--white) !important;
  border-radius: var(--radius-md) !important;
  border: 1px solid var(--border) !important;
  overflow: hidden !important;
  transition: all 0.28s ease !important;
  position: relative !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.woocommerce ul.products li.product:hover,
.product-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--shadow-lg) !important;
}

.product-thumb {
  height: 180px;
  background: linear-gradient(135deg, #FDF0F5, #FDE8F0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  position: relative;
  overflow: hidden;
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-badge {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--rose);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}
.product-badge.badge-new { background: var(--gold); color: var(--dark); }
.product-badge.badge-sale { background: var(--rose); }

.product-wishlist-btn {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.2s;
}
.product-card:hover .product-wishlist-btn { opacity: 1; }

.product-body { padding: 14px 16px; }
.product-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-cat { font-size: 11px; color: var(--gray); margin-bottom: 10px; }
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price { font-size: 17px; font-weight: 900; color: var(--rose); }
.product-price-old {
  font-size: 12px;
  color: var(--gray);
  text-decoration: line-through;
  margin-left: 6px;
}
.product-rating { font-size: 12px; color: var(--gray); }
.product-rating .star { color: var(--gold); }

/* WooCommerce Add to Cart */
.woocommerce ul.products li.product .button,
.btn-add-cart {
  width: 100% !important;
  margin-top: 12px !important;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark)) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: var(--radius-full) !important;
  padding: 9px 16px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  font-family: var(--font-main) !important;
  transition: opacity 0.2s !important;
  text-align: center !important;
}
.woocommerce ul.products li.product .button:hover,
.btn-add-cart:hover { opacity: 0.88 !important; }

/* ============================================================
   FLASH SALE BANNER
   ============================================================ */
.flash-banner {
  background: linear-gradient(135deg, var(--rose-dark), #A0185A);
  color: var(--white);
  padding: 48px 20px;
}
.flash-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.flash-text h2 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 8px;
}
.flash-text p { font-size: 14px; opacity: 0.85; }
.flash-countdown { display: flex; gap: 16px; align-items: center; }
.countdown-box {
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  text-align: center;
  min-width: 72px;
}
.countdown-num {
  font-size: 30px;
  font-weight: 900;
  display: block;
  line-height: 1;
}
.countdown-label { font-size: 10px; opacity: 0.75; margin-top: 4px; display: block; }
.countdown-sep { font-size: 28px; font-weight: 900; opacity: 0.6; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--rose-pale);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border);
}
.testi-stars { color: var(--gold); font-size: 15px; margin-bottom: 12px; }
.testi-text {
  font-size: 13.5px;
  color: var(--dark);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 16px;
}
.testi-user { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 700; color: var(--dark); }
.testi-city { font-size: 11px; color: var(--gray); }

/* ============================================================
   TRUST BADGES
   ============================================================ */
.trust-bar {
  background: var(--gold-light);
  padding: 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}
.trust-item {
  text-align: center;
  padding: 28px 16px;
  border-left: 1px solid rgba(212,168,83,0.3);
}
.trust-item:first-child { border-left: none; }
.trust-icon { font-size: 30px; color: var(--rose-dark); margin-bottom: 10px; }
.trust-title { font-size: 14px; font-weight: 700; color: var(--dark); }
.trust-desc { font-size: 12px; color: var(--gray); margin-top: 4px; }

/* ============================================================
   WHATSAPP NEWSLETTER
   ============================================================ */
.wa-section {
  background: linear-gradient(135deg, var(--rose-pale), var(--gold-light));
  padding: 60px 20px;
  text-align: center;
}
.wa-section h2 {
  font-family: var(--font-serif);
  color: var(--rose-dark);
  margin-bottom: 10px;
}
.wa-section p { color: var(--gray); font-size: 14px; margin-bottom: 28px; }
.wa-form-wrap {
  display: flex;
  max-width: 460px;
  margin: 0 auto;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 1.5px solid var(--border);
  background: var(--white);
}
.wa-prefix {
  padding: 13px 14px;
  font-size: 13px;
  color: var(--dark);
  background: var(--white);
  border-left: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}
.wa-input {
  flex: 1;
  padding: 13px 16px;
  border: none;
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--dark);
  outline: none;
  background: transparent;
  min-width: 0;
}
.wa-submit {
  background: linear-gradient(135deg, var(--wa-green), var(--wa-dark));
  color: var(--white);
  border: none;
  padding: 13px 22px;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: opacity 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.wa-submit:hover { opacity: 0.9; }
.wa-note {
  font-size: 12px;
  color: var(--gray);
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* ============================================================
   FOOTER
   ============================================================ */
#colophon {
  background: var(--dark);
  color: #E8D5E8;
  padding: 56px 20px 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 36px;
}
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: #F5E0F0;
  letter-spacing: 1px;
}
.footer-desc {
  font-size: 13px;
  color: #BBA0BB;
  line-height: 1.9;
  margin-top: 14px;
  max-width: 240px;
}
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(200,84,122,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F5C5D5;
  font-size: 18px;
  transition: background 0.2s;
}
.social-icon:hover { background: var(--rose); }

.footer-col h4 {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  color: #F5E0F0;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(200,84,122,0.3);
}
.footer-col li {
  font-size: 13px;
  color: #BBA0BB;
  margin-bottom: 9px;
  transition: color 0.2s;
}
.footer-col li:hover, .footer-col a:hover { color: var(--rose-light); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #886888;
}
.payment-badges { display: flex; gap: 8px; }
.payment-badge {
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  color: #E8D5E8;
}

/* ============================================================
   WOOCOMMERCE OVERRIDES
   ============================================================ */
.woocommerce .price { color: var(--rose) !important; font-weight: 900 !important; }
.woocommerce .price del { color: var(--gray) !important; font-weight: 400 !important; }
.woocommerce .star-rating span::before { color: var(--gold) !important; }
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info {
  border-top-color: var(--rose) !important;
}
.woocommerce .woocommerce-message::before { color: var(--rose) !important; }
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--rose) !important;
  color: var(--white) !important;
  border-radius: var(--radius-full) !important;
  font-family: var(--font-main) !important;
  font-weight: 700 !important;
  border: none !important;
  padding: 10px 22px !important;
  transition: opacity 0.2s !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover { opacity: 0.88 !important; background: var(--rose) !important; }
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark)) !important;
}

/* Single Product */
.woocommerce div.product .product_title {
  font-family: var(--font-serif) !important;
  color: var(--dark) !important;
}
.woocommerce div.product p.price { font-size: 26px !important; }
.woocommerce div.product form.cart .single_add_to_cart_button {
  border-radius: var(--radius-full) !important;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark)) !important;
  font-size: 15px !important;
  padding: 14px 36px !important;
}

/* Cart & Checkout */
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce .checkout #place_order {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark)) !important;
  border-radius: var(--radius-full) !important;
  font-size: 16px !important;
  padding: 14px 32px !important;
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .category-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 768px) {
  .primary-nav { display: none; }
  .menu-toggle { display: block; }
  .hero-inner { flex-direction: column; }
  .hero-visual { display: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .flash-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .wa-form-wrap { flex-direction: column; border-radius: var(--radius-md); }
  .wa-prefix, .wa-input, .wa-submit { border-radius: 0; border: none; }
  .wa-prefix { border-bottom: 1px solid var(--border); }
  .wa-submit { width: 100%; justify-content: center; padding: 14px; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 28px; }
  .section { padding: 40px 0; }
}
