/* ========== GLOBAL RESETS & BASE STYLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

a {
  color: #2b7a2b;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.section-padding {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  color: #2b7a2b;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #155215;
  margin: 0.5rem auto 0;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #27ae60;
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background-color: #219150;
}

.btn-outline {
  background: transparent;
  color: #27ae60;
  border: 2px solid #27ae60;
}

.btn-outline:hover {
  background-color: #27ae60;
  color: #fff;
}

.btn-secondary {
  background-color: #27ae60;
  color: white;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-secondary:hover {
  background-color: transparent;
  color: #27ae60;
  border-color: #27ae60;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#header-container,
#footer-container {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease-in;
}

#header-container.loaded,
#footer-container.loaded {
  visibility: visible;
  opacity: 1;
}

/* ========== CART & ICONS ========== */
/* .cart-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-left: 1rem;
}

.cart-icon-link {
  position: relative;
  font-size: 1.4rem;
  color: white;
  padding: 0.3rem 0.6rem;
  transition: transform 0.2s ease;
}

.cart-icon-link:hover {
  transform: scale(1.1);
}

.cart-count-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #e53935;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #2e7d32;
} */

/* ========== FLOATING ACTION BUTTONS ========== */
.whatsapp-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  padding: 14px 16px;
  font-size: 24px;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: background 0.3s;
}

.whatsapp-fab:hover {
  background-color: #1ebe5d;
}

.chat-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.chat-fab img {
  width: 30px;
  height: 30px;
}

/* ========== ANIMATIONS & TRANSITIONS ========== */
/* Base fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

/* Slight variations (optional) */
.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInLeft 1s ease forwards;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  animation: fadeInRight 1s ease forwards;
}

/* Keyframes */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.2rem;
  }
  
  .about-hero p {
    font-size: 1.1rem;
  }
  
  .grid-two-columns {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 2rem auto 0;
  }
}

@media (max-width: 480px) {
  .about-hero h1 {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .team-member img {
    width: 120px;
    height: 120px;
  }
}

/* ========== HERO SECTIONS ========== */
/* ==== HERO ==== */
/* ==== HERO ==== */
.hero {
  background: url('assets/images/hero-bg.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  /* overlay */
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

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

/* ==== COMMITMENT SECTION ==== */
.hero-values {
  background: #fff;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-card {
  background: #f8f9fa;
  padding: 2rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.value-card i {
  font-size: 2rem;
  color: #27ae60;
  margin-bottom: 1rem;
}

.value-card p {
  font-size: 1rem;
  color: #333;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.hero-index {
  background: url("../assets/images/home.jpg") center/cover no-repeat;
  color: #fff;
  padding: 5rem 2rem;
}

/* Add this to your CSS file */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background-color: #2ecc71; /* Your brand green */
  color: white;
  border: 2px solid #2ecc71;
}

.btn-primary:hover {
  background-color: #27ae60; /* Darker green */
  border-color: #27ae60;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Hero section specific button styling */
.hero-index .btn-primary {
  margin-top: 20px;
  font-size: 1.2rem;
  padding: 14px 32px;
  letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-index .btn-primary {
    padding: 12px 24px;
    font-size: 1rem;
  }
}

.hero-services {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)),
              url("../assets/images/home.jpg") center/cover no-repeat;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 25px;
}

#typewriter {
    display: inline-block;
    border-right: 2px solid #00b894;
    padding-right: 4px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
  }

    #typewriter-title, #typewriter-subtitle {
    display: inline-block;
    border-right: 2px solid #00b894;
    padding-right: 4px;
    white-space: nowrap;
    overflow: hidden;
  }

  #typewriter-title {
    font-size: 2.2rem;
    font-weight: 700;
  }

/* ========== CONTACT PAGE STYLES ========== */

.contact-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url('../assets/images/contact-us.png') center/cover no-repeat;
  color: #fff;
  display: flex;
  min-height: 50vh;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
}

.contact-hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  animation: fadeInDown 0.8s ease;
}

.contact-hero p {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 0;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  animation: fadeInUp 0.8s ease 0.3s both;
}

/* Contact Info Section */
.contact-info {
  background-color: #f8f9fa;
}

.grid-two-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.contact-info h3 {
  color: #2e7d32;
  font-size: 1.4rem;
  margin: 1.5rem 0 1rem;
  position: relative;
  padding-bottom: 8px;
}

