/* ==============================
   GLOBAL STYLES
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  color: #222;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ==============================
   HEADER
================================ */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  background: #1b5e20;
  color: #fff;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: padding 0.3s ease;
}

.header.scrolled {
  padding: 10px 40px;
}

/* Logo Styling */
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo-link:hover {
  transform: scale(1.05);
}

.logo img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  background: #ffffff;
  padding: 2px;
  transition: transform 0.3s ease;
  display: block;
}

.logo-link:hover img {
  transform: rotate(360deg);
}

.logo span {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Navigation */
.nav-menu {
  display: flex;
  gap: 10px;
}

.nav-link {
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #fdd835;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover {
  background: rgba(253, 216, 53, 0.1);
}

.nav-link:hover::after {
  width: 60%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Language Switcher */
.lang-switcher {
  margin-left: 15px;
  display: flex;
  align-items: center;
}

.lang-switcher select {
  padding: 8px 12px;
  border-radius: 6px;
  border: 2px solid #fdd835;
  background: #fff;
  color: #1b5e20;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .lang-switcher select {
    margin-left: 15px;
  }
}

.lang-switcher select:hover {
  background: #fdd835;
  transform: scale(1.05);
}

.lang-switcher select:focus {
  outline: none;
  box-shadow: 0 0 10px rgba(253, 216, 53, 0.5);
}

/* Hide Google Translate Widget */
#google_translate_element {
  display: none !important;
}

.goog-te-banner-frame {
  display: none !important;
}

body {
  top: 0 !important;
}

.skiptranslate {
  display: none !important;
}

/* ==============================
   HERO SECTION
================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 1s ease-in-out;
}

.hero-slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  animation: fadeInUp 1s ease;
}

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

.hero h1 {
  color: #fff;
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.3;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.mobile-break {
  display: none;
}

#hero-title .brand-name {
  color: #fdd835;
  display: inline-block;
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%,
  100% {
    text-shadow: 0 0 20px rgba(253, 216, 53, 0.5);
  }
  50% {
    text-shadow: 0 0 30px rgba(253, 216, 53, 0.8);
  }
}

.hero-subtitle {
  color: #fdd835;
  font-size: clamp(1rem, 3vw, 1.3rem);
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 8px;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.primary {
  background: #fdd835;
  color: #000;
}

.primary:hover {
  background: #fbc02d;
}

.secondary {
  background: #fff;
  color: #1b5e20;
}

.secondary:hover {
  background: #f5f5f5;
}

.outline {
  border: 2px solid #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.outline:hover {
  background: #fff;
  color: #1b5e20;
}

/* ==============================
   INTRO SECTION
================================ */
.intro {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f1f8e9 0%, #ffffff 100%);
  text-align: center;
}

.intro p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ==============================
   HIGHLIGHTS SECTION
================================ */
.highlights {
  padding: 80px 20px;
  background: #ffffff;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.highlight-card {
  background: linear-gradient(135deg, #f1f8e9 0%, #ffffff 100%);
  padding: 40px 25px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.highlight-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(27, 94, 32, 0.15);
  border-color: #1b5e20;
}

.icon-wrapper {
  margin-bottom: 20px;
}

.highlight-card img {
  width: 70px;
  transition: transform 0.4s ease;
}

.highlight-card:hover img {
  transform: scale(1.2) rotate(5deg);
}

.highlight-card h3 {
  color: #1b5e20;
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.highlight-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* ==============================
   ABOUT SECTION
================================ */
.about {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
}

.section-title {
  margin-bottom: 50px;
  font-size: clamp(2rem, 5vw, 2.5rem);
  color: #1b5e20;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #1b5e20, #fdd835);
  border-radius: 2px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-shop img {
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.about-shop img:hover {
  transform: scale(1.05);
}

.about-content p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
}

.about-owner {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  padding: 20px;
  background: #f1f8e9;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.about-owner:hover {
  transform: translateX(10px);
}

.about-owner img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border: 3px solid #1b5e20;
}

.about-owner h4 {
  margin: 0;
  color: #1b5e20;
  font-size: 1.3rem;
}

.about-owner span {
  font-size: 0.95rem;
  color: #666;
}

/* ==============================
   PRODUCTS SECTION
================================ */
.products {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

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

.product-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(27, 94, 32, 0.2);
  border-color: #1b5e20;
}

.product-image {
  overflow: hidden;
  height: 220px;
}

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

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

.product-content {
  padding: 25px;
}

.product-content h3 {
  color: #1b5e20;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

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

/* ==============================
   GALLERY SECTION
================================ */
.gallery {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
}

.gallery-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  aspect-ratio: 4/3;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(27, 94, 32, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(27, 94, 32, 0.9), transparent);
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  color: #fff;
  font-size: 1.2rem;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* ==============================
   CONTACT SECTION
================================ */
.contact {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
  color: #fff;
}

.contact .section-title {
  color: #fff;
}

.contact .section-title::after {
  background: linear-gradient(90deg, #fdd835, #fff);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info h3 {
  color: #fdd835;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.contact-info p {
  margin-bottom: 15px;
  line-height: 1.8;
  font-size: 1.05rem;
}

.contact-phone {
  font-size: 1.3rem;
  margin-top: 20px;
}

.contact-phone a {
  color: #fdd835;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-phone a:hover {
  color: #fff;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 35px;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #fdd835;
  background: #fff;
  transform: translateY(-2px);
}

.submit-btn {
  width: 100%;
  background: #fdd835;
  color: #1b5e20;
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #fbc02d;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(253, 216, 53, 0.3);
}

/* ==============================
   STORE BANNER IMAGE
================================ */
.store-banner {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  overflow: hidden;
}

.store-banner:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: #fdd835;
}

.store-banner img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  display: block;
  transition: transform 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.store-banner:hover img {
  transform: scale(1.03);
}

/* ==============================
   WHATSAPP BUTTON
================================ */
.whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
  z-index: 999;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
  }
}

.whatsapp svg {
  width: 30px;
  height: 30px;
}

.whatsapp:hover {
  background: #20ba5a;
  transform: scale(1.1) rotate(10deg);
}

/* ==============================
   FOOTER
================================ */
.footer {
  background: #1b5e20;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
}

.footer p {
  margin: 10px 0;
}

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

.footer a:hover {
  color: #fff;
}

/* ==============================
   REVEAL ANIMATIONS
================================ */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================
   PRIVACY POLICY & TERMS SECTIONS - ENHANCED
================================ */
#privacy-policy,
#terms-conditions {
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative floating background elements */
#privacy-policy::before,
#terms-conditions::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(27, 94, 32, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

#privacy-policy::after,
#terms-conditions::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(253, 216, 53, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, 20px) scale(1.1);
  }
}

