:root {
  --primary: #8B4513;
  --primary-dark: #6B3410;
  --accent: #D2691E;
  --cream: #FAF6F1;
  --sand: #E8D5BE;
  --text: #2C1810;
  --text-light: #6B5B4E;
  --white: #FFFFFF;
  --border: #E0CAB0;
  --success: #4A7C59;
  --warning: #C17B3A;
}

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

html, body { overflow-x: hidden; max-width: 100vw; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

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

/* ===== HEADER ===== */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(44,24,16,0.08);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.logo-sub {
  font-size: 0.65rem;
  color: var(--text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

nav { display: flex; align-items: center; gap: 2rem; }

nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
}

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

nav a:hover::after, nav a.active::after { width: 100%; }
nav a:hover, nav a.active { color: var(--primary); }

.header-actions { display: flex; align-items: center; gap: 1rem; }

.search-btn, .cart-btn {
  background: none;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: var(--text);
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.search-btn:hover, .cart-btn:hover {
  background: var(--sand);
  color: var(--primary);
}

.cart-count {
  background: var(--primary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-btn {
  display: none;
  background: none;
  padding: 0.5rem;
  color: var(--text);
  font-size: 1.4rem;
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
  z-index: 999;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 1rem; font-weight: 500; padding: 0.5rem 0; border-bottom: 1px solid var(--border); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #2C1810 0%, #5C3020 50%, #8B4513 100%);
  color: var(--white);
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80') center/cover no-repeat;
  opacity: 0.3;
}

.hero-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 0.4rem 1.2rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  letter-spacing: -1px;
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  background: var(--white);
  color: var(--primary);
  padding: 0.9rem 2.2rem;
  border-radius: 0.6rem;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
  padding: 0.9rem 2.2rem;
  border-radius: 0.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, border-color 0.2s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ===== SECTION ===== */
section { padding: 4rem 1.5rem; }
.container { max-width: 1280px; margin: 0 auto; }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
  margin-bottom: 0.8rem;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ===== CATEGORIES ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.category-card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(139,69,19,0.15);
}

.category-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.category-info {
  padding: 1.2rem;
  text-align: center;
}

.category-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.category-info span {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ===== PRODUCTS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(139,69,19,0.15);
}

.product-badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: var(--primary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 1;
}

.product-badge.sale { background: #C0392B; }
.product-badge.new { background: var(--success); }

.wishlist-btn {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  background: rgba(255,255,255,0.9);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 1;
}

.wishlist-btn:hover { background: var(--white); color: #E74C3C; }

.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 260px;
}

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

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

.product-info {
  padding: 1.2rem;
}

.product-info h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-stars {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-light);
}

.stars { color: #F59E0B; }

.product-price {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.price { font-size: 1.1rem; font-weight: 700; color: var(--primary); }
.price-old { font-size: 0.85rem; color: var(--text-light); text-decoration: line-through; }

.add-to-cart {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  padding: 0.7rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.add-to-cart:hover { background: var(--primary-dark); }
.add-to-cart:active { transform: scale(0.98); }

/* ===== BANNER ===== */
.promo-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  padding: 3rem 1.5rem;
  text-align: center;
}

.promo-banner h2 { font-size: 2rem; font-weight: 800; margin-bottom: 0.8rem; }
.promo-banner p { opacity: 0.9; margin-bottom: 1.5rem; font-size: 1.05rem; }

.btn-white {
  background: var(--white);
  color: var(--primary);
  padding: 0.85rem 2rem;
  border-radius: 0.6rem;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: 1rem;
  border: 1px solid var(--border);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.85rem; color: var(--text-light); }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.8rem;
}

.testimonial-stars { color: #F59E0B; font-size: 1rem; margin-bottom: 1rem; }
.testimonial-card p { font-size: 0.9rem; color: var(--text-light); font-style: italic; line-height: 1.7; margin-bottom: 1.2rem; }

.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--sand);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--primary); font-size: 1rem;
}
.author-name { font-size: 0.9rem; font-weight: 600; }
.author-loc { font-size: 0.75rem; color: var(--text-light); }

/* ===== NEWSLETTER ===== */
.newsletter {
  background: var(--text);
  color: var(--white);
  padding: 4rem 1.5rem;
  text-align: center;
}

.newsletter h2 { font-size: 2rem; font-weight: 800; margin-bottom: 0.8rem; }
.newsletter p { opacity: 0.8; margin-bottom: 2rem; }

.newsletter-form {
  display: flex;
  gap: 0.8rem;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1.2rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  font-family: inherit;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  outline: none;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.18); }

.newsletter-form button {
  background: var(--primary);
  color: var(--white);
  padding: 0.85rem 1.8rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.2s;
  white-space: nowrap;
}

.newsletter-form button:hover { background: var(--accent); }

/* ===== FOOTER ===== */
footer {
  background: #1A0F0A;
  color: rgba(255,255,255,0.8);
  padding: 3rem 1.5rem 1.5rem;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-brand .logo-text { font-size: 1.2rem; color: var(--white); }
.footer-brand p { font-size: 0.85rem; opacity: 0.7; margin-top: 0.8rem; line-height: 1.7; }

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 0.6rem;
  transition: opacity 0.2s;
}

.footer-col a:hover { opacity: 1; }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ===== CART DRAWER ===== */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
}

.cart-overlay.open { display: block; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: var(--white);
  z-index: 2001;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

.cart-header h3 { font-size: 1.2rem; font-weight: 700; }
.close-cart { background: none; font-size: 1.5rem; color: var(--text); }

.cart-items { flex: 1; overflow-y: auto; padding: 1.5rem; }

.cart-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.cart-item img { width: 70px; height: 70px; border-radius: 0.5rem; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.3rem; }
.cart-item-price { font-size: 0.9rem; color: var(--primary); font-weight: 700; }
.cart-item-remove { font-size: 0.75rem; color: var(--text-light); cursor: pointer; margin-top: 0.3rem; }
.cart-item-remove:hover { color: #C0392B; }

.cart-empty { text-align: center; padding: 3rem 1rem; color: var(--text-light); }
.cart-empty p { margin-top: 1rem; }

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.checkout-btn {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  padding: 1rem;
  border-radius: 0.6rem;
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.2s;
}

.checkout-btn:hover { background: var(--primary-dark); }

/* ===== SHOP PAGE ===== */
.shop-hero {
  background: linear-gradient(135deg, #2C1810, #5C3020);
  color: var(--white);
  padding: 3rem 1.5rem;
  text-align: center;
}

.shop-hero h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 0.5rem; }
.shop-hero p { opacity: 0.8; }

.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.filters {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  height: fit-content;
  position: sticky;
  top: 90px;
}

.filter-title { font-size: 1rem; font-weight: 700; margin-bottom: 1.2rem; }

.filter-section { margin-bottom: 1.5rem; }
.filter-section h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 0.8rem; }

.filter-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  padding: 0.3rem 0;
  cursor: pointer;
}

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

.search-bar {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.search-bar input {
  flex: 1;
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
}

.search-bar input:focus { border-color: var(--primary); }

.search-bar button {
  background: var(--primary);
  color: var(--white);
  padding: 0.7rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
}

.shop-results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.results-count { font-size: 0.9rem; color: var(--text-light); }

.sort-select {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 0.85rem;
  font-family: inherit;
  outline: none;
  background: var(--white);
  cursor: pointer;
}

/* ===== PRODUCT DETAIL ===== */
.product-detail {
  max-width: 1280px;
  margin: 2rem auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.product-gallery {}
.main-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
}

.thumb-row { display: flex; gap: 0.8rem; }
.thumb {
  width: 80px;
  height: 80px;
  border-radius: 0.5rem;
  object-fit: cover;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s;
}

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

.product-details-info h1 { font-size: 1.8rem; font-weight: 800; margin-bottom: 0.5rem; }

.detail-stars { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; font-size: 0.9rem; color: var(--text-light); }
.detail-price { font-size: 2rem; font-weight: 800; color: var(--primary); margin-bottom: 1rem; }
.price-note { font-size: 0.85rem; color: var(--success); font-weight: 500; }

.product-description { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; }

.size-label { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.6rem; }
.size-options { display: flex; gap: 0.6rem; margin-bottom: 1.5rem; flex-wrap: wrap; }

.size-btn {
  padding: 0.5rem 1rem;
  border: 2px solid var(--border);
  border-radius: 0.5rem;
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

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

.color-label { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.6rem; }
.color-options { display: flex; gap: 0.6rem; margin-bottom: 1.5rem; }
.color-swatch {
  width: 32px; height: 32px; border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
}

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

.qty-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.qty-label { font-size: 0.9rem; font-weight: 600; }
.qty-control { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 0.5rem; overflow: hidden; }
.qty-btn { padding: 0.5rem 0.8rem; font-size: 1.1rem; background: var(--cream); transition: background 0.2s; }
.qty-btn:hover { background: var(--sand); }
.qty-val { padding: 0.5rem 1rem; font-weight: 600; }

.detail-actions { display: flex; gap: 1rem; }
.btn-add-cart {
  flex: 1;
  background: var(--primary);
  color: var(--white);
  padding: 1rem;
  border-radius: 0.6rem;
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.2s;
}

.btn-add-cart:hover { background: var(--primary-dark); }

.btn-wishlist-detail {
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: 0.6rem;
  background: var(--white);
  font-size: 1.2rem;
  transition: all 0.2s;
}

.btn-wishlist-detail:hover { border-color: var(--primary); color: var(--primary); }

.product-features { margin-top: 1.5rem; }
.product-features li { font-size: 0.9rem; color: var(--text-light); padding: 0.4rem 0; display: flex; align-items: center; gap: 0.6rem; list-style: none; }
.product-features li::before { content: '✓'; color: var(--success); font-weight: 700; }

/* ===== ABOUT PAGE ===== */
.about-hero {
  background: linear-gradient(135deg, #2C1810, #5C3020);
  color: var(--white);
  padding: 5rem 1.5rem;
  text-align: center;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.about-content h2 { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; }
.about-content p { color: var(--text-light); font-size: 1rem; line-height: 1.8; margin-bottom: 1.5rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.8rem;
  text-align: center;
}

.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.85rem; color: var(--text-light); }

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.contact-form-wrap h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 0.5rem; }
.contact-form-wrap p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 2rem; }

.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-family: inherit;
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 120px; }

.submit-btn {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  padding: 0.9rem;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  transition: background 0.2s;
}

.submit-btn:hover { background: var(--primary-dark); }

.contact-info h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1.5rem; }

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  background: var(--sand);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.2rem; }
.contact-item p { font-size: 0.85rem; color: var(--text-light); }

