/* East Towards Home - Brown Theme Ecommerce */
:root {
  --brown-dark: #2c1810;
  --brown-primary: #5c4033;
  --brown-medium: #8b6355;
  --brown-accent: #a67c52;
  --brown-light: #c4a882;
  --brown-pale: #f5f0eb;
  --bg-light: #f5f5f5;
  --bg-white: #ffffff;
  --text-dark: #333333;
  --text-muted: #777777;
  --text-light: #999999;
  --sale-red: #e74c3c;
  --new-blue: #2980b9;
  --badge-yellow: #f1c40f;
  --border-color: #e8e8e8;
  --font-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-heading: Georgia, 'Times New Roman', serif;
  --transition: 0.3s ease;
  --shadow: 0 2px 15px rgba(44, 24, 16, 0.08);
  --container: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--bg-white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brown-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brown-accent); }

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.btn-brown { background: var(--brown-primary); color: #fff; }
.btn-brown:hover { background: var(--brown-dark); color: #fff; }
.btn-outline { background: transparent; border: 2px solid var(--brown-primary); color: var(--brown-primary); }
.btn-outline:hover { background: var(--brown-primary); color: #fff; }
.btn-white { background: #fff; color: var(--brown-primary); }
.btn-white:hover { background: var(--brown-pale); color: var(--brown-dark); }
.btn-sm { padding: 8px 18px; font-size: 11px; }
.btn-lg { padding: 15px 40px; font-size: 14px; }

/* Top Bar */
.top-bar {
  background: var(--brown-dark);
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  padding: 8px 0;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar a { color: rgba(255,255,255,0.8); }
.top-bar a:hover { color: #fff; }
.top-bar-right { display: flex; gap: 15px; align-items: center; }
.top-divider { opacity: 0.4; }

/* Main Header */
.main-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  gap: 20px;
}
.logo img { height: 48px; width: auto; }

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}
.main-nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dark);
  padding: 5px 0;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brown-accent);
  transition: width var(--transition);
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 18px; }
.search-toggle, .cart-link {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
  position: relative;
  display: flex;
  align-items: center;
}
.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--brown-primary);
  color: #fff;
  font-size: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown-primary);
  transition: var(--transition);
}

.search-overlay {
  display: none;
  background: var(--brown-pale);
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}
.search-overlay.active { display: block; }
.search-form { display: flex; gap: 10px; max-width: 600px; margin: 0 auto; }
.search-form input {
  flex: 1;
  padding: 12px 18px;
  border: 1px solid var(--border-color);
  font-size: 14px;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 550px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44, 24, 16, 0.45);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 20px;
}
.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}
.hero-content p {
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active, .hero-dot:hover { background: #fff; }

/* Service Bar */
.service-bar {
  background: var(--bg-white);
  padding: 35px 0;
  border-bottom: 1px solid var(--border-color);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.service-item {
  text-align: center;
  padding: 10px;
}
.service-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-medium);
}
.service-item h4 {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: var(--brown-primary);
}
.service-item p { font-size: 12px; color: var(--text-muted); }

/* Section Titles */
.section { padding: 60px 0; }
.section-gray { background: var(--bg-light); }
.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-title h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--brown-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title .divider {
  width: 60px;
  height: 3px;
  background: var(--brown-accent);
  margin: 0 auto;
}

/* Product Tabs */
.product-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border-color);
}
.product-tab {
  padding: 12px 25px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}
.product-tab.active, .product-tab:hover {
  color: var(--brown-primary);
  border-bottom-color: var(--brown-accent);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.product-card {
  background: var(--bg-white);
  transition: var(--transition);
  border: 1px solid transparent;
}
.product-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--border-color);
}
.product-image-wrap {
  position: relative;
  overflow: hidden;
  background: var(--bg-light);
  aspect-ratio: 1;
}
.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-image-wrap img { transform: scale(1.05); }
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  z-index: 2;
}
.badge-sale { background: var(--sale-red); }
.badge-new { background: var(--new-blue); }
.product-info { padding: 18px 15px; text-align: center; }
.product-category {
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.product-info h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 8px 0;
  line-height: 1.4;
}
.product-info h3 a { color: var(--text-dark); }
.product-info h3 a:hover { color: var(--brown-accent); }
.product-rating {
  font-size: 12px;
  color: var(--badge-yellow);
  margin-bottom: 8px;
}
.product-rating span { color: var(--text-light); }
.product-price { margin-bottom: 12px; }
.price-current { font-size: 16px; font-weight: 700; color: var(--brown-primary); }
.price-old { font-size: 13px; color: var(--text-light); text-decoration: line-through; margin-right: 8px; }

.show-more-wrap { text-align: center; margin-top: 40px; }