#privacy-policy .container,
#terms-conditions .container {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

/* Enhanced content box with glassmorphism */
#privacy-policy .container,
#terms-conditions .container {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 50px;
  border-radius: 25px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(27, 94, 32, 0.1);
  transition: all 0.4s ease;
}

#privacy-policy .container:hover,
#terms-conditions .container:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

/* Paragraph styling with stagger animation */
#privacy-policy p,
#terms-conditions p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInLeft 0.6s ease forwards;
}

/* Stagger animation delays for each paragraph */
#privacy-policy p:nth-child(2) {
  animation-delay: 0.1s;
}
#privacy-policy p:nth-child(3) {
  animation-delay: 0.2s;
}
#privacy-policy p:nth-child(4) {
  animation-delay: 0.3s;
}
#privacy-policy p:nth-child(5) {
  animation-delay: 0.4s;
}
#privacy-policy p:nth-child(6) {
  animation-delay: 0.5s;
}

#terms-conditions p:nth-child(2) {
  animation-delay: 0.1s;
}
#terms-conditions p:nth-child(3) {
  animation-delay: 0.2s;
}
#terms-conditions p:nth-child(4) {
  animation-delay: 0.3s;
}
#terms-conditions p:nth-child(5) {
  animation-delay: 0.4s;
}
#terms-conditions p:nth-child(6) {
  animation-delay: 0.5s;
}

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

/* Interactive hover effect for paragraphs */
#privacy-policy p:hover,
#terms-conditions p:hover {
  border-left-color: #1b5e20;
  padding-left: 25px;
  background: rgba(241, 248, 233, 0.3);
}

/* Section spacing from previous content */
#privacy-policy {
  padding-top: 100px;
  padding-bottom: 60px;
}

#terms-conditions {
  padding-top: 60px;
  padding-bottom: 100px;
}

/* Enhanced section title with animated background */
#privacy-policy .section-title,
#terms-conditions .section-title {
  position: relative;
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
  color: #fff;
  border-radius: 15px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(27, 94, 32, 0.2);
  transform: translateY(0);
  transition: all 0.4s ease;
  animation: titleBounce 1s ease;
}

@keyframes titleBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

#privacy-policy .section-title:hover,
#terms-conditions .section-title:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(27, 94, 32, 0.3);
}

#privacy-policy .section-title::after,
#terms-conditions .section-title::after {
  display: none;
}

/* Add emoji icons before section titles */
#privacy-policy .section-title::before {
  content: "🔒 ";
  margin-right: 10px;
}

#terms-conditions .section-title::before {
  content: "📋 ";
  margin-right: 10px;
}

/* Enhanced strong tag styling */
#privacy-policy strong,
#terms-conditions strong {
  color: #1b5e20;
  font-weight: 600;
  padding: 2px 6px;
  background: rgba(253, 216, 53, 0.2);
  border-radius: 4px;
  transition: all 0.3s ease;
}

#privacy-policy strong:hover,
#terms-conditions strong:hover {
  background: rgba(253, 216, 53, 0.4);
  transform: scale(1.05);
  display: inline-block;
}

/* Smooth anchor scroll offset (fixed header fix) */
#privacy-policy,
#terms-conditions {
  scroll-margin-top: 100px;
}

