/* ── CurbsideCo Theme — Main Stylesheet ──────────────────────────────────── */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --blue:       #3B9BDB;
  --blue-dark:  #2176AE;
  --blue-light: #EBF5FC;
  --blue-mid:   #C5E3F5;
  --navy:       #1A2D40;
  --charcoal:   #2C3E50;
  --grey:       #6B7280;
  --light-grey: #F3F6F9;
  --border:     #E2E8F0;
  --white:      #FFFFFF;
  --green:      #16A34A;
  --orange:     #EA6C00;
  --red:        #DC2626;
  --radius:     8px;
  --shadow:     0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.12);
}
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: var(--charcoal); background: #fff; font-size: 15px; line-height: 1.6; }

/* ── Site Header ── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}
.header-top {
  background: var(--navy);
  text-align: center;
  padding: 6px 24px;
  font-size: 12.5px;
  color: #C5E3F5;
}
.header-top strong { color: #fff; }
.header-top a { color: inherit; }
.header-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo-area { display: flex; align-items: center; gap: 14px; text-decoration: none; flex-shrink: 0; }
.logo-badge {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  overflow: hidden;
}
.logo-badge svg { width: 40px; height: 40px; }
.logo-text { line-height: 1.2; }
.logo-text .brand { font-size: 22px; font-weight: 800; color: var(--blue); letter-spacing: -0.5px; }
.logo-text .sub { font-size: 10px; color: var(--grey); text-transform: uppercase; letter-spacing: 1px; }
.header-search { flex: 1; max-width: 420px; display: flex; border: 2px solid var(--border); border-radius: 6px; overflow: hidden; }
.header-search form { display: contents; }
.header-search input, .header-search [type="search"] {
  flex: 1; border: none; padding: 9px 14px;
  font-size: 14px; outline: none; color: var(--charcoal);
}
.header-search button { background: var(--blue); border: none; color: white; padding: 9px 16px; cursor: pointer; font-size: 14px; }
.header-actions { display: flex; align-items: center; gap: 20px; margin-left: auto; }
.header-actions a {
  text-decoration: none; color: var(--charcoal); font-size: 13px;
  display: flex; flex-direction: column; align-items: center; gap: 2px; cursor: pointer;
}
.header-actions a:hover { color: var(--blue); }
.header-actions .icon { font-size: 20px; }
.header-actions .label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.cart-count {
  background: var(--blue); color: white; border-radius: 10px;
  font-size: 10px; padding: 1px 5px; position: relative;
  top: -8px; right: -6px; margin-left: -10px; font-weight: 700;
}
.main-nav { background: var(--blue); padding: 0 24px; }
.main-nav ul { max-width: 1200px; margin: 0 auto; display: flex; list-style: none; }
.main-nav li a {
  display: block; color: rgba(255,255,255,0.88); text-decoration: none;
  padding: 11px 18px; font-size: 13.5px; font-weight: 500; transition: background 0.15s;
}
.main-nav li a:hover, .main-nav li a.active, .main-nav li a.current-menu-item { background: rgba(255,255,255,0.15); color: #fff; }
.main-nav li a.active { font-weight: 700; }

/* ── Breadcrumb ── */
.breadcrumb { background: var(--light-grey); border-bottom: 1px solid var(--border); padding: 9px 0; }
.breadcrumb .inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  font-size: 12.5px; color: var(--grey); display: flex; gap: 6px; align-items: center;
}
.breadcrumb a { color: var(--blue); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1E4060 50%, var(--blue-dark) 100%);
  color: white; padding: 70px 24px 80px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(59,155,219,0.12); pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; right: 200px; bottom: -100px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(59,155,219,0.08); pointer-events: none;
}
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(59,155,219,0.25); border: 1px solid rgba(59,155,219,0.5);
  color: #93D2F5; padding: 5px 14px; border-radius: 20px;
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px;
}
.hero h1 { font-size: 44px; font-weight: 800; line-height: 1.15; margin-bottom: 18px; letter-spacing: -1px; }
.hero h1 .highlight { color: var(--blue); }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 32px; line-height: 1.65; max-width: 480px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image-area { display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; }
.hero-photo-card { width: 100%; max-width: 380px; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.hero-photo-card img { width: 100%; height: 340px; object-fit: cover; object-position: center 30%; display: block; }
.hero-photo-caption { background: rgba(26,45,64,0.92); backdrop-filter: blur(8px); padding: 16px 20px; text-align: center; border-top: 2px solid var(--blue); }
.hero-photo-caption .product-name { font-size: 16px; font-weight: 700; color: white; margin-bottom: 3px; }
.hero-photo-caption .product-sub { font-size: 11.5px; color: rgba(255,255,255,0.55); margin-bottom: 10px; }
.hero-photo-caption .from-price { font-size: 22px; font-weight: 800; color: var(--blue); }
.hero-photo-caption .from-price span { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 400; }

/* ── Trust Strip ── */
.trust-strip { background: var(--blue); padding: 0; }
.trust-strip-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; align-items: center; gap: 12px; padding: 18px 24px; color: white; border-right: 1px solid rgba(255,255,255,0.2); }
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 26px; flex-shrink: 0; }
.trust-text .title { font-weight: 700; font-size: 13.5px; }
.trust-text .sub { font-size: 11.5px; color: rgba(255,255,255,0.72); }

