/* ============================================================
   StyleHub E-Commerce — Master Stylesheet
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary:       #1d1d1d;
  --secondary:     #c8956c;
  --accent:        #e8d5c4;
  --bg-light:      #faf8f5;
  --bg-section:    #f4f1ec;
  --white:         #ffffff;
  --text-dark:     #1d1d1d;
  --text-mid:      #555555;
  --text-muted:    #999999;
  --border:        #e8e4df;
  --success:       #2e7d32;
  --danger:        #c62828;
  --warning:       #f57c00;
  --shadow-sm:     0 2px 8px rgba(0,0,0,.07);
  --shadow-md:     0 6px 24px rgba(0,0,0,.10);
  --shadow-lg:     0 16px 48px rgba(0,0,0,.14);
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --transition:    all .25s ease;
  --font-main:     'Inter', sans-serif;
  --font-heading:  'Playfair Display', serif;
}

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

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

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ---------- Utility Classes ---------- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.text-center { text-align: center; }
.hidden { display: none !important; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid { display: grid; }

/* ---------- Typography ---------- */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 8px;
}
.tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 10px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: var(--secondary);
  color: var(--white);
}
.btn-secondary:hover {
  background: #b07d55;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
}
.btn-sm { padding: 9px 20px; font-size: .82rem; }
.btn-lg { padding: 16px 40px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250,248,245,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  color: var(--primary);
  background: var(--bg-section);
}

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: var(--text-dark);
  font-size: 1.05rem;
  transition: var(--transition);
  position: relative;
}
.icon-btn:hover { background: var(--bg-section); color: var(--secondary); }
.cart-badge {
  position: absolute;
  top: 3px; right: 3px;
  width: 18px; height: 18px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  font-size: .62rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Announcement bar */
.announcement-bar {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 8px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .05em;
}
.announcement-bar a { color: var(--secondary); text-decoration: underline; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 0;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.hero-title span { color: var(--secondary); }
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.hero-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  font-family: var(--font-heading);
}
.hero-stat span { font-size: .82rem; color: var(--text-muted); }

.hero-image {
  position: relative;
  background: var(--bg-section);
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image-badge {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .85rem;
}
.hero-image-badge .badge-icon {
  width: 44px; height: 44px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}
.hero-image-badge strong { display: block; font-size: .95rem; }
.hero-image-badge span { color: var(--text-muted); font-size: .78rem; }

/* ============================================================
   CATEGORY STRIPS
   ============================================================ */
.categories-section { padding: 60px 0; }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: var(--transition);
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.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,.65) 30%, transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
}
.category-card-overlay h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; }
.category-card-overlay span { font-size: .82rem; opacity: .85; margin-top: 4px; display: block; }
.category-card-overlay .cat-arrow {
  width: 36px; height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-top: 14px;
  font-size: .85rem;
  transition: var(--transition);
}
.category-card:hover .cat-arrow { background: var(--secondary); color: var(--white); }

/* ============================================================
   PRODUCT CARDS & GRIDS
   ============================================================ */
.products-section { padding: 80px 0; background: var(--white); }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 16px;
}
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-tab {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-mid);
  border: 1.5px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.filter-tab:hover, .filter-tab.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-card-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-section);
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.07); }

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.badge-new { background: var(--primary); color: var(--white); }
.badge-sale { background: var(--danger); color: var(--white); }
.badge-featured { background: var(--secondary); color: var(--white); }

.product-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
}
.product-card:hover .product-actions { opacity: 1; transform: translateX(0); }
.product-action-btn {
  width: 38px;
  height: 38px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.product-action-btn:hover { background: var(--secondary); color: var(--white); }
.product-action-btn.wishlisted { background: var(--danger) !important; color: var(--white) !important; }

.product-card-quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 12px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .05em;
  transform: translateY(100%);
  transition: var(--transition);
  cursor: pointer;
}
.product-card:hover .product-card-quick-add { transform: translateY(0); }

