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

:root {
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --red-500: #ef4444;
  --amber-400: #fbbf24;
  --blue-500: #3b82f6;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.05);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.1), 0 4px 8px rgba(0,0,0,.06);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --transition: all .2s ease;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--gray-50);
}

a { color: var(--green-600); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--green-700); }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ===== Typography ===== */
h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: 1.15rem; }

.section-heading {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}
.section-subheading {
  color: var(--gray-500);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}
.section-header { text-align: center; margin-bottom: 3rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .7rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-600);
  color: var(--white);
  border-color: var(--green-600);
}
.btn-primary:hover {
  background: var(--green-700);
  border-color: var(--green-700);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(22,163,74,.35);
}
.btn-outline {
  background: transparent;
  color: var(--green-600);
  border-color: var(--green-600);
}
.btn-outline:hover {
  background: var(--green-600);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--gray-700);
  border-color: var(--gray-300);
}
.btn-ghost:hover { background: var(--gray-100); }
.btn-large { padding: .9rem 2rem; font-size: 1.05rem; }
.btn-sm { padding: .45rem 1rem; font-size: .875rem; }
.btn-full { width: 100%; }

.btn-add-cart {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .5rem .9rem;
  background: var(--green-600);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-add-cart:hover { background: var(--green-700); transform: translateY(-1px); }
.btn-add-cart.added { background: var(--green-800); }

/* ===== Header ===== */
.header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 200;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-600);
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.8rem; }
.logo:hover { color: var(--green-700); }

.nav-list {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-list a {
  padding: .5rem .9rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--gray-700);
  font-size: .95rem;
}
.nav-list a:hover, .nav-list a.active {
  color: var(--green-600);
  background: var(--green-50);
}

.header-right { display: flex; align-items: center; gap: .75rem; }

.cart-btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1.1rem;
  background: var(--green-50);
  color: var(--green-700);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  text-decoration: none;
  border: 1.5px solid var(--green-200, #bbf7d0);
}
.cart-btn:hover { background: var(--green-100); color: var(--green-800); }
.cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green-600);
  color: var(--white);
  border-radius: var(--radius-full);
  min-width: 22px;
  height: 22px;
  font-size: .78rem;
  font-weight: 700;
  padding: 0 5px;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background-image: url('https://images.unsplash.com/photo-1542838132-92c53300491e?w=1920&q=85');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22,101,52,.85) 0%, rgba(21,128,61,.75) 60%, rgba(16,185,129,.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: 4rem 0;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.2);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.35);
  padding: .35rem 1rem;
  border-radius: var(--radius-full);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(4px);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero h1 em { font-style: normal; color: #86efac; }
.hero-desc {
  color: rgba(255,255,255,.88);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-hero-primary {
  background: var(--white);
  color: var(--green-700);
  padding: .85rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-hero-primary:hover { background: var(--green-50); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.2); color: var(--green-800); }
.btn-hero-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
  padding: .85rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-hero-outline:hover { background: rgba(255,255,255,.15); border-color: var(--white); }

.hero-stats {
  position: absolute;
  bottom: 2rem;
  right: 0;
  display: flex;
  gap: 1.5rem;
  z-index: 1;
}
.hero-stat {
  text-align: center;
  color: var(--white);
}
.hero-stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}
.hero-stat-label { font-size: .8rem; opacity: .8; }

/* ===== Features Bar ===== */
.features-bar { background: var(--white); border-bottom: 1px solid var(--gray-200); }
.features-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1.25rem 1.5rem;
  border-right: 1px solid var(--gray-200);
}
.feature-item:last-child { border-right: none; }
.feature-item-icon {
  width: 44px;
  height: 44px;
  background: var(--green-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.feature-item h4 { font-size: .9rem; color: var(--gray-800); margin-bottom: .1rem; }
.feature-item p { font-size: .8rem; color: var(--gray-500); margin: 0; }

/* ===== Sections ===== */
section { padding: 4rem 0; }
.section-white { background: var(--white); }
.section-light { background: var(--gray-50); }

/* ===== Categories ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.category-card:hover img { transform: scale(1.06); }
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, rgba(0,0,0,.1) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}
.category-card-title {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .2rem;
}
.category-card-count { color: rgba(255,255,255,.75); font-size: .825rem; }

/* ===== Products Grid ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.product-card-img-wrap {
  display: block;
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-100);
}
.product-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.product-card:hover .product-card-img-wrap img { transform: scale(1.04); }

.badge-discount {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--red-500);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: .25rem .55rem;
  border-radius: var(--radius-full);
  z-index: 1;
}
.badge-new {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--green-600);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: .25rem .55rem;
  border-radius: var(--radius-full);
  z-index: 1;
}

.product-card-body { padding: 1rem 1.1rem 1.1rem; }

.product-cat-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--green-600);
  background: var(--green-50);
  padding: .2rem .6rem;
  border-radius: var(--radius-full);
  margin-bottom: .5rem;
}

.product-card-title {
  font-size: .975rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: .4rem;
  line-height: 1.35;
}
.product-card-title a { color: inherit; }
.product-card-title a:hover { color: var(--green-600); }

.product-rating {
  display: flex;
  align-items: center;
  gap: .3rem;
  margin-bottom: .75rem;
  font-size: .85rem;
}
.stars-text { color: var(--amber-400); letter-spacing: .05em; font-size: .9rem; }
.rating-num { font-weight: 600; color: var(--gray-700); }
.rating-count { color: var(--gray-400); }

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}
.product-price { display: flex; align-items: center; gap: .4rem; }
.price-current {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-700);
}
.price-original {
  font-size: .875rem;
  color: var(--gray-400);
  text-decoration: line-through;
}

/* ===== Breadcrumb ===== */
.breadcrumb-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: .9rem 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: var(--gray-500);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--green-600); }
.breadcrumb a:hover { color: var(--green-700); }
.breadcrumb-sep { color: var(--gray-300); }