.contact-info h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #4caf50;
}

.contact-info p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.contact-info a {
  color: #2e7d32;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: #1b5e20;
  text-decoration: underline;
}

/* Contact Form Styles */
#contactForm {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

#contactForm label {
  display: block;
  margin: 1rem 0 0.5rem;
  color: #333;
  font-weight: 500;
}

#contactForm input,
#contactForm textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

#contactForm input:focus,
#contactForm textarea:focus {
  border-color: #2e7d32;
  outline: none;
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2);
}

#contactForm textarea {
  min-height: 150px;
  resize: vertical;
}

#contactForm .btn {
  width: 100%;
  background-color: #2e7d32;
  color: white;
  border: none;
  padding: 0.8rem;
  margin-top: 1.5rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

#contactForm .btn:hover {
  background-color: #1b5e20;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
}

.form-response {
  margin-top: 1rem;
  padding: 0.8rem;
  border-radius: 6px;
  text-align: center;
  font-weight: 500;
}

/* Social Media Links */
.contact-info h3 + p a {
  display: inline-block;
  margin-right: 0.5rem;
  padding: 0.3rem 0;
  position: relative;
}

.contact-info h3 + p a:not(:last-child)::after {
  content: "|";
  margin-left: 0.5rem;
  color: #777;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-hero h1 {
    font-size: 2.5rem;
  }
  
  .contact-hero p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .grid-two-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  #contactForm {
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .contact-hero h1 {
    font-size: 2rem;
  }
  
  .contact-info h3 {
    font-size: 1.2rem;
  }
  
  #contactForm {
    padding: 1.5rem;
  }
}
/* ========== BLOG PAGE STYLES ========== */

/* Hero Section */
.blog-hero {
  background: linear-gradient(rgba(5, 19, 13, 0.6), rgba(11, 61, 41, 0.6)),
              url('../assets/images/blog.jpg') center/cover no-repeat;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
}

.blog-hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.blog-hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  animation: fadeInDown 0.8s ease;
}

.blog-hero p {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 0;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  animation: fadeInUp 0.8s ease 0.3s both;
}

/* Blog Grid Section */
.grid-three-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.15);
}

.blog-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-thumb {
  transform: scale(1.03);
}

.blog-card-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-body h3 {
  color: #2e7d32;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  line-height: 1.4;
}

.blog-card-body p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2e7d32;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border: 2px solid #2e7d32;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: auto;
}

.btn-outline:hover {
  background: #2e7d32;
  color: white;
  text-decoration: none;
}

.btn-outline i {
  font-size: 0.8rem;
  transition: transform 0.3s;
}

.btn-outline:hover i {
  transform: translateX(3px);
}

/* Pagination Controls */
.pagination-controls {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.pagination-controls button {
  background-color: white;
  color: #2e7d32;
  border: 1px solid #ddd;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.pagination-controls button:hover:not(.active) {
  background-color: #f5f5f5;
  border-color: #2e7d32;
}

.pagination-controls button.active {
  background-color: #2e7d32;
  color: white;
  border-color: #2e7d32;
}

/* Loading and Error States */
.loading, .error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem;
  font-size: 1.1rem;
}

.loading {
  color: #666;
}

.error {
  color: #d32f2f;
}

/* Blog Details Page */
#blog-post {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

#blog-post h1 {
  color: #2e7d32;
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
  line-height: 1.3;
}

#blog-post img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin: 1.5rem 0;
}

#blog-post p {
  color: #333;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .blog-hero h1 {
    font-size: 2.5rem;
  }
  
  .blog-hero p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .grid-three-columns {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .blog-thumb {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .blog-hero h1 {
    font-size: 2rem;
  }
  
  .grid-three-columns {
    grid-template-columns: 1fr;
  }
  
  .pagination-controls button {
    padding: 0.5rem 0.8rem;
    font-size: 0.9rem;
  }
  
  #blog-post h1 {
    font-size: 1.8rem;
  }
}

.about-hero {
  background: url("../assets/images/home.jpg") center/cover no-repeat;

  
}

.about-hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  animation: fadeInDown 0.8s ease;
}

.about-hero p {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  animation: fadeInUp 0.8s ease 0.3s both;
}

/* About Section */
.about-section {
  background-color: #f9fdfb;
}