/* ── Sections ── */
.section { padding: 60px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-eyebrow { font-size: 12px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px; }
.section-header h2 { font-size: 32px; font-weight: 800; color: var(--navy); letter-spacing: -0.5px; margin-bottom: 12px; }
.section-header p { color: var(--grey); font-size: 16px; max-width: 520px; margin: 0 auto; }
.bg-light { background: var(--light-grey); }

/* ── Product Cards ── */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card {
  border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s; background: white; cursor: pointer;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.product-card-image { height: 220px; background: var(--light-grey); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.product-card-image .badge {
  position: absolute; top: 12px; left: 12px; background: var(--blue); color: white;
  font-size: 10px; font-weight: 700; text-transform: uppercase; padding: 3px 10px; border-radius: 4px;
}
.product-card-image .badge.sa { background: var(--green); }
.product-card-image .badge.coming { background: var(--orange); }
.product-card-body { padding: 20px; }
.product-brand { font-size: 11px; color: var(--blue); font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 5px; }
.product-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px; line-height: 1.3; }
.product-desc { font-size: 13px; color: var(--grey); margin-bottom: 16px; line-height: 1.5; }
.product-price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px; }
.product-price { font-size: 22px; font-weight: 800; color: var(--navy); }
.product-price-unit { font-size: 12px; color: var(--grey); }

/* ── Buttons ── */
.btn-primary {
  background: var(--blue); color: white; padding: 14px 28px; border-radius: var(--radius);
  text-decoration: none; font-weight: 700; font-size: 15px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s, transform 0.1s; cursor: pointer; border: none;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-outline-white {
  background: transparent; color: white; padding: 14px 28px; border-radius: var(--radius);
  text-decoration: none; font-weight: 600; font-size: 15px;
  border: 2px solid rgba(255,255,255,0.4);
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s; cursor: pointer;
}
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.1); }
.btn-add {
  width: 100%; background: var(--blue); color: white; border: none;
  padding: 11px; border-radius: var(--radius); font-size: 14px; font-weight: 700;
  cursor: pointer; transition: background 0.2s; display: flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none;
}
.btn-add:hover { background: var(--blue-dark); }
.btn-add.outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-add.outline:hover { background: var(--blue-light); }
.btn-white {
  background: white; color: var(--blue-dark); padding: 14px 28px; border-radius: var(--radius);
  font-weight: 700; font-size: 15px; text-decoration: none; white-space: nowrap;
  display: inline-block; transition: transform 0.1s; cursor: pointer; border: none;
}
.btn-white:hover { transform: translateY(-1px); }

/* ── Features ── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card { background: var(--light-grey); border-radius: 12px; padding: 28px; border: 1px solid var(--border); }
.feature-icon { font-size: 36px; margin-bottom: 14px; }
.feature-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.feature-card p { font-size: 13.5px; color: var(--grey); line-height: 1.6; }

/* ── Stats ── */
.stats-section { background: var(--navy); padding: 52px 24px; }
.stats-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item { color: white; }
.stat-number { font-size: 42px; font-weight: 800; color: var(--blue); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }

/* ── CTA Banner ── */
.cta-banner { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); padding: 52px 24px; }
.cta-banner-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.cta-banner h2 { font-size: 28px; font-weight: 800; color: white; margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.75); font-size: 15px; }

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--light-grey); border-radius: 12px; padding: 24px; border: 1px solid var(--border); }
.stars { color: #F59E0B; font-size: 16px; margin-bottom: 12px; }
.testimonial-text { font-size: 14px; color: var(--charcoal); line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.author-name { font-size: 13px; font-weight: 700; color: var(--navy); }
.author-role { font-size: 11.5px; color: var(--grey); }

/* ── Footer ── */
.footer { background: var(--navy); color: rgba(255,255,255,0.65); padding: 52px 24px 24px; }
.footer-grid { max-width: 1200px; margin: 0 auto 40px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .brand-name { font-size: 22px; font-weight: 800; color: var(--blue); margin-bottom: 10px; }
.footer-brand p { font-size: 13px; line-height: 1.7; margin-bottom: 16px; }
.footer-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); padding: 5px 12px; border-radius: 4px; font-size: 11px; color: rgba(255,255,255,0.55); font-weight: 600; }
.footer h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 13.5px; transition: color 0.15s; }
.footer a:hover { color: var(--blue); }
.footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; gap: 16px; flex-wrap: wrap; }
.footer-bottom-links { display: flex; gap: 20px; }