/* ===== Products Page Layout ===== */
.products-page { padding: 2rem 0 4rem; }
.products-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  align-items: start;
}

/* Sidebar */
.sidebar {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 1.5rem;
  position: sticky;
  top: 80px;
}
.sidebar-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--gray-200);
}
.filter-group { margin-bottom: 1.75rem; }
.filter-group h4 {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-500);
  margin-bottom: .9rem;
}

.filter-category-list { display: flex; flex-direction: column; gap: .25rem; }
.filter-category-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .6rem .9rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  color: var(--gray-700);
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  transition: var(--transition);
  font-family: inherit;
}
.filter-category-btn:hover { background: var(--gray-100); color: var(--gray-900); }
.filter-category-btn.active { background: var(--green-50); color: var(--green-700); font-weight: 600; }
.filter-count {
  background: var(--gray-200);
  color: var(--gray-600);
  border-radius: var(--radius-full);
  padding: .1rem .45rem;
  font-size: .75rem;
  font-weight: 600;
}
.filter-category-btn.active .filter-count { background: var(--green-100); color: var(--green-700); }

.price-range-display {
  display: flex;
  justify-content: space-between;
  font-size: .875rem;
  color: var(--gray-700);
  margin-bottom: .75rem;
  font-weight: 600;
}
input[type="range"] {
  width: 100%;
  accent-color: var(--green-600);
  cursor: pointer;
}

.rating-filter-list { display: flex; flex-direction: column; gap: .5rem; }
.rating-filter-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
  font-size: .9rem;
}
.rating-filter-item input[type="checkbox"] { accent-color: var(--green-600); cursor: pointer; }
.rating-stars { color: var(--amber-400); font-size: .9rem; }

/* Products Main */
.products-main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.products-count { font-size: .9rem; color: var(--gray-500); }
.products-count strong { color: var(--gray-800); }