#who-we-are-content {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-left: 4px solid #4caf50;
  line-height: 1.8;
  color: #444;
}

#who-we-are-content p {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}

.section-title i {
  margin-right: 10px;
  vertical-align: middle;
}

/* Mission/Vision Section */
.mission-vision-section {
  background-color: #eefaf0;
}

.mission-vision-section h3 {
  color: #2e7d32;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

.mission-vision-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #4caf50;
}

#mission-content,
#vision-content {
  line-height: 1.8;
  color: #555;
}

/* Team Section */
.team-section {
  background-color: white;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-member {
  text-align: center;
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  background: white;
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #e8f5e9;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.team-member:hover img {
  border-color: #4caf50;
}

.team-member h4 {
  color: #2e7d32;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.team-member p {
  color: #666;
  font-size: 0.95rem;
}

/* ========== ABOUT SECTION ========== */
.about-preview {
  background-color: #f8f9fa;
  position: relative;
}

.about-preview h2 {
  color: #2c3e50;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.about-preview h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: #27ae60;
}

.about-preview p {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ========== SERVICES ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 50px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #1b5e20;
}

.service-card p {
  font-size: 0.95em;
  color: #555;
}

.service-card:nth-child(even) {
  animation-delay: 0.1s;
}

.service-card:nth-child(odd) {
  animation-delay: 0.2s;
}

/* ========== PRODUCTS ========== */
.grid-four-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background-color: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.product-card .image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
}

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

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

.product-card .badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #38b000;
  color: #fff;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 6px;
  text-transform: uppercase;
  z-index: 2;
}

.product-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin: 0.5rem 0 0.25rem;
}

.product-card .price {
  font-size: 1.05rem;
  font-weight: bold;
  color: #2e7d32;
  margin-top: 0.25rem;
}

.product-card .rating {
  color: #ffc107;
  font-size: 0.9rem;
  margin: 0.4rem 0;
}

.wishlist-btn {
  position: absolute;
  top: 8px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 1.2rem;
  color: #e91e63;
  cursor: pointer;
}

/* ========== PRODUCT FILTERS ========== */
.product-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 2.5rem 0;
}

.product-filter button {
  padding: 0.6rem 1.2rem;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  color: #155215;
}

.product-filter button:hover {
  background: #155215;
  color: #fff;
  border: 1px solid #155215;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.product-filter button:active {
  background: #155215;
  color: #005c30;
}

/* ========== PRODUCT DETAILS ========== */
.product-detail-modern {
  /* padding: 4rem 0; */
  background-color: #f9f9f9;
}

.container.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: flex-start;
}

/* Product Gallery */
.product-gallery {
  position: sticky;
  top: 20px;
}

.main-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  aspect-ratio: 1/1.2;
  object-fit: cover;
  border-radius: 8px;
  background-color: #f5f5f5;
  padding: 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin: 0.5rem 0;
  border: 1px solid #e0e0e0;
}

.thumbnail-row {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  overflow-x: auto;
}

.thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: white;
  padding: 0.3rem;
}

.thumbnail:hover, .thumbnail.active {
  border-color: #2e7d32;
  transform: scale(1.05);
}