/* Featured Product */
.featured-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 60px 0;
}
.featured-product-image img {
  width: 100%;
  border-radius: 2px;
}
.featured-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brown-accent);
  margin-bottom: 10px;
}
.featured-product-text h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--brown-primary);
  margin-bottom: 20px;
  letter-spacing: 2px;
}
.featured-product-text p {
  color: var(--text-muted);
  margin-bottom: 25px;
  line-height: 1.8;
}

/* Mini Product Lists */
.mini-lists {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.mini-list-col h3 {
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brown-primary);
  padding-bottom: 15px;
  border-bottom: 2px solid var(--brown-accent);
  margin-bottom: 20px;
}
.mini-product {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  align-items: center;
}
.mini-product-img {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--bg-light);
}
.mini-product-img img { width: 100%; height: 100%; object-fit: cover; }
.mini-product-info h4 { font-size: 13px; font-weight: 500; line-height: 1.3; margin-bottom: 4px; }
.mini-product-info h4 a { color: var(--text-dark); }

/* Promo Banners */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.promo-large {
  grid-row: span 2;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.promo-large::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(44,24,16,0.7));
}
.promo-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  color: #fff;
}
.promo-content h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}
.promo-small-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.promo-small {
  position: relative;
  min-height: 190px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.promo-small::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(44,24,16,0.65));
}
.promo-small .promo-content h3 { font-size: 18px; }
.discount-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  background: var(--badge-yellow);
  color: var(--brown-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  z-index: 2;
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow); }
.blog-card-image { overflow: hidden; height: 220px; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 25px; }
.blog-meta { font-size: 12px; color: var(--text-light); margin-bottom: 10px; }
.blog-card-body h3 { font-size: 16px; margin-bottom: 12px; line-height: 1.4; }
.blog-card-body p { font-size: 14px; color: var(--text-muted); margin-bottom: 15px; }
.read-more { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--brown-accent); }

/* Brand Bar */
.brand-bar {
  padding: 40px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.brand-logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.brand-logos span {
  font-size: 22px;
  font-weight: 700;
  color: #ccc;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Page Banner */
.page-banner {
  background: var(--brown-primary);
  color: #fff;
  padding: 50px 0;
  text-align: center;
}
.page-banner h1 {
  font-family: var(--font-heading);
  font-size: 36px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.breadcrumb {
  font-size: 13px;
  opacity: 0.8;
}
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: #fff; }

/* Content Pages */
.page-content { padding: 60px 0; }
.content-block { max-width: 900px; margin: 0 auto; }
.content-block h2 {
  font-family: var(--font-heading);
  color: var(--brown-primary);
  font-size: 24px;
  margin: 30px 0 15px;
}
.content-block h3 { color: var(--brown-medium); font-size: 18px; margin: 25px 0 12px; }
.content-block p { margin-bottom: 15px; color: var(--text-muted); line-height: 1.8; }
.content-block ul, .content-block ol { margin: 15px 0 15px 25px; color: var(--text-muted); }
.content-block li { margin-bottom: 8px; line-height: 1.7; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }

/* Product Detail */
.product-detail { padding: 50px 0; }
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.product-detail-image {
  background: var(--bg-light);
  padding: 30px;
  position: relative;
}
.product-detail-image .product-badge { top: 40px; left: 40px; }
.product-detail-image img { width: 100%; }
.product-detail-info h1 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--brown-primary);
  margin-bottom: 10px;
}
.product-detail-info .product-rating { font-size: 14px; margin-bottom: 15px; }
.product-detail-price { font-size: 28px; font-weight: 700; color: var(--brown-primary); margin-bottom: 20px; }
.product-detail-desc { color: var(--text-muted); line-height: 1.8; margin-bottom: 25px; }
.product-actions { display: flex; gap: 15px; align-items: center; margin-bottom: 30px; flex-wrap: wrap; }
.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
}
.qty-selector button {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--bg-light);
  cursor: pointer;
  font-size: 18px;
}
.qty-selector input {
  width: 50px;
  height: 40px;
  border: none;
  text-align: center;
  font-size: 14px;
}
.product-features { margin-top: 30px; }
.product-features h3 { font-size: 16px; margin-bottom: 15px; color: var(--brown-primary); }
.product-features ul { list-style: none; margin: 0; }
.product-features li {
  padding: 8px 0 8px 25px;
  position: relative;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-color);
}
.product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brown-accent);
  font-weight: 700;
}
.specs-table { width: 100%; margin-top: 30px; border-collapse: collapse; }
.specs-table td { padding: 10px 15px; border-bottom: 1px solid var(--border-color); font-size: 14px; }
.specs-table td:first-child { font-weight: 600; color: var(--brown-primary); width: 40%; }

