* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Roboto Slab', serif;
  line-height: 1.6;
  background: #f0f8ff;
  color: #222;
}
.container {
  max-width: 100vw;
  width: 100%;
  margin: 0 auto;
  padding: 0 4vw;
  box-sizing: border-box;
}
.section-bg {
  background: #fff;
  padding: 48px 0;
}

/* Header */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  width: 100%;
}
.logo-title {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-rounded {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid #008000;
  background: #fff;
}
.site-title {
  font-size: 2rem;
  font-weight: bold;
  color: #008000;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: #008000;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover {
  background: #f0f8ff;
  color: #006400;
}

/* Responsive Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #008000;
  cursor: pointer;
}
@media (max-width: 700px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 80px;
    right: 4vw;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 16px;
    border-radius: 8px;
    z-index: 100;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-toggle {
    display: block;
  }
  .header-container {
    position: relative;
  }
}

/* Section titles */
.section-title {
  text-align: center;
  color: #008000;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 32px;
}

/* Hero section */
.hero-section {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(to bottom, #ecf0f1, #fff);
  padding: 48px 0;
}
.hero-desc {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 24px;
  max-width: 600px;
}
.hero-btn {
  padding: 12px 32px;
  background: #008000;
  color: #fff;
  font-weight: bold;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background 0.2s, transform 0.2s;
  margin-top: 8px;
  display: inline-block;
}
.hero-btn:hover {
  background: #006400;
  transform: scale(1.05);
}

/* About section */
.about-flex {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
  width: 100%;
}
@media (min-width: 900px) {
  .about-flex {
    flex-direction: row;
    gap: 2px;
    align-items: center;
    width: 100%;
  }
}
.about-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.about-text h2 {
  text-align: center;
  font-size: 2.5rem;
}
.about-desc {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.about-desc p {
  text-align: justify;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.about-image-box {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.about-img {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  object-fit: cover;
  display: block;
}

/* Products section */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 32px;
}
@media (min-width: 700px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}
.product-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
  height: 100%;
}
.product-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.14);
}
.product-img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 0;
  background: #fff;
  display: block;
}
.product-info {
  width: 100%;
  padding: 18px 16px 24px 16px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.product-tag {
  color: #008000;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.product-name {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 4px;
}
.product-price {
  color: #008000;
  font-size: 1.05rem;
  font-weight: bold;
  margin-bottom: 8px;
}
.product-btn {
  width: 100%;
  background: #008000;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.2s;
  margin-top: 8px;
  cursor: pointer;
}
.product-btn:hover {
  background: #006400;
}

/* --- Enhanced Cart Styles --- */
.cart-btn {
  background: linear-gradient(135deg, #008000 60%, #00c853 100%);
  border: none;
  font-size: 1.7em;
  cursor: pointer;
  position: relative;
  margin-left: 1em;
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.13);
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
}
.cart-btn:active {
  transform: scale(0.97);
  box-shadow: 0 2px 8px rgba(0,0,0,0.11);
}
#cart-count {
  background: #ff5252;
  color: #fff;
  border-radius: 50%;
  padding: 3px 7px;
  font-size: 0.9em;
  position: absolute;
  top: 2px;
  right: 5px;
  font-weight: bold;
  min-width: 22px;
  text-align: center;
  box-shadow: 0 1px 2px rgba(0,0,0,0.14);
}

