/* ========================================
   JEN ORGANIC STORE - CONSOLIDATED STYLES
   ======================================== */

/* ========================================
   1. BASE STYLES & RESET
   ======================================== */
.hero-section {
  /* background-image: url(files/homebanner.jpg); */
  background-image: url(files/homepagefirstimage.webp);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 100vh;
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(0 0 0 / 30%);
  /* Optional dark overlay for readability */
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 80%;
}

.hero-text h1 {
  font-size: 3em;
  color: #ffffff;
  margin-bottom: 0.5em;
  font-weight: 700;
  line-height: 0.5;
  text-shadow: 5px 3px #000000;
}

.hero-text p {
  float: right;
  font-style: italic;
  font-size: 1.2rem;
  text-shadow: 5px 3px #000000;
}

* {
  box-sizing: border-box;
}

/* Mobile viewport optimization */
@viewport {
  width: device-width;
  zoom: 1.0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Labrada", serif;
  margin: 0;
  background: #f9f6f1;
  color: #4a3c1a;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   2. HEADER & NAVIGATION
   ======================================== */

header {
  background: #fff;
  padding: 0;
  text-align: center;
  box-shadow: 0 2px 8px rgba(34, 139, 34, 0.1);
  position: relative;
}

.header-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 32px;
  justify-content: flex-start;
}

.logo-image {
  height: 100px;
  /* adjust as needed */
  width: auto;
}


header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: #d4a168;
  border-radius: 4px 4px 0 0;
}

.menu {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

nav {
  display: flex;
  gap: 32px;
  justify-content: center;
}

nav a {
  text-decoration: none;
  color: #727270;
  /* Example color */
  font-weight: 600;
  padding: 4px 12px;
  font-size: 22px;
  transition: color 0.2s;
}

nav a:hover {
  color: #d4a168;
  /* Example hover color */
}

/* ========================================
   3. MARQUEE SECTION
   ======================================== */

.marquee-container {
  overflow: hidden;
  width: 100%;
  /* or fixed width */
  position: relative;
}

.marquee {
  padding: 3px;
  background: #d4a168;
  display: flex;
  gap: 2em;
  animation: marqueeAnim 40s linear infinite;
  width: max-content;
}

@keyframes marqueeAnim {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


.marquee span {
  letter-spacing: 3px;
  font-weight: bolder;
  display: inline-block;
  margin-left: -35%;
  font-size: 14px;
  color: white;
  font-family: 'Font Awesome 5 Brands';
}

@keyframes scroll {
  0% {
    transform: translate3d(100%, 0, 0);
  }

  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

/* ========================================
   4. BANNER CAROUSEL
   ======================================== */

#banner-carousel {
  position: relative;
  width: 100%;
  max-height: 500px;
  overflow: hidden;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 500px;
}

.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.slide-content {
  position: absolute;
  text-align: center;
  color: white;
  z-index: 2;
  max-width: 600px;
  padding: 0 2em;
}

.slide-content h2 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.slide-content p {
  font-size: 22px;
  margin-bottom: 1.5em;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.cta-button {
  background: #d4a168;
  color: white;
  padding: 1em 2em;
  border: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  background: #388e3c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Navigation Arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  color: #4a3c1a;
  border: none;
  padding: 1em;
  font-size: 1.5em;
  cursor: pointer;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 3;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

/* Dots Indicator */
.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.2);
}

/* ======
==================================
   5. CERTIFICATES SECTION
   ======================================== */

#certificates {
  background: #fff;
  padding: 2em 0;
  border-bottom: 2px solid #e6c77c;
  overflow: hidden;
}

.certificates-container {
  text-align: center;
}

.certificates-container h3 {
  color: #4a3c1a;
  margin-bottom: 1.5em;
  font-size: 1.8em;
  font-weight: bold;
}

.certificates-scroll {
  display: flex;
  animation: certificateScroll 20s linear infinite;
  gap: 3em;
  align-items: center;
  width: max-content;
}

.certificate-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
  text-align: center;
}

.certificate-circle {
  /* width: 80px; */
  /* height: 80px; */
  border-radius: 50%;
  /* background: #fff; */
  /* border: 3px solid #d4a168; */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5em;
  /* box-shadow: 0 4px 12px rgb(56 142 60 / 20%); */
  /* transition: transform 0.3s ease; */
  overflow: hidden;
}

.certificate-circle img {
  width: 100ox;
  height: 100px;
  border-radius: 50%;
  /* overflow: hidden; */
  object-position: center;
  object-fit: cover;
  transform: scale(1.27);
}

.certificate-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(56, 142, 60, 0.3);
}

/* .certificate-circle img {
  width: 60px;
  height: 60px;
  object-fit: contain;
} */

.cert-placeholder {
  font-weight: bold;
  font-size: 12px;
  text-align: center;
  color: white;
  padding: 5px;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}

.cert-placeholder.fda {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
}