.product-card-body { padding: 18px; }
.product-card-category {
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.product-card-name {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-card-name a:hover { color: var(--secondary); }
.product-card-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.stars { color: #f4a02a; font-size: .82rem; display: flex; gap: 2px; }
.rating-count { font-size: .75rem; color: var(--text-muted); }
.product-card-price { display: flex; align-items: center; gap: 10px; }
.price-current { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); }
.price-original { font-size: .88rem; color: var(--text-muted); text-decoration: line-through; }
.price-discount { font-size: .75rem; font-weight: 700; color: var(--danger); }
.product-card-colors {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}
.color-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}
.color-dot:hover, .color-dot.active { border-color: var(--text-dark); transform: scale(1.2); }

/* ============================================================
   BANNER / PROMO STRIP
   ============================================================ */
.promo-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #3d3d3d 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.promo-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(200,149,108,.12);
  border-radius: 50%;
}
.promo-badge {
  display: inline-block;
  background: var(--secondary);
  color: var(--white);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.promo-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.promo-title span { color: var(--secondary); }
.promo-desc { font-size: 1.05rem; opacity: .8; max-width: 500px; margin: 0 auto 32px; }
.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 36px;
}
.countdown-unit {
  text-align: center;
  min-width: 72px;
}
.countdown-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--secondary);
  line-height: 1;
}
.countdown-label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .7;
  margin-top: 6px;
}
.countdown-sep { font-size: 2rem; font-weight: 700; margin-top: 4px; opacity: .5; }

/* ============================================================
   FEATURES STRIP
   ============================================================ */
.features-strip { padding: 48px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.feature-icon {
  width: 50px;
  height: 50px;
  background: var(--bg-section);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--secondary);
  flex-shrink: 0;
}
.feature-item h4 { font-size: .9rem; font-weight: 700; margin-bottom: 4px; }
.feature-item p { font-size: .8rem; color: var(--text-muted); line-height: 1.5; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { padding: 80px 0; background: var(--bg-section); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-quote { font-size: 2.5rem; color: var(--secondary); line-height: 1; margin-bottom: 16px; font-family: serif; }
.testimonial-text { font-size: .93rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-section);
}
.testimonial-author-name { font-size: .9rem; font-weight: 700; }
.testimonial-author-role { font-size: .78rem; color: var(--text-muted); }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  padding: 80px 0;
  background: var(--accent);
  text-align: center;
}
.newsletter-section .section-title { margin-bottom: 10px; }
.newsletter-section .section-subtitle { margin-bottom: 36px; }
.newsletter-form { display: flex; gap: 12px; max-width: 500px; margin: 0 auto; }
.newsletter-form input {
  flex: 1;
  padding: 15px 22px;
  border-radius: 50px;
  border: 2px solid transparent;
  background: var(--white);
  font-size: .92rem;
  outline: none;
  transition: var(--transition);
}
.newsletter-form input:focus { border-color: var(--secondary); }
.newsletter-privacy { font-size: .78rem; color: var(--text-muted); margin-top: 14px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,.75);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-desc { font-size: .85rem; line-height: 1.7; max-width: 280px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
  cursor: pointer;
}
.social-btn:hover { background: var(--secondary); border-color: var(--secondary); color: var(--white); }
.footer-col h4 { font-size: .85rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .85rem; transition: var(--transition); }
.footer-links a:hover { color: var(--secondary); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 10px; font-size: .85rem; margin-bottom: 10px; }
.footer-contact-item i { color: var(--secondary); margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-payment { display: flex; gap: 10px; align-items: center; }
.payment-icon {
  background: rgba(255,255,255,.1);
  padding: 5px 10px;
  border-radius: 6px;
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255,255,255,.8);
}

/* ============================================================
   SHOP PAGE
   ============================================================ */
.page-hero {
  background: var(--bg-section);
  padding: 50px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.page-hero .breadcrumb a:hover { color: var(--secondary); }
.page-hero .breadcrumb span { opacity: .5; }
.page-hero h1 { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 700; }

.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 40px; padding: 50px 0 80px; align-items: start; }