.sort-select {
  padding: .5rem .85rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-family: inherit;
  color: var(--gray-700);
  background: var(--white);
  cursor: pointer;
  outline: none;
}
.sort-select:focus { border-color: var(--green-500); }

#no-results {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--gray-500);
}
#no-results h3 { margin-bottom: .5rem; color: var(--gray-700); }

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-300);
  background: var(--white);
  color: var(--gray-700);
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.page-btn:hover { border-color: var(--green-500); color: var(--green-600); }
.page-btn.active { background: var(--green-600); border-color: var(--green-600); color: var(--white); }
.page-btn:disabled { opacity: .4; cursor: not-allowed; }

/* ===== Product Detail Page ===== */
.product-detail-page { padding: 2.5rem 0 4rem; }
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  margin-bottom: 3rem;
}

.product-gallery { position: sticky; top: 100px; }
.main-image {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-100);
  margin-bottom: 1rem;
  cursor: zoom-in;
}
.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.main-image:hover img { transform: scale(1.04); }
.thumbnails {
  display: flex;
  gap: .75rem;
}
.thumb-btn {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: none;
  padding: 0;
  transition: var(--transition);
  flex-shrink: 0;
}
.thumb-btn img { width: 100%; height: 100%; object-fit: cover; }
.thumb-btn.active { border-color: var(--green-500); }
.thumb-btn:hover { border-color: var(--green-400); }

/* Product Info */
.product-info { display: flex; flex-direction: column; gap: 1.25rem; }
.product-info .category-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: var(--green-50);
  color: var(--green-700);
  border: 1px solid var(--green-200, #bbf7d0);
  padding: .35rem .9rem;
  border-radius: var(--radius-full);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  width: fit-content;
}
.product-title {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--gray-900);
  line-height: 1.2;
}
.product-rating-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
}
.product-rating-row .stars-big { color: var(--amber-400); font-size: 1.2rem; letter-spacing: .05em; }
.product-rating-row .rating-score { font-weight: 700; font-size: 1rem; }
.product-rating-row .review-count { color: var(--gray-500); }

.price-row {
  display: flex;
  align-items: center;
  gap: .9rem;
  flex-wrap: wrap;
}
.price-big {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-700);
}
.price-was {
  font-size: 1.2rem;
  color: var(--gray-400);
  text-decoration: line-through;
}
.discount-chip {
  background: #fef2f2;
  color: var(--red-500);
  border: 1px solid #fecaca;
  padding: .25rem .7rem;
  border-radius: var(--radius-full);
  font-size: .825rem;
  font-weight: 700;
}
.in-stock-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: #f0fdf4;
  color: var(--green-700);
  border: 1px solid #bbf7d0;
  padding: .4rem .9rem;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 600;
  width: fit-content;
}

.product-desc { color: var(--gray-600); line-height: 1.75; }

.product-detail-tabs { border-top: 1px solid var(--gray-200); padding-top: 1rem; }
.tab-list { display: flex; gap: .25rem; margin-bottom: 1rem; border-bottom: 2px solid var(--gray-200); }
.tab-btn {
  padding: .6rem 1.1rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray-500);
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  font-family: inherit;
}
.tab-btn:hover { color: var(--green-600); }
.tab-btn.active { color: var(--green-600); border-bottom-color: var(--green-600); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.detail-table { width: 100%; font-size: .9rem; }
.detail-table tr { border-bottom: 1px solid var(--gray-100); }
.detail-table tr:last-child { border-bottom: none; }
.detail-table td { padding: .5rem .25rem; }
.detail-table td:first-child { color: var(--gray-500); width: 45%; }
.detail-table td:last-child { font-weight: 500; color: var(--gray-800); }

.add-to-cart-box {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.qty-row {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.qty-label { font-size: .875rem; font-weight: 600; color: var(--gray-700); }
.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--white);
}
.qty-control button {
  width: 36px;
  height: 36px;
  background: var(--gray-100);
  border: none;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--gray-700);
  transition: var(--transition);
  font-family: inherit;
}
.qty-control button:hover { background: var(--green-100); color: var(--green-700); }
.qty-control input {
  width: 50px;
  height: 36px;
  border: none;
  text-align: center;
  font-size: .95rem;
  font-weight: 600;
  color: var(--gray-800);
  font-family: inherit;
  outline: none;
}
.add-cart-actions { display: flex; gap: .75rem; }
.btn-wishlist {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--gray-300);
  background: var(--white);
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}
.btn-wishlist:hover { border-color: var(--red-500); color: var(--red-500); }

