/* ========= GLOBAL RESET ========= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
  font-family: 'Segoe UI', 'Arial','roboto', sans-serif;
  overflow-x: hidden; /* Prevent horizontal scroll/shake */
}

/* ========= REUSABLE ========= */
.section {
  padding: 2.5rem 1.25rem;
  max-width: 1120px;
  margin: 0 auto;
}

h1, h2, h3 {
  color: #1b3b1b;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 0.75rem;
  font-size: 0.98rem;
}

ul {
  list-style: none;
}

strong {
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  text-align: center;
}

.btn.primary {
  background: #1f7a3a;
  color: #fff;
  border-color: #1f7a3a;
}

.btn.primary:hover {
  background: #175e2d;
  border-color: #175e2d;
}

.btn.secondary {
  background: #fff;
  color: #1f7a3a;
  border-color: #1f7a3a;
}

.btn.secondary:hover {
  background: #f3fff7;
}

/* Simple text link style */
a {
  color: #1f7a3a;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ========= NAVBAR ========= */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #f8f9fa;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.25rem;
  max-width:100%;
  margin: 0 auto;
}

nav .logoimg img {
  height: 100px;
}

#nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

#nav-links li a {
  padding: 0.35rem 0.5rem;
  font-size: 0.95rem;
}

#nav-links li a.active {
  font-weight: 600;
  border-bottom: 2px solid #1f7a3a;
}

/* Hamburger button */
.hamburger {
  display: none;              /* hidden on desktop */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid #c5e2cf;
  background: #f7fff8;
  cursor: pointer;
  padding: 0;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #1f7a3a;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Transform to X when active */
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Multi-level dropdown under Products ===== */

/* First-level: Products */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: inline-block;
}

/* Products dropdown box */
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width:100px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
  padding: 0.4rem 0;
  display: none;
  z-index: 100;
}

.nav-dropdown-menu > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0.9rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* Second-level dropdown (Oils, Others) */
.nav-subdropdown {
  position: relative;
}

/* submenu panel for Oils / Others */
.nav-subdropdown-menu {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 210px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
  padding: 0.4rem 0;
  display: none;
  z-index: 110;
}

.nav-subdropdown-menu li a {
  display: block;
  padding: 0.4rem 0.9rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

.nav-subdropdown-menu li a:hover {
  background: #f7fff8;
}

/* ===== Desktop hover behaviour ===== */
@media (min-width: 769px) {
  /* show Products dropdown on hover */
  .nav-dropdown:hover > .nav-dropdown-menu {
    display: block;
  }

  /* show Oils / Others submenus on hover */
  .nav-subdropdown:hover > .nav-subdropdown-menu {
    display: block;
  }
}

/* ===== Mobile styles (hamburger + click dropdown) ===== */
@media (max-width: 768px) {
  #nav-links {
    position: absolute;
    top: 56px;
    right: 0;
    left: 0;
    flex-direction: column;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 0.75rem 1.25rem 1rem;
    gap: 0.5rem;
    display: none;
  }

  #nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  /* dropdowns stacked, controlled by .open class via JS */
  .nav-dropdown-menu,
  .nav-subdropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding-left: 0.75rem;
    display: none;
  }

  .nav-dropdown.open > .nav-dropdown-menu {
    display: block;
  }

  .nav-subdropdown.open > .nav-subdropdown-menu {
    display: block;
  }
}

/* Desktop: show on hover */
@media (min-width: 769px) {
  .nav-dropdown:hover .nav-dropdown-menu {
    display: block;
  }
}

/* Mobile: dropdown becomes block and uses .open class from JS */
@media (max-width: 768px) {
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding-left: 0.75rem;
    display: none;          /* hidden until click */
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;         /* show when .open added by JS */
  }
}

/* ========= HERO ========= */
.hero {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2.5rem 1.25rem 1.5rem;
  max-width: 1120px;
  margin: 0 auto;
}

.hero-text h1 {
  font-size: 1.8rem;
}

.hero-text p {
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.75rem;
}

.hero-image img {
  max-width: 360px;
  width: 100%;
}

/* ========= CARDS (Home products preview) ========= */
.products-preview {
  text-align: center;
}

.products-preview > p {
  max-width: 600px;
  margin: 0.25rem auto 1.5rem;
}

.cards {
  display: grid;
  gap: 1.5rem;
}

.card {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 1.25rem;
  text-align: left;
  background: #ffffff;
  box-shadow: 0 0 12px rgba(0,0,0,0.03);
}

.card img {
  width: 100%;
  max-height: 170px;
  object-fit: contain;
  margin-bottom: 0.75rem;
}

