/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;

}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  border-bottom: 1px solid #ddd;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  background: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.logo-icon {
  background-color: #10b981; /* Tailwind primary */
  padding: 0.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon {
  width: 1.5rem;
  height: 1.5rem;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111;
}

/* Navigation Links */
.nav-links {
  display: none; /* Hidden on small screens */
  gap: 2rem;
}

.nav-link {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: #111;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #10b981;
}

.nav-link.active {
  color: #10b981;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.cart-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
}

.cart-count {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  background-color: #10b981;
  color: white;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.login-btn {
  display: none; /* Hidden on small screens */
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  border: 1px solid #10b981;
  border-radius: 0.25rem;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 0.875rem;
}

.login-btn .icon {
  width: 1rem;
  height: 1rem;
}

.signup-btn {
  padding: 0.25rem 0.75rem;
  border: 1px solid #10b981;
  border-radius: 0.25rem;
  background: #10b981;
  color: white;
  cursor: pointer;
  font-size: 0.875rem;
}
/* Reset & Basic */


/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
  background: linear-gradient(to bottom right, #fef3c7, rgba(59, 130, 246, 0.3)); /* accent to secondary/30 */
  background: #f9f9f9;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Grid Layout */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Text Content */
.hero-text {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  width: 40%;
}

.badge .icon {
  width: 1rem;
  height: 1rem;
  color: #10b981;
}

.badge span {
  font-size: 0.875rem;
  color: #111;
}

/* Hero Title */
.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #111;
}

@media(min-width:768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.highlight {
  color: #10b981;
}

/* Subtitle */
.hero-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 32rem;
}

/* Buttons */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.btn-primary {
  background-color: #10b981;
  color: white;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-primary:hover {
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.btn-outline {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(5px);
  color: #111;
  border: 1px solid #10b981;
}

.btn-outline:hover {
  background: rgba(255,255,255,1);
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 1rem;
}

.trust-item .trust-number {
  font-size: 1.5rem;
  color: #10b981;
  font-weight: 700;
}

.trust-item .trust-label {
  font-size: 0.875rem;
  color: #6b7280;
}

/* Hero Image */
.hero-image-wrapper {
  position: relative;
}

.hero-image-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(16,185,129,0.2), rgba(59,130,246,0.2));
  border-radius: 1.5rem;
  filter: blur(3rem);
}

.hero-image {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  object-fit: cover;
}

/* Decorative Circles */
.decorative {
  position: absolute;
  border-radius: 50%;
  filter: blur(3rem);
}

.decor-1 {
  top: 25%;
  right: 2.5rem;
  width: 5rem;
  height: 5rem;
  background-color: rgba(16,185,129,0.1);
}

.decor-2 {
  bottom: 25%;
  left: 2.5rem;
  width: 8rem;
  height: 8rem;
  background-color: rgba(59,130,246,0.2);
}

/* Responsive */
@media(min-width: 768px) {
  .nav-links {
    display: flex;
  }
  .login-btn {
    display: flex;
  }
}


.featured-products {
  padding: 4rem 1rem;
   font-family: "Poppins", sans-serif;
  background-color: #fff;
  color: #222;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.badges {
  background: #d4f4dd;
  color: #008c4a;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-weight: 500;
  display: inline-block;
}

.text-center h2 {
  font-size: 2.2rem;
  margin-top: 1rem;
  color: #111;
}

.text-center p {
  color: #666;
  max-width: 600px;
  margin: 0.5rem auto;
  font-size: 0.95rem;
}

.product-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.image-box {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #008c4a;
  color: white;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
}

.card-content {
  padding: 1.5rem;
}

.info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.category {
  color: #777;
  font-size: 0.9rem;
}

.rating {
  color: #008c4a;
  font-weight: 600;
  font-size: 0.9rem;
}

.rating small {
  color: #888;
}

h3 {
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 1.4rem;
  color: #008c4a;
  font-weight: 600;
}

.card-footer {
  padding: 1rem 1.5rem 1.5rem;
}

.btn {
  background: #008c4a;
  color: white;
  border: none;
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #00733d;
}

.btn-outline {
  border: 1px solid #008c4a;
  background: white;
  color: #008c4a;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #008c4a;
  color: white;
}

.view-all {
  text-align: center;
  margin-top: 3rem;
}

.about-section {
  padding: 4rem 1rem;
  background: linear-gradient(to bottom, #d7f5df40, #ffffff);
   background-color: #fff;
  color: #1a1a1a;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image-box {
  position: relative;
}

.about-blur-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 140, 74, 0.15);
  border-radius: 2rem;
  filter: blur(50px);
}