.guarantees { display: flex; flex-direction: column; gap: .5rem; }
.guarantee-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--gray-600);
}
.guarantee-item span:first-child { color: var(--green-600); font-size: 1rem; }

/* Reviews */
.reviews-section { padding: 3rem 0; }
.reviews-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  margin-bottom: 2rem;
}
.reviews-summary { text-align: center; border-right: 1px solid var(--gray-200); padding-right: 2rem; }
.rating-big-num {
  font-size: 4rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
  margin-bottom: .25rem;
}
.rating-big-stars { color: var(--amber-400); font-size: 1.4rem; margin-bottom: .5rem; }
.rating-based-on { font-size: .875rem; color: var(--gray-500); }

.reviews-list { display: flex; flex-direction: column; gap: 1.25rem; }
.review-card {
  padding: 1.25rem;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--green-400);
}
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: .35rem; }
.reviewer-name { font-weight: 700; font-size: .9rem; color: var(--gray-800); }
.review-date { font-size: .8rem; color: var(--gray-400); }
.review-stars { color: var(--amber-400); margin-bottom: .3rem; font-size: .9rem; }
.review-title { font-weight: 600; font-size: .9rem; color: var(--gray-800); margin-bottom: .35rem; }
.review-body { font-size: .875rem; color: var(--gray-600); line-height: 1.6; }

.write-review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-200);
}
.write-review-card h3 { margin-bottom: 1.5rem; }

/* ===== Related Products ===== */
.related-section { padding: 3rem 0; background: var(--gray-50); }
.related-section .section-header { margin-bottom: 2rem; text-align: left; }

/* ===== Forms ===== */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: .45rem;
}
.form-control {
  width: 100%;
  padding: .7rem .9rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-family: inherit;
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(34,197,94,.15); }
.form-control::placeholder { color: var(--gray-400); }
textarea.form-control { resize: vertical; min-height: 100px; }
select.form-control { cursor: pointer; }

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

/* ===== Checkout Page ===== */
.checkout-page { padding: 2rem 0 4rem; }
.progress-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.25rem 0;
  margin-bottom: 2rem;
}
.progress-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
}
.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  position: relative;
  flex: 1;
}
.progress-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 17px;
  left: 55%;
  right: 0;
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}
.progress-step.completed:not(:last-child)::after { background: var(--green-500); }
.step-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .875rem;
  font-weight: 700;
  z-index: 1;
  transition: var(--transition);
}
.progress-step.active .step-circle { background: var(--green-600); color: var(--white); }
.progress-step.completed .step-circle { background: var(--green-600); color: var(--white); }
.step-name { font-size: .75rem; color: var(--gray-500); font-weight: 500; }
.progress-step.active .step-name { color: var(--green-700); font-weight: 600; }

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  align-items: start;
}
.checkout-main { display: flex; flex-direction: column; gap: 1.75rem; }