.card h3 {
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.card .link {
  font-size: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* ========= WHY US ========= */
.why-us {
  background: #f7fff8;
  border-top: 1px solid #e5f3e7;
  border-bottom: 1px solid #e5f3e7;
}

.bullet-grid {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.6rem;
}

.bullet-grid li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.95rem;
}

.bullet-grid li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1f7a3a;
}

/* ========= ORDER SECTION ========= */
.order-now {
  text-align: center;
}

.order-now p {
  max-width: 520px;
  margin: 0.4rem auto 1rem;
}


/* ========= ABOUT PAGE ========= */
.about-page > p {
  max-width: 640px;
}

.about-block {
  margin-top: 2rem;
}

.about-block ul {
  list-style: disc;
  padding-left: 1.2rem;
}

.about-block li {
  margin-bottom: 0.35rem;
}

/* ========= FOOTER (3-column) ========= */
.footer {
  background: #0f2014;
  color: #f5fff7;
  padding: 2.5rem 1.25rem;
  margin-top: 2.5rem;
}

.footer a {
  color: #c8f3d3;
  text-decoration: none;
}

.footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-container {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-column h2 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.footer-column p {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0.2rem 0 0;
}

.footer-column ul li {
  margin-bottom: 0.25rem;
}

.footer-column ul li a {
  font-size: 0.9rem;
}

/* Social icons */
.social-icons {
  display: flex;
  gap: 0.6rem;
  margin: 0.6rem 0 0.8rem;
  align-items: center;
  justify-content:left;
}

.social-icons a {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.social-icons a i {
  font-size: 0.9rem;
  color: #f5fff7;
}

.social-icons a:hover {
  background: #1f7a3a;
  border-color: #1f7a3a;
  transform: translateY(-2px) scale(1.05);
}

/* Responsive footer columns */
@media (min-width: 800px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-column {
    flex: 1;
  }

  .footer-column:nth-child(1) {
    max-width: 40%;
  }

  .footer-column:nth-child(2),
  .footer-column:nth-child(3) {
    max-width: 28%;
  }
}

/* Hero slider simple fade */
.hero-slider {
  max-width: 1120px;
  margin: 1.5rem auto;
  padding: 0 1.25rem;
}

.slides-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slide img {
  width: 100%;
  display: block;
}

.slide.active {
  opacity: 1;
  position: relative;
}

/* ========= RESPONSIVE (hero/cards/products) ========= */

/* Medium screens: 640px+ */
@media (min-width: 640px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-text {
    flex: 1.3;
  }

  .hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Large screens: 900px+ */
@media (min-width: 900px) {
  .hero-text h1 {
    font-size: 2.2rem;
  }

  .product-block {
    flex-direction: row;
    align-items: center;
  }

  .product-image {
    flex: 1;
  }

  .product-text {
    flex: 2;
  }
}
.info-row{
  display:block;
}


/* ===== Contact form section (contact page) ===== */
.contact-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
}

.contact-page > h1 {
  text-align: center;
}

.contact-page > p {
  text-align: center;
  max-width: 620px;
  margin: 0.4rem auto 1.8rem;
}

/* layout: form + info */
.contact-layout {
  display: flex;
  flex-direction: column-reverse;
  gap: 1.5rem;
}

/* animated form card */
.contact-form-section {
  
  margin:auto;
  flex: 1;
  background: #f7fff8;
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  box-shadow: 0 10px 28px rgba(0,0,0,0.05);
  transform: translateY(14px);
  opacity: 0;
  animation: contactFormFadeIn 0.5s ease-out 0.1s forwards;
}

.contact-form-section h2 {
  margin-bottom: 0.25rem;
}

.contact-form-section > p {
  font-size: 0.9rem;
  color: #4a6453;
  margin-bottom: 1rem;
}

/* form fields */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.form-row-two {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-group label {
  font-size: 0.9rem;
  color: #365239;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  border: 1px solid #d5e6db;
  font-size: 0.93rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #1f7a3a;
  box-shadow: 0 0 0 2px rgba(31,122,58,0.12);
  transform: translateY(-1px);
}

.last-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: #4a6453;
}

.checkbox-container input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

/* submit button and micro animation */
.contact-form .btn.primary {
  align-self: stretch;
}

.contact-form .btn.primary:active {
  transform: scale(0.97);
}

/* success box */
.success-box {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: #e9f9ee;
  border: 1px solid #b7e6c4;
  color: #1f7a3a;
  text-align: left;
  opacity: 0;
  transform: translateY(8px);
  display: none;
}

.success-box h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.success-box p {
  font-size: 0.9rem;
  margin: 0;
}

.success-box.show {
  display: block;
  animation: successFadeUp 0.35s ease-out forwards;
}

/* left info box (existing styles, just ensure it looks card-like) */
.contact-info-box {
  flex: 1;
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  border: 1px solid #e5e5e5;
  box-shadow: 0 8px 20px rgba(0,0,0,0.03);
}

.info-row {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 0.85rem;
  align-items: flex-start;
}

.info-row i {
  font-size: 1rem;
  color: #1f7a3a;
  margin-top: 0.15rem;
}

.info-row h3 {
  margin-bottom: 0.25rem;
}

/* Animations */
@keyframes contactFormFadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes successFadeUp {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Desktop layout for contact page */
@media (min-width: 768px) {
  .contact-layout {
    flex-direction: row;
    align-items: flex-start;
  }

  .form-row-two {
    flex-direction: row;
  }

  .form-group {
    flex: 1;
  }

  .contact-form-section {
    order: 2;
  }

  .contact-info-box {
    order: 1;
  }
}
/* ===== ANIMATIONS ===== */
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  50% {
    box-shadow: 0 5px 20px rgba(210, 105, 30, 0.4);
  }
}

/* ===== PRODUCT HERO SECTION ===== */
.product-hero {
 background: linear-gradient(135deg, #f9d605 10%, #f5ee05 50% );
  color: white;
  padding: 60px 20px;
  text-align: center;
  margin-top: 80px;
  animation: slideInDown 0.8s ease-out;
}

.product-hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: slideInDown 0.8s ease-out 0.2s both;
}

.product-hero-content p {
  font-size: 24px;
  font-weight:bold;
  margin: 0;
  color:green;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: slideInUp 0.8s ease-out 0.4s both;
}

/* Responsive hero */
@media (max-width: 768px) {
  .product-hero-content h1 {
    font-size: 32px;
  }
  
  .product-hero-content p {
    font-size: 18px;
  }
}

/* ===== PRODUCT DETAILS SECTION ===== */
.product-details {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== PRODUCT GRID (Image + Info) ===== */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: slideInUp 0.8s ease-out;
}

.product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideInLeft 0.8s ease-out 0.2s both;
}

.product-image img {
  width: 100%;
  max-width:100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.product-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(210, 105, 30, 0.3);
}

.product-info {
  animation: slideInRight 0.8s ease-out 0.2s both;
}

.product-info h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
  animation: slideInDown 0.6s ease-out 0.3s both;
}