/* Sidebar Filters */
.shop-sidebar { position: sticky; top: 90px; }
.filter-section { margin-bottom: 32px; }
.filter-section h4 {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.filter-section h4 i { cursor: pointer; color: var(--text-muted); }
.filter-check { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; cursor: pointer; }
.filter-check input[type="checkbox"] { display: none; }
.filter-check-box {
  width: 18px; height: 18px;
  border: 2px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.filter-check input:checked + .filter-check-box {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  font-size: .65rem;
}
.filter-check-label { font-size: .87rem; color: var(--text-mid); }
.filter-check:hover .filter-check-label { color: var(--text-dark); }
.filter-colors { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-color {
  width: 28px; height: 28px;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid transparent;
  transition: var(--transition);
}
.filter-color:hover, .filter-color.active { border-color: var(--text-dark); transform: scale(1.15); }
.price-range-track {
  width: 100%;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin: 12px 0;
}
.price-range-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 2px;
  width: 70%;
}
.price-range-input { -webkit-appearance: none; appearance: none; width: 100%; height: 4px; background: transparent; outline: none; cursor: pointer; margin: 8px 0; }
.price-range-input::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--primary); cursor: pointer; border: 3px solid var(--white); box-shadow: var(--shadow-sm); }
.price-range-labels { display: flex; justify-content: space-between; font-size: .8rem; color: var(--text-muted); }
.clear-filters { font-size: .82rem; color: var(--secondary); font-weight: 600; cursor: pointer; background: none; border: none; padding: 0; }
.clear-filters:hover { text-decoration: underline; }

/* Shop Toolbar */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}
.toolbar-results { font-size: .88rem; color: var(--text-muted); }
.toolbar-results strong { color: var(--text-dark); }
.toolbar-right { display: flex; align-items: center; gap: 14px; }
.sort-select {
  padding: 8px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .85rem;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  cursor: pointer;
}
.sort-select:focus { border-color: var(--secondary); }
.view-toggle { display: flex; gap: 4px; }
.view-btn {
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: .9rem;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.view-btn.active, .view-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* List view */
.products-grid.list-view { grid-template-columns: 1fr; }
.products-grid.list-view .product-card { display: grid; grid-template-columns: 200px 1fr; }
.products-grid.list-view .product-card-image { aspect-ratio: 1; }
.products-grid.list-view .product-card-body { padding: 24px 28px; display: flex; flex-direction: column; justify-content: center; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 50px; }
.page-btn {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  color: var(--text-mid);
  transition: var(--transition);
  cursor: pointer;
  background: var(--white);
}
.page-btn.active, .page-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.page-btn:disabled { opacity: .4; cursor: not-allowed; }

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-detail-section { padding: 50px 0 80px; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

/* Gallery */
.product-gallery { position: sticky; top: 90px; }
.gallery-main {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-section);
  aspect-ratio: 3/4;
  margin-bottom: 14px;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 10px; }
.gallery-thumb {
  width: 80px;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  background: var(--bg-section);
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--secondary); }

/* Product Info */
.product-info { padding-top: 10px; }
.product-info-category { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--secondary); margin-bottom: 10px; }
.product-info-title { font-family: var(--font-heading); font-size: 2.1rem; font-weight: 700; line-height: 1.2; margin-bottom: 14px; }
.product-info-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; font-size: .88rem; color: var(--text-mid); }
.product-info-price { display: flex; align-items: baseline; gap: 14px; margin-bottom: 28px; }
.product-info-price .price-current { font-size: 1.9rem; font-weight: 800; }
.product-info-price .price-original { font-size: 1.1rem; }
.product-info-description { font-size: .93rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 28px; }

