/* JadesHome - NEOTEK-inspired brown/yellow theme */
:root {
  --yellow-primary: #E8B923;
  --yellow-hover: #D4A017;
  --dark-brown: #1A1612;
  --warm-brown: #3D2E24;
  --bg-cream: #F7F5F2;
  --bg-card: #F3F0EC;
  --text-body: #555555;
  --text-heading: #1A1612;
  --text-muted: #888888;
  --white: #FFFFFF;
  --border-light: #E8E4DF;
  --shadow-sm: 0 2px 12px rgba(26, 22, 18, 0.08);
  --shadow-md: 0 8px 30px rgba(26, 22, 18, 0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-pill: 50px;
  --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.3s ease;
  --container: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-primary);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--yellow-primary); }

ul { list-style: none; }

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

h1, h2, h3, h4, h5, h6 {
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.3;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }

.text-yellow { color: var(--yellow-primary); }

/* Top bar */
.top-bar {
  background: var(--yellow-primary);
  color: var(--dark-brown);
  text-align: center;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
}

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

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 20px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 20px;
}

.main-nav { display: flex; gap: 28px; align-items: center; }
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-heading);
  position: relative;
}
.main-nav a.active,
.main-nav a:hover { color: var(--yellow-primary); }
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--yellow-primary);
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo img { height: 36px; width: auto; }
.logo-text {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--dark-brown);
}

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

.header-icon {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition);
  color: var(--text-heading);
}
.header-icon:hover { background: var(--bg-cream); color: var(--yellow-primary); }
.header-icon svg { width: 20px; height: 20px; }

.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--yellow-primary);
  color: var(--dark-brown);
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark-brown);
  margin: 5px 0;
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: capitalize;
}

.btn-primary {
  background: var(--yellow-primary);
  color: var(--dark-brown);
}
.btn-primary:hover {
  background: var(--yellow-hover);
  color: var(--dark-brown);
  transform: translateY(-1px);
}

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

.btn-dark {
  background: var(--dark-brown);
  color: var(--white);
}
.btn-dark:hover { background: var(--warm-brown); color: var(--white); }

.btn-sm { padding: 10px 22px; font-size: 13px; }

.btn-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  padding: 0;
  background: var(--yellow-primary);
  color: var(--dark-brown);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.btn-circle:hover { background: var(--yellow-hover); transform: scale(1.05); }

/* Hero Slider */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: 560px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
}
.hero-slide.active { opacity: 1; z-index: 1; }

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,22,18,0.7) 0%, rgba(26,22,18,0.2) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  color: var(--white);
  max-width: 600px;
  margin-left: max(20px, calc((100vw - var(--container)) / 2 + 20px));
}

.hero-content h1 { color: var(--white); margin-bottom: 16px; }
.hero-content p { font-size: 16px; margin-bottom: 28px; opacity: 0.9; }

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.hero-nav:hover { background: var(--yellow-primary); color: var(--dark-brown); }
.hero-prev { left: 20px; }
.hero-next { right: 20px; }

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active { background: var(--yellow-primary); width: 28px; border-radius: 5px; }

/* Section */
.section { padding: 80px 0; }
.section-cream { background: var(--bg-cream); }
.section-title {
  text-align: center;
  margin-bottom: 48px;
}
.section-title h2 { margin-bottom: 8px; }
.section-title .accent-plus { color: var(--yellow-primary); }

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

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--yellow-primary);
  color: var(--dark-brown);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  z-index: 2;
  text-transform: uppercase;
}

.product-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: transform 0.5s ease;
}
.product-card:hover .product-image img { transform: scale(1.05); }

.product-info { padding: 20px; }
.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
  font-size: 13px;
}
.star { color: var(--yellow-primary); }
.star.empty { color: #ddd; }

.product-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 6px;
}
.product-name a:hover { color: var(--yellow-primary); }

.product-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 14px;
}
.product-price .old-price {
  text-decoration: line-through;
  color: var(--text-muted);
  font-weight: 400;
  font-size: 14px;
  margin-left: 8px;
}

.product-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.product-actions .btn { flex: 1; min-width: 120px; padding: 10px 16px; font-size: 12px; }

/* Carousel */
.carousel-wrap { position: relative; }
.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track .product-card {
  flex: 0 0 calc(25% - 18px);
  max-width: calc(25% - 18px);
  min-width: 0;
}