.cert-placeholder.haccp {
  background: linear-gradient(135deg, #dc2626, #ef4444);
}

.cert-placeholder.gmp {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.cert-placeholder.iso {
  background: linear-gradient(135deg, #059669, #10b981);
  font-size: 10px;
}

.cert-placeholder.organic {
  background: linear-gradient(135deg, #d4a168, #4caf50);
  font-size: 10px;
}

.certificate-item span {
  font-size: 0.9em;
  color: #4a3c1a;
  font-weight: 600;
  text-align: center;
}

@keyframes certificateScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* 
========================================
   6. PRODUCT CATEGORIES SECTION
   ======================================== */

#product-categories {
  background: white;
  padding: 4em 2em;
  border-bottom: 2px solid #e6c77c;
}

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

.categories-container h3 {
  text-align: center;
  font-size: 2.2em;
  color: #4a3c1a;
  margin-bottom: 2em;
  font-weight: bold;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2em;
  justify-items: center;
}

.category-card {
  background: #f9f6f1;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  max-width: 320px;
  width: 100%;
  border: 2px solid #e6c77c;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border-color: #d4a168;
}

.category-image {
  position: relative;
  overflow: hidden;
  height: 180px;
}

.category-image img {
  width: 100%;
  object-position: top;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.category-info {
  background-color: rgb(212 161 104 / 10%);
  padding: 1.5em;
  text-align: center;
}

.category-info h4 {
  font-size: 1.2em;
  color: #4a3c1a;
  margin-bottom: 0.5em;
  font-weight: 600;
}

.category-info p {
  color: #666;
  font-size: 0.95em;
  margin-bottom: 1.2em;
  line-height: 1.4;
}

.category-btn {
  background: #d4a168;
  color: white;
  border: none;
  padding: 0.8em 2em;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9em;
}

.category-btn:hover {
  background: #388e3c;
  transform: translateY(-2px);
}

/* ==
======================================
   7. PRODUCTS SHOWCASE SECTION
   ======================================== */

#products-showcase {
  background: #f9f6f1;
  padding: 3em 2em;
  border-bottom: 2px solid #e6c77c;
}

.products-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.products-container h3 {
  text-align: center;
  font-size: 2.2em;
  color: #4a3c1a;
  margin-bottom: 2em;
  font-weight: bold;
}

.products-grid {
  /* display: grid; */
  /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
  /* gap: 2em; */
  /* justify-items: center; */
}

.product-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  max-width: 150px;
  width: 100%;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 150px;
  width: 150px;
}

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

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

.product-info {
  padding: 7px;
}

.product-info h3 {
  font-size: 12px;
  color: #9d9a9a;
  margin-bottom: 4px !important;
  text-align: left;
  height: 35px;
  overflow: hidden;
}

.product-info h4 {
  font-size: 14px;
  color: #4a3c1a;
  margin: 0 5PX;
  line-height: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.price-section {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.original-price {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9em;
}

.sale-price {
  color: green;
  font-weight: bolder;
  font-size: 16px;
  font-family: serif;
}

.discount {
  background: #ff4444;
  color: white;
  padding: 0.2em 0.5em;
  border-radius: 4px;
  font-size: 0.8em;
  font-weight: bold;
}

.rating {
  color: #666;
  font-size: 0.9em;
  margin-bottom: 1.2em;
}

/* Product Card Actions */
.product-card-actions {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  margin-top: 0.8rem;
}

.add-to-cart-btn,
.buy-now-btn {
  flex: 1;
  font-size: 0.85em;
  color: white;
  border: none;
  padding: 0.7rem 0.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 40px;
  position: relative;
  overflow: hidden;
}

.add-to-cart-btn i,
.buy-now-btn i {
  font-size: 1.1em;
  transition: transform 0.3s ease;
}

.add-to-cart-btn:active,
.buy-now-btn:active {
  transform: scale(0.95);
}

.add-to-cart-btn {
  background: linear-gradient(135deg, #4caf50, #45a049);
}

.add-to-cart-btn:hover {
  background: linear-gradient(135deg, #45a049, #3d8b40);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.add-to-cart-btn:hover i {
  transform: scale(1.1);
}

.buy-now-btn {
  background: linear-gradient(135deg, #d4a168, #e6c77c);
}

.buy-now-btn:hover {
  background: linear-gradient(135deg, #c89858, #d4a168);
  box-shadow: 0 4px 12px rgba(212, 161, 104, 0.3);
}

.buy-now-btn:hover i {
  transform: scale(1.1);
}

/* Legacy support for old add-to-cart class */
.add-to-cart {
  font-size: 12px;
  width: 100%;
  background: #d4a168;
  color: white;
  border: none;
  padding: 0.8em;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.add-to-cart:hover {
  background: #388e3c;
  transform: translateY(-2px);
}

.product-card:hover .add-to-cart {
  background: #388e3c;
}

/* ========================================
   8. ABOUT US PAGE STYLES
   ======================================== */
/* About Hero Section */
#about-hero {
  background: linear-gradient(135deg, #f9f6f1 0%, #f3efea 100%);
  padding: 4em 2em;
  border-bottom: 3px solid #e6c77c;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4em;
  align-items: center;
}

.brand-info {
  margin: 1.5em 0;
  padding: 1.5em;
  background: rgba(56, 142, 60, 0.1);
  border-radius: 15px;
  border-left: 4px solid #d4a168;
}

.brand-info h2 {
  font-size: 2.2em;
  color: #d4a168;
  margin-bottom: 0.5em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.brand-full-form {
  font-size: 0.6em;
  color: #388e3c;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 1px;
}

.tagline {
  font-size: 1.2em;
  color: #4a3c1a;
  font-style: italic;
  font-weight: 600;
  margin: 0;
  text-align: center;
  background: linear-gradient(135deg, #d4a168, #388e3c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.3em;
  color: #666;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

.hero-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hero-image:hover img {
  transform: scale(1.05);
}

/* Our Story Section */
#our-story {
  padding: 4em 2em;
  background: white;
}

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

.story-container h2 {
  text-align: center;
  font-size: 2.5em;
  color: #4a3c1a;
  margin-bottom: 2em;
  font-weight: 700;
}

.story-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3em;
  align-items: center;
}

.story-text p {
  font-size: 1.1em;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5em;
  text-align: justify;
}

.story-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.story-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.story-image:hover img {
  transform: scale(1.05);
}

/* Fo
unders Section */
#founders {
  background: #f9f6f1;
  padding: 4em 2em;
  border-top: 2px solid #e6c77c;
  border-bottom: 2px solid #e6c77c;
}

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

.founders-container h2 {
  text-align: center;
  font-size: 2.5em;
  color: #4a3c1a;
  margin-bottom: 3em;
  font-weight: 700;
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3em;
}

.founder-card {
  background: white;
  border-radius: 20px;
  padding: 2em;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.founder-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.founder-image {
  width: 150px;
  height: 150px;
  margin: 0 auto 1.5em;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #d4a168;
  box-shadow: 0 5px 15px rgba(56, 142, 60, 0.3);
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-info h3 {
  font-size: 1.5em;
  color: #4a3c1a;
  margin-bottom: 0.3em;
  font-weight: 600;
}

.founder-title {
  color: #d4a168;
  font-weight: 600;
  font-size: 1.1em;
  margin-bottom: 0.3em;
}

.founder-company {
  color: #388e3c;
  font-weight: 500;
  font-size: 1em;
  margin-bottom: 1em;
  font-style: italic;
}

.founder-bio {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5em;
  text-align: left;
}

.founder-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  justify-content: center;
}

.founder-expertise span {
  background: #d4a168;
  color: white;
  padding: 0.3em 0.8em;
  border-radius: 15px;
  font-size: 0.85em;
  font-weight: 500;
}

/* Our Agenda Section */
#our-agenda {
  background: white;
  padding: 4em 2em;
}

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

.agenda-container h2 {
  text-align: center;
  font-size: 2.5em;
  color: #4a3c1a;
  margin-bottom: 3em;
  font-weight: 700;
}

.agenda-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5em;
}

.agenda-item {
  background: #f9f6f1;
  padding: 2em;
  border-radius: 15px;
  text-align: center;
  border: 2px solid #e6c77c;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.agenda-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(56, 142, 60, 0.1), transparent);
  transition: left 0.5s ease;
}

.agenda-item:hover::before {
  left: 100%;
}

.agenda-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: #d4a168;
}

.agenda-icon {
  width: 80px;
  height: 80px;
  background: #d4a168;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5em;
  transition: all 0.3s ease;
}

.agenda-item:hover .agenda-icon {
  background: #388e3c;
  transform: scale(1.1);
}

.agenda-icon i {
  font-size: 2em;
  color: white;
}

.agenda-item h3 {
  font-size: 1.3em;
  color: #4a3c1a;
  margin-bottom: 1em;
  font-weight: 600;
}

.agenda-item p {
  color: #666;
  line-height: 1.6;
  font-size: 1em;
}

/* ========================================
   9. CONTACT US PAGE STYLES
   ======================================== */
/* Contact Hero Section */
#contact-hero {
  width: 100%;
  display: block;
  border-bottom: 3px solid #e6c77c;
}

#contact-hero img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 400px;
  object-position: bottom;
}

/* Contact Form Section */
#contact-form-section {
  background: white;
  padding: 4em 2em;
  border-bottom: 2px solid #e6c77c;
}

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

.contact-form-container h2 {
  text-align: center;
  font-size: 2.5em;
  color: #4a3c1a;
  margin-bottom: 3em;
  font-weight: 700;
}

.form-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4em;
  align-items: flex-start;
}

/* Form Info Section */
.form-info h3 {
  font-size: 1.8em;
  color: #4a3c1a;
  margin-bottom: 1em;
  font-weight: 600;
}

.form-info>p {
  font-size: 1.1em;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2em;
}

.quick-contact {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

.quick-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1em;
  padding: 1.5em;
  background: #f9f6f1;
  border-radius: 12px;
  border-left: 4px solid #d4a168;
  transition: transform 0.3s ease;
}

.quick-contact-item:hover {
  transform: translateX(10px);
}

.quick-icon {
  width: 50px;
  height: 50px;
  background: #d4a168;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quick-icon i {
  font-size: 1.2em;
  color: white;
}

.quick-info h4 {
  font-size: 1.1em;
  color: #4a3c1a;
  margin-bottom: 0.3em;
  font-weight: 600;
}

.quick-info p {
  color: #d4a168;
  font-weight: 600;
  margin-bottom: 0.2em;
}

.quick-info small {
  color: #666;
  font-size: 0.9em;
}

/* Contact Form Styles */
.contact-form {
  background: #f9f6f1;
  padding: 2.5em;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1em;
  margin-bottom: 1.5em;
}

.form-group {
  margin-bottom: 1.5em;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #4a3c1a;
  margin-bottom: 0.5em;
  font-size: 0.95em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1em;
  border: 2px solid #e6c77c;
  border-radius: 8px;
  font-size: 1em;
  font-family: 'Labrada', serif;
  background: white;
  color: #4a3c1a;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d4a168;
  box-shadow: 0 0 0 3px rgba(56, 142, 60, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  margin: 2em 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.8em;
  cursor: pointer;
  font-size: 0.95em;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #e6c77c;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark {
  background: #d4a168;
  border-color: #d4a168;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark::after {
  content: '✓';
  color: white;
  font-weight: bold;
  font-size: 0.8em;
}

.submit-btn {
  width: 100%;
  background: #d4a168;
  color: white;
  border: none;
  padding: 1.2em;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}

.submit-btn:hover {
  background: #388e3c;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* C
ontact Details Section */
#contact-details {
  background: #f3efea;
  padding: 4em 2em;
  border-top: 2px solid #e6c77c;
}

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

.contact-container h2 {
  text-align: center;
  font-size: 2.5em;
  color: #4a3c1a;
  margin-bottom: 3em;
  font-weight: 700;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4em;
}

.address-section {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.address-card {
  background: white;
  padding: 2em;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 1.5em;
}

.address-icon {
  width: 60px;
  height: 60px;
  background: #d4a168;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.address-icon i {
  font-size: 1.5em;
  color: white;
}

.address-info h3 {
  font-size: 1.3em;
  color: #4a3c1a;
  margin-bottom: 0.5em;
  font-weight: 600;
}

.address-info p {
  color: #666;
  line-height: 1.6;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

.contact-method {
  background: white;
  padding: 1.5em;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 1em;
  transition: transform 0.3s ease;
}

.contact-method:hover {
  transform: translateX(10px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: #388e3c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.2em;
  color: white;
}

.contact-info h4 {
  font-size: 1.1em;
  color: #4a3c1a;
  margin-bottom: 0.3em;
  font-weight: 600;
}

.contact-info p {
  color: #666;
  font-size: 0.95em;
  line-height: 1.4;
}

.map-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder {
  background: white;
  border: 2px dashed #e6c77c;
  border-radius: 15px;
  padding: 3em;
  text-align: center;
  width: 100%;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.map-placeholder:hover {
  border-color: #d4a168;
  background: #f9f6f1;
}

.map-placeholder i {
  font-size: 4em;
  color: #d4a168;
  margin-bottom: 1em;
}

.map-placeholder p {
  font-size: 1.2em;
  color: #4a3c1a;
  font-weight: 600;
  margin-bottom: 0.5em;
}

.map-placeholder small {
  color: #666;
  font-size: 0.9em;
}

/* FAQ Section */
#faq-section {
  background: white;
  padding: 4em 2em;
  border-bottom: 2px solid #e6c77c;
}

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

.faq-container h2 {
  text-align: center;
  font-size: 2.5em;
  color: #4a3c1a;
  margin-bottom: 3em;
  font-weight: 700;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5em;
}

.faq-item {
  background: #f9f6f1;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #e6c77c;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #d4a168;
}

.faq-question {
  padding: 1.5em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f9f6f1;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f3efea;
}

.faq-question h4 {
  font-size: 1.1em;
  color: #4a3c1a;
  margin: 0;
  font-weight: 600;
}

.faq-question i {
  color: #d4a168;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5em;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
}

.faq-item.active .faq-answer {
  padding: 1.5em;
  max-height: 200px;
}

.faq-answer p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ===
=====================================
   10. COMMON SECTIONS
   ======================================== */

/* Intro Section */
#intro {
  background: #f3efea;
  padding: 2em 1em;
  text-align: center;
  border-bottom: 2px dashed #d4a168;
}

#intro h2 {
  font-size: 2em;
  margin-bottom: 0.5em;
  color: #4a3c1a;
}

/* Certification Logos */
.certification-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  min-width: 120px;
  min-height: 80px;
}

.logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.logo-item img {
  max-width: 100px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Legacy Products Section */
#products {
  padding: 2em 5vw;
}

#products h3 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 1.5em;
  color: #4a3c1a;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2em;
  max-width: 1200px;
  margin: 0 auto;
}

.product {
  background: #fffbe7;
  border: 2px solid #e6c77c;
  border-radius: 16px 4px 16px 4px;
  box-shadow: 0 2px 6px #d2b95955;
  padding: 1.5em;
  text-align: center;
  transition: transform 0.2s;
}

.product:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 6px 16px #388e3c22;
}

.product img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1em;
}

.product h4 {
  font-size: 1.2em;
  margin: 0.5em 0;
  color: #4a3c1a;
}

.product p {
  font-size: 1.1em;
  font-weight: bold;
  color: #d4a168;
  margin: 0.5em 0;
}

/* Common Button Styles */
button {
  background: #d4a168;
  color: #fff;
  padding: 0.8em 1.5em;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  font-weight: 600;
  margin-top: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

button:hover {
  background: #388e3c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Newsletter Section */
#newsletter {
  background: #f3efea;
  padding: 3em 2em;
  text-align: center;
  border-bottom: 2px solid #e6c77c;
}

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

.newsletter-container h3 {
  font-size: 2em;
  color: #4a3c1a;
  margin-bottom: 0.5em;
  font-weight: bold;
}

.newsletter-container p {
  font-size: 1.1em;
  color: #666;
  margin-bottom: 2em;
}

.newsletter-form {
  display: flex;
  gap: 1em;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 1em;
  border: 2px solid #e6c77c;
  border-radius: 8px;
  font-size: 1em;
  background: white;
  color: #4a3c1a;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #d4a168;
  box-shadow: 0 0 0 3px rgba(56, 142, 60, 0.1);
}

.newsletter-form button {
  background: #d4a168;
  color: white;
  border: none;
  padding: 1em 2em;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.newsletter-form button:hover {
  background: #388e3c;
  transform: translateY(-2px);
}

/* =====
===================================
   11. FOOTER STYLES
   ======================================== */

footer {
  background: #2c2c2c;
  color: #fff;
  margin-top: 0;
}

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

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 3em;
  padding: 3em 2em 2em;
}

.footer-section {
  text-align: -webkit-center;
}

.footer-section h4 {
  color: #fff;
  font-size: 1.2em;
  margin-bottom: 1.5em;
  font-weight: bold;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.2em;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95em;
}

.footer-section ul li a:hover {
  color: #d4a168;
}

/* Brand Section */
.footer-logo-image {
  height: 50px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1em;
  background-color: white;
  border-radius: 50%;
}

.brand-section .footer-logo h2 {
  font-size: 2.5em;
  margin: 0 0 0.2em 0;
  color: #d4a168;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-logo small {
  display: block;
  color: #999;
  font-size: 0.8em;
  margin-top: 0.5em;
  font-style: italic;
}

.brand-section .footer-logo p {
  font-size: 0.9em;
  color: #ccc;
  margin: 0 0 2em 0;
  font-style: italic;
}

.contact-info p {
  color: #ccc;
  margin: 0.3em 0;
  font-size: 0.9em;
  line-height: 1.4;
}

/* Social Section */
.social-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.social-icons {
  display: flex;
  gap: 1em;
  margin-bottom: 2em;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: #444;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2em;
}

.social-icons a:hover {
  background: #d4a168;
  transform: translateY(-2px);
}

.certification-logos {
  display: flex;
  gap: 0.8em;
  flex-wrap: wrap;
}

.cert-logo {
  background: #d4a168;
  color: white;
  padding: 0.4em 0.8em;
  border-radius: 4px;
  font-size: 0.8em;
  font-weight: bold;
  text-align: center;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #444;
  padding: 1.5em 2em;
}

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

.footer-bottom p {
  margin: 0;
  color: #ccc;
  font-size: 0.9em;
}

.footer-links {
  display: flex;
  gap: 2em;
  flex-wrap: wrap;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9em;
  transition: color 0.3s ease;
}

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

/* ========================================
   12. RESPONSIVE DESIGN - TABLET
   ======================================== */
@media (max-width: 768px) {

  /* Header */
  .logo {
    font-size: 28px;
    letter-spacing: 2px;
  }

  header {
    padding: 0.8em 0;
  }

  .logo-image {
    height: 65px;
  }

  nav {
    gap: 12px;
    padding: 0.3em 0.5em;
  }

  nav a {
    font-size: 0.9em;
    padding: 0.4em 0.8em;
  }

  /* Marquee */
  .marquee {
    font-size: 12px;
    letter-spacing: 0.5px;
  }

  .marquee-container {
    padding: 6px 0;
  }

  /* Carousel */
  .carousel-container {
    height: 300px;
  }

  .slide-content h2 {
    font-size: 1.8em;
  }

  .slide-content p {
    font-size: 1em;
  }

  .cta-button {
    padding: 0.8em 1.5em;
    font-size: 1em;
  }

  .carousel-btn {
    width: 15px;
    height: 15px;
    font-size: 15px;
    min-height: 15px !important;
    min-width: 15px !important;
  }


  .prev-btn {
    left: 10px;
  }

  .next-btn {
    right: 10px;
  }

  /* Certificates */
  #certificates {
    padding: 1.5em 0;
  }

  .certificates-container h3 {
    font-size: 1.5em;
    margin-bottom: 1em;
  }

  .certificates-scroll {
    gap: 2em;
  }

  .certificate-circle {
    width: 70px;
    height: 70px;
  }

  .certificate-circle img {
    width: 50px;
    height: 50px;
  }

  .cert-placeholder {
    width: 60px;
    height: 60px;
    font-size: 10px;
  }

  .cert-placeholder.iso,
  .cert-placeholder.organic {
    font-size: 8px;
  }

  .certificate-item {
    min-width: 100px;
  }

  .certificate-item span {
    font-size: 0.8em;
  }

  /* Product Categories */
  #product-categories {
    padding: 3em 1em;
  }

  .categories-container h3 {
    font-size: 1.8em;
    margin-bottom: 1.5em;
  }

  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5em;
  }

  .category-card {
    max-width: 300px;
  }

  .category-image {
    height: 150px;
  }

  .category-info {
    padding: 1.2em;
  }

  .category-info h4 {
    font-size: 1.1em;
  }

  .category-btn {
    padding: 0.7em 1.5em;
    font-size: 0.85em;
  }

  /* Products Showcase */
  #products-showcase {
    padding: 2em 1em;
  }

  .products-container h3 {
    font-size: 1.8em;
    margin-bottom: 1.5em;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5em;
  }

  .product-card {
    max-width: 280px;
  }

  .product-image {
    height: 200px;
  }

  .product-info {
    padding: 1.2em;
  }

  .product-info h4 {
    font-size: 0.95em;
  }

  .price-section {
    gap: 0.4em;
  }

  .sale-price {
    font-size: 1em;
  }

  /* About Page */
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2em;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.2em;
  }

  .brand-info h2 {
    font-size: 1.8em;
  }

  .brand-full-form {
    font-size: 0.5em;
  }

  .tagline {
    font-size: 1em;
  }

  .hero-description {
    font-size: 1.1em;
  }

  .hero-image img {
    height: 300px;
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 2em;
  }

  .story-text {
    order: 2;
  }

  .story-image {
    order: 1;
  }

  .founders-grid {
    grid-template-columns: 1fr;
    gap: 2em;
  }

  .agenda-grid {
    grid-template-columns: 1fr;
    gap: 2em;
  }

  .agenda-item {
    padding: 1.5em;
  }

  /* Contact Page */
  .hero-text h1 {
    font-size: 2.2em;
  }

  .hero-text p {
    font-size: 1.1em;
  }

  .form-content {
    grid-template-columns: 1fr;
    gap: 3em;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 2em;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2em;
  }

  .map-placeholder {
    height: 300px;
    padding: 2em;
  }

  .map-placeholder i {
    font-size: 3em;
  }

  /* Common Sections */
  #intro {
    padding: 1.5em 1em;
  }

  #intro h2 {
    font-size: 1.6em;
  }

  /* Intro paragraph removed - now using certification logos */

  #products {
    padding: 1.5em 3vw;
  }

  #products h3 {
    font-size: 1.6em;
    margin-bottom: 1em;
  }

  .product-list {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5em;
  }

  .product {
    padding: 1.2em;
  }

  .product img {
    height: 150px;
  }

  .product h4 {
    font-size: 1.1em;
  }

  .product p {
    font-size: 1em;
  }

  button {
    padding: 0.7em 1.2em;
    font-size: 0.9em;
  }

  /* Newsletter */
  #newsletter {
    padding: 2em 1em;
  }

  .newsletter-container h3 {
    font-size: 1.6em;
  }

  .newsletter-container p {
    font-size: 1em;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 1em;
  }

  .newsletter-form button {
    padding: 1em;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2em;
    padding: 2em 1em 1.5em;
  }

  .brand-section .footer-logo h2 {
    font-size: 2em;
  }

  .social-section {
    align-items: center;
    text-align: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1em;
  }

  .footer-links {
    justify-content: center;
    gap: 1.5em;
  }

  /* Touch-friendly interactions */
  button,
  .carousel-btn,
  .dot,
  nav a {
    min-height: 44px;
    min-width: 44px;
  }

  .carousel-dots {
    gap: 15px;
  }

  .dot {
    width: 7px;
    height: 7px;
    min-width: 7px;
    min-height: 7px;
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }

  body {
    font-size: 16px;
  }

  .product button {
    margin-top: 1em;
    width: 100%;
  }
}

