/* New Chocolate-Inspired Color Palette */
:root {
  /* Primary Colors */
  --deep-green: #397329;        /* Pistachio and natural ingredients */
  --dark-forest: #2F3E37;       /* Elegant background for sections */
  --caramel-bronze: #BC9876;     /* Perfect for headings and dividers */
  --golden-yellow: #D9A404;      /* Luxury highlight for CTAs */
  --rich-orange: #D95204;        /* Energetic accent for hover states */
  
  /* Semantic Mapping */
  --primary: var(--deep-green);
  --secondary: var(--dark-forest);
  --accent: var(--caramel-bronze);
  --highlight: var(--golden-yellow);
  --hover: var(--rich-orange);
  
  /* Text Colors */
  --text: #2C2C2C;
  --text-light: #666666;
  --text-on-dark: #FFFFFF;
  
  /* Background Colors */
  --light: #F8F9FA;
  --white: #FFFFFF;
  --muted: #666666;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--light);
  font-weight: 400;
  font-size: 16px;
}

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

/* Typography */
h1, h2, h3 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--caramel-bronze);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--muted);
}

/* Header */
.header {
  background: transparent;
  color: var(--text-on-dark);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: var(--dark-forest);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  margin: -40px 0;
  padding: 0;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
  transition: all 0.3s ease;
}

.logo:hover {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.logo-img {
  height: 200px;
  width: auto;
  transition: transform 0.3s ease;
  margin: -20px 0;
  padding: 0;
  display: block;
}

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

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  color: var(--text-on-dark);
  text-decoration: none;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

.nav a:hover {
  color: var(--golden-yellow);
  background: rgba(255, 255, 255, 0.1);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--text-on-dark);
  transition: all 0.3s ease;
  border-radius: 3px;
}

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

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

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

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--dark-forest);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

main {
  position: relative;
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}

  .hero-text-overlay {
    position: absolute;
    top: 280px;                   /* move text lower */
    left: -40px;                 /* move more to the left */
    transform: translateY(-50%);/* adjust so it's perfectly centered */
    max-width: 800px;
    text-align: left;
    
  }

.hero-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 4.5rem;
  font-weight: 400;
  color: var(--text-on-dark);
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
  position: relative;
  display: inline-block;
  background: linear-gradient(45deg, var(--text-on-dark), var(--golden-yellow), var(--text-on-dark), var(--golden-yellow), var(--text-on-dark));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroShine 5s ease-in-out infinite;
}


@keyframes heroShine {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


.hero-description {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.3rem;
  color: var(--text-on-dark);
  margin: 0;
  line-height: 1.4;
  opacity: 0.9;
}



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

.btn {
  display: inline-block;
  background: var(--golden-yellow);
  color: var(--text);
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--rich-orange);
  color: var(--text-on-dark);
}

/* Sections */
.section {
  padding: 3rem 0;
}

.section:nth-child(even) {
  background: var(--white);
}

/* About Section */
#about {
  background: var(--dark-forest);
}

#about h2,
#about h3 {
  color: var(--text-on-dark);
}

#about p {
  color: var(--text-on-dark);
  opacity: 0.9;
}

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

.about-text h2 {
  color: var(--text-on-dark);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.about-text p {
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
  line-height: 1.7;
  color: var(--text-on-dark);
  opacity: 0.9;
}

.about-image {
  text-align: left;
}

.about-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  transition: transform 0.3s ease;
}

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

/* Products Section - Deep Green Background */
#flavors {
  background: var(--golden-yellow);
  padding: 3rem 0;
}

#flavors h2,
#flavors h3 {
  color: var(--text-on-dark) !important;
}

#flavors p {
  color: var(--text-on-dark) !important;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 0;
}

.product-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  min-height: 500px;
}

.product-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  height: 100%;
  justify-content: space-between;
}

.product-image {
  width: 100%;
  max-width: 200px;
  margin-bottom: 1rem;
}