.product-info .price {
  font-size: 28px;
  font-weight: 600;
  color: #D2691E;
  margin-bottom: 20px;
  animation: zoomIn 0.6s ease-out 0.4s both;
}

.product-info .description {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 25px;
  animation: slideInUp 0.6s ease-out 0.5s both;
}

/* ===== BENEFITS LIST ===== */
.benefits {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.benefits li {
  padding: 10px 0;
  font-size: 16px;
  color: #333;
  border-bottom: 1px solid #eee;
  padding-left: 30px;
  position: relative;
  animation: slideInLeft 0.6s ease-out backwards;
  transition: all 0.3s ease;
}

.benefits li:nth-child(1) {
  animation-delay: 0.6s;
}

.benefits li:nth-child(2) {
  animation-delay: 0.65s;
}

.benefits li:nth-child(3) {
  animation-delay: 0.7s;
}

.benefits li:nth-child(4) {
  animation-delay: 0.75s;
}

.benefits li:nth-child(5) {
  animation-delay: 0.8s;
}

.benefits li:hover {
  padding-left: 35px;
  color: #D2691E;
}

.benefits li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #D2691E;
  font-weight: bold;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.benefits li:hover:before {
  transform: scale(1.3);
}

.benefits li:last-child {
  border-bottom: none;
}

/* ===== CTA BUTTON ===== */
.cta-button {
  display: inline-block;
  background-color: #D2691E;
  color: white;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: 2px solid #D2691E;
  animation: slideInUp 0.6s ease-out 0.8s both;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.cta-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #8B4513;
  transition: left 0.3s ease;
  z-index: -1;
}

.cta-button:hover {
  color: white;
  border-color: #8B4513;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(210, 105, 30, 0.3);
  animation: glow 1.5s ease-in-out infinite;
}

.cta-button:hover:before {
  left: 0;
}

.cta-button:active {
  transform: translateY(0);
}


.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: slideInUp 0.8s ease-out;
}

/* Product image container */
.product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideInLeft 0.8s ease-out 0.2s both;
}