.cart-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30,48,30,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: background 0.28s;
}
.cart-modal.hidden {
  display: none;
}
.cart-content {
  background: #fff;
  border-radius: 20px;
  padding: 2.2em 1.5em 1.5em 1.5em;
  min-width: 340px;
  max-width: 96vw;
  box-shadow: 0 10px 30px 0 rgba(0,128,0,0.11), 0 2px 12px rgba(0,0,0,0.08);
  animation: cartShow 0.32s cubic-bezier(.66,.01,.29,1.02);
  position: relative;
}
@keyframes cartShow {
  from { transform: translateY(-60px) scale(0.9); opacity: 0; }
  to   { transform: translateY(0px) scale(1); opacity: 1; }
}
.cart-content h2 {
  margin-top: 0;
  color: #008000;
  text-align: center;
  margin-bottom: 18px;
  letter-spacing: 0.03em;
  font-size: 2rem;
}
.cart-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 240px;
  overflow-y: auto;
}
.cart-content li {
  display: flex;
  align-items: center;
  margin-bottom: 1em;
  background: #f4fff4;
  border-radius: 10px;
  padding: 10px 6px;
  box-shadow: 0 2px 8px rgba(0,128,0,0.05);
  transition: background 0.2s;
}
.cart-content li:last-child { margin-bottom: 0; }
.cart-content img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 10px;
  border: 1.5px solid #d4ffd4;
  background: #fff;
}
.cart-content span {
  display: inline-block;
  min-width: 60px;
  margin-right: 7px;
  font-size: 0.98em;
  color: #222;
}
.cart-content .qty-btn,
.cart-content .remove-btn {
  border: none;
  background: #eafbe6;
  color: #008000;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  margin-left: 4px;
  margin-right: 2px;
  cursor: pointer;
  transition: background 0.17s, color 0.17s, box-shadow 0.1s;
  box-shadow: 0 1px 2px rgba(0,128,0,0.04);
}
.cart-content .qty-btn:hover,
.cart-content .remove-btn:hover {
  background: #c8ffd4;
  color: #005c00;
}
.cart-content .remove-btn {
  background: #ffeaea;
  color: #c0392b;
  margin-left: 10px;
  font-size: 0.99em;
  padding: 4px 10px;
}
.cart-content .remove-btn:hover {
  background: #ffd0d0;
  color: #b71c1c;
}
.cart-total {
  font-weight: bold;
  margin: 1.2em 0 0.9em 0;
  font-size: 1.2em;
  text-align: right;
}
#checkout-btn {
  width: 100%;
  background: linear-gradient(90deg, #3ad29f 0%, #008000 100%);
  color: #fff;
  padding: 13px 0;
  border: none;
  border-radius: 7px;
  font-weight: bold;
  font-size: 1.12em;
  margin: 12px 0 8px 0;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,128,0,0.09);
  transition: background 0.19s, transform 0.14s;
  letter-spacing: 0.01em;
}
#checkout-btn:hover {
  background: linear-gradient(90deg, #42e9b7 0%, #00b906 100%);
  transform: scale(1.03);
}
#close-cart-btn {
  display: block;
  margin: 0 auto;
  background: none;
  border: none;
  color: #008000;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 8px;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 6px;
  transition: background 0.14s;
}
#close-cart-btn:hover {
  background: #e6ffe6;
}

@media (max-width: 600px) {
  .cart-content {
    min-width: 95vw;
    padding: 1.2em 2vw 1.2em 2vw;
  }
  .cart-content ul {
    max-height: 180px;
  }
}
.contact-info-block {
  flex: 1;
}
.contact-info-block h2 { text-align: center; }
.contact-details h3 { color: #008000; margin-bottom: 4px; }
.contact-details p { margin-bottom: 20px; color: #222; }
.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #f9f9f9;
  padding: 28px 24px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  min-width: 260px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
}
.contact-form button {
  background: #008000;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form button:hover {
  background: #006400;
}

/* Footer */
.footer-bg {
  background: #fff;
  padding: 40px 0 16px 0;
  border-top: 1px solid #eee;
  width: 100vw;
}
.footer-flex {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 100vw;
  margin: 0 auto;
  padding: 0 2vw;
  box-sizing: border-box;
}
@media (min-width: 900px) {
  .footer-flex {
    flex-direction: row;
    gap: 64px;
    max-width: 100vw;
  }
}
.footer-title {
  color: #008000;
  font-size: 1.15rem;
  font-weight: bold;
  margin-bottom: 8px;
}
.footer-desc {
  color: #444;
  font-size: 1rem;
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: #008000;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #006400;
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-social-icon {
  height: 24px;
  width: 24px;
}
.footer-copy {
  text-align: center;
  color: #888;
  font-size: 0.95rem;
  margin-top: 24px;
}

/* WhatsApp contact button */
.whatsapp-link {
  color: #25d366;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 6px;
  background: #eaffea;
  transition: background 0.2s;
}
.whatsapp-link:hover {
  background: #d4f5d4;
}
.whatsapp-link img {
  height: 32px;
  width: 32px;
  vertical-align: middle;
}