/* ===== CHECKOUT PAGE ===== */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.checkout-form-section h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 1.5rem; }
.checkout-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.checkout-box h3 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.order-summary {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  height: fit-content;
  position: sticky;
  top: 90px;
}

.order-summary h3 { font-size: 1rem; font-weight: 700; margin-bottom: 1.2rem; }

.summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 1rem;
  color: var(--primary);
}

.place-order-btn {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  padding: 1rem;
  border-radius: 0.6rem;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 1.5rem;
  transition: background 0.2s;
}

.place-order-btn:hover { background: var(--primary-dark); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

.breadcrumb a { color: var(--primary); }
.breadcrumb span { color: var(--text-light); }

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

@media (max-width: 768px) {
  nav { display: none; }
  .mobile-menu-btn { display: block; }

  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }

  .shop-layout { grid-template-columns: 1fr; }
  .filters { position: static; }

  .product-detail { grid-template-columns: 1fr; }
  .main-img { height: 350px; }

  .about-hero h1 { font-size: 2rem; }
  .values-grid { grid-template-columns: 1fr; }

  .contact-layout { grid-template-columns: 1fr; }

  .checkout-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .newsletter-form { flex-direction: column; }
  .hero-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .product-img-wrap { height: 200px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--text);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  z-index: 9999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

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