/* ── Shop Layout ── */
.shop-layout { max-width: 1200px; margin: 0 auto; padding: 40px 24px; display: grid; grid-template-columns: 240px 1fr; gap: 32px; align-items: start; }
.shop-sidebar { position: sticky; top: 130px; }
.sidebar-widget { margin-bottom: 28px; }
.widget-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--grey); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.filter-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.filter-list a { display: flex; align-items: center; justify-content: space-between; padding: 7px 0; font-size: 13.5px; color: var(--charcoal); text-decoration: none; }
.filter-list a:hover, .filter-list a.active { color: var(--blue); font-weight: 600; }
.filter-list .count { font-size: 11px; color: var(--grey); background: var(--light-grey); padding: 1px 7px; border-radius: 10px; }
.price-guide { display: flex; flex-direction: column; gap: 6px; }
.price-tier { display: flex; align-items: center; justify-content: space-between; padding: 8px 10px; border-radius: 6px; font-size: 13px; border: 1px solid var(--border); }
.price-tier.popular { background: var(--blue-light); border-color: var(--blue-mid); }
.tier-label { color: var(--charcoal); }
.tier-price { font-weight: 700; color: var(--blue); }
.tier-badge { font-size: 10px; background: var(--orange); color: white; padding: 2px 6px; border-radius: 3px; font-weight: 700; }
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.shop-toolbar .woocommerce-result-count { font-size: 13px; color: var(--grey); }
.shop-toolbar select { border: 1px solid var(--border); padding: 8px 12px; border-radius: var(--radius); font-size: 13px; color: var(--charcoal); background: white; cursor: pointer; }
.shop-content .products-grid { grid-template-columns: repeat(2, 1fr); }

/* ── WooCommerce Pagination ── */
.woocommerce-pagination ul { display: flex; gap: 6px; list-style: none; justify-content: center; }
.woocommerce-pagination li a,
.woocommerce-pagination li span { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: var(--radius); border: 1px solid var(--border); font-size: 13px; color: var(--charcoal); text-decoration: none; transition: all 0.15s; }
.woocommerce-pagination li a:hover { border-color: var(--blue); color: var(--blue); }
.woocommerce-pagination li span.current { background: var(--blue); border-color: var(--blue); color: white; font-weight: 700; }

