/*
Theme Name: Steve's Home Solutions
Theme URI: https://steveshomesolutions.com
Author: Steve's Home Solutions LLC
Author URI: https://steveshomesolutions.com
Description: A premium WordPress theme crafted for Steve's Home Solutions LLC — a curated home décor store featuring flower pots, curtains, vases, pillow covers, and more. Built with WooCommerce compatibility and elegant design.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: steves-home
Tags: e-commerce, custom-menu, custom-logo, featured-images, theme-options, translation-ready
*/

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

:root {
  --cream: #F5F0E8;
  --warm-white: #FDFAF5;
  --sand: #E8DFD0;
  --taupe: #B8A898;
  --clay: #9C8B7A;
  --terracotta: #C4805A;
  --deep-olive: #4A5240;
  --charcoal: #2C2C2C;
  --espresso: #3B2F28;
  --gold: #C9A96E;
  --sage: #8B9E7E;
  --blush: #D4A89A;
  --linen: #EDE6DA;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;
  --font-accent: 'Libre Baskerville', serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ─── ANNOUNCEMENT BAR ─── */
.announcement-bar {
  background: var(--espresso);
  color: var(--sand);
  text-align: center;
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 400;
}
.announcement-bar span { color: var(--gold); font-weight: 600; }

/* ─── HEADER / NAV ─── */
.site-header {
  background: rgba(253, 250, 245, 0.95);
  border-bottom: 1px solid var(--sand);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.site-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  color: var(--espresso);
}
.logo-main {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1;
}
.logo-sub {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--clay);
  margin-top: 2px;
  font-weight: 400;
}

/* ─── NAVIGATION ─── */
.main-navigation { display: flex; align-items: center; gap: 36px; }
.main-navigation ul {
  display: flex;
  list-style: none;
  gap: 36px;
}
.main-navigation a {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}
.main-navigation a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--terracotta);
  transition: width 0.3s;
}
.main-navigation a:hover { color: var(--terracotta); }
.main-navigation a:hover::after { width: 100%; }
.nav-icons { display: flex; gap: 20px; align-items: center; }
.nav-icon {
  width: 20px;
  height: 20px;
  cursor: pointer;
  color: var(--charcoal);
  transition: color 0.3s;
}
.nav-icon:hover { color: var(--terracotta); }
.cart-badge { position: relative; }
.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--terracotta);
  color: white;
  font-size: 9px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--espresso);
}

/* ─── HERO ─── */
.hero-section {
  height: 92vh;
  min-height: 600px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
  max-width: 700px;
  margin-left: auto;
  animation: fadeSlideUp 1s ease-out;
}
.hero-tag {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-tag::before {
  content: '';
  width: 40px;
  height: 1.5px;
  background: var(--terracotta);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--espresso);
  margin-bottom: 28px;
}
.hero-title em { font-style: italic; color: var(--terracotta); font-weight: 400; }
.hero-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--clay);
  margin-bottom: 40px;
  max-width: 440px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; align-items: center; }
.btn-primary {
  background: var(--espresso);
  color: var(--cream);
  padding: 16px 40px;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  transition: all 0.4s;
  display: inline-block;
}
.btn-primary:hover { background: var(--terracotta); }
.btn-secondary {
  background: transparent;
  color: var(--espresso);
  padding: 16px 40px;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 1.5px solid var(--espresso);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  transition: all 0.4s;
  display: inline-block;
}
.btn-secondary:hover { background: var(--espresso); color: var(--cream); }
.hero-image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--sand) 0%, var(--taupe) 100%);
}
.hero-image-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(196, 128, 90, 0.15) 0%, transparent 60%),
    linear-gradient(45deg, var(--sand) 0%, var(--linen) 40%, var(--taupe) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-decor {
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 50%;
  animation: rotate 40s linear infinite;
}
.hero-decor-2 {
  width: 320px;
  height: 320px;
  border-color: rgba(196, 128, 90, 0.2);
  animation-direction: reverse;
  animation-duration: 30s;
}
.hero-vase {
  font-size: 180px;
  z-index: 2;
  filter: drop-shadow(0 20px 60px rgba(59, 47, 40, 0.15));
  animation: float 6s ease-in-out infinite;
}
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--espresso);
}
.stat-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clay);
  margin-top: 4px;
}

/* ─── MARQUEE ─── */
.marquee-section {
  background: var(--espresso);
  padding: 20px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--sand);
  white-space: nowrap;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 300;
  opacity: 0.7;
}
.marquee-dot { color: var(--gold); }