/* ==
======================================
   13. RESPONSIVE DESIGN - MOBILE
   ======================================== */

@media (max-width: 480px) {

  /* Header */
  .logo {
    font-size: 24px;
    letter-spacing: 1px;
    padding: 0.3em 0;
  }

  header {
    padding: 0.5em 0;
  }

  .logo-image {
    height: 50px;
  }

  .footer-logo-image {
    height: 40px;
  }

  nav {
    gap: 8px;
    padding: 0.2em 0.5em;
  }

  nav a {
    font-size: 0.8em;
    padding: 0.3em 0.6em;
  }

  /* Marquee */
  .marquee {
    font-size: 11px;
    letter-spacing: 0px;
  }

  .marquee-container {
    padding: 5px 0;
  }

  /* Carousel */
  .carousel-container {
    height: 250px;
  }

  .slide-content {
    padding: 0 1em;
  }

  .slide-content h2 {
    font-size: 1.5em;
  }

  .slide-content p {
    font-size: 0.9em;
  }

  /* Certificates */
  #certificates {
    padding: 1em 0;
  }

  .certificates-container h3 {
    font-size: 1.3em;
    margin-bottom: 0.8em;
  }

  .certificates-scroll {
    gap: 1.5em;
  }

  .certificate-circle {
    width: 60px;
    height: 60px;
  }

  .certificate-circle img {
    width: 40px;
    height: 40px;
  }

  .cert-placeholder {
    width: 50px;
    height: 50px;
    font-size: 9px;
  }

  .cert-placeholder.iso,
  .cert-placeholder.organic {
    font-size: 7px;
  }

  .certificate-item {
    min-width: 80px;
  }

  .certificate-item span {
    font-size: 0.7em;
  }

  /* Product Categories */
  #product-categories {
    padding: 2em 0.8em;
  }

  .categories-container h3 {
    font-size: 1.5em;
    margin-bottom: 1.2em;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    gap: 1.2em;
  }

  .category-card {
    max-width: 100%;
    margin: 0 0.5em;
  }

  .category-image {
    height: 140px;
  }

  .category-info {
    padding: 1em;
  }

  .category-info h4 {
    font-size: 1em;
  }

  .category-info p {
    font-size: 0.9em;
  }

  .category-btn {
    padding: 0.6em 1.2em;
    font-size: 0.8em;
  }

  /* Products Showcase */
  #products-showcase {
    padding: 1.5em 0.8em;
  }

  .products-container h3 {
    font-size: 1.5em;
    margin-bottom: 1.2em;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.2em;
  }

  .product-card {
    max-width: 100%;
    margin: 0 0.5em;
  }

  .product-image {
    height: 180px;
  }

  .product-info {
    padding: 7px;
  }

  .product-info h4 {
    font-size: 0.9em;
    height: auto;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }

  .price-section {
    flex-direction: row;
    align-items: center;
    gap: 0.4em;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .rating {
    font-size: 0.8em;
    margin-bottom: 1em;
  }

  .add-to-cart {
    margin: auto;
    padding: 0;
    font-size: 0.9em;
    height: 20px;
    min-height: 25px;
  }

  /* About Page */
  #about-hero,
  #our-story,
  #founders,
  #our-agenda {
    padding: 2em 1em;
  }

  .hero-text h1 {
    font-size: 1.8em;
  }

  .brand-info {
    padding: 1em;
  }

  .brand-info h2 {
    font-size: 1.5em;
  }

  .brand-full-form {
    font-size: 0.45em;
  }

  .tagline {
    font-size: 0.9em;
  }

  .hero-description {
    font-size: 1em;
  }

  .story-container h2,
  .founders-container h2,
  .agenda-container h2 {
    font-size: 2em;
    margin-bottom: 2em;
  }

  .founder-card {
    padding: 1.5em;
  }

  .founder-image {
    width: 120px;
    height: 120px;
  }

  .founder-info h3 {
    font-size: 1.3em;
  }

  .founder-title {
    font-size: 1em;
  }

  .founder-bio {
    font-size: 0.9em;
  }

  .agenda-item {
    padding: 1.2em;
  }

  .agenda-icon {
    width: 60px;
    height: 60px;
  }

  .agenda-icon i {
    font-size: 1.5em;
  }

  .agenda-item h3 {
    font-size: 1.1em;
  }

  .agenda-item p {
    font-size: 0.9em;
  }

  /* Contact Page */
  #contact-form-section,
  #contact-details,
  #faq-section {
    padding: 2em 1em;
  }

  /* Contact hero is handled by dedicated responsive styles */

  .contact-form-container h2,
  .contact-container h2,
  .faq-container h2 {
    font-size: 2em;
    margin-bottom: 2em;
  }

  .form-info h3 {
    font-size: 1.5em;
  }

  .contact-form {
    padding: 1.5em;
  }

  .quick-contact-item {
    padding: 1.2em;
    flex-direction: column;
    text-align: center;
  }

  .address-card {
    padding: 1.5em;
    flex-direction: column;
    text-align: center;
  }

  .contact-method {
    padding: 1.2em;
    flex-direction: column;
    text-align: center;
  }

  .map-placeholder {
    height: 250px;
    padding: 1.5em;
  }

  .map-placeholder i {
    font-size: 2.5em;
  }

  .map-placeholder p {
    font-size: 1em;
  }

  .faq-question {
    padding: 1.2em;
  }

  .faq-question h4 {
    font-size: 1em;
  }

  .faq-item.active .faq-answer {
    padding: 1.2em;
  }

  /* Common Sections */
  #intro {
    padding: 1em 0.8em;
  }

  #intro h2 {
    font-size: 1.4em;
  }

  /* Intro paragraph removed - now using certification logos */

  #products {
    padding: 1em 2vw;
  }

  #products h3 {
    font-size: 1.4em;
  }

  .product-list {
    grid-template-columns: 1fr;
    gap: 1em;
  }

  .product {
    padding: 1em;
    margin: 0 0.5em;
  }

  .product img {
    height: 120px;
  }

  .product h4 {
    font-size: 1em;
  }

  .product p {
    font-size: 0.9em;
  }

  button {
    padding: 0.6em 1em;
    font-size: 0.8em;
  }

  /* Newsletter */
  #newsletter {
    padding: 1.5em 0.8em;
  }

  .newsletter-container h3 {
    font-size: 1.4em;
  }

  .newsletter-container p {
    font-size: 0.9em;
    margin-bottom: 1.5em;
  }

  /* Footer */
  .footer-content {
    padding: 1.5em 0.8em 1em;
    gap: 1.5em;
  }

  .brand-section .footer-logo h2 {
    font-size: 1.8em;
  }

  .contact-info p {
    font-size: 0.85em;
  }

  .footer-section h4 {
    font-size: 1.1em;
    margin-bottom: 1em;
  }

  .footer-section ul li a {
    font-size: 0.9em;
  }

  .social-icons a {
    width: 35px;
    height: 35px;
    font-size: 1em;
  }

  .certification-logos {
    justify-content: center;
  }

  .cert-logo {
    font-size: 0.75em;
    padding: 0.3em 0.6em;
  }

  .footer-bottom {
    padding: 1em 0.8em;
  }

  .footer-bottom p {
    font-size: 0.8em;
  }

  .footer-links {
    gap: 1em;
  }

  .footer-links a {
    font-size: 0.8em;
  }
}