/* Size Selector */
.option-label { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; display: flex; justify-content: space-between; }
.option-label a { color: var(--secondary); font-weight: 500; text-decoration: underline; }
.size-options { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.size-btn {
  min-width: 50px;
  height: 44px;
  padding: 0 14px;
  border-radius: 10px;
  border: 2px solid var(--border);
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-dark);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.size-btn:hover, .size-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
.size-btn.out-of-stock { opacity: .35; cursor: not-allowed; text-decoration: line-through; }

/* Color Selector */
.product-colors { display: flex; gap: 12px; margin-bottom: 28px; }
.product-color {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}
.product-color:hover, .product-color.active { border-color: var(--text-dark); transform: scale(1.1); }

/* Quantity */
.quantity-row { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.quantity-control {
  display: flex;
  align-items: center;
  border: 2px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.qty-btn {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  background: var(--bg-section);
  border: none;
  color: var(--text-dark);
  transition: var(--transition);
}
.qty-btn:hover { background: var(--primary); color: var(--white); }
.qty-input {
  width: 60px;
  text-align: center;
  border: none;
  outline: none;
  font-size: .95rem;
  font-weight: 600;
  padding: 0 8px;
  background: var(--white);
  height: 44px;
  border-left: 2px solid var(--border);
  border-right: 2px solid var(--border);
}
.add-to-cart-row { display: flex; gap: 12px; margin-bottom: 24px; }
.add-to-cart-row .btn { flex: 1 1 auto; }
.add-to-wishlist { min-width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; border: 2px solid var(--border); border-radius: 12px; font-size: 1.1rem; cursor: pointer; background: var(--white); transition: var(--transition); }
.add-to-wishlist:hover { border-color: var(--danger); color: var(--danger); }
.add-to-wishlist.active { background: var(--danger); border-color: var(--danger); color: var(--white); }

/* Product Meta */
.product-meta { border-top: 1px solid var(--border); padding-top: 20px; margin-top: 8px; }
.product-meta-item { display: flex; gap: 10px; font-size: .85rem; color: var(--text-mid); margin-bottom: 8px; }
.product-meta-item strong { color: var(--text-dark); min-width: 80px; }

/* Product Tabs */
.product-tabs-section { padding: 60px 0; border-top: 1px solid var(--border); }
.tabs-nav { display: flex; border-bottom: 2px solid var(--border); gap: 4px; margin-bottom: 36px; }
.tab-btn {
  padding: 12px 24px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
}
.tab-btn:hover, .tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-content p { font-size: .93rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.features-list { margin: 16px 0; padding-left: 16px; }
.features-list li { font-size: .9rem; color: var(--text-mid); margin-bottom: 8px; }
.size-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.size-table th, .size-table td { padding: 12px 16px; text-align: center; border: 1px solid var(--border); }
.size-table th { background: var(--bg-section); font-weight: 700; }
.size-table tr:hover { background: var(--bg-light); }

/* Reviews */
.reviews-summary { display: flex; align-items: center; gap: 40px; margin-bottom: 36px; padding: 28px; background: var(--bg-section); border-radius: var(--radius-md); }
.review-avg { text-align: center; }
.review-avg-num { font-size: 3.5rem; font-weight: 800; font-family: var(--font-heading); line-height: 1; }
.review-avg-stars { font-size: 1.2rem; color: #f4a02a; margin: 6px 0; }
.review-avg-count { font-size: .82rem; color: var(--text-muted); }
.review-bars { flex: 1; }
.review-bar-row { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; font-size: .82rem; }
.review-bar-track { flex: 1; height: 8px; background: var(--border); border-radius: 4px; }
.review-bar-fill { height: 100%; background: #f4a02a; border-radius: 4px; }
.review-item { padding: 24px 0; border-bottom: 1px solid var(--border); }
.review-header { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--bg-section); overflow: hidden; }
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-author-name { font-weight: 700; font-size: .9rem; }
.review-author-date { font-size: .78rem; color: var(--text-muted); margin-top: 2px; }
.review-text { font-size: .9rem; color: var(--text-mid); line-height: 1.7; }

/* ============================================================
   CART PAGE
   ============================================================ */
.cart-section { padding: 50px 0 80px; }
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.cart-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 2px solid var(--primary); }
.cart-header h2 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; }
.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-img {
  width: 100px;
  height: 120px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-section);
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-weight: 700; font-size: .95rem; margin-bottom: 5px; }
.cart-item-name a:hover { color: var(--secondary); }
.cart-item-meta { font-size: .8rem; color: var(--text-muted); margin-bottom: 12px; }
.cart-item-price { font-weight: 700; font-size: 1.05rem; }
.cart-item-right { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.cart-item-total { font-weight: 800; font-size: 1.1rem; }
.remove-btn { font-size: .78rem; color: var(--text-muted); cursor: pointer; display: flex; align-items: center; gap: 5px; background: none; border: none; padding: 0; }
.remove-btn:hover { color: var(--danger); }

/* Cart Summary */
.cart-summary {
  background: var(--bg-section);
  border-radius: var(--radius-md);
  padding: 28px;
  position: sticky;
  top: 90px;
  border: 1px solid var(--border);
}
.cart-summary h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; margin-bottom: 24px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.summary-row { display: flex; justify-content: space-between; font-size: .9rem; margin-bottom: 12px; color: var(--text-mid); }
.summary-row.total { font-weight: 800; font-size: 1.05rem; color: var(--text-dark); padding-top: 14px; border-top: 2px solid var(--primary); margin-top: 4px; }
.coupon-field { display: flex; gap: 8px; margin: 20px 0; }
.coupon-field input {
  flex: 1;
  padding: 11px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: .85rem;
  outline: none;
  background: var(--white);
}
.coupon-field input:focus { border-color: var(--secondary); }
.cart-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
}
.cart-empty i { font-size: 4rem; color: var(--border); margin-bottom: 20px; display: block; }
.cart-empty h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }
.cart-empty p { margin-bottom: 24px; }

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
.checkout-section { padding: 50px 0 80px; }
.checkout-layout { display: grid; grid-template-columns: 1fr 400px; gap: 50px; align-items: start; }
.checkout-form h2 { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; margin-bottom: 24px; padding-bottom: 14px; border-bottom: 2px solid var(--primary); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-dark); }
.form-group input, .form-group select, .form-group textarea {
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: .9rem;
  outline: none;
  transition: var(--transition);
  background: var(--white);
  color: var(--text-dark);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--secondary); }
