:root {
  --primary: #4A5D23;
  --primary-light: #5C7430;
  --secondary: #C4A484;
  --secondary-light: #D4B896;
  --accent: #E07B53;
  --accent-hover: #C96A45;
  --bg-main: #FAF7F2;
  --bg-card: rgba(255, 255, 255, 0.7);
  --bg-header: rgba(255, 255, 255, 0.8);
  --bg-glass: rgba(255, 255, 255, 0.15);
  --bg-glass-dark: rgba(0, 0, 0, 0.2);
  --text-primary: #333333;
  --text-secondary: #6B6B6B;
  --text-light: #888888;
  --border: rgba(255, 255, 255, 0.2);
  --border-light: rgba(255, 255, 255, 0.1);
  --shadow: rgba(0, 0, 0, 0.08);
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.1);
  --success: #4A5D23;
  --error: #C94C4C;
}

/* Glassmorphism effect */
.glass {
  background: var(--bg-glass);
  border-radius: 16px;
  border: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-glass);
}

.glass-dark {
  background: var(--bg-glass-dark);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-glass);
}

/* Header */
.header {
  background: var(--bg-header);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

/* Cards and containers */
.product-card, .category-card, .feature-card, .contact-info, .contact-form, .cart-item, .cart-summary, .wishlist-item, .order-history-item, .tracking-result {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-glass);
  transition: all 0.3s ease;
}

/* Buttons */
.btn-primary, .btn-accent, .btn-outline {
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

/* Hero section */
.hero {
  background: linear-gradient(135deg, var(--bg-main) 0%, var(--secondary) 20%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: var(--secondary);
  opacity: 0.15;
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Footer */
.footer {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-light);
}

/* Toast */
.toast {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-glass);
}

[data-theme="dark"] {
  --primary: #7A9B4C;
  --primary-light: #8FB05C;
  --secondary: #D4B896;
  --secondary-light: #E0CDAD;
  --accent: #E07B53;
  --accent-hover: #E89070;
  --bg-main: #1A1A1A;
  --bg-card: #252525;
  --bg-header: #222222;
  --text-primary: #F5F5F5;
  --text-secondary: #B0B0B0;
  --text-light: #808080;
  --border: #3A3A3A;
  --shadow: rgba(0, 0, 0, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  gap: 8px;
}

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

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow);
}

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

.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow);
}

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

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

/* Header */
.header {
  background: var(--bg-header);
  box-shadow: 0 2px 10px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 30px;
    flex-wrap: wrap;
}

/* Search Bar */
.search-bar {
    flex: 1;
    min-width: 250px;
    margin: 10px 0;
}

.search-form {
    display: flex;
    gap: 5px;
}

.search-form input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-size: 15px;
    background: var(--bg-main);
    color: var(--text-primary);
    transition: border-color 0.25s ease;
}

.search-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.search-btn {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 0 16px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.search-icon {
    font-size: 18px;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav a {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-secondary);
  transition: color 0.25s ease;
  position: relative;
}

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

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav a.active {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  padding: 8px;
  border-radius: 50%;
  transition: background 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle:hover {
  background: var(--bg-main);
}

.cart-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  padding: 8px;
}

.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--bg-main) 0%, var(--secondary) 20%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: var(--secondary);
  opacity: 0.15;
  border-radius: 50%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.hero-title span {
  color: var(--primary);
}

.hero-desc {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 20px;
  box-shadow: 0 20px 50px var(--shadow);
}

/* Categories */
.categories {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 16px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

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

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

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

.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
}

.category-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  z-index: 1;
}

.category-name {
  color: white;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}

.category-count {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}

/* Products */
.products {
  padding: 80px 0;
  background: var(--bg-main);
}

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

.product-card {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--shadow);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px var(--shadow);
}