/* =
=======================================
   14. EXTRA SMALL DEVICES & ANIMATIONS
   ======================================== */

/* Extra small devices */
@media (max-width: 320px) {
  .logo {
    font-size: 20px;
    letter-spacing: 0.5px;
  }

  nav {
    flex-direction: column;
    gap: 5px;
  }

  nav a {
    padding: 0.5em;
    font-size: 0.9em;
  }

  .slide-content h2 {
    font-size: 1.2em;
  }

  .slide-content p {
    font-size: 0.8em;
  }

  .cta-button {
    padding: 0.6em 1em;
    font-size: 0.9em;
  }

  .product-list {
    margin: 0 0.5em;
  }

  .certificate-circle {
    width: 50px;
    height: 50px;
  }

  .cert-placeholder {
    width: 40px;
    height: 40px;
    font-size: 8px;
  }

  .cert-placeholder.iso,
  .cert-placeholder.organic {
    font-size: 6px;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .carousel-container {
    height: 250px;
  }

  .slide-content h2 {
    font-size: 1.5em;
  }

  .slide-content p {
    font-size: 0.9em;
    margin-bottom: 1em;
  }

  .cta-button {
    padding: 0.6em 1.2em;
    font-size: 0.9em;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .logo {
    text-shadow: 2px 1px 3px #a07a3b;
  }

  .slide-content h2 {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  }
}

/* ========================================
   15. ACCESSIBILITY & ANIMATIONS
   ======================================== */

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .marquee {
    animation-duration: 60s;
  }

  .certificates-scroll {
    animation-duration: 40s;
  }

  .slide {
    transition: opacity 0.2s ease-in-out;
  }

  * {
    transition-duration: 0.1s !important;
  }
}

/* Focus states for accessibility */
button:focus,
nav a:focus,
.carousel-btn:focus,
.dot:focus {
  outline: 2px solid #d4a168;
  outline-offset: 2px;
}

/* Animation for scroll-triggered elements */
@media (prefers-reduced-motion: no-preference) {

  .founder-card,
  .agenda-item,
  .contact-method,
  .quick-contact-item,
  .faq-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
  }

  .founder-card:nth-child(1) {
    animation-delay: 0.1s;
  }

  .founder-card:nth-child(2) {
    animation-delay: 0.2s;
  }

  .agenda-item:nth-child(1) {
    animation-delay: 0.1s;
  }

  .agenda-item:nth-child(2) {
    animation-delay: 0.2s;
  }

  .agenda-item:nth-child(3) {
    animation-delay: 0.3s;
  }

  .agenda-item:nth-child(4) {
    animation-delay: 0.4s;
  }

  .agenda-item:nth-child(5) {
    animation-delay: 0.5s;
  }

  .agenda-item:nth-child(6) {
    animation-delay: 0.6s;
  }

  .quick-contact-item:nth-child(1) {
    animation-delay: 0.1s;
  }

  .quick-contact-item:nth-child(2) {
    animation-delay: 0.2s;
  }

  .quick-contact-item:nth-child(3) {
    animation-delay: 0.3s;
  }

  .faq-item:nth-child(1) {
    animation-delay: 0.1s;
  }

  .faq-item:nth-child(2) {
    animation-delay: 0.2s;
  }

  .faq-item:nth-child(3) {
    animation-delay: 0.3s;
  }

  .faq-item:nth-child(4) {
    animation-delay: 0.4s;
  }

  .faq-item:nth-child(5) {
    animation-delay: 0.5s;
  }

  .faq-item:nth-child(6) {
    animation-delay: 0.6s;
  }

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

/* ========================================
   16. PRINT STYLES
   ======================================== */

@media print {

  .marquee-container,
  #banner-carousel,
  .carousel-btn,
  .carousel-dots,
  #certificates {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .product {
    break-inside: avoid;
    border: 1px solid #ccc;
  }
}

/* ========================================
   END OF CONSOLIDATED STYLES
   ======================================== */

h3.vertical-tabs-title {
  text-align: center;
  font-size: 36px;
}



.vertical-tabs-products {
  /* max-width: 1100px; */
  margin: 0% 2%;
}

.tabs-main-container {
  display: flex;
  gap: 0;
  /* border: 2px solid #d4a168; */
  border-radius: 7px;
  padding: 1%;
}

.tabs-column {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Removed - styles moved to .hero-text-tab span */

/* Tabs buttons styling */
.tablinks {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  background: #f9f6f1;
  cursor: pointer;
  border-radius: 8px;
  font-size: 1em;
  font-family: inherit;
  border: 2px solid transparent;
  padding: 1em 0.8em;
  transition: all 0.3s ease;
  text-align: center;
}

.tablinks:hover {
  background: none !important;
  /* background: #e6c77c !important; */
  /* border-color: #d4a168; */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 161, 104, 0.3);
}

.tablinks:hover .hero-image-align img {
  transform: scale(1.1);
}

.tablinks:hover .hero-text-tab span {
  color: #4a3c1a;
  font-weight: 600;
}

.tablinks:focus {
  border: 2px solid #388e3c;
  outline: none !important;
  background: #f3efea;
}

.tablinks:focus .hero-text-tab span {
  color: #388e3c;
  font-weight: 600;
}

.tablinks {
  width: 160px;
  min-height: 120px;
  margin-top: 0;
  /* border-color: #d4a168; */
}

/* Hero image alignment */
.hero-image-align {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.5em;
}

.hero-image-align img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Hero text styling */
.hero-text-tab {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.2;
}

.hero-text-tab span {
  font-family: serif;
  color: #646161;
  text-transform: none;
  font-size: 14px;
  font-weight: 500;
  display: block;
  word-wrap: break-word;
  hyphens: auto;
}

.tablinks.active {
  /* background: #d4a168; */
  /* border-color: #388e3c; */
  /* box-shadow: 0 4px 15px rgba(212, 161, 104, 0.4); */
  border-right: 7px solid green;
}

.tablinks.active .hero-text-tab span {
  color: grey;
  font-weight: 600;
}

.tablinks.active .hero-image-align img {
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Tab content area */
.tab-contents {
  overflow-y: scroll;
  /* height: 1000px; */
  width: 100%;
  /* flex: 1; */
  border-left: 1px solid #d4a168;
}

.tabcontent {
  display: none;
  padding-left: 1em;
}

/* Products grid */
.products-grid {
  max-width: 100%;
  /* display: flex; */
  float: left !important;
  /* grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); */
  /* gap: 1.2em; */
}

/* Product card */
.product-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(212, 161, 104, 0.08);
  padding: 0;
  text-align: center;
  transition: box-shadow 0.3s ease;
  float: left;
  margin: 13px 13px;
}

.product-card:hover {
  box-shadow: 0 6px 20px rgba(212, 161, 104, 0.15);
}

.product-image img {
  width: 150px;
  height: 150px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 0.8em;
}

.product-info h4 {
  color: #4a3c1a;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 0.5em;
}

.price-section {
  font-size: 1.1em;
  color: #d4a168;
  margin-bottom: 2px;
}