/* Product Information */
.product-info {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.product-category {
  display: inline-block;
  color: #2e7d32;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.product-title {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.price-wishlist-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.product-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2e7d32;
}

.wishlist-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wishlist-btn:hover, .wishlist-btn.active {
  color: #e53935;
}

.rating {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.product-description {
  color: #555;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.eco-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.eco-features li {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background-color: #2e7d32;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 1rem;
}

.btn-primary:hover {
  background-color: #1b5e20;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.trust-badges img {
  height: 40px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.trust-badges img:hover {
  opacity: 1;
}

.quantity-group {
  margin: 1rem 0;
}

.quantity-group input {
  width: 60px;
  padding: 0.4rem;
  margin-left: 0.5rem;
  font-size: 1rem;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.btn.outline {
  background: transparent;
  border: 1px solid #007b5e;
  color: #007b5e;
}

.btn.outline:hover {
  background: #007b5e;
  color: #fff;
}

/* Related Products */
.related-products-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid #eee;
}

.related-products-section h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.related-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  padding: 1rem;
  text-align: center;
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.related-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.related-card h4 {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.related-card .price {
  color: #2e7d32;
  font-weight: bold;
  display: block;
  margin-bottom: 0.8rem;
}

.related-card .btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

/* Sticky Mobile Bar */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 0.8rem 1.5rem;
  display: none;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 100;
}

.sticky-bar .price {
  font-weight: bold;
  color: #2e7d32;
  font-size: 1.1rem;
}

.sticky-bar .btn {
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
}

/* Back to Shop Link */
.back-to-shop {
  text-align: center;
  margin: 3rem 0;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2e7d32;
  border: 2px solid #2e7d32;
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .container.product-grid {
    gap: 2rem;
  }
  
  .main-image {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .container.product-grid {
    grid-template-columns: 1fr;
  }
  
  .product-gallery {
    position: static;
  }
  
  .main-image {
    height: 300px;
  }
  
  .sticky-bar {
    display: flex;
  }
}

@media (max-width: 480px) {
  .product-title {
    font-size: 1.6rem;
  }
  
  .product-price {
    font-size: 1.5rem;
  }
  
  .thumbnail {
    width: 60px;
    height: 60px;
  }
  
  .trust-badges {
    justify-content: center;
  }
  
  .back-to-shop {
    margin: 2rem 0;
  }
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.product-info > * {
  animation: fadeIn 0.5s ease forwards;
}

.product-info > *:nth-child(1) { animation-delay: 0.1s; }
.product-info > *:nth-child(2) { animation-delay: 0.2s; }
.product-info > *:nth-child(3) { animation-delay: 0.3s; }
.product-info > *:nth-child(4) { animation-delay: 0.4s; }
.product-info > *:nth-child(5) { animation-delay: 0.5s; }

/* ========== FEATURED PRODUCTS CAROUSEL ========== */
.featured-products {
  background-color: #f8f9fa;
  padding: 2rem 0;
  position: relative;
}

.carousel-grid-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.product-marquee-wrapper {
  overflow: hidden;
  margin: 0 -10px;
}

.product-marquee-track {
  display: flex;
  gap: 15px;
  padding: 10px 0;
  scroll-behavior: smooth;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.product-marquee-track::-webkit-scrollbar {
  display: none;
}

.product-marquee-track .product-card {
  flex: 0 0 180px;
  scroll-snap-align: start;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.product-marquee-track .product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.product-marquee-track .product-image {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.product-marquee-track h4 {
  font-size: 0.9rem;
  margin: 0.5rem;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-marquee-track .price {
  color: #2e7d32;
  font-weight: bold;
  font-size: 0.95rem;
  margin: 0.5rem;
  text-align: center;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: all 0.2s ease;
}

.carousel-btn:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  background: #2e7d32;
  color: white;
}

.carousel-btn.left {
  left: 10px;
}

.carousel-btn.right {
  right: 10px;
}

.center-text {
  text-align: center;
  margin-top: 1.5rem;
}

.btn-outline {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border: 2px solid #2e7d32;
  color: #2e7d32;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #2e7d32;
  color: white;
  text-decoration: none;
}

/* Auto-scroll animation */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .product-marquee-track .product-card {
    flex: 0 0 150px;
  }
  
  .product-marquee-track .product-image {
    height: 100px;
  }
}

@media (max-width: 480px) {
  .carousel-grid-wrapper {
    padding: 0 30px;
  }
  
  .product-marquee-track .product-card {
    flex: 0 0 130px;
  }
  
  .carousel-btn {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
}


/* ========== CAROUSELS ========== */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 2rem 0;
  margin: 0 auto;
}

.carousel-slide {
  display: flex;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

.carousel-slide::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  box-sizing: border-box;
  padding: 1rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  text-align: center;
}

.carousel-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.carousel-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  object-fit: cover;
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.8s ease, filter 0.8s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.carousel-item img.loaded {
  opacity: 1;
  filter: blur(0);
}

.carousel-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
}

.carousel-btn,
#prevBtn,
#nextBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #1abc9c;
  color: white;
  border: none;
  font-size: 1.5rem;
  padding: 0.6rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
}

#prevBtn {
  left: 1rem;
}

#nextBtn {
  right: 1rem;
}

.carousel-btn:hover,
#prevBtn:hover,
#nextBtn:hover {
  background-color: #16a085;
}

.carousel-dots {
  text-align: center;
  margin-top: 1rem;
}

.carousel-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-dot.active {
  background-color: #1abc9c;
}


/* ========== TIMELINE ========== */
.journey-section {
  padding: 60px 20px;
  background: #f2fdf2;
  text-align: center;
}

.journey-section h2 {
  font-size: 2.5rem;
  color: #2f8f2f;
  margin-bottom: 10px;
}

.journey-intro {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #333;
}

.timeline {
  position: relative;
  margin: auto;
  padding: 10px 0;
  max-width: 900px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #2f8f2f;
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  background-color: #2f8f2f;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-date {
  font-weight: bold;
  color: #2f8f2f;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.timeline-content {
  background: #fff;
  padding: 20px;
  width: 80%;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
  margin-top: 20px;
}

.timeline-content h3 {
  margin: 0 0 10px;
  color: #2f8f2f;
}

.timeline-content p {
  margin: 0;
  color: #444;
}

.timeline-content img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
}


/* ========== CONTACT FORM ========== */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #cfcfcf;
  border-radius: 4px;
  font-size: 16px;
}