.checkout-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}
.checkout-card-header {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.checkout-card-header h2 { font-size: 1.05rem; color: var(--gray-900); }
.checkout-card-body { padding: 1.5rem; }

/* Cart Items */
.cart-items-list { display: flex; flex-direction: column; }
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto auto auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
}
.cart-item-info h4 { font-size: .95rem; margin-bottom: .15rem; color: var(--gray-800); }
.cart-item-cat { font-size: .8rem; color: var(--gray-400); }
.cart-item-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.cart-item-qty button {
  width: 30px;
  height: 30px;
  background: var(--gray-100);
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: var(--gray-600);
  font-family: inherit;
}
.cart-item-qty button:hover { background: var(--green-100); color: var(--green-700); }
.cart-item-qty input {
  width: 40px;
  height: 30px;
  border: none;
  text-align: center;
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-800);
  font-family: inherit;
  outline: none;
  background: var(--white);
}
.cart-item-price {
  font-size: .9rem;
  color: var(--gray-500);
  min-width: 50px;
  text-align: right;
}
.cart-item-total {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-700);
  min-width: 55px;
  text-align: right;
}
.cart-item-remove {
  background: none;
  border: none;
  color: var(--gray-300);
  font-size: 1.1rem;
  cursor: pointer;
  padding: .25rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  font-family: inherit;
}
.cart-item-remove:hover { color: var(--red-500); background: #fef2f2; }

.coupon-row { display: flex; gap: .75rem; margin-top: .75rem; }
.coupon-row input { flex: 1; }

/* Shipping Methods */
.shipping-methods { display: flex; flex-direction: column; gap: .75rem; }
.shipping-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .9rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
}
.shipping-method:hover { border-color: var(--green-400); }
.shipping-method.selected { border-color: var(--green-500); background: var(--green-50); }
.shipping-method input[type="radio"] { accent-color: var(--green-600); flex-shrink: 0; }
.shipping-method-info { flex: 1; }
.shipping-method-name { font-weight: 600; font-size: .9rem; color: var(--gray-800); }
.shipping-method-time { font-size: .8rem; color: var(--gray-500); }
.shipping-method-price { font-weight: 700; color: var(--green-700); font-size: .9rem; }

/* Payment */
.payment-icons { display: flex; gap: .5rem; align-items: center; }
.card-icon {
  padding: .2rem .5rem;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--gray-600);
}

/* Order Summary Sidebar */
.order-summary-sidebar {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 1.5rem;
  position: sticky;
  top: 80px;
}
.order-summary-sidebar h2 {
  font-size: 1.05rem;
  color: var(--gray-900);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--gray-200);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .9rem;
  padding: .45rem 0;
  color: var(--gray-700);
}
.summary-row .label { color: var(--gray-500); }
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  padding: .75rem 0;
  border-top: 2px solid var(--gray-200);
  margin-top: .5rem;
  margin-bottom: 1.25rem;
}
.summary-total-amount { color: var(--green-700); font-size: 1.3rem; }
.trust-list {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-top: 1rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .825rem;
  color: var(--gray-600);
  padding: .25rem 0;
}
.trust-item span:first-child { color: var(--green-600); font-size: .9rem; }

.checkout-submit { margin-top: 1.25rem; }

/* Checkout Form Divider */
.section-divider {
  height: 1px;
  background: var(--gray-200);
  margin: .25rem 0;
}

/* ===== Order Complete Page ===== */
.order-complete-page { padding: 3rem 0 5rem; }
.order-success-container { max-width: 820px; margin: 0 auto; }

.success-hero {
  text-align: center;
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  margin-bottom: 2rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.success-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1542838132-92c53300491e?w=800&q=40') center/cover;
  opacity: .07;
}
.success-check-circle {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,.2);
  border: 3px solid rgba(255,255,255,.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.25rem;
  position: relative;
  animation: checkPop .4s ease both;
}
@keyframes checkPop {
  from { transform: scale(.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.success-hero h1 { font-size: clamp(1.5rem, 4vw, 2.2rem); margin-bottom: .5rem; position: relative; }
.success-hero p { opacity: .88; font-size: 1.05rem; position: relative; }

.order-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--green-500);
}
.order-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.order-info-item {}
.order-info-label { font-size: .8rem; color: var(--gray-500); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; margin-bottom: .25rem; }
.order-info-value { font-size: .975rem; font-weight: 600; color: var(--gray-800); }
.order-status-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: #fef9c3;
  color: #713f12;
  border: 1px solid #fde047;
  padding: .25rem .7rem;
  border-radius: var(--radius-full);
  font-size: .825rem;
  font-weight: 700;
}

