/* FitVille Clone - Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #1a1a1a;
  --accent: #e85d04;
  --accent-hover: #d45103;
  --sale: #c41e3a;
  --new-badge: #2d6a4f;
  --bg: #ffffff;
  --bg-light: #f7f7f7;
  --bg-dark: #1a1a1a;
  --text: #1a1a1a;
  --text-muted: #666666;
  --border: #e5e5e5;
  --star: #f5a623;
  --announcement-bg: #1a1a1a;
  --announcement-text: #ffffff;
  --header-height: 70px;
  --max-width: 1400px;
  --radius: 4px;
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Announcement Bar */
.announcement-bar {
  background: var(--announcement-bg);
  color: var(--announcement-text);
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.announcement-bar span { margin: 0 16px; opacity: 0.7; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 24px;
}

.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 36px;
  width: auto;
}

.icon-btn {
  width: 40px;
  height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  border-radius: 50%;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.icon-btn:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--primary);
}

.header-icon {
  width: 22px;
  height: 22px;
  display: block;
}

.mobile-menu-btn { display: none; }

.main-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color var(--transition);
  white-space: nowrap;
}

.main-nav a:hover { color: var(--accent); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.header-actions button {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition);
}

.cart-btn {
  position: relative;
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 2px;
  background: var(--primary);
  color: white;
  font-size: 10px;
  font-weight: 600;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 1.5px solid white;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--bg-light);
  height: 500px;
}

.hero-slides-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide > a {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slide img, .hero-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 60px;
  color: white;
  pointer-events: none;
}

.hero-content--right {
  align-items: flex-end;
  text-align: right;
  padding-right: 80px;
}

.hero-content .btn { pointer-events: auto; }

.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 16px;
  margin-bottom: 24px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.btn-pill {
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 12px;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  color: var(--primary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  transition: background var(--transition);
  cursor: pointer;
  border: none;
}

.hero-arrow:hover { background: white; }
.hero-arrow--prev { left: 20px; }
.hero-arrow--next { right: 20px; }

.video-banner {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: #000;
}

.video-banner video,
.video-banner .video-poster {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.video-banner .video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  background: rgba(0,0,0,0.25);
  pointer-events: none;
}

.video-banner .video-overlay h2 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.video-banner .video-overlay p {
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.wide-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 20;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background var(--transition);
  border: none;
  padding: 0;
}

.hero-dot.active { background: white; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover { background: #333; }

.btn-accent {
  background: var(--accent);
  color: white;
}

.btn-accent:hover { background: var(--accent-hover); }

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover { background: var(--primary); color: white; }

.btn-white {
  background: white;
  color: var(--primary);
}

.btn-white:hover { background: #f0f0f0; }

.btn-full { width: 100%; }

.btn-sm { padding: 10px 20px; font-size: 12px; }

/* Section */
.section { padding: 60px 0; }
.section-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

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

.section-header h2 {
  font-size: 24px;
  font-weight: 700;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  position: relative;
  group: hover;
}

.product-card-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-light);
  border-radius: var(--radius);
  margin-bottom: 12px;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-image img { transform: scale(1.05); }

.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 2px;
}

.badge-new { background: var(--new-badge); color: white; }
.badge-sale { background: var(--sale); color: white; }

.product-colors {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  min-height: 36px;
}

.color-swatch {
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1.5px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-light);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.color-swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.color-swatch:hover {
  border-color: #ccc;
}

.color-swatch.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
}

.color-more {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 2px;
  align-self: center;
}

.product-color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.color-swatch--lg {
  width: 52px;
  height: 52px;
  border-radius: 6px;
}

.product-card h3 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  line-height: 1.3;
}

.product-card h3 a:hover { color: var(--accent); }

.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.price-current {
  font-size: 16px;
  font-weight: 700;
}

.price-compare {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-muted);
}

.stars { color: var(--star); }

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

.category-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-card:hover img { transform: scale(1.05); }

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: white;
}

.category-overlay h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.category-links {
  display: flex;
  gap: 12px;
}

.category-links a {
  font-size: 12px;
  font-weight: 600;
  text-decoration: underline;
  opacity: 0.9;
}

.category-links a:hover { opacity: 1; }

/* Promo Banner */
.promo-banner {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 40px 0;
}

.promo-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-banner .promo-content {
  position: relative;
  z-index: 1;
  color: white;
  padding: 60px 80px;
  background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, transparent 70%);
  width: 100%;
}

.promo-content h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 12px;
}

.promo-content--right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  background: linear-gradient(270deg, rgba(0,0,0,0.5) 0%, transparent 60%);
}

/* Review Section */
.review-section {
  background: var(--bg-light);
  padding: 80px 0;
  text-align: center;
}

.review-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.review-section p {
  max-width: 700px;
  margin: 0 auto 24px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}