button[type="submit"] {
  background-color: #2f8f2f;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

button[type="submit"]:hover {
  background-color: #276f27;
}

.form-response {
  margin-top: 15px;
  font-weight: bold;
}

/* ========== NEWSLETTER ========== */
.newsletter-cta {
  background: #f0f9f0;
  padding: 3rem 1rem;
  text-align: center;
  border-radius: 12px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 280px;
}

.newsletter-message {
  margin-top: 1rem;
  font-size: 0.95rem;
}

.newsletter-message.success {
  color: green;
}

.newsletter-message.error {
  color: red;
}

/* ========== BLOG ========== */
.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

.blog-card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-content h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #333;
}

.blog-card-content p {
  font-size: 1rem;
  color: #666;
  flex-grow: 1;
}

.blog-card-content .read-more {
  margin-top: 15px;
  text-decoration: none;
  color: #2ecc71;
  font-weight: 600;
  transition: color 0.3s;
}

.blog-card-content .read-more:hover {
  color: #27ae60;
}

/* ========== FOOTER ========== */
/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
}

.hamburger-line {
  display: block;
  height: 3px;
  width: 25px;
  background: #333;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 1rem;
    z-index: 1000;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    text-align: center;
  }

  .nav-menu a:last-child {
    border-bottom: none;
  }

  .dropdown-content {
    position: static;
    display: none;
    box-shadow: none;
    background: #f8f9fa;
    margin-top: 0.5rem;
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }

  /* Animated hamburger */
  .menu-open .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }

  .menu-open .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .menu-open .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  /* Prevent body scroll when menu is open */
  .menu-open {
    overflow: hidden;
  }
}

/* Footer Styles */
.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

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

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  color: #666;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: #2c5aa0;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ========== TOAST NOTIFICATIONS ========== */
.toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #4CAF50;
  color: white;
  padding: 1rem 2rem;
  border-radius: 5px;
  display: none;
  z-index: 1000;
}

.toast.show {
  display: block;
  animation: fadeOut 3s forwards;
}

@keyframes fadeOut {
  0% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; display: none; }
}

/* ========== MODAL ========== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  overflow-y: auto;
  padding: 1rem 0;
}

.modal {
  background: #ffffff;
  width: 75%;
  max-width: 400px;
  padding: 2rem;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
  animation: fadeInUp 0.4s ease;
}

.modal .close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  color: #888;
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
  transition: color 0.2s ease;
}

.modal .close-btn:hover {
  color: #2e8b57;
}

/* ========== AUTH FORMS ========== */
.auth-form {
  max-width: 400px;
  margin: 0 auto;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="file"] {
  padding: 12px 15px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
  transition: border 0.2s ease;
}

.auth-form input:focus {
  border-color: #2ecc71;
  outline: none;
}