/* Cart */
.cart-table { width: 100%; border-collapse: collapse; margin-bottom: 30px; }
.cart-table th {
  background: var(--brown-pale);
  padding: 15px;
  text-align: left;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brown-primary);
  border-bottom: 2px solid var(--brown-light);
}
.cart-table td { padding: 20px 15px; border-bottom: 1px solid var(--border-color); vertical-align: middle; }
.cart-product { display: flex; align-items: center; gap: 15px; }
.cart-product img { width: 80px; height: 80px; object-fit: cover; }
.qty-control { display: flex; align-items: center; border: 1px solid var(--border-color); }
.qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: var(--bg-light);
  cursor: pointer;
}
.qty-input { width: 45px; height: 32px; border: none; text-align: center; font-size: 14px; }
.cart-remove {
  background: none;
  border: none;
  font-size: 22px;
  color: var(--text-light);
  cursor: pointer;
}
.cart-remove:hover { color: var(--sale-red); }
.cart-summary {
  background: var(--bg-light);
  padding: 30px;
  max-width: 400px;
  margin-left: auto;
}
.cart-summary h3 { margin-bottom: 20px; color: var(--brown-primary); }
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
}
.summary-row.total { font-size: 18px; font-weight: 700; color: var(--brown-primary); border-bottom: none; margin-top: 10px; }
.cart-empty { text-align: center; padding: 60px 20px; }
.cart-empty h2 { color: var(--brown-primary); margin-bottom: 15px; }

/* Forms */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--brown-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  font-size: 14px;
  font-family: var(--font-body);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--brown-accent);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group.is-invalid input,
.form-group.is-invalid textarea,
.form-group.is-invalid select { border-color: var(--sale-red); }
.field-error { display: block; color: var(--sale-red); font-size: 12px; margin-top: 4px; }
.form-success {
  display: none;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 30px;
  text-align: center;
  border-radius: 4px;
  margin-top: 20px;
}
.form-success h3 { margin-bottom: 10px; }
.checkout-success {
  display: none;
  background: var(--brown-pale);
  border: 2px solid var(--brown-light);
  padding: 40px;
  text-align: center;
  margin-top: 30px;
}
.checkout-success h2 { color: var(--brown-primary); margin-bottom: 15px; }
.checkout-success p { color: var(--text-muted); font-size: 16px; }

.contact-form-wrap {
  background: var(--bg-light);
  padding: 40px;
}

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
}
.faq-item h3 {
  font-size: 16px;
  color: var(--brown-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item p {
  margin-top: 12px;
  color: var(--text-muted);
  line-height: 1.8;
  display: none;
}
.faq-item.open p { display: block; }

/* Footer */
#site-footer { margin-top: auto; }
.footer-about {
  background: var(--brown-dark);
  color: rgba(255,255,255,0.85);
  padding: 50px 0;
  text-align: center;
}
.footer-about h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #fff;
}
.footer-about p {
  max-width: 700px;
  margin: 0 auto 25px;
  line-height: 1.8;
  font-size: 14px;
}
.social-links { display: flex; justify-content: center; gap: 15px; }
.social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition);
}
.social-links a:hover { background: var(--brown-accent); border-color: var(--brown-accent); }

.footer-columns { background: var(--brown-primary); padding: 50px 0; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.footer-col h4 {
  color: #fff;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--brown-accent);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.75); font-size: 13px; }
.footer-col a:hover { color: #fff; }
.footer-newsletter-text { color: rgba(255,255,255,0.75); font-size: 13px; margin-bottom: 15px; line-height: 1.6; }
.footer-newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.footer-newsletter-form input {
  padding: 10px 12px;
  border: none;
  font-size: 13px;
}

.footer-bottom {
  background: #1a0f0a;
  padding: 20px 0;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,0.6); }
.footer-legal a:hover { color: #fff; }
.payment-icons { display: flex; gap: 10px; }
.pay-icon {
  background: rgba(255,255,255,0.1);
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Cart Toast */
.cart-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--brown-primary);
  color: #fff;
  padding: 15px 25px;
  border-radius: 4px;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.cart-toast.show { transform: translateY(0); opacity: 1; }

/* Filter Bar */
.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}
.filter-bar select {
  padding: 10px 15px;
  border: 1px solid var(--border-color);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .mini-lists { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .mobile-menu-btn { display: flex; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    display: none;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; padding: 20px; gap: 0; }
  .main-nav a { display: block; padding: 12px 0; border-bottom: 1px solid var(--border-color); }

  .hero-slider { height: 400px; }
  .hero-content h1 { font-size: 36px; letter-spacing: 4px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-product { grid-template-columns: 1fr; }
  .mini-lists { grid-template-columns: 1fr; }
  .promo-grid { grid-template-columns: 1fr; }
  .promo-large { grid-row: auto; min-height: 300px; }
  .blog-grid { grid-template-columns: 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .cart-table { font-size: 13px; }
  .cart-product img { width: 60px; height: 60px; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 28px; }
  .promo-small-grid { grid-template-columns: 1fr; }
}