.review-author {
  font-weight: 600;
  font-size: 14px;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-card {
  text-align: center;
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-card p { color: var(--text-muted); font-size: 14px; margin-bottom: 8px; }
.contact-card a { color: var(--accent); font-weight: 600; }

/* Footer */
.site-footer {
  background: var(--bg-dark);
  color: #ccc;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo { color: white; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 13px; line-height: 1.7; }

.footer-col h4 {
  color: white;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer-col a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.payment-icons {
  display: flex;
  gap: 8px;
  font-size: 20px;
}

/* Shop Page */
.page-header {
  background: var(--bg-light);
  padding: 40px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 32px;
  font-weight: 700;
}

.breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.breadcrumb a:hover { color: var(--accent); }

.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  padding: 40px 0;
}

.filters {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  align-self: start;
}

.filter-group {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.filter-group h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  cursor: pointer;
}

.filter-option input { accent-color: var(--primary); }

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.shop-toolbar select {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  background: white;
}

/* Product Page */
.product-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 40px 0 80px;
}

.product-gallery {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  align-self: start;
}

.main-image {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-light);
  margin-bottom: 12px;
}

.main-image img { width: 100%; height: 100%; object-fit: cover; }

.thumbnail-row {
  display: flex;
  gap: 8px;
}

.thumbnail {
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.7;
  transition: all var(--transition);
}

.thumbnail.active, .thumbnail:hover { border-color: var(--primary); opacity: 1; }
.thumbnail img { width: 100%; height: 100%; object-fit: cover; }

.product-info h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}

.product-info .product-rating { margin-bottom: 16px; font-size: 14px; }

.product-info .product-price { margin-bottom: 24px; }
.product-info .price-current { font-size: 28px; }

.option-group { margin-bottom: 24px; }

.option-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.option-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.option-btn {
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  transition: all var(--transition);
}

.option-btn:hover { border-color: var(--primary); }
.option-btn.selected { background: var(--primary); color: white; border-color: var(--primary); }

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
}

.quantity-selector button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-selector input {
  width: 60px;
  height: 40px;
  border: 1px solid var(--border);
  border-left: none;
  border-right: none;
  text-align: center;
  font-size: 16px;
  font-family: inherit;
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.product-accordion { border-top: 1px solid var(--border); }

.accordion-item { border-bottom: 1px solid var(--border); }

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}

.accordion-body {
  padding-bottom: 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  display: none;
}

.accordion-body.open { display: block; }
.accordion-body ul { list-style: disc; padding-left: 20px; margin-top: 8px; }

/* Cart Page */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  padding: 40px 0 80px;
}

.cart-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.cart-item-image {
  width: 120px;
  height: 120px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-light);
}

.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }

.cart-item-details h3 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.cart-item-details p { font-size: 13px; color: var(--text-muted); margin-bottom: 4px; }

.cart-item-price {
  font-size: 16px;
  font-weight: 700;
  text-align: right;
}

.remove-btn {
  font-size: 12px;
  color: var(--sale);
  margin-top: 8px;
  text-decoration: underline;
}

.cart-summary {
  background: var(--bg-light);
  padding: 28px;
  border-radius: var(--radius);
  position: sticky;
  top: calc(var(--header-height) + 20px);
  align-self: start;
}

.cart-summary h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
}

.summary-row.total {
  font-size: 18px;
  font-weight: 700;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 16px;
}

.promo-input {
  display: flex;
  gap: 8px;
  margin: 20px 0;
}

.promo-input input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
}

.empty-cart {
  text-align: center;
  padding: 80px 20px;
}

.empty-cart h2 { font-size: 24px; margin-bottom: 12px; }
.empty-cart p { color: var(--text-muted); margin-bottom: 24px; }

/* Legal Pages */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}

.legal-page h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.legal-page .last-updated {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 40px;
}

.legal-page h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 32px 0 12px;
}

.legal-page p, .legal-page li {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 12px;
}

.legal-page ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }

/* Cart Drawer */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-drawer-overlay.open { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  max-width: 100vw;
  height: 100vh;
  background: white;
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
}

.cart-drawer.open { right: 0; }

.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.cart-drawer-header h2 { font-size: 18px; font-weight: 700; }
.close-drawer { font-size: 24px; }

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}

.drawer-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.drawer-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--bg-light);
}

.drawer-item-info { flex: 1; }
.drawer-item-info h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.drawer-item-info p { font-size: 12px; color: var(--text-muted); }
.drawer-item-price { font-weight: 700; font-size: 14px; }

.cart-drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}

/* Search Modal */
.search-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 3000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
}

.search-modal.open { display: flex; }

.search-box {
  background: white;
  width: 600px;
  max-width: 90vw;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.search-box input {
  width: 100%;
  padding: 20px 24px;
  font-size: 18px;
  border: none;
  outline: none;
  font-family: inherit;
}

.search-results {
  max-height: 400px;
  overflow-y: auto;
  border-top: 1px solid var(--border);
}

.search-result-item {
  display: flex;
  gap: 16px;
  padding: 12px 24px;
  transition: background var(--transition);
  cursor: pointer;
}

.search-result-item:hover { background: var(--bg-light); }
.search-result-item img { width: 60px; height: 60px; object-fit: cover; border-radius: var(--radius); }

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--primary);
  color: white;
  padding: 16px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  z-index: 5000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
}

.toast.show { transform: translateY(0); opacity: 1; }

/* Responsive */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .product-page { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
}

@media (min-width: 768px) {
  .hero-slider { height: 600px; }
  .video-banner video, .video-banner .video-poster { height: 600px; }
  .hero-content h1 { font-size: 60px; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-btn { display: block; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { padding: 30px 24px; }
  .hero-content--right { padding-right: 24px; }
  .hero-content h1 { font-size: 28px; }
  .hero-arrow { display: none; }
  .shop-layout { grid-template-columns: 1fr; }
  .filters { display: none; }
  .cart-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .promo-banner .promo-content { padding: 40px 24px; }
  .promo-content h2 { font-size: 28px; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
  .announcement-bar span { display: none; }
}