.auth-form .btn {
  padding: 12px;
  background-color: #2ecc71;
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.auth-form .btn:hover {
  background-color: #27ae60;
}

/* ========== CART & CHECKOUT ========== */
.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.cart-table th,
.cart-table td {
  padding: 0.75rem;
  border: 1px solid #ccc;
  text-align: center;
}

.cart-img {
  width: 50px;
  vertical-align: middle;
  margin-right: 10px;
}

.total-amount {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.btn.danger {
  background-color: #d9534f;
  color: white;
}

.btn.small {
  padding: 0.3rem 0.6rem;
  font-size: 0.8rem;
}

.checkout-section {
  padding: 2rem 1rem;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  gap: 1rem;
}

.checkout-form label {
  font-weight: bold;
}

.checkout-form input,
.checkout-form select {
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
}

.checkout-cart-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.checkout-cart-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.checkout-cart-list img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 5px;
}

/* ========== BREADCRUMBS ========== */
.breadcrumb-nav {
  padding: 1rem 2rem;
  background-color: #f9f9f9;
  font-size: 0.9rem;
  color: #555;
}

.breadcrumb-nav a {
  color: #2e7d32;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb-nav a:hover {
  color: #1b5e20;
  text-decoration: underline;
}

.breadcrumb-nav .current {
  color: #333;
  font-weight: 500;
}

/* Loading Spinner */
.loading-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem;
}

.loading-spinner .dot {
  width: 10px;
  height: 10px;
  background-color: #2e7d32;
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out both;
}

.loading-spinner .dot:nth-child(1) {
  animation-delay: -0.32s;
}

.loading-spinner .dot:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes bounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

/* ========== STICKY BARS ========== */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  z-index: 1000;
  box-shadow: 0 -1px 6px rgba(0, 0, 0, 0.05);
}

.sticky-bar .price {
  font-weight: bold;
}



/* ========== RESPONSIVE MEDIA QUERIES ========== */
@media (max-width: 768px) {
  /* .header-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-menu {
    justify-content: center;
    padding-top: 1rem;
  }

  .logo-text {
    font-size: 1.5rem;
  } */

  .hero-content h1 {
    font-size: 2.2rem;
  }

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

  .grid-two-columns > div {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.grid-two-columns > div:hover {
  transform: translateY(-5px);
}

  .container.product-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 20%;
  }

  .timeline-dot {
    left: 20%;
  }

  .timeline-item {
    flex-direction: row;
    justify-content: space-between;
  }

  .timeline-date {
    width: 20%;
    text-align: right;
  }

  .timeline-content {
    width: 70%;
    margin-left: 30px;
    text-align: left;
  }

  .sticky-bar {
    display: none;
  }
}

@media (max-width: 500px) {
  .modal {
    padding: 1.5rem;
    width: 90%;
  }

  .modal h2 {
    font-size: 1.25rem;
  }
}

@media (min-width: 600px) and (max-width: 899px) {
  .carousel-item {
    flex: 0 0 50%;
  }
}

@media (min-width: 900px) {
  .carousel-item {
    flex: 0 0 33.3333%;
  }
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dim background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  transition: opacity 0.3s ease-in-out;
}

/* Modal Box */
.modal {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.3s ease-in-out;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #888;
  transition: color 0.2s;
}

.close-btn:hover {
  color: #333;
}

/* Form Elements */
form#quoteForm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form#quoteForm label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #333;
}

form#quoteForm input,
form#quoteForm textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

form#quoteForm input:focus,
form#quoteForm textarea:focus {
  border-color: #007B5E;
  outline: none;
}

/* Submit Button */
.btn-primary {
  background-color: #007B5E; /* Customize to match your brand */
  color: #fff;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #005e47;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 500px) {
  .modal {
    padding: 1.5rem;
  }
}

/* ========= Breadcrumb Navigation ========= */
.breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
}

.breadcrumb {
  padding: 0.75rem 0;
  font-size: 0.9rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  color: #555;
}

.breadcrumb li:not(:last-child)::after {
  content: "›";
  margin: 0 0.5rem;
  color: #7f8c8d;
}

.breadcrumb a {
  color: #1f7a52;
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.breadcrumb a:hover {
  color: #155e3d;
  text-decoration: underline;
}

.breadcrumb [aria-current="page"] {
  color: #333;
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .breadcrumb {
    padding: 0.5rem 0;
    font-size: 0.85rem;
  }
  
  .breadcrumb li:not(:last-child)::after {
    margin: 0 0.3rem;
  }
}


/* Toast Notifications */
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #333;
  color: #fff;
  padding: 12px 18px;
  border-radius: 6px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(-15px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 9999;
  font-size: 14px;
}

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

.toast.success {
  background: #2e7d32;
}

.toast.error {
  background: #c62828;
}

.toast.info {
  background: #1565c0;
}