/* Product image styling */
.product-image img {
  width: 100%;
  max-width:100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Hover effect for product image */
.product-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(210, 105, 30, 0.3);
}

/* Product info section */
.product-info {
  animation: slideInRight 0.8s ease-out 0.2s both;
}

/* Product title */
.product-info h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
  animation: slideInDown 0.6s ease-out 0.3s both;
}

/* Product price */
.product-info .price {
  font-size: 28px;
  font-weight: 600;
  color: #D2691E;
  margin-bottom: 20px;
  animation: zoomIn 0.6s ease-out 0.4s both;
}

/* Product description text */
.product-info .description {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 25px;
  animation: slideInUp 0.6s ease-out 0.5s both;
}

/* ===== BENEFITS LIST ===== */
.benefits {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.benefits li {
  padding: 10px 0;
  font-size: 16px;
  color: #333;
  border-bottom: 1px solid #eee;
  padding-left: 30px;
  position: relative;
  animation: slideInLeft 0.6s ease-out backwards;
  transition: all 0.3s ease;
}

.benefits li:nth-child(1) { animation-delay: 0.6s; }
.benefits li:nth-child(2) { animation-delay: 0.65s; }
.benefits li:nth-child(3) { animation-delay: 0.7s; }
.benefits li:nth-child(4) { animation-delay: 0.75s; }
.benefits li:nth-child(5) { animation-delay: 0.8s; }

.benefits li:hover {
  padding-left: 35px;
  color: #D2691E;
}

.benefits li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #D2691E;
  font-weight: bold;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.benefits li:hover:before {
  transform: scale(1.3);
}

.benefits li:last-child {
  border-bottom: none;
}

/* ===== CTA BUTTON ===== */
.cta-button {
  display: inline-block;
  background-color: #D2691E;
  color: white;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: 2px solid #D2691E;
  animation: slideInUp 0.6s ease-out 0.8s both;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.cta-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #8B4513;
  transition: left 0.3s ease;
  z-index: -1;
}

.cta-button:hover {
  color: white;
  border-color: #8B4513;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(210, 105, 30, 0.3);
}

.cta-button:hover:before {
  left: 0;
}

.cta-button:active {
  transform: translateY(0);
}

/* ===== PRODUCT DESCRIPTION SECTION ===== */
.product-description {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: slideInUp 0.8s ease-out 0.2s both;
}

.product-description h3 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-top: 30px;
  margin-bottom: 15px;
  border-bottom: 3px solid #D2691E;
  padding-bottom: 10px;
  animation: slideInLeft 0.6s ease-out backwards;
  transition: all 0.3s ease;
}

.product-description h3:first-child {
  margin-top: 0;
  animation-delay: 0.4s;
}

.product-description h3:nth-of-type(2) {
  animation-delay: 0.5s;
}

.product-description h3:nth-of-type(3) {
  animation-delay: 0.6s;
}

.product-description h3:hover {
  color: #D2691E;
  padding-left: 10px;
}

.product-description p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  animation: slideInUp 0.6s ease-out backwards;
}

.product-description > p:nth-of-type(1) {
  animation-delay: 0.45s;
}

.product-description > p:nth-of-type(2) {
  animation-delay: 0.55s;
}

.product-description > p:nth-of-type(3) {
  animation-delay: 0.65s;
}

.product-description ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  animation: slideInUp 0.6s ease-out backwards;
}

.product-description > ul:nth-of-type(1) {
  animation-delay: 0.5s;
}

.product-description > ul:nth-of-type(2) {
  animation-delay: 0.6s;
}

.product-description > ul:nth-of-type(3) {
  animation-delay: 0.7s;
}

.product-description ul li {
  padding: 10px 0;
  padding-left: 30px;
  font-size: 16px;
  color: #333;
  position: relative;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.product-description ul li:hover {
  padding-left: 35px;
  color: #D2691E;
}

.product-description ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #D2691E;
  font-weight: bold;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.product-description ul li:hover:before {
  transform: scale(1.3) rotate(180deg);
}

/* ========================================
   PRODUCTS PAGE CSS (products.html)
   ======================================== */

.products-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
}

.products-page h1 {
  text-align: center;
  animation: slideInDown 0.8s ease-out;
}

.products-page > p {
  text-align: center;
  max-width: 620px;
  margin: 0.4rem auto 2rem;
  animation: slideInUp 0.8s ease-out 0.1s both;
}

/* Product blocks (used in products.html) */
.product-block {
  display: flex;
  flex-direction:row;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e5e5;
  animation: slideInUp 0.8s ease-out backwards;
}