/* Homepage featured carousel – compact cards */
.featured-carousel .carousel-track {
  gap: 16px;
}
.featured-carousel .carousel-track .product-card {
  flex: 0 0 240px;
  max-width: 240px;
}
.featured-carousel .product-image {
  padding: 12px;
  aspect-ratio: 1;
}
.featured-carousel .product-info {
  padding: 14px 16px;
}
.featured-carousel .product-rating {
  font-size: 11px;
  margin-bottom: 6px;
}
.featured-carousel .product-name {
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 4px;
}
.featured-carousel .product-price {
  font-size: 14px;
  margin-bottom: 10px;
}
.featured-carousel .product-price .old-price {
  font-size: 12px;
}
.featured-carousel .product-actions {
  gap: 6px;
}
.featured-carousel .product-actions .btn {
  padding: 8px 10px;
  font-size: 11px;
  min-width: 0;
}
.featured-carousel .carousel-btn {
  width: 36px;
  height: 36px;
  font-size: 16px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: var(--white);
  border: 1px solid var(--border-light);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.carousel-btn:hover { background: var(--yellow-primary); border-color: var(--yellow-primary); }
.carousel-prev { left: -22px; }
.carousel-next { right: -22px; }

/* Promo Cards */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.promo-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: flex-end;
}
.promo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.promo-card:hover img { transform: scale(1.05); }
.promo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(26,22,18,0.75) 0%, transparent 60%);
}
.promo-content {
  position: relative;
  z-index: 2;
  padding: 28px;
  color: white;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.promo-content h3 { color: white; font-size: 1.2rem; max-width: 200px; }

/* Banner */
.full-banner {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
  margin: 0 20px;
  max-width: calc(var(--container) + 40px);
  margin-left: auto;
  margin-right: auto;
}
.full-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.full-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,22,18,0.65) 0%, transparent 70%);
}
.banner-content {
  position: relative;
  z-index: 2;
  padding: 60px;
  color: white;
}
.banner-content h2 { color: white; margin-bottom: 20px; font-size: 2.5rem; }

/* Brand strip */
.brand-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 40px 20px;
  opacity: 0.5;
}
.brand-strip span {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: 1px;
}

/* Spotlight */
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.spotlight-image {
  border-radius: var(--radius-md);
  overflow: hidden;
}
.spotlight-image img { width: 100%; border-radius: var(--radius-md); }
.spotlight-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 28px 0;
}
.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--yellow-primary);
  font-size: 20px;
}
.feature-item h4 { font-size: 14px; margin-bottom: 4px; }
.feature-item p { font-size: 13px; color: var(--text-muted); }

/* Trust badges */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.trust-icon {
  width: 64px;
  height: 64px;
  background: var(--bg-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.trust-item h4 { font-size: 15px; }
.trust-item p { font-size: 13px; color: var(--text-muted); }

/* Footer */
.site-footer {
  background: var(--dark-brown);
  color: rgba(255,255,255,0.75);
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-text { color: white; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }

.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: white;
  font-size: 14px;
}
.social-links a:hover { background: var(--yellow-primary); color: var(--dark-brown); }

.footer-col h4 {
  color: white;
  font-size: 16px;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.footer-col ul a:hover { color: var(--yellow-primary); }

.newsletter-form {
  display: flex;
  gap: 0;
  margin-top: 16px;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border: none;
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  font-family: var(--font-primary);
  font-size: 14px;
  outline: none;
}
.newsletter-form button {
  padding: 14px 24px;
  background: var(--yellow-primary);
  border: none;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  font-weight: 600;
  cursor: pointer;
  color: var(--dark-brown);
  transition: var(--transition);
}
.newsletter-form button:hover { background: var(--yellow-hover); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,0.6); font-size: 13px; }
.footer-bottom-links a:hover { color: var(--yellow-primary); }

/* Page header */
.page-hero {
  background: var(--bg-cream);
  padding: 60px 0;
  text-align: center;
}
.page-hero h1 { margin-bottom: 12px; }
.breadcrumb {
  display: flex;
  gap: 8px;
  justify-content: center;
  font-size: 14px;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.breadcrumb a:hover { color: var(--yellow-primary); }
.breadcrumb span { color: var(--text-heading); }

/* Forms */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-heading);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 14px;
  transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--yellow-primary);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-error {
  color: #c0392b;
  font-size: 12px;
  margin-top: 6px;
  display: none;
}
.form-group.invalid .form-error { display: block; }
.form-group.invalid input,
.form-group.invalid textarea { border-color: #c0392b; }

.form-success {
  background: #d4edda;
  color: #155724;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  display: none;
}
.form-success.show { display: block; }

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.checkbox-group input { width: auto; margin-top: 4px; }
.checkbox-group label { margin-bottom: 0; font-weight: 400; }

/* Product detail */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 60px 0;
}
.product-gallery-main {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  aspect-ratio: 1;
}
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.product-gallery-thumbs img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.product-gallery-thumbs img.active,
.product-gallery-thumbs img:hover { border-color: var(--yellow-primary); }

.product-detail-info h1 { font-size: 2rem; margin-bottom: 12px; }
.product-detail-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-heading);
  margin: 16px 0;
}
.product-detail-desc { margin: 20px 0; }
.product-detail-desc p { margin-bottom: 12px; }