.add-to-cart {
  background-color: #d4a168;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  padding: 0.75em 1.5em;
  font-size: 12px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.add-to-cart:hover {
  background-color: #a5792d;
}

/* Responsive */
@media (max-width: 768px) {
  .tabs-main-container {
    flex-direction: row;
    gap: 1rem;
  }

  .tabs-column {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0.3rem;
    min-width: 120px;
    max-width: 140px;
  }

  .tablinks {
    width: 100% !important;
    min-height: 90px !important;
    padding: 0.6em 0.4em;
    flex-direction: column;
    gap: 0.4em;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .hero-image-align {
    margin-bottom: 0.4em;
    flex-shrink: 0;
  }

  .hero-image-align img {
    width: 40px;
    height: 40px;
  }

  .hero-text-tab {
    flex: 1;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .hero-text-tab span {
    font-size: 11px;
    line-height: 1.1;
  }

  .tabcontent {
    padding-left: 1rem;
    flex: 1;
  }

  .tab-contents {
    flex: 1;
    overflow-y: auto;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  h3.vertical-tabs-title {
    margin: auto;
  }

  .product-image img {
    width: 120px;
    height: 120px;
  }
}


h3.feature-products-title {
  margin-bottom: 0;
}

.products-grid.home-grid-featured {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5em;
  float: none !important;
}

/* 
========================================
   ENHANCED MOBILE RESPONSIVENESS
   ======================================== */

/* Mobile First Approach - Base Mobile Styles */
@media (max-width: 768px) {

  .feature-products-title,
  .certificates-container h3 {
    margin: 15px auto !important;
  }

  /* Hero Section Mobile Optimization */
  .hero-section {
    height: 70vh;
    min-height: 400px;
    background-attachment: scroll;
    /* Better performance on mobile */
    padding: 1rem;
  }

  .hero-text {
    max-width: 95%;
    padding: 0 1rem;
  }

  .hero-text h1 {
    font-size: 2.2em;
    line-height: 1.2;
    margin-bottom: 0.8em;
  }

  .hero-text p {
    font-size: 1rem;
    float: none;
    text-align: center;
    margin-top: 1rem;
  }

  /* Header Mobile Optimization */
  .header-bar {
    padding: 12px 16px;
    gap: 16px;
    flex-direction: column;
    justify-content: center;
  }

  .logo-image {
    height: 60px;
  }

  .menu {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  nav {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.5rem 0;
  }

  nav a {
    font-size: 18px;
    padding: 8px 12px;
    border-radius: 6px;
    background: rgba(212, 161, 104, 0.1);
    transition: all 0.3s ease;
  }

  nav a:hover {
    background: rgba(212, 161, 104, 0.2);
  }

  /* Marquee Mobile */
  .marquee {
    font-size: 12px;
    padding: 8px;
  }

  .marquee span {
    letter-spacing: 1px;
    margin-left: -20%;
  }

  /* Certificates Mobile */
  #certificates {
    padding: 15px 0;
  }

  .certificates-container h3 {
    font-size: 1.6em;
    margin-bottom: 1.5rem;
  }

  .certificates-scroll {
    gap: 2rem;
  }

  .certificate-circle {
    width: 80px;
    height: 80px;
  }

  .certificate-circle img {
    width: 80px;
    height: 80px;
  }

  .certificate-item span {
    font-size: 0.85em;
    line-height: 1.3;
  }

  /* Featured Products Mobile */
  #products-showcase {
    padding: 7px 0;
  }

  .products-container h3 {
    font-size: 1.8em;
    margin-bottom: 1.5rem;
  }

  .products-grid.home-grid-featured {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    justify-items: center;
  }

  .product-card {
    max-width: 160px;
    width: 100%;
  }

  .product-image {
    height: 140px;
    width: 100%;
  }

  .product-info h3 {
    font-size: 11px;
    height: 30px;
  }

  .product-info h4 {
    font-size: 13px;
    margin: 0 3px;
  }

  .sale-price {
    font-size: 14px;
  }

  .add-to-cart {
    font-size: 11px;
    padding: 0.6em;
  }

  /* Categories Mobile */
  #product-categories {
    padding: 2rem 1rem;
  }

  .categories-container h3 {
    font-size: 1.8em;
    margin-bottom: 1.5rem;
  }

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

  .category-card {
    max-width: 100%;
  }

  .category-image {
    height: 160px;
  }

  .category-info {
    padding: 1.2rem;
  }

  .category-info h4 {
    font-size: 1.1em;
  }

  .category-info p {
    font-size: 0.9em;
  }

  .category-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.85em;
  }

  /* Intro Section Mobile */
  #intro {
    padding: 2rem 1rem;
  }

  #intro h2 {
    font-size: 1.6em;
    margin-bottom: 1rem;
  }

  /* Intro paragraph removed - now using certification logos */
}

/* Small Mobile Devices */
@media (max-width: 480px) {

  /* Hero Section Small Mobile */
  .hero-section {
    height: 60vh;
    min-height: 350px;
    padding: 0.5rem;
  }

  .hero-text h1 {
    font-size: 1.8em;
    line-height: 1.1;
  }

  .hero-text p {
    font-size: 0.9rem;
  }

  /* Header Small Mobile */
  .header-bar {
    padding: 8px 12px;
    gap: 12px;
    flex-direction: column;
  }

  .logo-image {
    height: 50px;
  }

  nav {
    gap: 12px;
  }

  nav a {
    font-size: 16px;
    padding: 6px 10px;
  }

  /* Marquee Small Mobile */
  .marquee {
    font-size: 11px;
    padding: 6px;
  }

  /* Certificates Small Mobile */
  .certificates-container h3 {
    font-size: 1.4em;
  }

  .certificates-scroll {
    gap: 1.5rem;
  }

  .certificate-circle {
    width: 70px;
    height: 70px;
  }

  .certificate-circle img {
    width: 70px;
    height: 70px;
  }

  .certificate-item span {
    font-size: 0.75em;
  }

  /* Featured Products Small Mobile */
  .products-container h3 {
    font-size: 1.5em;
  }

  .products-grid.home-grid-featured {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.8rem;
  }

  .product-card {
    max-width: 120px;
  }

  .product-image {
    height: 120px;
  }

  .product-info h3 {
    font-size: 10px;
    height: 35px;
    margin: auto;
  }

  .product-info h4 {
    font-size: 12px;
  }

  .sale-price {
    font-size: 13px;
  }

  .add-to-cart {
    font-size: 10px;
    padding: 0.5em;
  }

  /* Categories Small Mobile */
  .categories-container h3 {
    font-size: 1.5em;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .category-image {
    height: 140px;
  }

  .category-info {
    padding: 1rem;
  }

  .category-info h4 {
    font-size: 1rem;
  }

  .category-info p {
    font-size: 0.85em;
  }

  .category-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8em;
  }

  /* Intro Small Mobile */
  #intro {
    padding: 1.5rem 0.8rem;
  }

  #intro h2 {
    font-size: 1.4em;
  }

  /* Intro paragraph removed - now using certification logos */
}

/* Extra Small Mobile Devices */
@media (max-width: 360px) {

  /* Hero Section Extra Small */
  .hero-text h1 {
    font-size: 1.6em;
  }

  .hero-text p {
    font-size: 0.8rem;
  }

  /* Header Extra Small */
  .logo-image {
    height: 45px;
  }

  nav a {
    font-size: 14px;
    padding: 5px 8px;
  }

  /* Featured Products Extra Small */
  .products-grid.home-grid-featured {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }

  .product-card {
    max-width: 120px;
  }

  .product-image {
    height: 100px;
  }

  .product-info h3 {
    font-size: 9px;
    height: 20px;
  }

  .product-info h4 {
    font-size: 11px;
  }

  .sale-price {
    font-size: 12px;
  }

  /* Categories Extra Small */
  .category-image {
    height: 120px;
  }

  .category-info {
    padding: 0.8rem;
  }

  .category-info h4 {
    font-size: 0.95em;
  }

  .category-info p {
    font-size: 0.8em;
  }
}

/* Landscape Mobile Optimization */
@media (max-width: 768px) and (orientation: landscape) {

  .hero-section {
    height: 100vh;
    min-height: 300px;
  }

  .hero-text h1 {
    font-size: 2em;
  }

  .header-bar {
    flex-direction: row;
    padding: 8px 16px;
    justify-content: flex-start;
  }

  .menu {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  nav {
    gap: 16px;
  }

  nav a {
    font-size: 16px;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {

  /* Increase touch targets */
  nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .category-btn,
  .add-to-cart,
  button {
    min-height: 44px;
    padding: 0.8rem 1.5rem;
  }

  /* Remove hover effects on touch devices */
  .product-card:hover,
  .category-card:hover {
    transform: none;
  }

  .product-card:hover .product-image img,
  .category-card:hover .category-image img {
    transform: none;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

  .hero-section {
    background-image: url(files/homepagefirstimage.webp);
  }

  .certificate-circle img,
  .product-image img,
  .category-image img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {

  .hero-section {
    background-attachment: scroll;
  }

  .marquee {
    animation: none;
  }

  .certificates-scroll {
    animation: none;
  }

  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {

  .hero-section::before {
    background: rgb(0 0 0 / 50%);
  }

  .product-card,
  .category-card {
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
  }
}

/* ========================================
   MOBILE PERFORMANCE OPTIMIZATIONS
   ======================================== */
/* Image optimization for mobile */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Lazy loading support */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
  opacity: 1;
}

/* Mobile-specific font loading */
@media (max-width: 768px) {

  /* Optimize font loading for mobile */
  body {
    font-display: swap;
  }

  /* Reduce motion for better performance */
  * {
    will-change: auto;
  }

  /* Optimize transforms for mobile */
  .product-card,
  .category-card {
    margin: 7px;
    transform: translateZ(0);
    backface-visibility: hidden;
  }
}

/* Mobile-first grid improvements */
@supports (display: grid) {

  @media (max-width: 768px) {

    .categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1rem;
      padding: 0 1rem;
    }

    .products-grid.home-grid-featured {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 1rem;
      padding: 0 0.5rem;
    }
  }

  @media (max-width: 480px) {

    .categories-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .products-grid.home-grid-featured {
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 0.8rem;
    }
  }
}

/* Fallback for older browsers */
@supports not (display: grid) {

  @media (max-width: 768px) {

    .categories-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
    }

    .category-card {
      flex: 0 1 280px;
    }

    .products-grid.home-grid-featured {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
    }

    .product-card {
      flex: 0 1 140px;
    }
  }
}

/* ===
=====================================
   PRODUCT DETAILS SLIDER/MODAL
   ======================================== */

/* Overlay */
.product-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.product-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Desktop Slider (from right) */
.product-slider {
  position: fixed;
  top: 0;
  right: -500px;
  width: 500px;
  height: 100%;
  background: white;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  overflow-y: auto;
  z-index: 10000;
}

.product-slider.active {
  right: 0;
}

/* Slider Header */
.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 2px solid #e6c77c;
  background: #f9f6f1;
  position: sticky;
  top: 0;
  z-index: 10001;
}

.slider-header h2 {
  margin: 0;
  color: #4a3c1a;
  font-size: 1.5em;
  font-weight: 600;
}

.close-slider {
  background: rgba(212, 161, 104, 0.1);
  border: 2px solid rgba(212, 161, 104, 0.3);
  font-size: 1.8rem;
  color: #4a3c1a;
  cursor: pointer;
  padding: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s ease;
  line-height: 1;
}

.close-slider:hover {
  background: #e6c77c;
  border-color: #d4a168;
  color: #4a3c1a;
  transform: scale(1.1);
}

.close-slider:active {
  transform: scale(0.95);
}

/* Slider Content */
.slider-content {
  padding: 2rem;
}

.product-details-image {
  margin-bottom: 2rem;
  text-align: center;
}

.product-details-image img {
  width: 100%;
  max-width: 300px;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-details-info h3 {
  font-size: 1.3em;
  color: #4a3c1a;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.product-details-info h4 {
  font-size: 1rem;
  color: #9d9a9a;
  margin-bottom: 1rem;
  font-weight: 400;
}

.product-price-section {
  margin-bottom: 2rem;
}

.modal-price {
  font-size: 1.8em;
  color: #388e3c;
  font-weight: bold;
  font-family: serif;
}

.product-description,
.product-features {
  margin-bottom: 2rem;
}

.product-description h5,
.product-features h5 {
  font-size: 1.1em;
  color: #4a3c1a;
  margin-bottom: 0.8rem;
  font-weight: 600;
  border-bottom: 1px solid #e6c77c;
  padding-bottom: 0.5rem;
}

.product-description p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95em;
}

.product-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-features li {
  color: #666;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  padding-left: 1.5rem;
}

.product-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #388e3c;
  font-weight: bold;
}

.product-features li:last-child {
  border-bottom: none;
}

/* Quantity and Total Section */
.quantity-total-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: linear-gradient(135deg, #f8f6f0 0%, #fff 100%);
  border: 1px solid #e6c77c;
  border-radius: 12px;
  gap: 1rem;
}

.quantity-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quantity-section label {
  font-weight: 600;
  color: #4a3c1a;
  font-size: 0.9em;
  min-width: 30px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  border: 1px solid #d4a168;
  border-radius: 6px;
  overflow: hidden;
  background: white;
}

.qty-btn {
  background: #f9f6f1;
  border: none;
  padding: 0.4rem 0.7rem;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  color: #4a3c1a;
  transition: all 0.3s ease;
  min-width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: #e6c77c;
  transform: scale(1.05);
}

#quantity {
  border: none;
  padding: 0.4rem;
  width: 45px;
  text-align: center;
  font-size: 0.9em;
  background: white;
  color: #4a3c1a;
  font-weight: 600;
}