/* ─── SECTION HEADERS ─── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  color: var(--espresso);
  margin-bottom: 16px;
}
.section-desc {
  color: var(--clay);
  font-size: 15px;
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── CATEGORIES ─── */
.categories-section { padding: 100px 40px; max-width: 1400px; margin: 0 auto; }
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cat-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  transition: transform 0.5s;
}
.cat-card:hover { transform: translateY(-8px); }
.cat-card-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  transition: transform 0.6s;
}
.cat-card:hover .cat-card-bg { transform: scale(1.05); }
.cat-card-bg.pots { background: linear-gradient(160deg, #E8C9B0, #D4A89A); }
.cat-card-bg.curtains { background: linear-gradient(160deg, #C7D0C4, #8B9E7E); }
.cat-card-bg.vases { background: linear-gradient(160deg, #D4C5B0, #B8A898); }
.cat-card-bg.pillows { background: linear-gradient(160deg, #C9B8D4, #A890B8); }
.cat-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 24px;
  background: linear-gradient(transparent, rgba(44, 44, 44, 0.85));
}
.cat-card-name {
  font-family: var(--font-display);
  font-size: 24px;
  color: white;
  font-weight: 500;
}
.cat-card-count {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* ─── PRODUCTS ─── */
.featured-section { padding: 80px 40px 100px; background: var(--cream); }
.featured-inner { max-width: 1400px; margin: 0 auto; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-bottom: 48px; }
.product-card {
  background: var(--warm-white);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s;
  position: relative;
  cursor: pointer;
}
.product-card:hover {
  box-shadow: 0 16px 48px rgba(59, 47, 40, 0.12);
  transform: translateY(-4px);
}
.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--terracotta);
  color: white;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  z-index: 5;
}
.product-badge.new-badge { background: var(--deep-olive); }
.product-badge.sale-badge { background: #C4425A; }
.product-wish {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.3s;
  border: none;
  font-size: 16px;
}
.product-wish:hover { background: #FEE; transform: scale(1.1); }
.product-img {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  position: relative;
  overflow: hidden;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  display: flex;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
}
.product-card:hover .product-img-overlay { opacity: 1; transform: translateY(0); }
.quick-btn {
  background: var(--espresso);
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: var(--font-body);
  cursor: pointer;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.3s;
}
.quick-btn:hover { background: var(--terracotta); }
.product-info { padding: 20px 20px 24px; }
.product-cat {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 4px;
}
.product-subtext { font-size: 12px; color: var(--clay); margin-bottom: 12px; font-weight: 300; }
.product-price { display: flex; align-items: center; gap: 10px; }
.price-current { font-size: 18px; font-weight: 600; color: var(--espresso); }
.price-old { font-size: 14px; color: var(--taupe); text-decoration: line-through; }
.product-rating { display: flex; align-items: center; gap: 4px; margin-top: 8px; }
.stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; }
.rating-count { font-size: 11px; color: var(--clay); margin-left: 4px; }
.view-all-wrap { text-align: center; }
.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--espresso);
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1.5px solid var(--espresso);
  transition: all 0.3s;
}
.btn-view-all:hover { color: var(--terracotta); border-color: var(--terracotta); }

/* ─── PROMO BANNER ─── */
.promo-banner { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
.promo-visual {
  background: linear-gradient(135deg, var(--deep-olive), #3B4432);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.promo-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 140px;
  position: relative;
}
.promo-circle::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.2);
}
.promo-pct {
  position: absolute;
  bottom: 40px;
  right: 40px;
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.promo-pct span { font-size: 24px; display: block; letter-spacing: 2px; }
.promo-content {
  background: var(--linen);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
}
.promo-content .section-tag,
.promo-content .section-title { text-align: left; }
.promo-content .section-title { margin-bottom: 20px; }
.promo-text {
  font-size: 15px;
  color: var(--clay);
  line-height: 1.8;
  margin-bottom: 36px;
  font-weight: 300;
  max-width: 420px;
}
.promo-features { display: flex; gap: 32px; margin-bottom: 36px; }
.promo-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--espresso);
  font-weight: 500;
}
.promo-feat-icon {
  width: 36px;
  height: 36px;
  background: var(--warm-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* ─── BESTSELLERS ─── */
.bestsellers-section { padding: 100px 40px; max-width: 1400px; margin: 0 auto; }
.bs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.bs-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s;
}
.bs-card:hover { box-shadow: 0 12px 40px rgba(59, 47, 40, 0.1); border-color: transparent; }
.bs-img {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 70px;
  aspect-ratio: 1;
}
.bs-img.bg1 { background: linear-gradient(135deg, #F5E6D3, #E8D5C0); }
.bs-img.bg2 { background: linear-gradient(135deg, #D4E0D0, #BFD0B8); }
.bs-img.bg3 { background: linear-gradient(135deg, #E0D8E8, #D0C4DC); }
.bs-img.bg4 { background: linear-gradient(135deg, #E8DDD0, #D8C8B4); }
.bs-info { padding: 28px; display: flex; flex-direction: column; justify-content: center; }
.bs-rank {
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--terracotta);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.bs-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 6px;
}
.bs-desc { font-size: 13px; color: var(--clay); line-height: 1.6; margin-bottom: 14px; font-weight: 300; }
.bs-bottom { display: flex; align-items: center; justify-content: space-between; }
.bs-price { font-size: 18px; font-weight: 600; color: var(--espresso); }
.bs-add {
  background: var(--espresso);
  color: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bs-add:hover { background: var(--terracotta); }

/* ─── TESTIMONIALS ─── */
.testimonials-section {
  background: var(--espresso);
  padding: 100px 40px;
  color: var(--cream);
}
.testimonials-section .section-tag { color: var(--gold); }
.testimonials-section .section-title { color: var(--cream); }
.testimonials-section .section-desc { color: var(--taupe); }
.test-grid {
  max-width: 1200px;
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.test-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 36px;
  transition: all 0.4s;
}
.test-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.test-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 20px; }
.test-text {
  font-family: var(--font-accent);
  font-size: 15px;
  line-height: 1.8;
  color: var(--sand);
  font-style: italic;
  margin-bottom: 24px;
}
.test-author { display: flex; align-items: center; gap: 14px; }
.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-display);
  color: white;
}
.test-avatar.av1 { background: linear-gradient(135deg, var(--terracotta), var(--blush)); }
.test-avatar.av2 { background: linear-gradient(135deg, var(--sage), var(--deep-olive)); }
.test-avatar.av3 { background: linear-gradient(135deg, var(--gold), var(--clay)); }
.test-name { font-weight: 500; font-size: 14px; }
.test-loc { font-size: 11px; color: var(--taupe); letter-spacing: 1px; margin-top: 2px; }

/* ─── NEWSLETTER ─── */
.newsletter-section { background: var(--linen); padding: 80px 40px; }
.nl-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.nl-form {
  display: flex;
  gap: 0;
  margin-top: 36px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(59, 47, 40, 0.08);
}
.nl-input {
  flex: 1;
  padding: 18px 24px;
  border: none;
  font-family: var(--font-body);
  font-size: 14px;
  background: white;
  outline: none;
}
.nl-input::placeholder { color: var(--taupe); }
.nl-btn {
  background: var(--espresso);
  color: var(--cream);
  border: none;
  padding: 18px 36px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}
.nl-btn:hover { background: var(--terracotta); }
.nl-note { font-size: 12px; color: var(--clay); margin-top: 14px; font-weight: 300; }

/* ─── FEATURES BAR ─── */
.features-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}
.feature-item {
  padding: 40px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-right: 1px solid var(--sand);
}
.feature-item:last-child { border-right: none; }
.feat-icon { font-size: 28px; }
.feat-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--espresso);
}
.feat-desc { font-size: 12px; color: var(--clay); font-weight: 300; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--charcoal);
  color: var(--sand);
  padding: 80px 40px 0;
}
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .logo-main { color: var(--cream); font-size: 24px; }
.footer-brand .logo-sub { color: var(--taupe); }
.footer-about {
  font-size: 14px;
  line-height: 1.8;
  color: var(--taupe);
  margin-top: 20px;
  font-weight: 300;
}
.footer-contact-item {
  font-size: 13px;
  color: var(--taupe);
  margin-top: 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.6;
}
.footer-heading {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 24px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  color: var(--taupe);
  font-size: 13px;
  font-weight: 300;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--terracotta); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 12px; color: var(--clay); font-weight: 300; }
.footer-socials { display: flex; gap: 16px; }
.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--taupe);
  transition: all 0.3s;
}
.social-link:hover { background: var(--terracotta); border-color: var(--terracotta); color: white; }
.footer-payments { display: flex; gap: 12px; }
.pay-icon {
  background: rgba(255,255,255,0.08);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 11px;
  color: var(--taupe);
  font-weight: 500;
}

/* ─── WOOCOMMERCE OVERRIDES ─── */
.woocommerce ul.products li.product a img {
  border-radius: 12px;
}
.woocommerce ul.products li.product .price {
  color: var(--espresso);
  font-family: var(--font-body);
  font-weight: 600;
}
.woocommerce .button, .woocommerce button.button {
  background: var(--espresso) !important;
  color: var(--cream) !important;
  border-radius: 6px !important;
  font-family: var(--font-body) !important;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 12px !important;
}
.woocommerce .button:hover, .woocommerce button.button:hover {
  background: var(--terracotta) !important;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── BACK TO TOP ─── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--espresso);
  color: var(--cream);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(59, 47, 40, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--terracotta); transform: translateY(-3px); }

/* ─── PAGE CONTENT ─── */
.page-content, .entry-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px;
  font-size: 16px;
  line-height: 1.8;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-section { grid-template-columns: 1fr; height: auto; min-height: auto; }
  .hero-image { display: none; }
  .hero-content { padding: 60px 40px; max-width: 100%; margin: 0; }
  .cat-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .bs-grid, .test-grid { grid-template-columns: 1fr; }
  .promo-banner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .features-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-navigation { display: none; }
  .mobile-menu-btn { display: block; }
  .header-inner { height: 64px; padding: 0 20px; }
  .hero-content { padding: 40px 20px; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .bs-card { grid-template-columns: 1fr; }
  .promo-content { padding: 40px 24px; }
  .promo-features { flex-direction: column; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .features-bar { grid-template-columns: 1fr; }
  .nl-form { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }
}
