.body {
   font-family: 'Segoe UI', Arial, sans-serif;
}
.main-header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(150, 150, 150, 0.065);
  padding: 0;
  position: relative;
  z-index: 10;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 42px 13px 20px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5px;
  min-width: 230px;
}

.nav-logo img {
  height: 50px;
  width:80px;
  margin-bottom: 2px;
}

.company-title {
  font-size: 18px;
  font-weight: 500;
  color: #8b864e;
  margin-bottom: 1px;
}

.company-tag {
  font-size: 12px;
  color: #98a171;
  margin-top: -3px;
}

.nav-menu {
  display: flex;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

.nav-link {
  color: #555;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  padding: 5px 19px;
  border-radius: 17px;
  transition: background 0.16s, color 0.16s;
}

.nav-link.active,
.nav-link:hover {
  background: #b6c68d;
  color: #fff;
}

.nav-quote-btn {
  background: #8ebf52;
  color: #fff;
  font-weight: 600;
  border-radius: 18px;
  padding: 8px 23px;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.21s;
}

.nav-quote-btn:hover {
  background: #6d983e;
}
.main-footer {
  background: linear-gradient(180deg, #93694c 50%, #856042 100%);
  color: #fff;
  
  padding-top: 38px;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.footer-cta {
  text-align: center;
  padding-bottom: 28px;
}

.footer-cta h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 13px;
}

.footer-cta p {
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 14px;
}

.enquire-btn {
  background: #98c159;
  color: #fff;
  padding: 8px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  margin-top: 7px;
  transition: background 0.2s;
  border: none;
}

.enquire-btn:hover {
  background: #789e3e;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 8px 22px 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-col {
  flex: 1;
  min-width: 170px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  height: 44px;
}

.footer-brand {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 2px;
}

.footer-desc {
  font-size: 14px;
  color: #e4d1ba;
}

.footer-social {
  margin-top: 14px;
  display: flex;
  gap: 13px;
}

.footer-icon {
  font-family: "Font Awesome 5 Free";
  font-size: 20px;
  color: #e4d1ba;
  padding: 2px 0;
}

.footer-heading {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 7px;
  color: #ffeee3;
}

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

.footer-links li {
  margin-bottom: 7px;
}

.footer-links a {
  color: #fff0ee;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}

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

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: #ffeee3;
}

.footer-contact-icon {
  margin-right: 7px;
  font-size: 16px;
}

.footer-copy {
  text-align: center;
  padding: 21px 0 23px 0;
  font-size: 14px;
  color: #ecd3ba;
  border-top: 1px solid rgba(255,255,255,0.08);
  letter-spacing: 0.2px;
}
.product-range-section {
  max-width: 1150px;
  margin: 0 auto;
  padding: 54px 18px 26px 18px;
}

.range-tag {
  display: inline-block;
  color: #b0b187;
  font-size: 15px;
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

.range-title {
  font-size: 37px;
  color: #715446;
  font-weight: 600;
  margin-bottom: 6px;
}

.range-subtitle {
  color: #918172;
  font-size: 16px;
  margin-bottom: 24px;
}

.product-tabs {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 33px;
  flex-wrap: wrap;
}

.tab {
  background: #f3f3e6;
  color: #99967f;
  border-radius: 12px;
  padding: 7px 22px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.13s, color 0.13s;
  border: none;
  outline: none;
  display: inline-block;
}

.tab.active, .tab:hover {
  background: #b0b187;
  color: #fff;
}

.tab-count {
  font-size: 13px;
  opacity: 0.7;
  margin-left: 4px;
}

.product-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(218px, 1fr));
  gap: 34px;
  margin-bottom: 10px;
}

.product-card {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(150, 120, 90, 0.06);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 17px;
}

.product-badges {
  position: absolute;
  top: 9px;
  left: 17px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.pbadge {
  background: #b0b187;
  color: #fff;
  font-size: 12.7px;
  padding: 3px 11px;
  border-radius: 8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 3px;
}
.pbadge.premium {
  background: #bfbfb5;
  color: #715446;
}
.pbadge.popular {
  background: #b7ba61;
  color: #fff;
}

.product-card img {
  width: 100%;
  height: 155px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  margin-bottom: 12px;
  margin-top: 8px;
}

.product-info {
  width: 100%;
  padding: 1px 12px 0 19px;
  text-align: left;
}

.product-title {
  font-size: 18px;
  font-weight: 600;
  color: #715446;
  margin-bottom: 3px;
}

.product-type {
  font-size: 14.5px;
  color: #a29281;
  margin-bottom: 1px;
}

.product-desc {
  font-size: 13px;
  color: #ab9b8a;
  margin-bottom: 7px;
}

.details-btn {
  background: #f6f4ee;
  color: #7c6e5d;
  font-size: 13.8px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  text-decoration: none;
  box-shadow: 0 1px 6px rgba(120,100,70,0.06);
  margin-top: 8px;
  font-weight: 500;
  transition: background 0.13s;
}

.details-btn:hover {
  background: #e4e1d7;
  color: #9eb458;
}


.health-benefits-section {
  max-width: 900px;
  margin: 28px auto 0 auto;
  background: linear-gradient(160deg, #a9825a 65%, #90725e 100%);
  border-radius: 24px;
  padding: 38px 22px 28px 22px;
  color: #fff;
  box-shadow: 0 2px 16px rgba(150,120,90,0.09);
}

.health-benefits-inner h2 {
  font-size: 31px;
  font-weight: 600;
  margin-bottom: 13px;
}

.health-benefits-inner p {
  font-size: 15.5px;
  color: #eedcc9;
  opacity: 0.78;
  margin-bottom: 22px;
}
.benefits-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.benefit-box {
  background: rgba(232,214,198,0.14);
  padding: 18px 24px;
  border-radius: 14px;
  min-width: 145px;
  text-align: center;
  font-size: 16.5px;
  font-weight: 500;
  color: #ffe6ba;
  display: flex;
  align-items: center;
  gap: 11px;
  box-shadow: 0 2px 12px rgba(120,100,70,0.09);
  transition: background 0.13s;
}

.benefit-box i {
  font-size: 21px;
  color: #fffae5;
}


body {
  animation: fadeInBody 1.1s ease-in forwards;
}
@keyframes fadeInBody {
  from { opacity: 0; }
  to { opacity: 1; }
}

.navbar {
  animation: slideDown 0.7s ease-out;
}
@keyframes slideDown {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.range-tag, .range-title, .range-subtitle {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 1s ease-out forwards;
}
.range-tag { animation-delay: 0.2s; }
.range-title { animation-delay: 0.4s; }
.range-subtitle { animation-delay: 0.6s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.tab {
  opacity: 0;
  transform: scale(0.9);
  animation: fadeTab 0.6s ease-out forwards;
}
.tab:nth-child(1) { animation-delay: 0.8s; }
.tab:nth-child(2) { animation-delay: 0.9s; }
.tab:nth-child(3) { animation-delay: 1s; }
.tab:nth-child(4) { animation-delay: 1.1s; }
.tab:nth-child(5) { animation-delay: 1.2s; }
@keyframes fadeTab {
  to { opacity: 1; transform: scale(1); }
}

.product-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeCard 1s ease-out forwards;
}
.product-card:nth-child(1) { animation-delay: 0.4s; }
.product-card:nth-child(2) { animation-delay: 0.6s; }
.product-card:nth-child(3) { animation-delay: 0.8s; }
.product-card:nth-child(4) { animation-delay: 1s; }
.product-card:nth-child(5) { animation-delay: 1.2s; }
.product-card:nth-child(6) { animation-delay: 1.4s; }
.product-card:nth-child(7) { animation-delay: 1.6s; }
.product-card:nth-child(8) { animation-delay: 1.8s; }
@keyframes fadeCard {
  to { opacity: 1; transform: translateY(0); }
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(120,100,70,0.12);
  transition: all 0.3s ease;
}

.pbadge {
  animation: popBadge 1.2s ease-out infinite alternate;
}
@keyframes popBadge {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

.details-btn:hover {
  transform: scale(1.05);
  background: #d8dbb5;
  transition: all 0.25s ease;
}

.health-benefits-section {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeBenefits 1s ease-out 1.3s forwards;
}
@keyframes fadeBenefits {
  to { opacity: 1; transform: translateY(0); }
}

.benefit-box {
  opacity: 0;
  transform: scale(0.85);
  animation: fadeBox 0.9s ease-out forwards;
}
.benefit-box:nth-child(1) { animation-delay: 1.5s; }
.benefit-box:nth-child(2) { animation-delay: 1.7s; }
.benefit-box:nth-child(3) { animation-delay: 1.9s; }
.benefit-box:nth-child(4) { animation-delay: 2.1s; }
@keyframes fadeBox {
  to { opacity: 1; transform: scale(1); }
}

.benefit-box:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-4px);
  transition: all 0.3s ease;
}

.enquire-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.footer-icon:hover {
  color: #fff;
  transform: scale(1.2);
  transition: all 0.3s ease;
}

.main-footer {
  opacity: 0;
  animation: fadeInFooter 1.2s ease-out 2.2s forwards;
}
@keyframes fadeInFooter {
  to { opacity: 1; }
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(3px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.3s;
}

.modal-content {
  background: #fff;
  padding: 28px;
  border-radius: 16px;
  width: 420px;
  max-width: 92%;
  animation: slideUp 0.3s ease;
  box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.modal-content img {
  width: 90%;

  border-radius: 10px;
  margin: 12px 0;
}
.modal-inner {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.modal-inner img {
  width: 300px;
  border-radius: 10px;
}

.modal-spec-box {
  flex: 1;
}

#modalSpecs li {
  font-size: 15px;
  margin-bottom: 6px;
  color: #444;
}

.close {
  float: right;
  font-size: 28px;
  cursor: pointer;
  color: #444;
  margin-top: -10px;
}

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

@keyframes slideUp {
  from { transform: translateY(25px); opacity: 0; }
  to   { transform: translateY(0);   opacity: 1; }
}
.spec-heading {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 18px;
  color: #6b4e3e;
  font-weight: 600;
}

#modalSpecs {
  padding-left: 18px;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

#modalSpecs li {
  margin-bottom: 6px;
}

@media (max-width: 992px) {
  .navbar {
    flex-direction: column;
    padding: 12px 20px;
    gap: 12px;
  }
  .nav-menu {
    flex-direction: column;
    width: 100%;
    text-align: center;
    gap: 10px;
  }
  .nav-quote-btn {
    width: 100%;
    text-align: center;
  }

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

  .product-card img {
    height: 180px;
  }

  .range-title {
    font-size: 30px;
  }

  .benefits-row {
    gap: 16px;
  }

  .benefit-box {
    min-width: 130px;
    padding: 15px 18px;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .range-title {
    font-size: 27px;
  }

  .range-subtitle {
    font-size: 14px;
  }

  .product-card {
    padding-bottom: 14px;
  }

  .product-card img {
    height: 160px;
  }

  .product-info {
    padding: 5px 14px;
  }

  .details-btn {
    padding: 6px 11px;
    font-size: 13px;
  }

  .health-benefits-section {
    padding: 26px 18px;
    border-radius: 18px;
  }

  .benefit-box {
    padding: 15px 16px;
    min-width: 120px;
  }

  .footer-main {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .nav-logo img {
    height: 45px;
    width: 65px;
  }

  .company-title {
    font-size: 15px;
  }

  .company-tag {
    font-size: 11px;
  }

  .range-title {
    font-size: 24px;
  }

  .product-card img {
    height: 145px;
  }

  .product-title {
    font-size: 16px;
  }

  .product-type {
    font-size: 13px;
  }

  .product-desc {
    font-size: 12px;
  }

  .details-btn {
    font-size: 12.5px;
    padding: 6px 10px;
  }

  .benefit-box {
    min-width: 100px;
    padding: 12px 14px;
    font-size: 14px;
  }

  .health-benefits-inner h2 {
    font-size: 22px;
  }
}

.floating-contact {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 99999;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  animation: popIn 0.9s ease-out forwards;
  transform: scale(0.3);
  opacity: 0;
}

.float-btn.whatsapp {
  background: #25D366;
}

.float-btn.call {
  background: #714f3a;
}

.float-btn:hover {
  transform: scale(1.15) translateY(-3px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.30);
  transition: 0.25s ease;
}

.float-btn.whatsapp {
  animation-delay: 0.2s;
}

.float-btn.call {
  animation-delay: 0.4s;
}

@keyframes popIn {
  60% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 480px) {
  .floating-contact {
    bottom: 20px;
    right: 16px;
  }
  .float-btn {
    width: 46px;
    height: 46px;
    font-size: 22px;
  }
}

