* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

body {
  font-family: Arial, sans-serif;
  background: #f8f1e6;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo a {
  font-size: 28px;
  font-weight: bold;
  color: #c33;
  text-decoration: none;
  cursor: pointer;
}

nav {
  display: flex;
  gap: 15px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.3s;
}

nav a:hover, nav a.active {
  background: #f8f1e6;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  transition: 0.3s;
}

/* Hero */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: #f3e5d7;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  opacity: 0.8;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 50px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(to right, #c8402c, #3b6829);
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  background: white;
  color: #c8402c;
  border: 2px solid #c8402c;
}

/* Grid */
.grid {
  display: grid;
  gap: 40px;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Product Card */
.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card a {
  text-decoration: none;
  color: inherit;
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-card-content {
  padding: 20px;
}

.product-card h3 {
  margin-bottom: 10px;
  color: #c8402c;
}

/* Form */
.form-box {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-box input,
.form-box textarea,
.form-box select {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

/* Cart */
.cart-icon {
  position: relative;
  cursor: pointer;
  font-size: 24px;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #c8402c;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* Product Detail */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-detail img {
  width: 100%;
  border-radius: 12px;
}

.product-info h1 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #c8402c;
}

.product-info .price {
  font-size: 28px;
  font-weight: bold;
  color: #3b6829;
  margin-bottom: 20px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
}

.quantity-selector button {
  width: 40px;
  height: 40px;
  border: 1px solid #ccc;
  background: white;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
}

.quantity-selector input {
  width: 60px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 8px;
}

/* Checkout */
.checkout-summary {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.cart-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-item-details {
  flex: 1;
}

.cart-item-remove {
  color: #c8402c;
  cursor: pointer;
  font-size: 20px;
}

.total {
  display: flex;
  justify-content: space-between;
  font-size: 24px;
  font-weight: bold;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #eee;
}

/* Values Section */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 40px;
  text-align: center;
}

.value-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(to right, #c8402c, #3b6829);
  padding: 50px;
  border-radius: 16px;
  color: white;
  text-align: center;
  font-size: 22px;
  margin-top: 60px;
}

.cta-banner h3 {
  color: white;
}

.cta-banner p {
  opacity: 0.95;
}

/* Feature List */
.feature-list {
  display: grid;
  gap: 25px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: start;
}

.feature-check {
  font-size: 32px;
  color: #3b6829;
  flex-shrink: 0;
}

.feature-item h4 {
  margin-bottom: 8px;
  color: #3b6829;
  font-size: 18px;
}

.feature-item p {
  line-height: 1.6;
}

/* Mission/Vision Boxes */
.info-box {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.info-box h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

/* Section Backgrounds */
.section-bg-light {
  background: #f3e5d7;
  padding: 60px 40px;
  border-radius: 16px;
}

.section-bg-white {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* Mobile */
@media (max-width: 768px) {
  header {
    padding: 15px 20px;
  }

  .menu-toggle {
    display: flex;
  }

  nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: none;
  }

  nav.active {
    display: flex;
  }

  .hero h1 {
    font-size: 32px;
  }

  .container {
    padding: 40px 20px;
  }

  .product-detail {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
}