.product-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f0ebe4;
}

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

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

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.product-actions {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.product-action-btn {
  background: var(--bg-card);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.25s ease;
}

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

.product-info {
  padding: 20px;
}

.product-category {
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.product-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-current-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.product-original-price {
  font-size: 14px;
  color: var(--text-light);
  text-decoration: line-through;
}

.product-sizes {
  display: flex;
  gap: 6px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.size-btn {
  background: var(--bg-main);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.size-btn:hover,
.size-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* Features */
.features {
  padding: 80px 0;
  background: var(--bg-card);
}

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

.feature-card {
  text-align: center;
  padding: 30px 20px;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--bg-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
}

.feature-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Footer */
.footer {
  background: var(--bg-card);
  padding: 60px 0 25px;
  border-top: 1px solid var(--border);
}

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

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

.footer-logo span {
  color: var(--accent);
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  background: var(--bg-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.25s ease;
}

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

.footer-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 12px;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid var(--border);
  color: var(--text-light);
  font-size: 14px;
}

.footer-bottom a {
  color: var(--primary);
  font-weight: 500;
}

/* Page Banner */
.page-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 60px 0;
  text-align: center;
}

.page-banner h1 {
  color: white;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
}

/* Shop Page */
.shop-page {
  padding: 60px 0;
}

.shop-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

.shop-sidebar {
  background: var(--bg-card);
  padding: 30px;
  border-radius: 16px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.sidebar-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.filter-group {
  margin-bottom: 30px;
}

.filter-label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-secondary);
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

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

.price-range {
  display: flex;
  gap: 15px;
}

.price-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  background: var(--bg-main);
  color: var(--text-primary);
}

/* Product Detail Page */
.product-detail {
  padding: 60px 0;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.product-gallery {
  display: grid;
  gap: 15px;
}

.gallery-main {
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
}

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

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.thumb {
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.25s ease;
}

.thumb.active,
.thumb:hover {
  border-color: var(--primary);
}

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

.product-info-detail h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.product-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  color: var(--text-secondary);
  font-size: 14px;
}

.product-price-detail {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.price-large {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
}

.price-small {
  font-size: 20px;
  color: var(--text-light);
  text-decoration: line-through;
}

.product-desc {
  color: var(--text-secondary);
  margin-bottom: 25px;
  line-height: 1.7;
}

.size-selection {
  margin-bottom: 25px;
}

.size-selection label {
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.size-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.size-option {
  min-width: 50px;
  padding: 12px 20px;
  border: 2px solid var(--border);
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  font-weight: 500;
}

.size-option:hover,
.size-option.active {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
}

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

.quantity-selector label {
  font-weight: 600;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0;
  border: 2px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.quantity-btn {
  width: 45px;
  height: 45px;
  background: var(--bg-main);
  border: none;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}

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

.quantity-value {
  width: 60px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}

.product-actions-detail {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.product-actions-detail .btn {
  flex: 1;
  min-width: 200px;
}

/* Cart Page */
.cart-page {
  padding: 60px 0;
}

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

.cart-empty-icon {
  font-size: 80px;
  margin-bottom: 20px;
}

.cart-empty h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.cart-empty p {
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.cart-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
}

.cart-items {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 30px;
}

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

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-image {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
}

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

.cart-item-name {
  font-size: 16px;
  font-weight: 600;
}

.cart-item-details {
  color: var(--text-secondary);
  font-size: 14px;
}

.cart-item-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 0;
}

.cart-item-quantity .quantity-btn {
  width: 36px;
  height: 36px;
}

.cart-item-quantity .quantity-value {
  width: 45px;
  font-size: 16px;
}

.cart-item-remove {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--text-light);
  transition: color 0.25s ease;
}

.cart-item-remove:hover {
  color: var(--error);
}

.cart-summary {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 30px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.summary-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
}

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

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

.summary-row span:last-child {
  color: var(--primary);
}

/* Contact Page */
.contact-page {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info {
  padding: 40px;
  background: var(--bg-card);
  border-radius: 16px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-icon {
  width: 55px;
  height: 55px;
  background: var(--bg-main);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.contact-label {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 5px;
}

.contact-value {
  font-size: 16px;
  font-weight: 500;
}

.contact-form {
  padding: 40px;
  background: var(--bg-card);
  border-radius: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  background: var(--bg-main);
  color: var(--text-primary);
  transition: border-color 0.25s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--bg-card);
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 10px 40px var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(120%);
  transition: transform 0.35s ease;
  z-index: 9999;
}

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

.toast-icon {
  font-size: 24px;
}

.toast.success .toast-icon {
  color: var(--success);
}

/* Responsive */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
  }
  
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-header);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    box-shadow: 0 10px 20px var(--shadow);
  }
  
  .nav.open {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-title {
    font-size: 38px;
  }
  
  .hero-desc {
    margin: 0 auto 30px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .category-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .shop-grid {
    grid-template-columns: 1fr;
  }
  
  .shop-sidebar {
    display: none;
  }
  
  .product-detail-grid {
    grid-template-columns: 1fr;
  }
  
  .cart-grid {
    grid-template-columns: 1fr;
  }
  
  .cart-item {
    grid-template-columns: 80px 1fr;
    gap: 15px;
  }
  
  .cart-item-details,
  .cart-item-quantity,
  .cart-item-price {
    grid-column: 2;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
   .container {
     padding: 0 15px;
   }
   
   .hero-title {
     font-size: 32px;
   }
   
   .section-title {
     font-size: 28px;
   }
   
   .products-grid {
     grid-template-columns: 1fr;
   }
   
   .footer-grid {
     grid-template-columns: 1fr;
     gap: 30px;
   }
   
   .features-grid {
     grid-template-columns: 1fr;
   }
   
   .social-proof-grid {
     grid-template-columns: 1fr;
   }
   
   .testimonials {
     margin-bottom: 20px;
   }
   
   .proof-stats {
     grid-template-columns: repeat(2, 1fr);
     gap: 15px;
   }
   
   .newsletter-content {
     text-align: center;
   }
   
   .newsletter-form {
     flex-direction: column;
     align-items: stretch;
   }
   
   .newsletter-form input,
   .newsletter-form button {
     width: 100%;
   }
 }

/* Social Proof Section */
.social-proof {
  padding: 60px 0;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-light);
}

.section-header.text-center {
  text-align: center;
}

.social-proof-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.testimonials {
  position: relative;
  margin-bottom: 30px;
}

.testimonial-slide {
  display: none;
  padding: 25px;
  background: var(--bg-main);
  border-radius: 12px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-glass);
}

.testimonial-slide.active {
  display: block;
}

.testimonial-content {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  font-size: 24px;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.author-info h4 {
  margin: 0;
  font-size: 16px;
  color: var(--text-primary);
}

.author-info p {
  margin: 4px 0 0;
  color: var(--text-light);
  font-size: 14px;
}

.proof-stats {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: var(--bg-main);
  border-radius: 12px;
  border: 1px solid var(--border-light);
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Newsletter Section */
.newsletter {
  padding: 60px 0;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-light);
}

.newsletter-content {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-content h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.newsletter-content p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 25px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid var(--border-light);
  border-radius: 10px;
  font-size: 15px;
  background: var(--bg-main);
  color: var(--text-primary);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary);
}

.newsletter-form button {
  flex: 0 0 auto;
}

.newsletter-note {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 10px;
  display: block;
}

/* Hero Badge */
.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Responsive adjustments for hero */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-image {
    margin-top: 30px;
  }
  
  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .hero-badge {
    font-size: 11px;
    padding: 4px 8px;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .hero-desc {
    font-size: 16px;
  }
  
  .hero-buttons .btn {
    padding: 10px 16px;
    font-size: 14px;
  }
  
  .social-proof-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials {
    margin-bottom: 15px;
  }
  
  .proof-stats {
    grid-template-columns: 1fr;
  }
  
  .newsletter-content h2 {
    font-size: 20px;
  }
  
  .newsletter-content p {
    font-size: 14px;
  }
}