.order-details-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.order-details-card h2 { font-size: 1.05rem; margin-bottom: 1.25rem; padding-bottom: .75rem; border-bottom: 1px solid var(--gray-200); }

.order-table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1rem;
  padding: .5rem 0 .75rem;
  border-bottom: 2px solid var(--gray-200);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--gray-500);
}
.order-table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1rem;
  padding: .9rem 0;
  border-bottom: 1px solid var(--gray-100);
  align-items: center;
  font-size: .9rem;
}
.order-table-row:last-child { border-bottom: none; }
.order-product-col { display: flex; align-items: center; gap: .75rem; }
.order-product-img {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}
.order-product-name { font-weight: 600; color: var(--gray-800); font-size: .9rem; }
.order-product-cat { font-size: .775rem; color: var(--gray-400); }
.order-table-row .qty { color: var(--gray-700); font-weight: 500; }
.order-table-row .price { color: var(--gray-600); }
.order-table-row .total { font-weight: 700; color: var(--green-700); }

.order-totals { margin-top: 1rem; border-top: 1px solid var(--gray-200); padding-top: 1rem; max-width: 280px; margin-left: auto; }
.order-total-row {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  padding: .35rem 0;
  color: var(--gray-600);
}
.order-total-row.grand { font-weight: 700; font-size: 1.1rem; color: var(--gray-900); border-top: 2px solid var(--gray-200); margin-top: .5rem; padding-top: .75rem; }
.order-total-row.grand .val { color: var(--green-700); }

.order-2col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.info-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 1.5rem;
}
.info-block h3 { font-size: .975rem; margin-bottom: .9rem; color: var(--gray-800); }
.info-block p { font-size: .875rem; color: var(--gray-600); line-height: 1.7; margin: 0; }

/* Delivery Timeline */
.delivery-timeline-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.delivery-timeline-card h2 { font-size: 1.05rem; margin-bottom: 1.5rem; }
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}
.timeline-step { position: relative; padding-bottom: 1.5rem; }
.timeline-step:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -34px;
  top: 2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gray-200);
  border: 2px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  color: var(--gray-500);
  font-weight: 700;
  z-index: 1;
}
.timeline-step.done .timeline-dot { background: var(--green-500); border-color: var(--green-500); color: var(--white); }
.timeline-step.current .timeline-dot { background: var(--amber-400); border-color: var(--amber-400); color: var(--white); animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(251,191,36,.4); } 50% { box-shadow: 0 0 0 6px rgba(251,191,36,0); } }
.timeline-step-title { font-size: .9rem; font-weight: 600; color: var(--gray-800); }
.timeline-step.pending .timeline-step-title { color: var(--gray-400); }
.timeline-step-time { font-size: .8rem; color: var(--gray-400); margin-top: .1rem; }

.action-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.action-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}
.action-card-icon {
  font-size: 2rem;
  margin-bottom: .75rem;
  display: block;
}
.action-card h3 { font-size: .9rem; margin-bottom: .35rem; color: var(--gray-800); }
.action-card p { font-size: .825rem; color: var(--gray-500); margin: 0; }

.complete-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.complete-buttons .btn { min-width: 200px; }