.about-image {
  position: relative;
  width: 100%;
  border-radius: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  z-index: 1;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  border: 1px solid rgba(0, 140, 74, 0.25);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  color: #006c38;
  font-weight: 500;
  width: fit-content;
}

.about-heading {
  font-size: 2rem;
  line-height: 1.3;
  color: #1a1a1a;
}

@media (min-width: 768px) {
  .about-heading {
    font-size: 2.5rem;
  }
}

.about-text {
  color: #555;
  line-height: 1.8;
  font-size: 1rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about-icon-box {
  background: rgba(0, 140, 74, 0.1);
  color: #008c4a;
  font-size: 1.2rem;
  padding: 0.8rem;
  border-radius: 0.6rem;
  flex-shrink: 0;
}

.about-feature-title {
  margin: 0;
  color: #1a1a1a;
  font-size: 1rem;
  font-weight: 600;
}

.about-feature-text {
  color: #666;
  font-size: 0.9rem;
  margin-top: 0.2rem;
  line-height: 1.5;
}


/* Section container */
.review-section {
  padding: 4rem 1rem;
  background: #ffffff;
  background-color: #fff;
  color: #1a1a1a;
}

.review-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading */
.review-header {
  text-align: center;
  margin-bottom: 3rem;
}

.review-header h2 {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 0.8rem;
}

@media (min-width: 768px) {
  .review-header h2 {
    font-size: 2.5rem;
  }
}

.review-header p {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
}

/* Grid layout */
.review-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .review-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Testimonial Card */
.review-card {
  position: relative;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.review-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

/* Quote icon */
.review-quote {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 3rem;
  color: rgba(0, 140, 74, 0.15);
  line-height: 1;
  user-select: none;
}

/* Rating Stars */
.review-stars {
  color: #008c4a;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

/* Text */
.review-text {
  color: #222;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* Author Info */
.review-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1rem;
}

.review-avatar {
  background: rgba(0, 140, 74, 0.1);
  color: #008c4a;
  font-weight: 600;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.review-name {
  color: #1a1a1a;
  font-weight: 600;
  font-size: 1rem;
}

.review-role {
  color: #777;
  font-size: 0.9rem;
}
/* Footer Container */
.footer {
  background: linear-gradient(to bottom, rgba(200, 255, 220, 0.3), rgba(180, 255, 200, 0.5));
  border-top: 1px solid #ccc;
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
  color: #333;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Footer Grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

/* Brand Section */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  background: #2e7d32;
  color: white;
  padding: 8px;
  border-radius: 8px;
  font-size: 18px;
}

.brand-name {
  font-size: 18px;
  font-weight: 600;
}

.footer-text {
  font-size: 14px;
  color: #666;
  margin: 10px 0 15px;
}

/* Social Icons */
.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: white;
  border: 1px solid #ddd;
  padding: 8px;
  border-radius: 8px;
  text-decoration: none;
  color: #2e7d32;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: #2e7d32;
  color: white;
}

/* Headings */
.footer-heading {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #2e7d32;
}

/* Contact Info */
.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #666;
}

/* Divider */
.footer-separator {
  border: none;
  border-top: 1px solid #ccc;
  margin: 30px 0;
}

/* Bottom Footer */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
  font-size: 14px;
  color: #666;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: #2e7d32;
}

/* Responsive */
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}