.form-group input::placeholder { color: var(--text-muted); }
.step-title { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--secondary); margin-bottom: 14px; margin-top: 28px; }
.payment-methods { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.payment-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 2px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
}
.payment-method:hover { border-color: var(--secondary); }
.payment-method.active { border-color: var(--primary); background: var(--bg-section); }
.payment-method input[type="radio"] { width: 18px; height: 18px; accent-color: var(--primary); }
.payment-method-icon { font-size: 1.4rem; color: var(--secondary); }
.payment-method-info strong { font-size: .88rem; display: block; }
.payment-method-info span { font-size: .78rem; color: var(--text-muted); }

/* Order Summary Panel (Checkout) */
.order-summary-panel {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  position: sticky;
  top: 90px;
}
.order-summary-panel h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; margin-bottom: 24px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.order-item { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border); align-items: center; }
.order-item-img { width: 64px; height: 76px; border-radius: 8px; object-fit: cover; background: var(--border); flex-shrink: 0; }
.order-item-name { font-size: .88rem; font-weight: 600; flex: 1; }
.order-item-meta { font-size: .76rem; color: var(--text-muted); margin-top: 3px; }
.order-item-price { font-size: .9rem; font-weight: 700; }
.secure-badges { display: flex; gap: 16px; justify-content: center; margin-top: 20px; flex-wrap: wrap; }
.secure-badge { display: flex; align-items: center; gap: 6px; font-size: .75rem; color: var(--text-muted); }
.secure-badge i { color: var(--success); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero { padding: 90px 0; text-align: center; background: var(--bg-section); }
.about-hero h1 { font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; margin-bottom: 16px; }
.about-hero p { font-size: 1.1rem; color: var(--text-mid); max-width: 600px; margin: 0 auto; }
.about-story { padding: 80px 0; }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-story-image { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; }
.about-story-image img { width: 100%; height: 100%; object-fit: cover; }
.about-tag { font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--secondary); margin-bottom: 12px; }
.about-title { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; line-height: 1.2; margin-bottom: 16px; }
.about-text { font-size: .95rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.team-section { padding: 80px 0; background: var(--bg-section); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 50px; }
.team-card { text-align: center; }
.team-avatar { width: 100%; aspect-ratio: 1; border-radius: var(--radius-md); overflow: hidden; margin-bottom: 16px; background: var(--border); }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.team-role { font-size: .82rem; color: var(--secondary); margin-bottom: 10px; }
.team-social { display: flex; justify-content: center; gap: 10px; }
.team-social a { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: .8rem; color: var(--text-muted); transition: var(--transition); }
.team-social a:hover { background: var(--secondary); border-color: var(--secondary); color: var(--white); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
.contact-info h2 { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; margin-bottom: 16px; }
.contact-info p { font-size: .95rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 36px; }
.contact-items { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; }
.contact-item-icon { width: 48px; height: 48px; background: var(--bg-section); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--secondary); flex-shrink: 0; }
.contact-item h4 { font-size: .88rem; font-weight: 700; margin-bottom: 4px; }
.contact-item p { font-size: .85rem; color: var(--text-muted); margin: 0; line-height: 1.5; }
.contact-form-box { background: var(--bg-section); border-radius: var(--radius-lg); padding: 40px; }
.contact-form-box h3 { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; margin-bottom: 24px; }

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
.toast-container { position: fixed; bottom: 28px; right: 28px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--success);
  font-size: .88rem;
  font-weight: 500;
  animation: slideInToast .3s ease;
  min-width: 280px;
  max-width: 380px;
}
.toast.error { border-left-color: var(--danger); }
.toast.warning { border-left-color: var(--warning); }
.toast i { font-size: 1.1rem; color: var(--success); }
.toast.error i { color: var(--danger); }
.toast.warning i { color: var(--warning); }
.toast-close { margin-left: auto; cursor: pointer; color: var(--text-muted); font-size: .9rem; }
.toast-close:hover { color: var(--text-dark); }
@keyframes slideInToast {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ============================================================
   MINI CART DRAWER
   ============================================================ */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 2000; opacity: 0; pointer-events: none; transition: opacity .3s ease; }
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 420px;
  height: 100vh;
  background: var(--white);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform .35s ease;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.cart-drawer.open { transform: translateX(0); }
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.drawer-header h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; }
.drawer-close { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1.5px solid var(--border); cursor: pointer; font-size: .9rem; transition: var(--transition); }
.drawer-close:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.drawer-body { flex: 1; overflow-y: auto; padding: 16px 24px; }
.drawer-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.drawer-item-img { width: 70px; height: 84px; border-radius: 8px; overflow: hidden; background: var(--bg-section); }
.drawer-item-img img { width: 100%; height: 100%; object-fit: cover; }
.drawer-item-name { font-size: .88rem; font-weight: 700; margin-bottom: 4px; }
.drawer-item-meta { font-size: .76rem; color: var(--text-muted); margin-bottom: 8px; }
.drawer-item-row { display: flex; align-items: center; justify-content: space-between; }
.drawer-item-price { font-size: .9rem; font-weight: 700; }
.drawer-footer { padding: 20px 24px; border-top: 1px solid var(--border); flex-shrink: 0; }
.drawer-total { display: flex; justify-content: space-between; font-weight: 700; font-size: 1rem; margin-bottom: 16px; }
.drawer-empty { text-align: center; padding: 50px 20px; color: var(--text-muted); }
.drawer-empty i { font-size: 3rem; color: var(--border); display: block; margin-bottom: 12px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { display: none; }
  .hero-content { padding: 70px 0; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; display: none; }
  .shop-sidebar.open { display: block; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .checkout-layout { grid-template-columns: 1fr; }
  .order-summary-panel { position: static; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav { display: none; position: fixed; inset: 0; top: 71px; background: var(--bg-light); flex-direction: column; align-items: center; justify-content: center; gap: 14px; z-index: 999; }
  .main-nav.open { display: flex; }
  .main-nav a { font-size: 1.2rem; padding: 12px 28px; }
  .menu-toggle { display: flex; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-story-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cart-drawer { width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .promo-banner { padding: 50px 0; }
  .countdown { gap: 10px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .products-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-item-right { display: none; }
  .checkout-layout { gap: 30px; }
}

/* ============================================================
   MISC HELPERS
   ============================================================ */
.skeleton { background: linear-gradient(90deg, #f0ece8 25%, #e5e1dc 50%, #f0ece8 75%); background-size: 200% 100%; animation: shimmer 1.4s infinite; border-radius: 6px; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.no-product { text-align: center; padding: 80px 0; color: var(--text-muted); }
.no-product i { font-size: 4rem; display: block; margin-bottom: 16px; color: var(--border); }
.success-page { text-align: center; padding: 100px 0; }
.success-icon { width: 90px; height: 90px; background: #e8f5e9; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 2.5rem; color: var(--success); }