/* Add decorative animated line at top */
#privacy-policy .container::before,
#terms-conditions .container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    #1b5e20,
    #fdd835,
    #1b5e20,
    transparent
  );
  border-radius: 2px;
  animation: expandLine 1.5s ease forwards;
}

@keyframes expandLine {
  to {
    width: 80%;
  }
}

/* Tablet optimization */
@media (max-width: 992px) {
  #privacy-policy .container,
  #terms-conditions .container {
    padding: 40px 30px;
  }

  #privacy-policy::before,
  #terms-conditions::before {
    width: 250px;
    height: 250px;
  }

  #privacy-policy::after,
  #terms-conditions::after {
    width: 200px;
    height: 200px;
  }
}

/* ==============================
   RESPONSIVE - TABLET
================================ */
@media (max-width: 992px) {
  .header {
    padding: 15px 25px;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-shop {
    text-align: center;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* ==============================
   RESPONSIVE - MOBILE
================================ */
@media (max-width: 768px) {
  .header {
    padding: 12px 20px;
    flex-wrap: wrap;
  }

  .logo span {
    font-size: 1rem;
  }

  .logo img {
    width: 40px;
    height: 40px;
  }

  .mobile-menu-toggle {
    display: flex;
    order: 3;
  }

  /* Mobile Language Switcher - Properly positioned */
  .lang-switcher {
    order: 2;
    margin-left: auto;
    margin-right: 15px;
  }

  .lang-switcher select {
    padding: 6px 10px;
    font-size: 0.85rem;
    border: 1px solid #fdd835;
  }

  .nav-menu {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 100%;
    max-width: 300px;
    background: #1b5e20;
    flex-direction: column;
    padding: 30px 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    transition: right 0.4s ease;
    height: 100vh;
    order: 4;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-link::after {
    display: none;
  }

  .hero {
    min-height: 500px;
  }

  .mobile-break {
    display: block;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    max-width: 300px;
    margin: 0 auto;
  }

  .btn {
    text-align: center;
  }

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

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-item {
    aspect-ratio: 16/9;
  }

  .about-owner {
    flex-direction: column;
    text-align: center;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  /* Store Banner Mobile Styling */
  .store-banner {
    padding: 15px;
    margin-top: 30px;
  }

  .store-banner img {
    border-radius: 12px;
  }

  .whatsapp {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp svg {
    width: 25px;
    height: 25px;
  }

  /* Mobile Privacy/Terms sections */
  #privacy-policy p,
  #terms-conditions p {
    font-size: 1rem;
    padding-left: 15px;
  }

  #privacy-policy {
    padding-top: 80px;
    padding-bottom: 50px;
  }

  #terms-conditions {
    padding-top: 50px;
    padding-bottom: 80px;
  }

  #privacy-policy .container,
  #terms-conditions .container {
    padding: 30px 20px;
    border-radius: 20px;
  }

  #privacy-policy .section-title,
  #terms-conditions .section-title {
    font-size: 1.5rem;
    padding: 12px 20px;
    width: 100%;
    text-align: center;
  }

  #privacy-policy::before,
  #terms-conditions::before {
    width: 200px;
    height: 200px;
  }

  #privacy-policy::after,
  #terms-conditions::after {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 480px) {
  .intro {
    padding: 40px 15px;
  }

  .highlights,
  .about,
  .products,
  .contact {
    padding: 60px 15px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .product-image {
    height: 180px;
  }

  #privacy-policy .container,
  #terms-conditions .container {
    padding: 25px 15px;
    margin: 0 10px;
  }

  #privacy-policy p,
  #terms-conditions p {
    font-size: 0.95rem;
    padding-left: 10px;
    margin-bottom: 15px;
  }

  #privacy-policy .section-title,
  #terms-conditions .section-title {
    font-size: 1.3rem;
    padding: 10px 15px;
  }

  #privacy-policy::before,
  #terms-conditions::before {
    width: 150px;
    height: 150px;
    top: -30px;
    right: -30px;
  }

  #privacy-policy::after,
  #terms-conditions::after {
    width: 120px;
    height: 120px;
    bottom: -30px;
    left: -30px;
  }

  .lang-switcher {
    margin-right: 10px;
  }

  .lang-switcher select {
    padding: 5px 8px;
    font-size: 0.8rem;
  }
}
/* ==============================
   CONTACT SECTION IMAGE MARQUEE
================================ */
.contact-marquee {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.marquee-title {
  text-align: center;
  font-size: 1.4rem;
  color: #fdd835;
  margin-bottom: 25px;
  font-weight: 600;
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: contact-marquee-scroll 28s linear infinite;
}

.marquee-track img {
  height: 150px;
  width: 220px;
  background: transparent;
  padding: 8px;
  border-radius: 15px;
  /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); */
  transition: transform 0.3s ease;
}

.marquee-track img:hover {
  transform: scale(1.08);
}

/* Pause on hover */
.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes contact-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .marquee-track img {
    height: 100px;
  }
}