.total-price-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
}

.total-label {
  font-size: 0.8em;
  color: #666;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.total-price {
  font-size: 1.1em;
  font-weight: 700;
  color: #4a3c1a;
  background: linear-gradient(135deg, #d4a168, #e6c77c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#quantity:focus {
  outline: none;
}

/* Modal Actions */
.modal-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.add-to-cart-modal,
.buy-now-modal {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.add-to-cart-modal {
  background: #f9f6f1;
  color: #4a3c1a;
  border: 2px solid #d4a168;
}

.add-to-cart-modal:hover {
  background: #d4a168;
  color: white;
}

.buy-now-modal {
  background: #388e3c;
  color: white;
}

.buy-now-modal:hover {
  background: #2e7d32;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Platform Links Section */
.platform-links {
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #f8f6f0 0%, #fff 100%);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid #e6c77c;
}

.platform-links h5 {
  font-size: 1.2em;
  color: #4a3c1a;
  margin-bottom: 1rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  padding-bottom: 0.8rem;
}

.platform-links h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #d4a168, #e6c77c);
  border-radius: 2px;
  animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

.platform-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1rem;
  justify-items: center;
}

.platform-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 1rem;
  border: 2px solid transparent;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 100px;
  min-height: 100px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.platform-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s;
}

.platform-btn:hover::before {
  left: 100%;
}

.platform-btn:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.platform-btn img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  margin-bottom: 0.6rem;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.platform-btn:hover img {
  transform: scale(1.1);
}

.platform-btn i {
  font-size: 36px;
  margin-bottom: 0.6rem;
  transition: transform 0.3s ease;
}

.platform-btn:hover i {
  transform: scale(1.1);
}

.platform-btn span {
  font-size: 0.9em;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  transition: color 0.3s ease;
}

/* Platform-specific styling */
.platform-btn.whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  border: 2px solid #25d366;
}

.platform-btn.whatsapp span {
  color: white;
}

.platform-btn.whatsapp:hover {
  background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
  border-color: #128c7e;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.platform-btn.zepto {
  border: 2px solid #e6c77c;
}

.platform-btn.zepto span {
  color: #4a3c1a;
}

.platform-btn.zepto:hover {
  border-color: #e91e63;
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.1) 0%, rgba(233, 30, 99, 0.05) 100%);
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.2);
}

.platform-btn.zepto:hover span {
  color: #e91e63;
}

.platform-btn.swiggy {
  border: 2px solid #e6c77c;
}

.platform-btn.swiggy span {
  color: #4a3c1a;
}

.platform-btn.swiggy:hover {
  border-color: #ff6600;
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 102, 0, 0.05) 100%);
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.2);
}

.platform-btn.swiggy:hover span {
  color: #ff6600;
}

.platform-btn.blinkit {
  border: 2px solid #e6c77c;
}

.platform-btn.blinkit span {
  color: #4a3c1a;
}

.platform-btn.blinkit:hover {
  border-color: #54b226;
  background: linear-gradient(135deg, rgba(84, 178, 38, 0.1) 0%, rgba(84, 178, 38, 0.05) 100%);
  box-shadow: 0 8px 25px rgba(84, 178, 38, 0.2);
}

.platform-btn.blinkit:hover span {
  color: #54b226;
}

/* ========================================
   MOBILE RESPONSIVE MODAL
   ======================================== */

@media (max-width: 768px) {

  /* Mobile Modal (centered) */
  .product-slider {
    position: fixed;
    top: 50%;
    left: 50%;
    right: auto;
    width: 95%;
    max-width: 400px;
    height: 90%;
    max-height: 600px;
    transform: translate(-50%, -50%) scale(0.8);
    border-radius: 15px;
    opacity: 0;
    transition: all 0.3s ease;
  }

  .product-slider.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  .slider-header {
    padding: 1rem 1.5rem;
    border-radius: 15px 15px 0 0;
  }

  .slider-header h2 {
    font-size: 1.3em;
  }

  .close-slider {
    width: 35px;
    height: 35px;
    font-size: 1.5rem;
  }

  .slider-content {
    padding: 1.5rem;
  }

  .product-details-image {
    margin-bottom: 1.5rem;
  }

  .product-details-image img {
    max-width: 250px;
    height: 200px;
  }

  .product-details-info h3 {
    font-size: 1.2em;
  }

  .product-details-info h4 {
    font-size: 0.9em;
  }

  .modal-price {
    font-size: 1.5em;
  }

  .product-description,
  .product-features {
    margin-bottom: 1.5rem;
  }

  .product-description h5,
  .product-features h5 {
    font-size: 1em;
  }

  .product-description p {
    font-size: 0.9em;
  }

  .product-features li {
    font-size: 0.9em;
    padding: 0.4rem 0;
  }

  /* Quantity and Total Mobile */
  .quantity-total-section {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
    padding: 0.8rem;
    margin-bottom: 1.2rem;
  }

  .quantity-section {
    justify-content: center;
  }

  .quantity-section label {
    font-size: 0.85em;
  }

  .qty-btn {
    padding: 0.3rem 0.6rem;
    font-size: 0.9em;
    min-width: 28px;
    height: 28px;
  }

  #quantity {
    width: 40px;
    padding: 0.3rem;
    font-size: 0.85em;
  }

  .total-price-section {
    align-items: center;
    flex-direction: row;
    justify-content: center;
    gap: 0.5rem;
  }

  .total-label {
    font-size: 0.75em;
  }

  .total-price {
    font-size: 1em;
  }

  .modal-actions {
    flex-direction: column;
    gap: 0.8rem;
  }

  .add-to-cart-modal,
  .buy-now-modal {
    padding: 0.8rem;
    font-size: 0.9rem;
  }

  /* Platform Links Mobile */
  .platform-links {
    margin-bottom: 1.5rem;
    padding: 1.2rem;
  }

  .platform-buttons {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .platform-btn {
    min-width: 80px;
    min-height: 80px;
    padding: 1rem 0.8rem;
  }

  .platform-btn img {
    width: 30px;
    height: 30px;
  }

  .platform-btn i {
    font-size: 30px;
  }

  .platform-btn span {
    font-size: 0.8em;
  }
}