/* ===== Newsletter ===== */
.newsletter-section {
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  padding: 4rem 0;
  margin-top: 3rem;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.newsletter-text h2 { color: var(--white); font-size: clamp(1.3rem, 3vw, 1.8rem); margin-bottom: .5rem; }
.newsletter-text p { color: rgba(255,255,255,.8); margin: 0; }
.newsletter-form { display: flex; gap: .75rem; }
.newsletter-form input {
  flex: 1;
  padding: .75rem 1rem;
  border: none;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-family: inherit;
  outline: none;
  color: var(--gray-800);
}
.newsletter-form input::placeholder { color: var(--gray-400); }
.btn-newsletter {
  padding: .75rem 1.5rem;
  background: var(--green-800);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  white-space: nowrap;
}
.btn-newsletter:hover { background: #14532d; }

/* ===== Footer ===== */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 3.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo { color: #86efac; margin-bottom: 1rem; }
.footer-brand p { font-size: .875rem; line-height: 1.75; margin-bottom: 1.25rem; }
.footer-socials { display: flex; gap: .75rem; }
.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  text-decoration: none;
  font-size: .875rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--green-600); color: var(--white); }

.footer-col h4 {
  color: var(--white);
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
}
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
  color: var(--gray-400);
  font-size: .875rem;
  transition: var(--transition);
  text-decoration: none;
}
.footer-links a:hover { color: var(--green-400); }

.footer-contact { display: flex; flex-direction: column; gap: .6rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .875rem;
  color: var(--gray-400);
}
.footer-contact-icon { color: var(--green-400); flex-shrink: 0; margin-top: .1rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .825rem;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: var(--gray-500); text-decoration: none; }
.footer-bottom-links a:hover { color: var(--gray-300); }

/* ===== Toast ===== */
.fm-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(60px);
  background: var(--gray-900);
  color: var(--white);
  padding: .7rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: .875rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  opacity: 0;
  transition: all .3s ease;
  display: flex;
  align-items: center;
  gap: .5rem;
  white-space: nowrap;
}
.fm-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast-icon { color: var(--green-400); font-weight: 700; }

/* ===== Testimonials ===== */
.testimonials-section { padding: 4rem 0; background: var(--green-50); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.testimonial-stars { color: var(--amber-400); margin-bottom: .75rem; font-size: 1rem; }
.testimonial-text { font-size: .9rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green-100);
}
.testimonial-name { font-size: .875rem; font-weight: 700; color: var(--gray-800); }
.testimonial-role { font-size: .775rem; color: var(--gray-400); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .features-list { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(2) { border-right: none; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-layout { grid-template-columns: 220px 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .action-cards { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { position: static; padding-top: 2.5rem; }
  .hero-content { padding: 2.5rem 0; }
  .hero { min-height: 460px; }
  .newsletter-inner { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: row; }
}

@media (max-width: 768px) {
  .header-inner { flex-wrap: wrap; gap: .75rem; }
  .nav { order: 3; width: 100%; }
  .nav-list { flex-wrap: wrap; gap: .25rem; }
  .features-list { grid-template-columns: 1fr 1fr; }
  .feature-item { border-right: none !important; border-bottom: 1px solid var(--gray-200); }
  .feature-item:nth-last-child(-n+2) { border-bottom: none; }
  .products-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .product-detail-layout { grid-template-columns: 1fr; gap: 2rem; }
  .product-gallery { position: static; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-summary { border-right: none; border-bottom: 1px solid var(--gray-200); padding-right: 0; padding-bottom: 1.5rem; }
  .checkout-layout { grid-template-columns: 1fr; }
  .order-summary-sidebar { position: static; }
  .cart-item { grid-template-columns: 60px 1fr; gap: .75rem; }
  .cart-item-price, .cart-item-total { display: none; }
  .order-table-header, .order-table-row { grid-template-columns: 2fr 1fr 1fr; }
  .order-table-header .total-col, .order-table-row .total { display: none; }
  .action-cards { grid-template-columns: 1fr; }
  .complete-buttons { flex-direction: column; align-items: stretch; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .progress-steps { gap: .25rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1rem; }
  .newsletter-form { flex-direction: column; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .product-card-body { padding: .75rem; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .hero { min-height: 360px; }
  .hero h1 { font-size: 1.6rem; }
  .hero-actions { flex-direction: column; }
  .order-2col { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