.product-block:nth-child(2) { animation-delay: 0.2s; }
.product-block:nth-child(3) { animation-delay: 0.3s; }
.product-block:nth-child(4) { animation-delay: 0.4s; }

/* Product image for products page */
.product-block .product-image {
  animation: slideInLeft 0.8s ease-out backwards;
}

.product-block:nth-child(2) .product-image { animation-delay: 0.2s; }
.product-block:nth-child(3) .product-image { animation-delay: 0.3s; }
.product-block:nth-child(4) .product-image { animation-delay: 0.4s; }

.product-block .product-image img {
  width: 100%;
  max-width: 260px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.product-block .product-image img:hover {
  transform: scale(1.1) rotate(-2deg);
  filter: drop-shadow(0 8px 16px rgba(31, 122, 58, 0.2));
}

/* Product text for products page */
.product-text {
  animation: slideInRight 0.8s ease-out backwards;
}

.product-block:nth-child(2) .product-text { animation-delay: 0.25s; }
.product-block:nth-child(3) .product-text { animation-delay: 0.35s; }
.product-block:nth-child(4) .product-text { animation-delay: 0.45s; }

.product-text h2 {
  animation: slideInDown 0.6s ease-out backwards;
  transition: color 0.3s ease;
}

.product-block:nth-child(2) .product-text h2 { animation-delay: 0.3s; }
.product-block:nth-child(3) .product-text h2 { animation-delay: 0.4s; }
.product-block:nth-child(4) .product-text h2 { animation-delay: 0.5s; }

.product-text h2:hover {
  color: #1f7a3a;
}

.product-text > p {
  animation: slideInUp 0.6s ease-out backwards;
}

.product-block:nth-child(2) .product-text > p { animation-delay: 0.35s; }
.product-block:nth-child(3) .product-text > p { animation-delay: 0.45s; }
.product-block:nth-child(4) .product-text > p { animation-delay: 0.55s; }

/* Product list in products page */
.product-text ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin-bottom: 0.6rem;
  animation: slideInUp 0.6s ease-out backwards;
}

.product-block:nth-child(2) .product-text ul { animation-delay: 0.4s; }
.product-block:nth-child(3) .product-text ul { animation-delay: 0.5s; }
.product-block:nth-child(4) .product-text ul { animation-delay: 0.6s; }

.product-text li {
  margin-bottom: 0.3rem;
  transition: all 0.3s ease;
}

.product-text li:hover {
  padding-left: 0.5rem;
  color: #1f7a3a;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablets and smaller desktops */
@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 25px;
  }

  .product-image {
    order: -1;
  }

  .product-image img {
    max-width: 100%;
  }

  .product-info h2 {
    font-size: 28px;
  }

  .product-info .price {
    font-size: 24px;
  }

  .product-info .description {
    font-size: 15px;
  }

  .cta-button {
    width: 100%;
    text-align: center;
    padding: 15px 20px;
  }

  .product-description {
    padding: 20px;
  }

  .product-description h3 {
    font-size: 20px;
  }

  .product-description p,
  .product-description ul li {
    font-size: 15px;
  }

  .benefits li {
    font-size: 15px;
  }

  /* Products page responsive */
  .product-block {
    flex-direction: column;
  }

  .product-text .btn.primary {
    width: 100%;
    text-align: center;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  .product-hero {
    padding: 40px 15px;
    margin-top:0px;
  }

  .product-hero-content h1 {
    font-size: 24px;
  }

  .product-hero-content p {
    font-size: 16px;
  }

  .product-details {
    padding: 30px 15px;
  }

  .product-grid {
    padding: 20px;
  }

/* payment style***************************************************************************/

.productspayment-card{
   width: 300px;
   background: #fff;
   padding: 20px;
   margin: 20px;
   border-radius: 12px;
   text-align: center;
   box-shadow: 0 2px 10px rgba(0,0,0,0.1);
   display: inline-block;
   vertical-align: top;
}

.productspayment-card img{
   width: 220px;
   height: 220px;
   object-fit: cover;
   display: block;
   margin: 0 auto;
   border-radius: 10px;
}

.price{
   font-size: 22px;
   color: green;
   font-weight: bold;
}

.pay-btn{
   display: block;
   background: green;
   color: white;
   padding: 10px;
   margin-top: 10px;
   text-decoration: none;
   border-radius: 5px;
}

.whatsapp-btn{
   display: block;
   background: #25D366;
   color: white;
   padding: 10px;
   margin-top: 10px;
   text-decoration: none;
   border-radius: 5px;
}