@media (max-width: 480px) {

  .product-slider {
    width: 98%;
    height: 95%;
    max-height: none;
  }

  .slider-header {
    padding: 0.8rem 1rem;
  }

  .slider-header h2 {
    font-size: 1.1em;
  }

  .slider-content {
    padding: 1rem;
  }

  .product-details-image img {
    max-width: 200px;
    height: 160px;
  }

  .product-details-info h3 {
    font-size: 1.1em;
  }

  .modal-price {
    font-size: 1.3em;
  }

  .product-description p,
  .product-features li {
    font-size: 0.85em;
  }

  /* Quantity and Total Small Mobile */
  .quantity-total-section {
    padding: 0.6rem;
    margin-bottom: 1rem;
  }

  .quantity-section label {
    font-size: 0.8em;
  }

  .qty-btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.85em;
    min-width: 26px;
    height: 26px;
  }

  #quantity {
    width: 35px;
    font-size: 0.8em;
  }

  .total-label {
    font-size: 0.7em;
  }

  .total-price {
    font-size: 0.95em;
  }

  /* Platform Links Small Mobile */
  .platform-links {
    padding: 1rem;
  }

  .platform-buttons {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }

  .platform-btn {
    min-width: 70px;
    min-height: 70px;
    padding: 0.8rem 0.6rem;
  }

  .platform-btn img {
    width: 26px;
    height: 26px;
  }

  .platform-btn i {
    font-size: 26px;
  }

  .platform-btn span {
    font-size: 0.75em;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {

  .product-overlay,
  .product-slider {
    transition: none;
  }

  .product-slider.active {
    transition: none;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {

  .product-slider {
    border: 3px solid #000;
  }

  .slider-header {
    border-bottom: 3px solid #000;
  }

  .close-slider:hover {
    background: #000;
    color: #fff;
  }
}

/* ====
====================================
   DESKTOP HEADER OPTIMIZATION
   ======================================== */

/* Ensure proper desktop layout */
@media (min-width: 769px) {

  .header-bar {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
  }

  .menu {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
  }
}

/* Large desktop optimization */
@media (min-width: 1200px) {

  .header-bar {
    padding: 16px 48px;
    max-width: 1400px;
    margin: 0 auto;
  }

  nav {
    gap: 40px;
  }

  nav a {
    font-size: 24px;
  }
}

/* ========================================
   TAB MOBILE RESPONSIVENESS
   ======================================== */

/* Small Mobile Devices - Tabs */
@media (max-width: 480px) {

  .tabs-column {
    flex-direction: column;
    gap: 0.2rem;
    min-width: 100px;
    max-width: 120px;
  }

  .tablinks {
    width: 100% !important;
    min-height: 75px !important;
    padding: 0.5em 0.3em;
    border-radius: 6px;
    flex-direction: column;
    gap: 0.3em;
  }

  .hero-image-align {
    margin-bottom: 0.3em;
  }

  .hero-image-align img {
    width: 32px;
    height: 32px;
  }

  .hero-text-tab span {
    font-size: 9px;
    line-height: 1;
    font-weight: 500;
  }
}

/* Extra Small Mobile Devices - Tabs */
@media (max-width: 360px) {

  .tabs-column {
    gap: 0.2rem;
    min-width: 85px;
    max-width: 100px;
  }

  .tablinks {
    width: 100% !important;
    min-height: 65px !important;
    padding: 0.4em 0.2em;
    gap: 0.2em;
  }

  .hero-image-align img {
    width: 28px;
    height: 28px;
  }

  .hero-text-tab span {
    font-size: 8px;
    line-height: 0.9;
  }
}

/* Tablet Portrait - Tabs (Vertical Layout) */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: portrait) {

  .tabs-column {
    flex-direction: column;
    gap: 0.6rem;
  }

  .tablinks {
    width: 100% !important;
    min-height: 90px !important;
    padding: 0.9em 1.2em;
    flex-direction: row;
    gap: 1.2em;
  }

  .hero-image-align img {
    width: 55px;
    height: 55px;
  }

  .hero-text-tab span {
    font-size: 15px;
  }
}

/* Tablet Landscape - Tabs (Keep Desktop Style) */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {

  .tablinks {
    width: 140px;
    min-height: 110px;
    padding: 0.9em 0.7em;
    flex-direction: column;
    gap: 0.5em;
  }

  .hero-image-align {
    margin-bottom: 0.5em;
  }

  .hero-image-align img {
    width: 55px;
    height: 55px;
  }

  .hero-text-tab {
    text-align: center;
  }

  .hero-text-tab span {
    font-size: 13px;
  }
}

/* Large Desktop - Tabs */
@media (min-width: 1200px) {

  .tablinks {
    width: 180px;
    min-height: 140px;
    padding: 0;
  }

  .hero-image-align img {
    width: 70px;
    height: 70px;
  }

  .hero-text-tab span {
    font-size: 16px;
  }
}

/* =
=======================================
   MOBILE-FIRST TAB LAYOUT
   ======================================== */

/* Mobile Devices - Desktop-like Layout with Vertical Tabs */
@media (max-width: 768px) {

  .tabs-main-container {
    flex-direction: row;
    gap: 0;
    align-items: flex-start;
  }

  .tabs-column {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    min-width: 100px;
    max-width: 100px;
    flex-shrink: 0;
  }

  .tablinks {
    width: 100%;
    min-height: 90px;
    padding: 5px 0;
    flex-direction: column;
    gap: 0.4em;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 8px;
  }

  .hero-image-align {
    margin-bottom: 0.4em;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-text-tab {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .hero-text-tab span {
    font-size: 11px;
    line-height: 1.1;
    font-weight: 500;
  }

  .tab-contents {
    flex: 1;
    overflow-y: auto;
    padding-left: 0;
  }

  .tabcontent {
    padding-left: 0;
  }
}

/* Mobile Hover States */
@media (max-width: 768px) {
  .vertical-tabs-products {
    margin: 0% 0px;
  }

  .tablinks:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 4px 12px rgba(212, 161, 104, 0.3); */
  }

  .tablinks:hover .hero-image-align img {
    transform: scale(1.1);
  }
}

/* Touch Device Optimization */
@media (hover: none) and (pointer: coarse) {

  .tablinks {
    min-height: 60px !important;
    padding: 1em !important;
  }

  .hero-image-align img {
    width: 45px !important;
    height: 45px !important;
  }

  .hero-text-tab span {
    font-size: 14px !important;
  }
}

/* 
========================================
   TAB INITIALIZATION FIX
   ======================================== */

/* Ensure only active tabs show active styling */
.tablinks:not(.active) {
  background: #f9f6f1;
  border-color: transparent;
  box-shadow: none;
}

.tablinks:not(.active) .hero-text-tab span {
  color: #646161;
  font-weight: 500;
}

.tablinks:not(.active) .hero-image-align img {
  border: none;
  box-shadow: none;
}

/* Ensure tab content is hidden by default */
.tabcontent {
  display: none !important;
}

.tabcontent[style*="display: block"] {
  display: block !important;
}

/* Tab initialization styles */
.tabs-main-container {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tabs-main-container.initialized {
  opacity: 1;
}

/* =
=======================================
   MOBILE PRICE SECTION OPTIMIZATION
   ======================================== */

/* Ensure prices stay side by side on mobile */
@media (max-width: 768px) {

  .price-section {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.5em !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    margin-bottom: 0.5em;
  }

  .original-price {
    font-size: 0.8em;
    color: #999;
    text-decoration: line-through;
    white-space: nowrap;
  }

  .sale-price {
    font-size: 14px;
    color: #388e3c;
    font-weight: bold;
    white-space: nowrap;
  }

  .discount {
    font-size: 0.7em;
    padding: 0.2em 0.4em;
    border-radius: 3px;
    background: #ff4444;
    color: white;
    font-weight: bold;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {

  .price-section {
    gap: 0.4em !important;
  }

  .original-price {
    font-size: 0.75em;
  }

  .sale-price {
    font-size: 13px;
  }

  .discount {
    font-size: 0.65em;
    padding: 0.15em 0.3em;
  }
}

@media (max-width: 360px) {

  .price-section {
    gap: 0.3em !important;
  }

  .original-price {
    font-size: 0.7em;
  }

  .sale-price {
    font-size: 12px;
  }

  .discount {
    font-size: 0.6em;
  }
}

/* ========================================
   MOBILE PRODUCT CARD SIZE CONSISTENCY
   ======================================== */

/* Ensure product cards maintain consistent size */
@media (max-width: 768px) {

  .product-card {
    min-height: 280px;
    max-height: 320px;
    display: flex;
    flex-direction: column;
  }

  .product-image {
    flex-shrink: 0;
  }

  .product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.8em;
  }

  .product-info h3 {
    flex-shrink: 0;
    margin-bottom: 0.3em;
  }

  .product-info h4 {
    flex: 1;
    margin-bottom: 0.5em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .price-section {
    flex-shrink: 0;
    margin-bottom: 0.5em;
  }

  .add-to-cart {
    flex-shrink: 0;
    margin-top: auto;
  }
}

@media (max-width: 480px) {

  .product-card {
    min-height: 260px;
    max-height: 300px;
  }

  .product-info {
    padding: 0.6em;
  }

  .product-info h3 {
    font-size: 11px;
    height: 25px;
  }

  .product-info h4 {
    font-size: 12px;
  }
}

@media (max-width: 360px) {

  .product-card {
    min-height: 240px;
    max-height: 280px;
  }

  .product-info {
    padding: 0.5em;
  }

  .product-info h3 {
    font-size: 10px;
    height: 20px;
  }

  .product-info h4 {
    font-size: 11px;
  }
}

/* ========================================
   CONTACT HERO RESPONSIVE DESIGN
   ======================================== */

/* Tablet and Mobile */
@media (max-width: 768px) {

  #contact-hero img {
    max-height: 300px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {

  #contact-hero img {
    max-height: 170px;
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {

  #contact-hero img {
    max-height: 200px;
  }
}

/* ===
=====================================
   CERTIFICATION LOGOS RESPONSIVE
   ======================================== */

/* Tablet and Mobile */
@media (max-width: 768px) {

  .certification-logos {
    gap: 1.5rem;
    max-width: 100%;
    padding: 0 1rem;
  }

  .logo-item {
    min-width: 100px;
    min-height: 70px;
    padding: 0.8rem;
  }

  .logo-item img {
    max-width: 80px;
    max-height: 50px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {

  .certification-logos {
    gap: 1rem;
    flex-direction: row;
    justify-content: space-around;
  }

  .logo-item {
    min-width: 70px;
    min-height: 60px;
    padding: 0.6rem;
    flex: 1;
    max-width: 80px;
  }

  .logo-item img {
    max-width: 60px;
    max-height: 40px;
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {

  .certification-logos {
    gap: 0.8rem;
    padding: 0 0.5rem;
  }

  .logo-item {
    min-width: 60px;
    min-height: 50px;
    padding: 0.4rem;
    max-width: 70px;
  }

  .logo-item img {
    max-width: 50px;
    max-height: 35px;
  }
}

/* Very Small Mobile - Stack in 2x2 grid */
@media (max-width: 320px) {

  .certification-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    max-width: 200px;
  }

  .logo-item {
    min-width: auto;
    min-height: 45px;
    padding: 0.4rem;
    max-width: none;
  }

  .logo-item img {
    max-width: 45px;
    max-height: 30px;
  }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {

  .certification-logos {
    gap: 1.2rem;
  }

  .logo-item {
    min-width: 90px;
    min-height: 60px;
  }

  .logo-item img {
    max-width: 70px;
    max-height: 45px;
  }
}

/*
 ========================================
   SHOPPING CART STYLES
   ======================================== */

/* Cart Icon Badge */
.cart-icon-wrapper {
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  margin-left: 1rem;
}

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

.cart-icon-wrapper i {
  font-size: 1.5em;
  color: #4a3c1a;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, #e91e63, #ff6600);
  color: white;
  font-size: 0.7em;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 50%;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Cart Overlay */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Cart Sidebar */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: white;
  z-index: 9999;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.active {
  right: 0;
}

/* Cart Header */
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #d4a168, #e6c77c);
  color: white;
  border-bottom: 2px solid #c89858;
}

.cart-header h3 {
  margin: 0;
  font-size: 1.3em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.close-cart {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 1.8em;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s ease;
  padding: 0;
  line-height: 1;
}

.close-cart:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.close-cart:active {
  transform: scale(0.95);
}

/* Empty Cart Message */
.empty-cart-message {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  text-align: center;
  color: #999;
  flex: 1;
}

.empty-cart-message i {
  font-size: 4em;
  margin-bottom: 1rem;
  color: #ddd;
}

.empty-cart-message p {
  font-size: 1.2em;
  margin-bottom: 0.5rem;
  color: #666;
}

.empty-cart-message small {
  color: #999;
}

/* Cart Items Container */
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

/* Cart Item */
.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #e6c77c;
  border-radius: 12px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
  transition: all 0.3s ease;
}

.cart-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.cart-item-image {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
  min-width: 0;
}

.cart-item-details h4 {
  font-size: 0.95em;
  margin: 0 0 0.3rem 0;
  color: #4a3c1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-details p {
  font-size: 0.8em;
  color: #666;
  margin: 0 0 0.5rem 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-price {
  font-size: 0.9em;
  font-weight: 700;
  color: #d4a168;
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
}

.cart-quantity-controls {
  display: flex;
  align-items: center;
  border: 1px solid #d4a168;
  border-radius: 6px;
  overflow: hidden;
  background: white;
}

.cart-qty-btn {
  background: #f9f6f1;
  border: none;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  font-size: 0.9em;
  font-weight: bold;
  color: #4a3c1a;
  transition: all 0.3s ease;
  min-width: 28px;
  height: 28px;
}

.cart-qty-btn:hover {
  background: #e6c77c;
}

.cart-qty {
  padding: 0 0.6rem;
  font-size: 0.85em;
  font-weight: 600;
  color: #4a3c1a;
  min-width: 30px;
  text-align: center;
}

.remove-cart-item {
  background: #ff4444;
  border: none;
  color: white;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9em;
}

.remove-cart-item:hover {
  background: #cc0000;
  transform: scale(1.05);
}

/* Cart Footer */
.cart-footer {
  padding: 1.5rem;
  border-top: 2px solid #e6c77c;
  background: linear-gradient(135deg, #f8f6f0 0%, #fff 100%);
}

.cart-total-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding: 1rem;
  background: white;
  border: 2px solid #d4a168;
  border-radius: 12px;
}

.cart-total-label {
  font-size: 1.1em;
  font-weight: 600;
  color: #4a3c1a;
}

.cart-total-amount {
  font-size: 1.4em;
  font-weight: 700;
  background: linear-gradient(135deg, #d4a168, #e6c77c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.checkout-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #4a3c1a, #6b5a3a);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.checkout-btn:hover {
  background: linear-gradient(135deg, #6b5a3a, #8a7a5a);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 60, 26, 0.3);
}

.clear-cart-btn {
  width: 100%;
  padding: 0.8rem;
  background: white;
  color: #ff4444;
  border: 2px solid #ff4444;
  border-radius: 12px;
  font-size: 0.9em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.clear-cart-btn:hover {
  background: #ff4444;
  color: white;
  transform: translateY(-2px);
}

/* Cart Notification */
.cart-notification {
  position: fixed;
  top: 100px;
  right: -300px;
  background: linear-gradient(135deg, #4caf50, #45a049);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: right 0.3s ease;
  font-weight: 600;
}

.cart-notification.show {
  right: 20px;
}

.cart-notification i {
  font-size: 1.5em;
}

/* Modal Action Buttons */
.modal-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.buy-now-modal-btn,
.whatsapp-order-modal-btn,
.add-to-cart-modal-btn {
  width: 100%;
  padding: 1rem;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.buy-now-modal-btn {
  background: linear-gradient(135deg, #d4a168, #e6c77c);
  font-size: 1.1em;
  padding: 1.2rem;
}

.buy-now-modal-btn:hover {
  background: linear-gradient(135deg, #c89858, #d4a168);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 161, 104, 0.3);
}

.whatsapp-order-modal-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.whatsapp-order-modal-btn:hover {
  background: linear-gradient(135deg, #128c7e, #075e54);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.add-to-cart-modal-btn {
  background: linear-gradient(135deg, #4caf50, #45a049);
}

.add-to-cart-modal-btn:hover {
  background: linear-gradient(135deg, #45a049, #3d8b40);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cart-sidebar {
    width: 100%;
    right: -100%;
  }

  .cart-sidebar.active {
    right: 0;
  }
}

@media (max-width: 480px) {
  .cart-header {
    padding: 1rem;
  }

  .cart-header h3 {
    font-size: 1.1em;
  }

  .cart-items {
    padding: 0.8rem;
  }

  .cart-item {
    padding: 0.8rem;
  }

  .cart-item-image {
    width: 60px;
    height: 60px;
  }

  .cart-footer {
    padding: 1rem;
  }

  .cart-notification {
    right: -250px;
    padding: 0.8rem 1rem;
    font-size: 0.9em;
  }

  .cart-notification.show {
    right: 10px;
  }
}


/* ========================================
   CHECKOUT PAGE STYLES
   ======================================== */

#checkout-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8f6f0 0%, #fff 100%);
  min-height: 80vh;
}

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

.checkout-container>h2 {
  text-align: center;
  color: #4a3c1a;
  font-size: 2.5em;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.checkout-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
}

/* Order Summary */
.order-summary {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  border: 2px solid #e6c77c;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.order-summary h3 {
  color: #4a3c1a;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e6c77c;
}

.checkout-items {
  margin-bottom: 1.5rem;
}

.checkout-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #e6c77c;
  border-radius: 12px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
}

.checkout-item-image {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.checkout-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout-item-details {
  flex: 1;
}

.checkout-item-details h4 {
  font-size: 0.95em;
  margin: 0 0 0.3rem 0;
  color: #4a3c1a;
}

.checkout-item-details p {
  font-size: 0.8em;
  color: #666;
  margin: 0 0 0.5rem 0;
}

.checkout-item-quantity {
  font-size: 0.85em;
  color: #999;
}

.checkout-item-price {
  font-size: 1em;
  font-weight: 700;
  color: #d4a168;
  align-self: center;
}

.order-total {
  border-top: 2px solid #e6c77c;
  padding-top: 1rem;
}

.total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  font-size: 0.95em;
}

.total-row.grand-total {
  font-size: 1.3em;
  font-weight: 700;
  color: #4a3c1a;
  padding-top: 0.8rem;
  border-top: 2px solid #d4a168;
  margin-top: 0.8rem;
}

.total-row.grand-total span:last-child {
  background: linear-gradient(135deg, #d4a168, #e6c77c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Checkout Form */
.checkout-form-container {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  border: 2px solid #e6c77c;
}

.checkout-form-container h3 {
  color: #4a3c1a;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e6c77c;
}

#checkout-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

#checkout-form .form-group {
  margin-bottom: 1rem;
}

#checkout-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: #4a3c1a;
  font-weight: 600;
  font-size: 0.9em;
}

#checkout-form input,
#checkout-form textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #e6c77c;
  border-radius: 8px;
  font-family: 'Labrada', serif;
  font-size: 0.95em;
  transition: all 0.3s ease;
}

#checkout-form input:focus,
#checkout-form textarea:focus {
  outline: none;
  border-color: #d4a168;
  box-shadow: 0 0 0 3px rgba(212, 161, 104, 0.1);
}

#checkout-form textarea {
  resize: vertical;
}

.checkout-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.back-to-cart-btn,
.place-order-btn {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: 12px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.back-to-cart-btn {
  background: white;
  color: #4a3c1a;
  border: 2px solid #e6c77c;
}

.back-to-cart-btn:hover {
  background: #f8f6f0;
  transform: translateY(-2px);
}

.place-order-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
}

.place-order-btn:hover {
  background: linear-gradient(135deg, #128c7e, #075e54);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* Empty Checkout */
.empty-checkout {
  text-align: center;
  padding: 3rem 2rem;
  color: #999;
}

.empty-checkout i {
  font-size: 4em;
  margin-bottom: 1rem;
  color: #ddd;
}

.empty-checkout p {
  font-size: 1.2em;
  margin-bottom: 1.5rem;
  color: #666;
}

.continue-shopping-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, #d4a168, #e6c77c);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.continue-shopping-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 161, 104, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  #checkout-section {
    padding: 2rem 1rem;
  }

  .checkout-container>h2 {
    font-size: 1.8em;
  }

  .checkout-content {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
    order: 2;
  }

  .checkout-form-container {
    order: 1;
  }

  #checkout-form .form-row {
    grid-template-columns: 1fr;
  }

  .checkout-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .checkout-container>h2 {
    font-size: 1.5em;
  }

  .order-summary,
  .checkout-form-container {
    padding: 1.5rem;
  }

  .checkout-item {
    padding: 0.8rem;
  }

  .checkout-item-image {
    width: 60px;
    height: 60px;
  }
}


/* Mobile Responsive for Product Card Actions */
@media (max-width: 768px) {
  .product-card-actions {
    gap: 0.5rem;
  }

  .add-to-cart-btn,
  .buy-now-btn {
    font-size: 0.8em;
    padding: 0.65rem 0.5rem;
    min-height: 38px;
  }
}

@media (max-width: 480px) {
  .product-card-actions {
    gap: 0.5rem;
  }

  .add-to-cart-btn,
  .buy-now-btn {
    padding: 0.7rem 0.4rem;
    min-height: 42px;
    gap: 0;
  }

  /* Show only icons on mobile */
  .add-to-cart-btn .btn-text,
  .buy-now-btn .btn-text {
    display: none;
  }

  .add-to-cart-btn i,
  .buy-now-btn i {
    font-size: 1.3rem;
    margin: 0;
  }
}


/* Modal Action Buttons Mobile Responsive */
@media (max-width: 768px) {
  .modal-action-buttons {
    gap: 0.8rem;
    margin-top: 1.2rem;
  }

  .buy-now-modal-btn,
  .whatsapp-order-modal-btn,
  .add-to-cart-modal-btn {
    padding: 0.9rem;
    font-size: 0.95em;
  }

  .buy-now-modal-btn {
    font-size: 1em;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .modal-action-buttons {
    gap: 0.6rem;
    margin-top: 1rem;
  }

  .buy-now-modal-btn,
  .whatsapp-order-modal-btn,
  .add-to-cart-modal-btn {
    padding: 0.8rem;
    font-size: 0.9em;
  }

  .buy-now-modal-btn {
    font-size: 0.95em;
    padding: 0.9rem;
  }
}

/*
 Mobile Responsive - Cart Icon and Header */
@media (max-width: 768px) {
  .cart-icon-wrapper {
    padding: 0.4rem;
    margin-left: 0.5rem;
  }

  .cart-icon-wrapper i {
    font-size: 1.3em;
  }

  .cart-count {
    top: -6px;
    right: -6px;
    font-size: 0.65em;
    min-width: 16px;
    height: 16px;
    padding: 2px 4px;
  }

  .menu {
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .cart-icon-wrapper {
    padding: 0.3rem;
    margin-left: 0.3rem;
  }

  .cart-icon-wrapper i {
    font-size: 1.2em;
  }

  .cart-count {
    top: -5px;
    right: -5px;
    font-size: 0.6em;
    min-width: 14px;
    height: 14px;
    padding: 1px 3px;
  }

  .close-cart,
  .close-slider {
    width: 32px;
    height: 32px;
    font-size: 1.5em;
  }
}