.product-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

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

.product-info {
  width: 100%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-info h3 {
  color: var(--text-on-dark);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-info p {
  color: var(--text-on-dark);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.product-btn {
  display: inline-block;
  background: var(--deep-green);
  color: var(--text-on-dark);
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
}

.product-btn:hover {
  background: var(--rich-orange);
  color: var(--text-on-dark);
  transform: translateY(-2px);
}

.products-description {
  text-align: left;
  margin-top: 2rem;
  margin-bottom: 1rem;
  max-width: 1000px;
  margin-left: 0;
  margin-right: auto;
}

.products-description h2 {
  color: var(--text-on-dark) !important;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.products-description h3 {
  color: var(--text-on-dark) !important;
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.products-description p {
  color: var(--text-on-dark);
  font-size: 1.3rem;
  line-height: 1.7;
  opacity: 0.9;
  max-width: 700px;
  margin: 0;
}



.download-section {
  text-align: center;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 2px solid var(--warm-beige);
}

.download-btn {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.download-btn:hover {
  background: var(--secondary);
}

/* Why Choose Choccart - Enhanced */
#why {
  background: var(--caramel-bronze);
}

#why h2,
#why h3 {
  color: var(--text-on-dark);
}

#why p {
  color: var(--text-on-dark);
  opacity: 0.9;
}

.section-subtitle {
  text-align: center;
  color: var(--text-on-dark);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
  line-height: 1.5;
}

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

.feature-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

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

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  background: var(--deep-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-dark);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(57, 115, 41, 0.3);
}

.feature-card:hover .feature-icon {
  background: var(--golden-yellow);
  color: var(--text);
  transform: scale(1.1);
}

.feature-card h3 {
  color: var(--text) !important;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.feature-card p {
  color: var(--text) !important;
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
  max-width: 250px;
  opacity: 0.8;
}

/* Gingermania-style Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-up.animate {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-60px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-left.animate {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(60px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-right.animate {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* Staggered animation for about section */
.about-image {
  transition-delay: 0.2s;
}

.about-text {
  transition-delay: 0.4s;
}

.about-text h2 {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s;
}

.about-text.animate h2 {
  opacity: 1;
  transform: translateY(0);
}

.about-text p {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-text p:nth-child(2) {
  transition-delay: 0.8s;
}

.about-text p:nth-child(3) {
  transition-delay: 1s;
}

.about-text.animate p {
  opacity: 1;
  transform: translateY(0);
}

/* Simple card hover */
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-item:hover {
  transform: translateY(-5px);
}

/* Simple button hover */
.btn:hover,
.product-btn:hover,
.download-btn:hover,
.submit-btn:hover {
  transform: translateY(-2px);
}

/* Testimonial transitions */
.testimonial-slide {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-slide.active {
  opacity: 1;
}


/* Testimonials Carousel - Card Style */
#testimonials {
  background: var(--rich-orange);
}

#testimonials h2,
#testimonials h3 {
  color: var(--text-on-dark);
}

#testimonials p {
  color: var(--text-on-dark);
  opacity: 0.9;
}

.testimonials-carousel {
  margin-top: 3rem;
  position: relative;
}

.testimonials-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.testimonial-slide {
  display: none;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide.active {
  display: block;
  animation: slideInUp 0.6s ease-out;
}

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

.testimonial-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.testimonial-card {
  background: var(--light);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: relative;
  transition: all 0.3s ease;
  border-left: 4px solid var(--accent);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.quote-icon {
  position: absolute;
  top: -15px;
  left: 2rem;
  background: var(--gold);
  color: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
}

.testimonial-card blockquote {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 1rem 0 1.5rem 0;
  color: var(--text);
  position: relative;
}

.testimonial-card cite {
  display: block;
  color: var(--caramel);
  font-style: normal;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: right;
  position: relative;
}

.testimonial-card cite::before {
  content: "⭐";
  margin-right: 0.5rem;
  color: var(--gold);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
}

.prev-btn,
.next-btn {
  background: var(--deep-green);
  color: var(--text-on-dark);
  border: none;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(45, 74, 45, 0.3);
}

.prev-btn:hover,
.next-btn:hover {
  background: var(--golden-yellow);
  color: var(--text);
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 164, 4, 0.4);
}

.prev-btn:active,
.next-btn:active {
  transform: scale(0.95);
}

.carousel-dots {
  display: flex;
  gap: 0.8rem;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: transparent;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.dot.active::before {
  background: var(--white);
}

.dot:hover {
  background: var(--caramel);
  transform: scale(1.1);
}

/* Contact Section */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info h3,
.contact-form h3 {
  color: var(--text);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-2px);
}

.contact-icon {
  font-size: 1.5rem;
  margin-top: 0.2rem;
}

.contact-item strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-item p {
  margin: 0;
  color: var(--muted);
}

.contact-item a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #8B7355;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: var(--cream);
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(217, 164, 4, 0.1);
  background: var(--white);
}

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

.submit-btn {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  padding: 1rem 2rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: var(--secondary);
}

/* Footer */
.footer {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 2rem 0;
}

.footer p {
  color: var(--white);
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .logo-img {
    height: 140px;
  }
  
  .logo {
    margin: -25px 0;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--dark-forest);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
  }
  
  .nav.active {
    right: 0;
  }
  
  .nav a {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    width: 80%;
    text-align: center;
  }
  
  .hero-text-overlay {
    display: none;
  }
  
  .hero-title {
    display: none;
  }
  
  .hero-description {
    display: none;
  }
  
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  
  .product-section {
    min-height: 450px;
    padding: 1.5rem 1rem;
  }
  
  .product-img {
    height: 150px;
  }
  
  .product-info h3 {
    font-size: 1.4rem;
  }
  
  .product-info p {
    font-size: 0.85rem;
  }
  
}

@media (max-width: 480px) {
  .logo-img {
    height: 120px;
  }
  
  .logo {
    margin: -20px 0;
  }
  
  .nav {
    width: 80%;
  }
  
  .hero-text-overlay {
    display: none;
  }
  
  .hero-title {
    display: none;
  }
  
  .hero-description {
    display: none;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .testimonials {
    grid-template-columns: 1fr;
  }
  
  .testimonial-pair {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .testimonial-card blockquote {
    font-size: 1rem;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  
  .product-section {
    min-height: 400px;
    padding: 1.5rem 1rem;
  }
  
  .product-img {
    height: 120px;
  }
  
  .product-info h3 {
    font-size: 1.2rem;
  }
  
  .product-info p {
    font-size: 0.8rem;
  }
  
  .carousel-controls {
    gap: 1rem;
  }
  
  .prev-btn,
  .next-btn {
    width: 45px;
    height: 45px;
  }
  
  .testimonials-wrapper {
    padding: 1.5rem;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .product-img {
    height: 150px;
  }
  
  .product-btn {
    padding: 0.7rem 1rem;
    font-size: 0.75rem;
  }
  
  .product-description {
    font-size: 0.8rem;
  }
  
  .products-description {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .products-description h3 {
    font-size: 1.5rem;
  }
  
  .products-description p {
    font-size: 1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-card {
    padding: 2rem 1.5rem;
  }
  
  .feature-icon {
    width: 70px;
    height: 70px;
  }
  
  .feature-card h3 {
    font-size: 1.2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .product-img {
    height: 200px;
  }
  
  .product-item h3 {
    font-size: 1rem;
  }
  
  .product-btn {
    padding: 0.6rem 0.8rem;
    font-size: 0.7rem;
  }
  
  .product-description {
    font-size: 0.75rem;
  }
  
  .products-description {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  
  .products-description h3 {
    font-size: 1.3rem;
  }
  
  .products-description p {
    font-size: 0.9rem;
  }
}