.qty-selector {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 24px 0;
}
.qty-selector button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-light);
  background: var(--white);
  cursor: pointer;
  font-size: 18px;
  transition: var(--transition);
}
.qty-selector button:hover { background: var(--bg-cream); }
.qty-selector input {
  width: 60px;
  height: 40px;
  text-align: center;
  border: 1px solid var(--border-light);
  border-left: none;
  border-right: none;
  font-family: var(--font-primary);
  font-size: 15px;
}

.specs-table {
  width: 100%;
  margin-top: 32px;
  border-collapse: collapse;
}
.specs-table th,
.specs-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
}
.specs-table th {
  font-weight: 600;
  color: var(--text-heading);
  width: 40%;
  background: var(--bg-cream);
}

/* Cart */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  text-align: left;
  padding: 16px;
  border-bottom: 2px solid var(--border-light);
  font-size: 14px;
  color: var(--text-heading);
}
.cart-table td {
  padding: 20px 16px;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
}
.cart-product {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cart-product img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.cart-remove {
  background: none;
  border: none;
  color: #c0392b;
  cursor: pointer;
  font-size: 13px;
  text-decoration: underline;
}
.cart-summary {
  background: var(--bg-cream);
  padding: 32px;
  border-radius: var(--radius-md);
  margin-top: 32px;
  max-width: 400px;
  margin-left: auto;
}
.cart-summary h3 { margin-bottom: 20px; }
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 15px;
}
.cart-summary-total {
  font-size: 1.25rem;
  font-weight: 700;
  border-top: 2px solid var(--border-light);
  padding-top: 16px;
  margin-top: 16px;
  color: var(--text-heading);
}
.cart-empty {
  text-align: center;
  padding: 80px 20px;
}
.cart-empty h2 { margin-bottom: 16px; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
}
.faq-question {
  font-weight: 600;
  color: var(--text-heading);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
}
.faq-question::after {
  content: '+';
  font-size: 20px;
  color: var(--yellow-primary);
  transition: var(--transition);
}
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--text-body);
  font-size: 15px;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding-top: 12px;
}

/* Content pages */
.content-section { padding: 60px 0; }
.content-section .container { max-width: 900px; }
.content-section h2 { margin: 32px 0 16px; font-size: 1.5rem; }
.content-section h3 { margin: 24px 0 12px; font-size: 1.2rem; }
.content-section p { margin-bottom: 16px; }
.content-section ul { list-style: disc; margin: 16px 0 16px 24px; }
.content-section ul li { margin-bottom: 8px; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.value-card {
  background: var(--bg-cream);
  padding: 32px;
  border-radius: var(--radius-md);
  text-align: center;
}
.value-card .feature-icon { margin: 0 auto 16px; }
.value-card h3 { margin-bottom: 10px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
.contact-info h3 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 12px; }
.contact-email {
  font-size: 18px;
  font-weight: 600;
  color: var(--yellow-primary);
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,22,18,0.6);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.show { display: flex; }
.modal {
  background: white;
  border-radius: var(--radius-md);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
}
.modal h2 { margin-bottom: 12px; }
.modal p { margin-bottom: 24px; }

/* Filter bar */
.filter-bar {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  align-items: center;
}
.filter-bar select {
  padding: 10px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 14px;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--dark-brown);
  color: white;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}
.toast.show { transform: translateY(0); opacity: 1; }