/* ── Product Page ── */
.product-layout .section-inner { max-width: 1200px; }
.product-main-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.product-gallery { position: sticky; top: 130px; }
.gallery-main { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; margin-bottom: 12px; background: var(--light-grey); }
.gallery-main img { width: 100%; height: 420px; object-fit: contain; display: block; }
.gallery-thumbs { display: flex; gap: 10px; }
.gallery-thumb { flex: 1; height: 80px; border: 2px solid transparent; border-radius: 8px; cursor: pointer; overflow: hidden; transition: border-color 0.15s; background: var(--light-grey); }
.gallery-thumb.active { border-color: var(--blue); }
.gallery-thumb:hover { border-color: var(--blue-mid); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info { padding-top: 4px; }
.product-title-large { font-size: 28px; font-weight: 800; color: var(--navy); line-height: 1.2; margin: 8px 0 12px; letter-spacing: -0.5px; }
.product-short-desc { font-size: 14px; color: var(--grey); line-height: 1.7; margin-bottom: 20px; }
.volume-price-display { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; padding: 16px; background: var(--light-grey); border-radius: 10px; border: 1px solid var(--border); }
.vol-price-row { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.vol-price-row.highlight { background: var(--blue-light); padding: 6px 10px; border-radius: 6px; margin: 0 -10px; }
.vol-qty { color: var(--grey); flex: 1; }
.vol-price-each { font-weight: 700; color: var(--navy); }
.vol-badge { font-size: 10px; background: var(--orange); color: white; padding: 2px 7px; border-radius: 3px; font-weight: 700; }
.pack-selector { margin-bottom: 22px; }
.pack-selector-label { font-size: 13px; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; }
.pack-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 12px; }
.pack-option { border: 2px solid var(--border); border-radius: 8px; padding: 12px 8px; text-align: center; cursor: pointer; transition: all 0.15s; }
.pack-option:hover { border-color: var(--blue); }
.pack-option.selected { border-color: var(--blue); background: var(--blue-light); }
.pack-option .pack-name { font-size: 11px; color: var(--grey); display: block; margin-bottom: 4px; }
.pack-option .pack-qty { font-size: 13px; font-weight: 700; color: var(--navy); display: block; }
.pack-option .pack-price { font-size: 14px; font-weight: 700; color: var(--blue); display: block; }
.pack-option .pack-per { font-size: 10px; color: var(--grey); }
.selected-pack-info { font-size: 13px; color: var(--grey); }
#selected-pack-label { font-weight: 600; color: var(--charcoal); }
#selected-pack-note { margin-left: 8px; color: var(--green); font-weight: 600; }
.product-trust { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.trust-badge { background: var(--light-grey); border: 1px solid var(--border); padding: 5px 12px; border-radius: 6px; font-size: 12px; color: var(--charcoal); font-weight: 500; }
.bulk-note { margin-top: 16px; padding: 14px 16px; background: var(--blue-light); border-radius: 8px; font-size: 13px; color: var(--charcoal); border: 1px solid var(--blue-mid); }
.bulk-note a { color: var(--blue); text-decoration: none; font-weight: 600; }

/* WooCommerce single product overrides */
.single-product .woocommerce-product-gallery { display: none; }
.single-product .entry-summary .cart { margin-top: 16px; }
.single-product .entry-summary .quantity { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.single-product .entry-summary .qty { border: 1px solid var(--border); padding: 10px 14px; border-radius: var(--radius); font-size: 15px; font-weight: 700; width: 80px; text-align: center; }
.single-product .entry-summary .single_add_to_cart_button { background: var(--blue); color: white; border: none; padding: 14px 28px; border-radius: var(--radius); font-size: 15px; font-weight: 700; cursor: pointer; transition: background 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.single-product .entry-summary .single_add_to_cart_button:hover { background: var(--blue-dark); }

/* ── Product Tabs ── */
.product-tabs { margin-top: 60px; }
.tab-nav { display: flex; border-bottom: 2px solid var(--border); margin-bottom: 28px; }
.tab-btn { padding: 12px 22px; border: none; background: transparent; color: var(--grey); font-size: 14px; font-weight: 600; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all 0.15s; }
.tab-btn.active { color: var(--blue); border-bottom-color: var(--blue); }
.tab-btn:hover { color: var(--charcoal); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel h3 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.tab-panel h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.tab-panel p { color: var(--grey); line-height: 1.7; margin-bottom: 12px; }
.tab-panel ul { padding-left: 20px; line-height: 2; color: var(--charcoal); }

/* Spec table */
.spec-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td, .spec-table th { padding: 12px 16px; text-align: left; }
.spec-table th { color: var(--grey); font-weight: 600; width: 40%; background: var(--light-grey); }

/* Pricing table */
.pricing-table { width: 100%; border-collapse: collapse; font-size: 14px; margin-bottom: 20px; }
.pricing-table thead tr { background: var(--navy); color: white; }
.pricing-table th { padding: 12px 16px; text-align: left; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.pricing-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); }
.pricing-table tbody tr:hover { background: var(--light-grey); }
.pricing-popular td { background: var(--blue-light); font-weight: 600; }
.popular-badge { background: var(--orange); color: white; font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 3px; margin-left: 8px; }

/* ── WooCommerce notices ── */
.woocommerce-message, .woocommerce-info, .woocommerce-error {
  padding: 14px 20px; border-radius: var(--radius); margin-bottom: 20px; font-size: 14px; list-style: none;
}
.woocommerce-message { background: #ECFDF5; border-left: 4px solid var(--green); color: #065F46; }
.woocommerce-info { background: var(--blue-light); border-left: 4px solid var(--blue); color: #1E40AF; }
.woocommerce-error { background: #FEF2F2; border-left: 4px solid var(--red); color: #991B1B; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image-area { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
  .product-main-grid { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
}
@media (max-width: 768px) {
  .hero h1 { font-size: 32px; }
  .header-search { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .pack-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .section { padding: 40px 16px; }
  .hero { padding: 50px 16px 60px; }
  .hero h1 { font-size: 28px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .main-nav li a { padding: 11px 10px; font-size: 12px; }
}
