:root {
  --green: #303411;
  --olive: #6a6746;
  --cream: #f7f2df;
  --gold: #deceb7;
  --terracotta: #9e5535;
  --text: #23261a;
  --muted: #6f715f;
  --white: #fffdf5;
  --shadow: 0 18px 45px rgba(48, 52, 17, 0.14);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Inter, Segoe UI, Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
}
.topbar {
  background: var(--green);
  color: #f7f2df;
  padding: 9px 5%;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 242, 223, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 28px rgba(48, 52, 17, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 5%;
  border-bottom: 1px solid rgba(106, 103, 70, 0.16);
}
.logo {
  font-weight: 800;
  color: var(--green);
  font-size: 25px;
  letter-spacing: -0.6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo span:not(.logo-mark) {
  color: var(--terracotta);
}
.logo-mark {
  font-size: 22px;
}
.navlinks {
  display: flex;
  gap: 50px;
  align-items: center;
  font-weight: 700;
}
.navlinks > a,
.dropdown > a {
  padding: 9px 0;
}
.navlinks a:hover {
  color: var(--terracotta);
}
.dropdown {
  position: relative;
}
.dropmenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 10px;
  border: 1px solid rgba(106, 103, 70, 0.12);
}
.dropdown:hover .dropmenu {
  display: block;
}
.dropmenu a {
  display: block;
  padding: 12px 15px;
  border-radius: 12px;
}
.dropmenu a:hover {
  background: #efe8d2;
}
.cart-btn,
.btn {
  background: var(--green);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  display: inline-block;
}
.btn:hover,
.cart-btn:hover {
  background: var(--terracotta);
}
.btn.light {
  background: var(--gold);
  color: var(--green);
}
.btn.outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.hamb {
  display: none;
  background: var(--green);
  color: #fff;
  border: 0;
  border-radius: 10px;
  padding: 10px 13px;
}
.mobile-menu {
  display: none;
}
.cart-panel {
  position: fixed;
  right: -420px;
  top: 0;
  width: 380px;
  max-width: 92%;
  height: 100%;
  background: var(--white);
  z-index: 100;
  padding: 28px;
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.15);
  transition: 0.35s;
  overflow: auto;
}
.cart-panel.open {
  right: 0;
}
.close {
  float: right;
  border: 0;
  background: var(--terracotta);
  color: #fff;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 22px;
}
.cart-item {
  display: flex;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding: 14px 0;
}
.cart-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  background: #f0ead7;
  border-radius: 14px;
}
.cart-item button {
  border: 0;
  color: var(--terracotta);
  background: transparent;
  font-weight: 700;
}
.hero {
  min-height: 650px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: 90px 5%;
  background: linear-gradient(
    120deg,
    rgba(48, 52, 17, 0.95),
    rgba(106, 103, 70, 0.78)
  );
}
.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroFade 12s infinite;
}
.hero-bg-slider img:nth-child(2) {
  animation-delay: 4s;
}
.hero-bg-slider img:nth-child(3) {
  animation-delay: 8s;
}
@keyframes heroFade {
  0%,
  100% {
    opacity: 0;
  }
  10%,
  32% {
    opacity: 1;
  }
  42% {
    opacity: 0;
  }
}
.hero-content,
.hero-slider {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 64px;
  line-height: 1.02;
  margin: 18px 0;
  color: #fffdf5;
}
.hero p {
  font-size: 18px;
  color: #efe8d2;
  max-width: 650px;
  line-height: 1.7;
}
.eyebrow {
  display: inline-block;
  background: rgba(222, 206, 183, 0.18);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.4px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.hero-slider {
  background: rgba(247, 242, 223, 0.88);
  border-radius: 34px;
  padding: 18px;
  box-shadow: var(--shadow);
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slider img {
  position: absolute;
  width: 88%;
  height: 88%;
  object-fit: contain;
  opacity: 0;
  animation: productFade 12s infinite;
}
.hero-slider img:nth-child(2) {
  animation-delay: 4s;
}
.hero-slider img:nth-child(3) {
  animation-delay: 8s;
}
@keyframes productFade {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.96);
  }
  10%,
  32% {
    opacity: 1;
    transform: scale(1);
  }
  42% {
    opacity: 0;
  }
}
section {
  padding: 80px 5%;
}
.section-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
  margin-bottom: 34px;
}
.section-head .featured-eyebrow{margin-bottom:0;}
.section-head h2{margin:0;}
.section-head h2 {
  font-size: 42px;
  margin: 10px 0;
  color: var(--green);
}
.muted {
  color: var(--muted);
  line-height: 1.7;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.card {
  background: var(--white);
  border: 1px solid rgba(106, 103, 70, 0.12);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.product-card {
  display: flex;
  flex-direction: column;
 
}
.product-card img {
  height: 250px;
  width: 100%;
  object-fit: fill;
  background: linear-gradient(135deg, #f7f2df, #ede4cb);
}
.body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.body h3 {
  font-size: 23px;
  margin: 0;
  color: var(--green);
}
.body p {
  line-height: 1.65;
}
.price {
  font-size: 24px;
  font-weight: 900;
  color: var(--terracotta);
}
.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: auto;
}
.features {
  background: var(--green);
  color: #fff;
}
.features .grid {
  grid-template-columns: repeat(4, 1fr);
}
.feature {
  background: rgba(247, 242, 223, 0.08);
  border: 1px solid rgba(247, 242, 223, 0.12);
  padding: 25px;
  border-radius: 24px;
  font-size: 30px;
}
.feature b {
  display: block;
  font-size: 18px;
  margin: 12px 0;
  color: #fff;
}
.feature p {
  font-size: 15px;
  line-height: 1.7;
  color: #efe8d2;
}
.banner {
  background: linear-gradient(135deg, var(--olive), var(--green));
  color: #fff;
  padding: 55px;
  border-radius: 34px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.banner h2 {
  font-size: 40px;
  margin: 0 0 10px;
}
.content-box {
  background: var(--white);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(106, 103, 70, 0.12);
}
input,
textarea,
select {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd4ba;
  border-radius: 16px;
  margin: 8px 0;
  background: #fffdf7;
}
.page-hero {
  padding: 95px 5%;
  background: linear-gradient(120deg, var(--green), var(--olive));
  color: #fff;
}
.page-hero h1 {
  font-size: 54px;
  margin: 0 0 10px;
}
.detail {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.detail > img {
  background: #efe8d2;
  border-radius: 34px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.detail-box {
  background: var(--white);
  padding: 38px;
  border-radius: 32px;
  box-shadow: var(--shadow);
}
.detail-box h2 {
  font-size: 40px;
  color: var(--green);
  margin-top: 0;
}
.policy-list p {
  margin: 9px 0;
  line-height: 1.75;
}
.footer {
  background: #1f230c;
  color: #f7f2df;
  padding: 60px 5% 0px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 35px;
}
.footer a {
  display: block;
  color: #efe8d2;
  margin: 10px 0;
}
.footer h2,
.footer h3 {
  color: #fff;
}
.newsletter {
  display: flex;
  flex-direction: column;
}
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: center;
}
.about-split img {
  background: #efe8d2;
  border-radius: 32px;
  padding: 20px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 900px) {
  .topbar {
    display: none;
  }
  .navlinks,
  .cart-btn {
    display: none;
  }
  .hamb {
    display: block;
  }
  .mobile-menu.open {
    display: flex;
    position: absolute;
    left: 5%;
    right: 5%;
    top: 74px;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 20px;
    padding: 18px;
    flex-direction: column;
    gap: 12px;
   
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 70px 5%;
  }
  .hero h1 {
    font-size: 42px;
  }
  .hero-slider {
    min-height: 320px;
  }
  .section-head {
    display: block;
  }
  .grid,
  .features .grid,
  .footer-grid,
  .detail,
  .checkout-grid,
  .about-split,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .product-actions {
    grid-template-columns: 1fr 1fr;
  }
  .banner {
    display: block;
    padding: 34px;
  }
  .banner h2 {
    font-size: 30px;
  }
  .page-hero h1 {
    font-size: 38px;
  }
}
@media (max-width: 520px) {
  .navbar {
    padding: 13px 4%;
  }
  .logo {
    font-size: 21px;
  }
  .hero h1 {
    font-size: 34px;
  }
  .grid {
    gap: 18px;
  }
  section {
    padding: 55px 4%;
  }
  .product-actions {
    grid-template-columns: 1fr;
  }
  .footer {
    text-align: center;
  }
  .cart-panel {
    width: 100%;
  }
}

/* Fullscreen Hero Upgrade */
.hero {
  min-height: 90vh !important;
  grid-template-columns: 1fr !important;
  align-items: center;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.45) 45%,
    rgba(0, 0, 0, 0.25) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}


/* --------------------------- */



.sidhi-logo{
    width:12rem;
    /* height: 8rem; */
   
}



/* Featured products refinement */
.featured-products-section {
  background: linear-gradient(180deg, #fffdf7 0%, #f7f2df 100%);
}
.featured-products-section .featured-head {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
 
}
.featured-products-grid {
  max-width: 1180px;
  margin: 0 auto;
  gap: 22px;
  align-items: stretch;
  /* padding: 0px 40px; */
}
.featured-card {
  border-radius: 24px;
  border: 1px solid rgba(15, 61, 46, 0.10);
  box-shadow: 0 14px 34px rgba(15, 61, 46, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.featured-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(15, 61, 46, 0.14);
  border-color: rgba(15, 61, 46, 0.20);
}
.featured-card img {
  height: 190px;
  /* padding: 16px; */
  background: radial-gradient(circle at center, #fffdf7 0%, #f0e7cf 100%);
}
.featured-card .body {
  padding: 18px;
  gap: 6px;
}
.featured-card .body h3 {
  font-size: 20px;
}
.featured-card .product-desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.55;
  min-height: 4.65em;
  margin: 0;
}
.featured-card .price {
  font-size: 22px;
  margin-top: 2px;
}
.featured-card .product-actions {
  gap: 10px;
}
.featured-card .btn {
  padding: 12px 14px;
  font-size: 14px;
}
.featured-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}
.featured-more-btn {
  min-width: 170px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(15, 61, 46, 0.18);
}
@media (max-width: 900px) {
  .featured-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .featured-products-grid {
    grid-template-columns: 1fr;
  }
  .featured-card img {
    height: 180px;
  }
}

/* Homepage alternate radial gradient theme update */
body {
  background: #ffffff;
}
section {
  background: #ffffff;
}
.featured-products-section,
.section-gold-gradient {
  background:
    radial-gradient(circle at 18% 20%, rgba(214, 176, 87, 0.30) 0%, rgba(214, 176, 87, 0.12) 28%, rgba(255, 255, 255, 0) 56%),
    radial-gradient(circle at 82% 78%, rgba(245, 224, 166, 0.45) 0%, rgba(245, 224, 166, 0.18) 32%, rgba(255, 255, 255, 0) 62%),
    #ffffff !important;
}
.section-white,
.section-green-gradient {
  background:
    radial-gradient(circle at 18% 20%, rgba(202, 226, 180, 0.55) 0%, rgba(202, 226, 180, 0.24) 30%, rgba(255, 255, 255, 0) 60%),
    radial-gradient(circle at 82% 78%, rgba(231, 244, 218, 0.78) 0%, rgba(231, 244, 218, 0.32) 34%, rgba(255, 255, 255, 0) 66%),
    #ffffff !important;
}
.home-image-banner {
    padding: 0;
}

.full-banner-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.full-banner-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.banner-content {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;

    max-width: 800px;
    color: #fff;
    text-align: right;
}

.banner-content h1 {
    color: #fff;
    font-size: 4rem;
    margin-bottom: 15px;
    line-height: 1.1;
}

.banner-content p {
    color: #fff;
    font-size: 1.2rem;
    margin: 0;
}
.why-choose-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: center;
}
.why-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: 0 22px 55px rgba(15, 61, 46, 0.13);
}
.green-eyebrow {
  background: #e7f2d5;
  color: #0f3d2e;
}
.why-content h2 {
  font-size: 44px;
  line-height: 1.12;
  color: var(--green);
  margin: 16px 0;
}
.why-content p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 24px;
}
.why-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.why-points div {
  background: linear-gradient(135deg, #ffffff 0%, #f7fff4 100%);
  border: 1px solid rgba(15, 61, 46, 0.10);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(15, 61, 46, 0.07);
}
.why-points b,
.why-points span {
  display: block;
}
.why-points b {
  color: var(--green);
  margin-bottom: 8px;
}
.why-points span {
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

@media (max-width: 900px) {
  .why-choose-split {
    grid-template-columns: 1fr;
  }
  .why-image img,
  .full-banner-wrap img {
    height: 360px;
  }
  .why-content h2 {
    font-size: 34px;
  }
}
@media (max-width: 560px) {
  .home-image-banner {
    padding: 50px 4%;
  }
  .full-banner-wrap,
  .why-image img {
    border-radius: 24px;
  }
  .full-banner-wrap img {
    height: 240px;
  }
  .why-image img {
    height: 280px;
  }
  .why-points {
    grid-template-columns: 1fr;
  }
}



.footer-logo{
  width: 13rem;
}
/* Featured products premium redesign */
.featured-products-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(203, 168, 102, 0.20), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(15, 61, 46, 0.10), transparent 25%),
    linear-gradient(180deg, #fffdf7 0%, #f8f0d8 100%);
}
.featured-products-section::before,
.featured-products-section::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(15, 61, 46, 0.045);
  pointer-events: none;
}
.featured-products-section::before { top: 35px; left: -130px; }
.featured-products-section::after { right: -120px; bottom: 80px; }
.featured-products-section .featured-head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 1180px;
  margin: 0 auto 42px;
}
.featured-title-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.featured-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: #e7f2d5;
  color: #0f3d2e;
  border: 1px solid rgba(15, 61, 46, 0.12);
  box-shadow: 0 8px 20px rgba(15, 61, 46, 0.08);
}
.featured-products-section .featured-head h2 {
  margin: 12px 0 0;
  letter-spacing: -0.8px;
}
.featured-products-grid {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  gap: 28px;
  align-items: stretch;
}
.featured-card {
  position: relative;
  border-radius: 30px;
  border: 1px solid rgba(15, 61, 46, 0.12);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 44px rgba(15, 61, 46, 0.10);
  backdrop-filter: blur(8px);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.featured-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.58), transparent 42%);
  pointer-events: none;
}
.featured-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 26px 60px rgba(15, 61, 46, 0.18);
  border-color: rgba(203, 168, 102, 0.45);
}
.featured-card img {
  position: relative;
  z-index: 1;
  /* height: 205px; */
  /* padding: 22px  12px; */
  object-fit: fill;
  background:
    radial-gradient(circle at 50% 46%, rgba(255,255,255,0.98) 0%, rgba(247,242,223,0.82) 42%, rgba(231,242,213,0.65) 100%);
}
.featured-card .body {
  position: relative;
  z-index: 1;
  padding: 22px;
  gap: 10px;
}
.product-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px;
}
.weight-badge,
.natural-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2px;
}
.weight-badge {
  color: #0f3d2e;
  background: #f3ecd5;
  border: 1px solid rgba(203, 168, 102, 0.30);
}
.natural-badge {
  color: #ffffff;
  background: linear-gradient(135deg, #0f3d2e, #537a39);
  box-shadow: 0 8px 18px rgba(15, 61, 46, 0.16);
}
.featured-card .body h3 {
  font-size: 21px;
  line-height: 1.25;
  color: #123d2f;
  letter-spacing: -0.3px;
}
.featured-card .product-desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
  min-height: 4.8em;
  margin: 0;
  color: #6e6a56;
  font-size: 14.5px;
}
.featured-card .price {
  width: fit-content;
  /* font-size: 26px; */
  line-height: 1;
  margin: 6px 0 2px;
  color: #9b5a27;
  background: linear-gradient(135deg, #fff5d8, #f4e3b8);
  border: 1px solid rgba(203, 168, 102, 0.35);
  border-radius: 16px;
  padding: 10px 14px;
}
.featured-card .product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}
.featured-card .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 13px;
  font-size: 13.5px;
  border-radius: 16px;
  box-shadow: none;
}
.featured-card .btn:not(.outline) {
  background: linear-gradient(135deg, #0f3d2e, #537a39);
  box-shadow: 0 12px 24px rgba(15, 61, 46, 0.18);
}
.featured-card .btn.outline {
  background: #fffdf7;
  border-color: rgba(15, 61, 46, 0.22);
}
.featured-card .btn:hover {
  transform: translateY(-2px);
}
.featured-card .btn.outline:hover {
  color: #fff;
  background: #9b5a27;
  border-color: #9b5a27;
}
.featured-more-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 38px;
}
.featured-more-btn {
  min-width: 178px;
  text-align: center;
  box-shadow: 0 14px 30px rgba(15, 61, 46, 0.20);
}
@media (max-width: 900px) {
  .featured-products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .featured-products-section .featured-head { margin-bottom: 30px; }
  .featured-products-grid { grid-template-columns: 1fr; }
  .featured-card img { height: 190px; }
  .featured-card .product-actions { grid-template-columns: 1fr; }
  .featured-card .body { padding: 20px; }
}


/* Final requested refinements */
.featured-card .price {
  font-size: 15px;
  padding: 7px 11px;
  border-radius: 12px;
  margin: 3px 0 0;
}
.product-topline {
  justify-content: flex-start;
}
.natural-badge {
  display: none !important;
}
.why-choose-split {
  position: relative;
  overflow: hidden;
}
.why-choose-split::before,
.why-choose-split::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(15, 61, 46, 0.045);
  pointer-events: none;
  z-index: 0;
}
.why-choose-split::before {
  left: -130px;
  bottom: 55px;
}
.why-choose-split::after {
  right: -120px;
  top: 55px;
}
.why-choose-split > * {
  position: relative;
  z-index: 1;
}
@media (max-width: 640px) {
  .featured-card .price {
    font-size: 17px;
    padding: 7px 10px;
  }
  .why-choose-split::before,
  .why-choose-split::after {
    width: 190px;
    height: 190px;
  }
}


.copyright{
  border-top: 1px solid rgb(100, 100, 100);
  
  display: flex;
  padding: 20px;
  text-align: center;
  justify-content: center;
  margin-bottom: 0px !important;
}

.about-us-section{
  border: 2px solid black;
  display: flex;
  flex: 1;
  height: 30rem;
}

.abt-left{
  width: 50%;
  border: 2px solid rebeccapurple;
}
/* About page redesign */
.about-page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
  padding: 80px 5%;
  background: url('../assets/images/about-banner.jpg') center/cover no-repeat;
}
.about-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,61,46,.78), rgba(0,0,0,.36));
}
.about-page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
}
.about-page-hero h1 {
  font-size: 52px;
  line-height: 1.1;
  margin: 16px 0 10px;
  color: #fffdf5;
}
.about-page-hero p {
  margin: 0;
  font-size: 18px;
  color: #f7f2df;
}
.about-story-section,
.vision-mission-section {
  position: relative;
  overflow: hidden;
}
.about-story-section::before,
.about-story-section::after,
.vision-mission-section::before,
.vision-mission-section::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.about-story-section::before,
.about-story-section::after {
  background: rgba(15, 61, 46, 0.045);
}
.vision-mission-section::before,
.vision-mission-section::after {
  background: rgba(15, 61, 46, 0.045);
}
.about-story-section::before,
.vision-mission-section::before { left: -130px; bottom: 55px; }
.about-story-section::after,
.vision-mission-section::after { right: -120px; top: 55px; }
.about-story-wrap {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 48px;
  align-items: center;
}
.about-story-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: 0 22px 55px rgba(15, 61, 46, 0.13);
}
.about-story-content {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(15, 61, 46, 0.10);
  border-radius: 32px;
  padding: 42px;
  box-shadow: 0 18px 44px rgba(15, 61, 46, 0.08);
}
.about-story-content h2,
.vision-mission-head h2 {
  font-size: 44px;
  line-height: 1.12;
  color: var(--green);
  margin: 16px 0;
}
.about-story-content p,
.vision-mission-head p,
.vm-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}
.about-story-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.about-story-highlights div {
  background: linear-gradient(135deg, #fffdf7, #f7fff4);
  border: 1px solid rgba(15, 61, 46, 0.10);
  border-radius: 20px;
  padding: 18px 14px;
  text-align: center;
}
.about-story-highlights b {
  display: block;
  color: #9b5a27;
  font-size: 25px;
}
.about-story-highlights span {
  display: block;
  color: var(--green);
  font-weight: 800;
  font-size: 13px;
  margin-top: 5px;
}
.vision-mission-head {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}
.vision-mission-grid {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.vm-card {
  min-height: 310px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(15, 61, 46, 0.11);
  border-radius: 34px;
  padding: 42px;
  box-shadow: 0 18px 44px rgba(15, 61, 46, 0.10);
}
.vm-icon {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: linear-gradient(135deg, #f4e3b8, #e7f2d5);
  font-size: 34px;
  margin-bottom: 22px;
}
.vm-card h3 {
  font-size: 30px;
  margin: 0 0 12px;
  color: var(--green);
}
@media (max-width: 900px) {
  .about-page-hero { min-height: 280px; padding: 65px 5%; }
  .about-page-hero h1 { font-size: 38px; }
  .about-story-wrap,
  .vision-mission-grid { grid-template-columns: 1fr; }
  .about-story-image img { height: 360px; }
  .about-story-content { padding: 30px; }
  .about-story-content h2,
  .vision-mission-head h2 { font-size: 34px; }
}
@media (max-width: 560px) {
  .about-page-hero { min-height: 235px; }
  .about-page-hero h1 { font-size: 32px; }
  .about-story-image img { height: 280px; border-radius: 24px; }
  .about-story-highlights { grid-template-columns: 1fr; }
  .vm-card { min-height: auto; padding: 30px; border-radius: 26px; }
}


/* About page final refinements: equal height and lighter Why Choose background */
.about-story-section .about-story-wrap {
  align-items: stretch;
}
.about-story-section .about-story-image {
  display: flex;
  height: 100%;
}
.about-story-section .about-story-image img {
  height: 100%;
  min-height: 520px;
}
.about-story-section .about-story-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-why-choose.section-green-gradient {
  background:
    radial-gradient(circle at 18% 20%, rgba(233, 246, 225, 0.52) 0%, rgba(233, 246, 225, 0.22) 28%, rgba(255, 255, 255, 0) 58%),
    radial-gradient(circle at 82% 78%, rgba(244, 251, 240, 0.72) 0%, rgba(244, 251, 240, 0.28) 34%, rgba(255, 255, 255, 0) 66%),
    #fbfff8 !important;
}
.about-why-choose::before,
.about-why-choose::after {
  background: rgba(214, 176, 87, 0.22) !important;
}
@media (max-width: 900px) {
  .about-story-section .about-story-wrap {
    align-items: stretch;
  }
  .about-story-section .about-story-image img {
    min-height: 360px;
    height: 360px;
  }
}
@media (max-width: 640px) {
  .about-story-section .about-story-image img {
    min-height: 280px;
    height: 280px;
  }
}


/* Final About + Products enhancement */
.about-why-choose.why-choose-split {
  grid-template-columns: 1.08fr .92fr;
}
.about-why-choose .why-content {
  order: 1;
}
.about-why-choose .why-image {
  order: 2;
}
.about-why-choose.section-green-gradient {
  background:
    radial-gradient(circle at 14% 18%, rgba(214, 176, 87, 0.16) 0%, rgba(214, 176, 87, 0.07) 30%, rgba(255,255,255,0) 62%),
    radial-gradient(circle at 86% 82%, rgba(245, 224, 166, 0.20) 0%, rgba(245, 224, 166, 0.08) 34%, rgba(255,255,255,0) 68%),
    #fcfff8 !important;
}
.about-why-choose .why-content {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(214, 176, 87, 0.18);
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 18px 42px rgba(15, 61, 46, 0.07);
}
.vision-mission-section {
  padding: 95px 5%;
  background:
    radial-gradient(circle at 10% 18%, rgba(214, 176, 87, 0.28) 0%, rgba(214, 176, 87, 0.10) 28%, rgba(255,255,255,0) 58%),
    radial-gradient(circle at 88% 82%, rgba(231, 244, 218, 0.65) 0%, rgba(231, 244, 218, 0.22) 34%, rgba(255,255,255,0) 66%),
    linear-gradient(135deg, #fffdf7 0%, #ffffff 52%, #fbfff6 100%) !important;
}
.vision-mission-section::before,
.vision-mission-section::after {
  background: rgba(214, 176, 87, 0.20) !important;
}
.vision-mission-grid {
  max-width: 1160px;
  gap: 34px;
}
.vm-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 46px;
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(214, 176, 87, 0.22);
  box-shadow: 0 24px 60px rgba(15, 61, 46, 0.11);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.vm-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 7px;
  background: linear-gradient(90deg, #d6b057, #f4e3b8, #0f3d2e);
}
.vm-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -80px;
  bottom: -80px;
  border-radius: 50%;
  background: rgba(214, 176, 87, 0.13);
}
.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(15, 61, 46, 0.16);
  border-color: rgba(214, 176, 87, 0.38);
}
.vm-icon {
  position: relative;
  z-index: 1;
  width: 78px;
  height: 78px;
  border-radius: 26px;
  background: linear-gradient(135deg, #fff6dc, #d6b057);
  box-shadow: 0 12px 28px rgba(214, 176, 87, 0.22);
}
.vm-card h3,
.vm-card p {
  position: relative;
  z-index: 1;
}
.vm-card h3 {
  font-size: 34px;
}
.vm-card p {
  font-size: 18px;
  max-width: 92%;
}
.products-page-hero {
  position: relative;
  min-height: 330px;
  padding: 78px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: url('../assets/images/products-banner.png') center/cover no-repeat;
}
.products-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,61,46,.80), rgba(0,0,0,.34));
}
.products-page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
}
.products-page-hero h1 {
  color: #fffdf5;
  font-size: 54px;
  line-height: 1.08;
  margin: 16px 0 10px;
}
.products-page-hero p {
  color: #f7f2df;
  font-size: 18px;
  margin: 0 auto;
  max-width: 700px;
  line-height: 1.7;
}
.products-list-section {
  position: relative;
  overflow: hidden;
  padding-top: 88px;
}
.products-section-head {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}
.products-section-head h2 {
  font-size: 44px;
  line-height: 1.12;
  margin: 16px 0 12px;
  color: var(--green);
}
.products-section-head p {
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.products-grid-enhanced {
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
  /* padding: 0px 40px; */
}
.products-grid-enhanced .product-card {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(214, 176, 87, 0.18);
  background: rgba(255,255,255,.92);
  box-shadow: 0 16px 36px rgba(15, 61, 46, 0.08);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.products-grid-enhanced .product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(15, 61, 46, 0.13);
  border-color: rgba(214, 176, 87, 0.34);
}
.products-grid-enhanced .product-card img {
  height: 182px;
  /* padding: 17px; */
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,.85) 0%, rgba(255,255,255,.35) 36%, rgba(255,255,255,0) 62%),
    linear-gradient(135deg, #fbfff6, #f4e6bd);
  transition: transform .35s ease;
}
.products-grid-enhanced .product-card:hover img {
  transform: scale(1.035);
}
.products-grid-enhanced .body {
  padding: 17px 18px 19px;
  gap: 6px;
}
.products-grid-enhanced .body .muted {
  display: inline-flex;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 800;
  color: #9b5a27;
  background: #fff6dc;
  border: 1px solid rgba(214, 176, 87, 0.22);
  border-radius: 999px;
  padding: 5px 10px;
  line-height: 1;
  margin-bottom: 0;
}
.products-grid-enhanced .body h3 {
  font-size: 18px;
  line-height: 1.22;
  min-height: 34px;
  margin: 0 0 1px;
}
.products-grid-enhanced .body p:not(.muted) {
  font-size: 14px;
  line-height: 1.48;
  color: #5f6f65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(13px * 1.48 * 3);
  margin: 0;
}
.products-grid-enhanced .price {
  font-size: 19px;
  color: #9b5a27;
  margin-top: 4px;
}
.products-grid-enhanced .product-actions {
  gap: 8px;
  margin-top: 4px;
}
.products-grid-enhanced .product-actions .btn {
  min-width: 0;
  padding: 10px 11px;
  font-size: 12px;
  border-radius: 12px;
  text-align: center;
}
@media (max-width: 900px) {
  .about-why-choose.why-choose-split { grid-template-columns: 1fr; }
  .about-why-choose .why-content { order: 2; padding: 30px; }
  .about-why-choose .why-image { order: 1; }
  .products-page-hero { min-height: 280px; padding: 65px 5%; }
  .products-page-hero h1 { font-size: 40px; }
  .products-grid-enhanced { grid-template-columns: repeat(2, 1fr); }
  .vm-card { min-height: auto; }
}
@media (max-width: 640px) {
  .products-page-hero { min-height: 235px; }
  .products-page-hero h1 { font-size: 33px; }
  .products-section-head h2 { font-size: 34px; }
  .products-grid-enhanced { grid-template-columns: 1fr; }
  .products-grid-enhanced .product-card img { height: 175px; }
  .products-grid-enhanced .body h3 { min-height: auto; }
  .products-grid-enhanced .product-actions { grid-template-columns: 1fr; }
  .vision-mission-section { padding: 72px 5%; }
  .vm-card p { max-width: 100%; font-size: 16px; }
}


/* ------------------------ */

.social-medias{
  display: flex;
  gap: 10px;
  font-size: 19px;
  cursor: pointer;
}

.fa-whatsapp:hover{
  color: #9c5938;
}
.fa-facebook-f:hover{
  color:#9c5938;
}

.fa-instagram:hover{
  color: #9c5938;
}

.fa-youtube:hover{
  color: #9c5938;
}


.product-detail-hero {
  min-height: 390px;
  padding: 105px 5% 80px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.product-detail-hero .product-detail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(31,35,12,.82), rgba(48,52,17,.55), rgba(48,52,17,.12));
}
.product-detail-hero .product-detail-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.product-detail-hero .eyebrow,
.product-detail-page .product-category,
.product-detail-page .section-kicker,
.product-detail-page .organic-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.product-detail-hero .eyebrow { background: rgba(222,206,183,.22); padding: 9px 16px; color: #fff; }
.product-detail-hero h1 { font-size: clamp(42px, 6vw, 74px); line-height: .98; margin: 18px 0 16px; }
.product-detail-hero p { font-size: 20px; line-height: 1.7; max-width: 680px; color: #fff7e7; margin: 0; }
.product-detail-page { padding: 70px 5%; }
.product-detail-page .product-showcase { display: grid; grid-template-columns: .92fr 1.08fr; gap: 38px; align-items: stretch; margin-bottom: 40px; }
.product-detail-page .product-image-card,
.product-detail-page .product-info-card,
.product-detail-page .info-panel {
  background: var(--white);
  border: 1px solid rgba(106,103,70,.14);
  box-shadow: var(--shadow);
  border-radius: 34px;
}
.product-detail-page .product-image-card { position: relative; display: grid; place-items: center; min-height: 490px; padding: 45px; background: radial-gradient(circle at 50% 30%, #fff8e7, #efe8d2 68%); overflow: hidden; }
.product-detail-page .product-image-card:before { content: ''; position: absolute; width: 330px; height: 330px; border-radius: 50%; background: rgba(222,206,183,.52); }
.product-detail-page .product-image-card img { position: relative; max-height: 390px; object-fit: contain; filter: drop-shadow(0 24px 28px rgba(48,52,17,.18)); }
.product-detail-page .organic-tag { position: absolute; top: 24px; left: 24px; z-index: 1; background: var(--green); color: #fff; padding: 10px 15px; }
.product-detail-page .product-info-card { padding: 44px; display: flex; flex-direction: column; justify-content: center; }
.product-detail-page .product-category { color: var(--terracotta); background: #efe8d2; padding: 9px 14px; margin-bottom: 16px; }
.product-detail-page .product-info-card h2 { color: var(--green); font-size: clamp(34px, 4vw, 54px); margin: 0 0 15px; letter-spacing: -1.3px; }
.product-detail-page .product-short-desc { font-size: 18px; line-height: 1.85; color: var(--muted); margin: 0 0 24px; }
.product-detail-page .product-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 10px 0 20px; }
.product-detail-page .product-meta-grid div { background: #f6efd9; border-radius: 22px; padding: 18px; border: 1px solid rgba(106,103,70,.11); }
.product-detail-page .product-meta-grid small { display: block; color: var(--muted); font-weight: 800; margin-bottom: 8px; }
.product-detail-page .product-meta-grid strong { font-size: 25px; color: var(--green); }
.product-detail-page .ingredient-line { padding: 16px 18px; background: rgba(106,103,70,.08); border-left: 4px solid var(--terracotta); border-radius: 16px; line-height: 1.65; font-weight: 700; color: var(--green); }
.product-detail-page .product-actions-detail { display: flex; gap: 14px; flex-wrap: wrap; margin: 18px 0 22px; }
.product-detail-page .trust-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.product-detail-page .trust-badges span { background: #fff7e7; color: var(--green); border: 1px solid rgba(106,103,70,.16); padding: 9px 13px; border-radius: 999px; font-size: 13px; font-weight: 800; }
.product-detail-page .product-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.product-detail-page .info-panel { padding: 32px; }
.product-detail-page .wide-panel { grid-column: span 2; }
.product-detail-page .section-kicker { color: var(--terracotta); margin-bottom: 10px; }
.product-detail-page .info-panel h3 { margin: 0 0 18px; color: var(--green); font-size: 30px; }
.product-detail-page .feature-list,
.product-detail-page .analytical-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.product-detail-page .feature-list li { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; background: #fbf6e7; padding: 16px; border-radius: 18px; border: 1px solid rgba(106,103,70,.11); }
.product-detail-page .feature-list li span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: #fff; font-weight: 900; }
.product-detail-page .feature-list li p { margin: 0; color: var(--text); line-height: 1.65; }
.product-detail-page .feature-list.compact li { background: transparent; padding: 9px 0; border-width: 0 0 1px; border-radius: 0; }
.product-detail-page .analytical-list { grid-template-columns: repeat(3, 1fr); }
.product-detail-page .analytical-list li { background: #f6efd9; padding: 15px; border-radius: 16px; color: var(--green); font-weight: 700; line-height: 1.5; }
@media (max-width: 900px) {
  .product-detail-hero { min-height: 320px; padding: 75px 5%; }
  .product-detail-page .product-showcase,
  .product-detail-page .product-content-grid { grid-template-columns: 1fr; }
  .product-detail-page .wide-panel { grid-column: span 1; }
  .product-detail-page .product-image-card { min-height: 360px; }
  .product-detail-page .product-info-card { padding: 30px; }
  .product-detail-page .analytical-list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .product-detail-page { padding: 45px 4%; }
  .product-detail-hero { min-height: 270px; padding: 58px 4%; background-position: center; }
  .product-detail-hero p { font-size: 16px; }
  .product-detail-page .product-meta-grid,
  .product-detail-page .analytical-list { grid-template-columns: 1fr; }
  .product-detail-page .product-actions-detail .btn { width: 100%; text-align: center; }
  .product-detail-page .product-image-card { min-height: 310px; padding: 30px; border-radius: 26px; }
  .product-detail-page .product-info-card,
  .product-detail-page .info-panel { border-radius: 26px; padding: 24px; }
}


/* Single product detail page redesigned layout */
.sp-detail-intro{
  max-width:1180px;
  margin:70px auto 30px;
  padding:0 22px;
  display:grid;
  grid-template-columns: minmax(320px, 46%) 1fr;
  gap:32px;
  align-items:stretch;
}
.sp-image-box{
  position:relative;
  background:linear-gradient(145deg,#fbf8ef,#eef6e7);
  border:1px solid rgba(58,86,38,.12);
  border-radius:28px;
  min-height:440px;
  display:flex;
  align-items:center;
  justify-content:center;
  /* padding:38px; */
  box-shadow:0 22px 60px rgba(39,66,24,.12);
  overflow:hidden;
}
.sp-image-box:before{
  content:"";
  position:absolute;
  width:260px;
  height:260px;
  border-radius:50%;
  background:rgba(109,138,78,.14);
  right:-70px;
  bottom:-70px;
}
.sp-image-box img{
  position:relative;
  z-index:1;
  width:100%;
  /* max-height:360px; */
  object-fit:contain;
  filter:drop-shadow(0 18px 30px rgba(0,0,0,.15));
}
.sp-organic-tag{
  position:absolute;
  top:22px;
  left:22px;
  z-index:2;
  background:#2f5d2b;
  color:#fff;
  border-radius:999px;
  padding:9px 15px;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.sp-summary-box{
  background:#fff;
  border:1px solid rgba(58,86,38,.14);
  border-radius:28px;
  padding:34px;
  box-shadow:0 18px 50px rgba(33,54,23,.1);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:440px;
}
.sp-category,.sp-section-label{
  display:inline-block;
  color:#5e7e3f;
  font-weight:700;
  font-size:13px;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom:12px;
}
.sp-summary-box h2{
  font-size:38px;
  line-height:1.12;
  color:#1f321c;
  margin:0 0 18px;
}
.sp-meta-row{
  display:grid;
  grid-template-columns:repeat(2,minmax(120px,1fr));
  gap:14px;
  margin:20px 0;
}
.sp-meta-row div{
  background:#f7f3e8;
  border-radius:18px;
  padding:16px 18px;
  border:1px solid rgba(196,166,105,.24);
}
.sp-meta-row small{display:block;color:#6d7666;margin-bottom:5px;font-size:12px;text-transform:uppercase;letter-spacing:.08em;}
.sp-meta-row strong{font-size:22px;color:#1f321c;}
.sp-desc{font-size:16px;line-height:1.8;color:#4e5c49;margin:0 0 18px;}
.sp-ingredient{background:#f3f8ef;border-left:4px solid #6d8a4e;border-radius:12px;padding:13px 16px;color:#43533d;line-height:1.6;}
.sp-action-row{display:flex;gap:14px;margin-top:28px;flex-wrap:wrap;}
.sp-action-row .btn{min-width:150px;text-align:center;}
.sp-table-section{max-width:1180px;margin:0 auto 75px;padding:0 22px;}
.sp-info-table{display:grid;grid-template-columns:1fr 1fr 1fr;gap:0;border:1px solid rgba(58,86,38,.15);border-radius:26px;overflow:hidden;background:#fff;box-shadow:0 18px 55px rgba(32,56,22,.09);}
.sp-info-col{padding:30px 28px;border-right:1px solid rgba(58,86,38,.12);min-height:420px;}
.sp-info-col:last-child{border-right:0;}
.sp-info-col h3{margin:0 0 20px;color:#243b20;font-size:22px;line-height:1.25;}
.sp-detail-list{list-style:none;margin:0;padding:0;display:grid;gap:13px;}
.sp-detail-list li{position:relative;padding-left:28px;color:#4b5b45;line-height:1.65;font-size:15px;}
.sp-detail-list li:before{content:"✓";position:absolute;left:0;top:0;color:#5f8a3d;font-weight:800;}
.sp-usage-col .sp-detail-list li:before{content:"➜";}
.sp-nutrition-list li:before{content:"•";font-size:22px;line-height:1;color:#c49b55;}
.sp-why-box{margin-top:28px;padding-top:24px;border-top:1px dashed rgba(58,86,38,.22);}
.sp-why-box h3{font-size:19px;margin-bottom:15px;}
.sp-small-list{gap:10px;}
@media(max-width:900px){
  .sp-detail-intro{grid-template-columns:1fr;margin-top:45px;}
  .sp-image-box,.sp-summary-box{min-height:auto;}
  .sp-info-table{grid-template-columns:1fr;}
  .sp-info-col{border-right:0;border-bottom:1px solid rgba(58,86,38,.12);min-height:auto;}
  .sp-info-col:last-child{border-bottom:0;}
}
@media(max-width:560px){
  .sp-detail-intro,.sp-table-section{padding:0 14px;}
  .sp-summary-box{padding:24px 20px;border-radius:22px;}
  .sp-summary-box h2{font-size:30px;}
  .sp-image-box{padding:28px 20px;min-height:310px;border-radius:22px;}
  .sp-meta-row{grid-template-columns:1fr;}
  .sp-action-row .btn{width:100%;}
  .sp-info-col{padding:24px 20px;}
}


/* === Client requested refinements - June 2026 === */
/* Lower the Policies dropdown so it does not sit directly under the menu text */
.dropmenu{
  top: calc(100% + 24px) !important;
}
.dropmenu::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-26px;
  height:26px;
}

/* Mission & Vision section on About page */
.vision-mission-section{
  position:relative;
  overflow:hidden;
  padding:78px 5%;
}
.vision-mission-head{
  max-width:760px;
  margin:0 auto 34px;
  text-align:center;
}
.vision-mission-head h2{
  color:var(--green);
  font-size:42px;
  line-height:1.12;
  margin:12px 0;
}
.vision-mission-head p{
  color:var(--muted);
  font-size:17px;
  line-height:1.75;
}
.vision-mission-grid{
  max-width:1050px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:24px;
}
.vm-card{
  background:rgba(255,255,255,.88);
  border:1px solid rgba(48,52,17,.12);
  border-radius:28px;
  padding:30px;
  box-shadow:0 18px 48px rgba(48,52,17,.10);
}
.vm-icon{
  width:54px;
  height:54px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:#eef6e7;
  font-size:25px;
  margin-bottom:16px;
}
.vm-card h3{margin:0 0 10px;color:var(--green);font-size:25px;}
.vm-card p{margin:0;color:var(--muted);line-height:1.75;}

/* Product single page image should fully occupy its box */
.sp-image-box{
  align-items:stretch !important;
  justify-content:stretch !important;
  padding:0 !important;
  background:#f4f0df !important;
}
.sp-image-box::before{display:none !important;}
.sp-image-box img{
  width:100% !important;
  height:100% !important;
  min-height:440px;
  object-fit:cover !important;
  display:block;
  filter:none !important;
}
.sp-summary-box{
  background:linear-gradient(180deg,#ffffff 0%,#fbf8ee 100%);
}
.sp-info-table{
  border-radius:30px;
  background:linear-gradient(135deg,#ffffff,#fffaf0);
}
.sp-info-col:nth-child(odd){background:rgba(244,248,238,.55);}

/* Policy single pages - modern banner and content */
.policy-hero{
  min-height:330px;
  position:relative;
  display:flex;
  align-items:center;
  padding:86px 5%;
  color:#fff;
  overflow:hidden;
  background-size:cover;
  background-position:center;
}
.policy-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(20,25,9,.82),rgba(20,25,9,.52),rgba(20,25,9,.18));
}
.policy-hero-content{position:relative;z-index:1;max-width:760px;}
.policy-hero h1{font-size:54px;margin:0 0 10px;line-height:1.05;color:#fff;}
.policy-hero p{font-size:18px;line-height:1.7;margin:0;color:#fff4df;}
.policy-section{
  background:linear-gradient(180deg,#fff 0%,#fbf7eb 100%);
}
.policy-card{
  max-width:1080px;
  margin:0 auto;
  background:#fff;
  border:1px solid rgba(48,52,17,.12);
  border-radius:34px;
  padding:42px;
  box-shadow:0 22px 60px rgba(48,52,17,.11);
}
.policy-list p{
  margin:0 0 14px;
  line-height:1.85;
  color:#59604e;
}




.policy-list p:first-child,
.policy-list p:nth-child(3),
.policy-list p:nth-child(5),
.policy-list p:nth-child(8),
.policy-list p:nth-child(10),
.policy-list p:nth-child(18),
.policy-list p:nth-child(28),
.policy-list p:nth-child(38),
.policy-list p:nth-child(48),
.policy-list p:nth-child(58){
  color:var(--green);
  font-weight:800;
  font-size:22px;
  margin-top:22px;
}
.policy-list p:not(:first-child){border-bottom:1px solid rgba(48,52,17,.07);padding-bottom:10px;}

/* Contact page redesign */
.contact-modern-section{
  background:linear-gradient(180deg,#ffffff 0%,#f8f2df 100%);
}
.contact-modern-grid{
  max-width:1120px;
  margin:0 auto;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:28px;
  align-items:stretch;
}
.contact-info-panel,
.contact-form-panel{
  background:#fff;
  border:1px solid rgba(48,52,17,.12);
  border-radius:32px;
  padding:34px;
  box-shadow:0 20px 56px rgba(48,52,17,.10);
}
.contact-info-panel h2,.contact-form-panel h2{margin:0 0 12px;color:var(--green);font-size:32px;}
.contact-info-panel>p,.contact-form-panel>p{color:var(--muted);line-height:1.7;margin-bottom:22px;}
.contact-item{
  display:flex;
  gap:15px;
  padding:18px 0;
  border-bottom:1px solid rgba(48,52,17,.10);
}
.contact-item:last-child{border-bottom:0;}
.contact-icon{
  flex:0 0 46px;
  width:46px;
  height:46px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:#eef6e7;
  color:var(--green);
  font-size:20px;
}
.contact-item b{display:block;color:var(--green);margin-bottom:4px;}
.contact-item span{color:var(--muted);line-height:1.55;}
.contact-form-panel form{display:grid;gap:14px;}
.contact-form-panel input,.contact-form-panel textarea{
  width:100%;
  border:1px solid rgba(48,52,17,.16);
  border-radius:16px;
  padding:15px 16px;
  font:inherit;
  background:#fffdf7;
}
.contact-form-panel textarea{min-height:135px;resize:vertical;}
.contact-form-panel button{justify-self:start;}
@media(max-width:900px){
  .vision-mission-grid,.contact-modern-grid{grid-template-columns:1fr;}
  .policy-hero h1{font-size:40px;}
  .policy-card{padding:28px 22px;border-radius:26px;}
}
@media(max-width:560px){
  .dropmenu{top:100% !important;}
  .vision-mission-section{padding:58px 4%;}
  .vision-mission-head h2{font-size:32px;}
  .sp-image-box img{min-height:310px;}
  .contact-info-panel,.contact-form-panel{padding:24px 20px;border-radius:24px;}
}


/* Vision & Mission glassmorphism banner */
.vm-glass-banner {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 84px 5%;
}
.vm-glass-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}
.vm-glass-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15,61,46,.72), rgba(15,61,46,.38), rgba(0,0,0,.34)),
    radial-gradient(circle at 20% 30%, rgba(214,176,87,.26), transparent 42%);
  z-index: 1;
}
.vm-glass-content {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}
.vm-glass-card {
  min-height: 310px;
  padding: 38px;
  border-radius: 30px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.34);
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.vm-glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.22), rgba(255,255,255,.05));
  pointer-events: none;
}
.vm-glass-card > * {
  position: relative;
  z-index: 1;
}
.vm-glass-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.28);
  font-size: 30px;
  margin-bottom: 20px;
}
.vm-glass-card .eyebrow {
  background: rgba(255,255,255,.20);
  border: 1px solid rgba(255,255,255,.24);
  color: #fff8df;
}
.vm-glass-card h2 {
  color: #fff;
  font-size: 36px;
  line-height: 1.12;
  margin: 18px 0 14px;
}
.vm-glass-card p {
  color: rgba(255,255,255,.90);
  font-size: 17px;
  line-height: 1.75;
  margin: 0;
}

/* Contact page image banner */
.contact-page-hero {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 76px 5%;
  color: #fff;
}
.contact-page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.contact-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,61,46,.82), rgba(15,61,46,.42), rgba(0,0,0,.35));
  z-index: 1;
}
.contact-page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.contact-page-hero h1 {
  color: #fffdf5;
  font-size: 54px;
  line-height: 1.08;
  margin: 16px 0 10px;
}
.contact-page-hero p {
  color: #f8f1df;
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 900px) {
  .vm-glass-banner { min-height: auto; padding: 68px 5%; }
  .vm-glass-content { grid-template-columns: 1fr; }
  .vm-glass-card { min-height: auto; padding: 30px; }
  .contact-page-hero { min-height: 285px; padding: 64px 5%; }
  .contact-page-hero h1 { font-size: 40px; }
}
@media (max-width: 560px) {
  .vm-glass-banner { padding: 54px 5%; }
  .vm-glass-card { border-radius: 24px; padding: 26px; }
  .vm-glass-card h2 { font-size: 29px; }
  .contact-page-hero { min-height: 240px; }
  .contact-page-hero h1 { font-size: 33px; }
}

/* Cart quantity controls */
.cart-item-info {
  flex: 1;
}
.qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0;
  background: #f7f1df;
  padding: 5px 8px;
  border-radius: 999px;
}
.qty-controls button {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 0;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  line-height: 1;
}
.qty-controls span {
  min-width: 18px;
  text-align: center;
  font-weight: 800;
  color: var(--green);
}
.cart-item .remove-btn {
  display: block;
  padding: 0;
  margin-top: 3px;
  cursor: pointer;
}

/* === User login, policy, contact and checkout final update === */
.nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
}
.user-icon-btn{
  width:46px;
  height:46px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#aa5a31;
  color:white;
  border:1px solid rgba(48,52,17,.18);
  box-shadow:0 10px 24px rgba(48,52,17,.08);
  font-size:18px;
  transition:.25s ease;
}
.user-icon-btn:hover{
  background:var(--terracotta);
  color:#fff;
  transform:translateY(-2px);
}
.auth-section{
  min-height:calc(100vh - 90px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:80px 5%;
  background:
    radial-gradient(circle at 15% 20%, rgba(214,176,87,.26), transparent 32%),
    radial-gradient(circle at 85% 80%, rgba(231,244,218,.75), transparent 38%),
    linear-gradient(135deg,#fffdf7,#ffffff 55%,#f8fff2);
}
.auth-card{
  width:min(1040px,100%);
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(48,52,17,.12);
  border-radius:36px;
  overflow:hidden;
  box-shadow:0 28px 80px rgba(48,52,17,.14);
}
.auth-brand{
  padding:48px;
  background:linear-gradient(135deg,rgba(48,52,17,.95),rgba(106,103,70,.88));
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.auth-brand img{width:190px;background:#fffdf7;border-radius:22px;padding:10px;margin-bottom:28px;}
.auth-brand span{font-weight:800;color:#f4e3b8;text-transform:uppercase;letter-spacing:.12em;font-size:13px;}
.auth-brand h1{font-size:42px;line-height:1.08;margin:14px 0;}
.auth-brand p{line-height:1.75;color:#f8f1df;margin:0;}
.auth-forms{padding:48px;display:flex;align-items:center;}
.auth-form{display:none;width:100%;}
.auth-form.active{display:block;}
.auth-form h2{font-size:34px;color:var(--green);margin:0 0 20px;}
.auth-form input{margin-bottom:14px;}
.forgot-link{display:inline-block;color:#9b5a27;font-weight:800;margin:0 0 20px;}
.switch-text{margin:20px 0 0;color:var(--muted);}
.switch-text a{color:var(--green);font-weight:900;}

.policy-section{padding:64px 5% !important;}
.policy-card{
  max-width:980px !important;
  padding:36px 38px !important;
  border-radius:28px !important;
}
.policy-list p{
  border-bottom:0 !important;
  padding-bottom:0 !important;
  margin:0 0 15px !important;
  font-size:16px !important;
  line-height:1.82 !important;
  color:#59604e !important;
  font-weight:400 !important;
}
.policy-list p:first-child{
  font-size:30px !important;
  color:var(--green) !important;
  font-weight:900 !important;
  margin-bottom:20px !important;
}
.policy-list p:nth-child(3),
.policy-list p:nth-child(5),
.policy-list p:nth-child(8),
.policy-list p:nth-child(10),
.policy-list p:nth-child(18),
.policy-list p:nth-child(28),
.policy-list p:nth-child(38),
.policy-list p:nth-child(48),
.policy-list p:nth-child(58){
  font-size:18px !important;
  color:var(--green) !important;
  font-weight:800 !important;
  margin-top:22px !important;
}

.contact-modern-section{
  background:
    radial-gradient(circle at 12% 16%, rgba(214,176,87,.18), transparent 34%),
    radial-gradient(circle at 88% 84%, rgba(231,244,218,.68), transparent 40%),
    #fffdf7 !important;
}
.contact-modern-grid{grid-template-columns:1fr 1fr;gap:34px;}
.contact-info-panel{
  background:linear-gradient(135deg,#ffffff,#fbf8ed);
  position:relative;
  overflow:hidden;
}
.contact-info-panel::after{
  content:"";
  position:absolute;
  width:210px;height:210px;border-radius:50%;
  right:-80px;bottom:-80px;
  background:rgba(214,176,87,.16);
}
.contact-form-panel{
  background:rgba(255,255,255,.95);
}
.contact-item{background:#fffdf7;border:1px solid rgba(48,52,17,.08);border-radius:20px;padding:16px;margin-bottom:14px;}
.contact-form-panel input,.contact-form-panel textarea{margin:0;}
.contact-form-panel button{margin-top:4px;}

.checkout-hero{
  padding:90px 5%;
  text-align:center;
  color:#fff;
  background:
    linear-gradient(90deg,rgba(20,25,9,.86),rgba(48,52,17,.62)),
    url('images/policies-banner.jpg') center/cover no-repeat;
}
.checkout-hero h1{font-size:56px;line-height:1.05;margin:16px 0 12px;color:#fff;}
.checkout-hero p{max-width:720px;margin:0 auto;color:#fff4df;line-height:1.75;font-size:18px;}
.checkout-modern-section{
  background:
    radial-gradient(circle at 16% 18%, rgba(214,176,87,.20), transparent 32%),
    radial-gradient(circle at 84% 80%, rgba(231,244,218,.70), transparent 40%),
    #fffdf7;
}
.checkout-modern-grid{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:34px;
  align-items:stretch;
}
.checkout-summary-card,
.checkout-form-card{
  background:rgba(255,255,255,.95);
  border:1px solid rgba(48,52,17,.12);
  border-radius:34px;
  padding:34px;
  box-shadow:0 24px 70px rgba(48,52,17,.11);
}
.checkout-summary-card{
  height:100%;
  max-height:620px;
  display:flex;
  flex-direction:column;
  background:linear-gradient(180deg,#ffffff,#fbf8ee);
}
.checkout-card-head,
.checkout-total-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}
.checkout-card-head span{font-size:28px;font-weight:900;color:var(--green);}
.checkout-card-head strong{min-width:38px;height:38px;border-radius:50%;display:grid;place-items:center;background:var(--green);color:#fff;}
.checkout-items-scroll{
  flex:1;
  overflow-y:auto;
  padding-right:8px;
  margin:24px 0;
  min-height:250px;
}
.checkout-items-scroll .cart-item{background:#fffdf7;border:1px solid rgba(48,52,17,.08);border-radius:18px;padding:13px;margin-bottom:12px;}
.checkout-total-row{border-top:1px solid rgba(48,52,17,.12);padding-top:20px;}
.checkout-total-row span{font-weight:800;color:var(--muted);}
.checkout-total-row strong{font-size:28px;color:#9b5a27;}
.checkout-form-card h2{font-size:38px;color:var(--green);margin:14px 0 10px;}
.checkout-form-card p{color:var(--muted);line-height:1.75;margin:0 0 22px;}
.checkout-fields-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
.checkout-form-card input,.checkout-form-card textarea{margin:0 0 14px;}
.checkout-form-card button{margin-top:8px;}

@media(max-width:900px){
  .nav-actions{display:none;}
  .auth-card,.checkout-modern-grid,.contact-modern-grid{grid-template-columns:1fr;}
  .auth-brand,.auth-forms{padding:32px;}
  .checkout-summary-card{max-height:520px;}
  .checkout-hero h1{font-size:40px;}
}
@media(max-width:560px){
  .auth-section{padding:52px 4%;}
  .auth-card{border-radius:26px;}
  .auth-brand,.auth-forms{padding:26px 20px;}
  .auth-brand h1,.auth-form h2{font-size:30px;}
  .policy-card,.checkout-summary-card,.checkout-form-card{padding:24px 20px !important;border-radius:24px !important;}
  .checkout-fields-grid{grid-template-columns:1fr;gap:0;}
  .checkout-hero{padding:66px 4%;}
}

/* === Site07 requested cleanup: remove login/profile, refine policies and contact === */
.user-icon-btn,
.auth-section{
  display:none !important;
}
.nav-actions{
  display:flex;
  align-items:center;
  gap:0;
}

/* Policies dropdown should sit clearly below the navbar without touching it */
.navbar{z-index:999;}
.dropdown{position:relative;}
.dropmenu{
  top:calc(100% + 16px) !important;
  z-index:1000 !important;
  border-radius:16px !important;
  padding:12px !important;
  box-shadow:0 22px 55px rgba(48,52,17,.18) !important;
}
.dropmenu::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-18px;
  height:18px;
}

/* Policy page banner text exactly centered */
.policy-hero{
  min-height:340px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  padding:80px 5% !important;
  text-align:center !important;
  background-position:center !important;
}
.policy-hero-content{
  max-width:820px !important;
  margin:0 auto !important;
  text-align:center !important;
}
.policy-hero h1{
  font-size:48px !important;
  line-height:1.12 !important;
  margin:12px 0 10px !important;
}
.policy-hero p{
  max-width:680px !important;
  margin:0 auto !important;
}

/* Clean paragraph-style policy layout */
.policy-section{
  padding:70px 5% !important;
  background:linear-gradient(180deg,#fffdf7,#f7f2df) !important;
}
.policy-card{
  max-width:1020px !important;
  margin:0 auto !important;
  padding:46px 50px !important;
  border-radius:30px !important;
  background:rgba(255,255,255,.96) !important;
  border:1px solid rgba(48,52,17,.10) !important;
  box-shadow:0 24px 70px rgba(48,52,17,.10) !important;
}
.policy-list p{
  font-size:15.8px !important;
  line-height:1.9 !important;
  color:#555b4d !important;
  margin:0 0 14px !important;
  padding:0 !important;
  border:0 !important;
  font-weight:400 !important;
}
.policy-list p:first-child{
  font-size:28px !important;
  line-height:1.25 !important;
  color:var(--green) !important;
  font-weight:900 !important;
  margin-bottom:24px !important;
  padding-bottom:16px !important;
  border-bottom:1px solid rgba(48,52,17,.12) !important;
}
.policy-list p:nth-child(3),
.policy-list p:nth-child(5),
.policy-list p:nth-child(8),
.policy-list p:nth-child(10),
.policy-list p:nth-child(18),
.policy-list p:nth-child(28),
.policy-list p:nth-child(38),
.policy-list p:nth-child(48),
.policy-list p:nth-child(58){
  font-size:17px !important;
  line-height:1.45 !important;
  color:var(--green) !important;
  font-weight:800 !important;
  margin:28px 0 10px !important;
}

/* Contact page: one box with internal partition */
.contact-modern-section{
  padding:76px 5% !important;
  background:radial-gradient(circle at 12% 14%,rgba(222,206,183,.42),transparent 32%),radial-gradient(circle at 88% 82%,rgba(231,244,218,.70),transparent 38%),#fffdf7 !important;
}
.contact-single-box{
  max-width:1120px;
  margin:0 auto;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  background:rgba(255,255,255,.96);
  border:1px solid rgba(48,52,17,.12);
  border-radius:34px;
  overflow:hidden;
  box-shadow:0 26px 75px rgba(48,52,17,.12);
}
.contact-single-box .contact-info-panel,
.contact-single-box .contact-form-panel{
  box-shadow:none !important;
  border:0 !important;
  border-radius:0 !important;
  background:transparent !important;
  padding:44px !important;
}
.contact-single-box .contact-info-panel{
  background:linear-gradient(145deg,#fffdf7,#f4ecd5) !important;
  border-right:1px solid rgba(48,52,17,.13) !important;
}
.contact-single-box .contact-form-panel{
  background:#fff !important;
}
.contact-single-box .contact-item{
  background:rgba(255,255,255,.82) !important;
  border:1px solid rgba(48,52,17,.08) !important;
}
.contact-single-box form{
  display:grid;
  gap:14px;
}
.contact-single-box input,
.contact-single-box textarea{
  width:100%;
  margin:0 !important;
}

@media(max-width:900px){
  .dropmenu{top:calc(100% + 10px) !important;}
  .contact-single-box{grid-template-columns:1fr;border-radius:26px;}
  .contact-single-box .contact-info-panel{border-right:0 !important;border-bottom:1px solid rgba(48,52,17,.13) !important;}
  .contact-single-box .contact-info-panel,
  .contact-single-box .contact-form-panel{padding:28px 22px !important;}
  .policy-hero{min-height:260px !important;padding:62px 5% !important;}
  .policy-hero h1{font-size:38px !important;}
  .policy-card{padding:30px 22px !important;border-radius:24px !important;}
}

/* === Site08 cart drawer overlap fix ===
   Keep the cart drawer above the sticky navbar/dropdowns on every page. */
.cart-panel{
  z-index: 3000 !important;
}
.cart-panel.open{
  z-index: 3000 !important;
}
.cart-panel .close{
  position: relative;
  z-index: 3001;
}
body:has(.cart-panel.open) .navbar{
  z-index: 999 !important;
}

/* Final policy text weight correction: keep policy content plain, no bold paragraphs/questions */
.policy-card.policy-list h2{
  font-weight:500 !important;
  display: flex;
  justify-content: center;
}
.policy-card.policy-list p,
.policy-card.policy-list p:first-child,
.policy-card.policy-list p:nth-child(3),
.policy-card.policy-list p:nth-child(5),
.policy-card.policy-list p:nth-child(8),
.policy-card.policy-list p:nth-child(10),
.policy-card.policy-list p:nth-child(18),
.policy-card.policy-list p:nth-child(28),
.policy-card.policy-list p:nth-child(38),
.policy-card.policy-list p:nth-child(48),
.policy-card.policy-list p:nth-child(58){
  font-weight:400 !important;
  color:#3f4323 !important;
}
.policy-card.policy-list strong,
.policy-card.policy-list b{
  font-weight:400 !important;
}

/* Final policy font-size uniform fix: keep all policy page paragraph text the same small size */
.policy-card.policy-list p,
.policy-card.policy-list p:first-child,
.policy-card.policy-list p:nth-child(3),
.policy-card.policy-list p:nth-child(5),
.policy-card.policy-list p:nth-child(8),
.policy-card.policy-list p:nth-child(10),
.policy-card.policy-list p:nth-child(18),
.policy-card.policy-list p:nth-child(28),
.policy-card.policy-list p:nth-child(38),
.policy-card.policy-list p:nth-child(48),
.policy-card.policy-list p:nth-child(58){
  font-size:15px !important;
  line-height:1.85 !important;
  font-weight:400 !important;
  color:#3f4323 !important;
  margin:0 0 13px !important;
}
.policy-card.policy-list h2{
  font-size:24px !important;
  line-height:1.3 !important;
  font-weight:500 !important;
}
@media(max-width:768px){
  .policy-card.policy-list p,
  .policy-card.policy-list p:first-child,
  .policy-card.policy-list p:nth-child(3),
  .policy-card.policy-list p:nth-child(5),
  .policy-card.policy-list p:nth-child(8),
  .policy-card.policy-list p:nth-child(10),
  .policy-card.policy-list p:nth-child(18),
  .policy-card.policy-list p:nth-child(28),
  .policy-card.policy-list p:nth-child(38),
  .policy-card.policy-list p:nth-child(48),
  .policy-card.policy-list p:nth-child(58){
    font-size:14.5px !important;
    line-height:1.8 !important;
  }
}

/* === Responsive-only patch: keeps existing desktop content/layout untouched === */
html, body {
  width: 100%;
  overflow-x: hidden;
}

img, video, iframe {
  max-width: 100%;
}

@media (max-width: 1180px) {
  .navlinks {
    gap: 26px;
  }
  .sidhi-logo {
    width: 10.5rem;
  }
  .banner-content h1 {
    font-size: 3.25rem;
  }
  .grid,
  .featured-products-grid,
  .products-grid-enhanced {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .features .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .navbar {
    padding: 12px 5%;
    gap: 12px;
  }
  .sidhi-logo {
    width: 9rem;
  }
  .navbar .nav-actions {
    display: flex !important;
    margin-left: auto;
  }
  .navbar .cart-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 9px 13px;
    font-size: 13px;
    white-space: nowrap;
  }
  .hamb {
    flex: 0 0 auto;
  }
  .mobile-menu.open {
    position: fixed;
    top: 56px !important;
    left: 5%;
    right: 5%;
    z-index: 2500;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    
  }


  .hero {
    min-height: 560px !important;
    padding: 72px 5% !important;
  }
  .hero-content {
    max-width: 620px;
  }
  .hero p,
  .banner-content p,
  .products-page-hero p,
  .contact-page-hero p,
  .policy-hero p {
    font-size: 16px;
  }
  .full-banner-wrap img {
    height: 360px;
  }
  .banner-content {
    right: 6%;
    left: 6%;
    max-width: none;
  }
  .banner-content h1 {
    font-size: 2.7rem;
  }
  .why-choose-split,
  .about-story-wrap,
  .vision-mission-grid,
  .vm-glass-content,
  .contact-single-box,
  .checkout-modern-grid,
  .sp-detail-intro,
  .sp-info-table {
    grid-template-columns: 1fr !important;
  }
  .why-content,
  .about-story-content,
  .about-why-choose .why-content {
    padding: 30px !important;
  }
  .why-points,
  .about-story-highlights {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sp-info-col {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(58,86,38,.12);
    min-height: auto !important;
  }
  .sp-info-col:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  section {
    padding: 56px 4% !important;
  }
  .navbar {
    padding: 10px 4%;
  }
  .sidhi-logo {
    width: 7.6rem;
  }
  .navbar .cart-btn {
    padding: 8px 10px;
    font-size: 12px;
  }
  .hamb {
    padding: 8px 11px;
  }
  .mobile-menu.open {
    top: 66px;
    left: 4%;
    right: 4%;
    border-radius: 16px;
  }
  .hero {
    min-height: 500px !important;
    padding: 58px 4% !important;
    text-align: left;
  }
  .hero h1 {
    font-size: 34px !important;
    line-height: 1.12;
  }
  .hero-actions {
    gap: 10px;
  }
  .hero-actions .btn,
  .banner .btn {
    width: 100%;
    text-align: center;
  }
  .section-head h2,
  .why-content h2,
  .about-story-content h2,
  .vision-mission-head h2,
  .products-section-head h2 {
    font-size: 31px !important;
    line-height: 1.18;
  }
  .grid,
  .featured-products-grid,
  .products-grid-enhanced,
  .features .grid,
  .footer-grid,
  .why-points,
  .about-story-highlights,
  .checkout-fields-grid {
    grid-template-columns: 1fr !important;
  }
  .full-banner-wrap {
    border-radius: 22px;
  }
  .full-banner-wrap img {
    height: 260px !important;
  }
  .banner-content {
    left: 7%;
    right: 7%;
    text-align: center;
  }
  .banner-content h1 {
    font-size: 2rem;
  }
  .why-image img,
  .about-story-section .about-story-image img,
  .about-story-image img {
    height: 280px !important;
    min-height: 280px !important;
    border-radius: 22px;
  }
  .featured-card .product-actions,
  .products-grid-enhanced .product-actions,
  .product-actions,
  .sp-action-row {
    grid-template-columns: 1fr !important;
  }
  .featured-card .btn,
  .products-grid-enhanced .btn,
  .sp-action-row .btn {
    width: 100%;
  }
  .sp-detail-intro {
    margin-top: 36px !important;
    padding: 0 4% !important;
  }
  .sp-image-box img {
    min-height: 280px !important;
  }
  .sp-summary-box h2 {
    font-size: 28px !important;
  }
  .sp-table-section {
    padding: 0 4% !important;
  }
  .policy-hero,
  .products-page-hero,
  .about-page-hero,
  .contact-page-hero,
  .checkout-hero {
    min-height: 230px !important;
    padding: 58px 4% !important;
  }
  .policy-hero h1,
  .products-page-hero h1,
  .about-page-hero h1,
  .contact-page-hero h1,
  .checkout-hero h1 {
    font-size: 31px !important;
  }
  .policy-card,
  .contact-single-box .contact-info-panel,
  .contact-single-box .contact-form-panel,
  .checkout-summary-card,
  .checkout-form-card,
  .vm-glass-card,
  .vm-card {
    padding: 24px 18px !important;
    border-radius: 22px !important;
  }
  .contact-item {
    align-items: flex-start;
  }
  .contact-icon {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }
  .checkout-card-head,
  .checkout-total-row,
  .product-topline {
    align-items: flex-start;
  }
  .cart-panel {
    max-width: 100% !important;
    padding: 24px 18px;
  }
  .cart-item {
    align-items: flex-start;
  }
  .footer {
    padding: 48px 4% 0 !important;
    text-align: center;
  }
  .footer a,
  .social-medias {
    justify-content: center;
  }
  .copyright {
    flex-wrap: wrap;
    line-height: 1.6;
  }
}

@media (max-width: 380px) {
  .sidhi-logo {
    width: 6.8rem;
  }
  .navbar .cart-btn {
    padding: 7px 8px;
    font-size: 11px;
  }
  .hero h1 {
    font-size: 30px !important;
  }
  .banner-content h1 {
    font-size: 1.75rem;
  }
}

/* === Final mobile navigation + overflow corrections === */
*, *::before, *::after { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: hidden !important; }
body { position: relative; }
.navbar { width: 100%; max-width: 100vw; }
img, video, iframe, canvas, svg { max-width: 100%; }
.product-detail-page,
.product-detail-hero,
.sp-detail-intro,
.sp-info-table,
.footer,
.footer-grid,
.full-banner-wrap,
.products-grid-enhanced,
.featured-products-grid,
.grid { max-width: 100%; }
@media (max-width: 900px) {
  .navbar { display: flex; align-items: center; flex-wrap: nowrap; }
  .navbar .logo { flex: 0 1 auto; min-width: 0; }
  .navbar .navlinks { display: none !important; }
  .navbar .nav-actions { display: flex !important; align-items: center; margin-left: auto !important; flex: 0 0 auto; }
  .navbar .cart-btn { display: inline-flex !important; align-items: center; justify-content: center; margin: 0 !important; flex: 0 0 auto; }
  .navbar .hamb { display: inline-flex !important; align-items: center; justify-content: center; flex: 0 0 auto; margin-left: 8px; }
  .product-detail-hero-content,
  .sp-summary-box,
  .sp-image-box,
  .sp-info-table,
  .sp-info-col { min-width: 0; }
}
@media (max-width: 520px) {
  .navbar { padding-left: 4% !important; padding-right: 4% !important; }
  .navbar .sidhi-logo { max-width: 42vw; height: auto; }
  .navbar .cart-btn { min-width: auto; }
  .sp-action-row,
  .product-actions { width: 100%; max-width: 100%; }
}
@media (max-width: 360px) {
  .navbar .cart-btn { font-size: 10.5px !important; padding: 7px 7px !important; }
  .navbar .hamb { margin-left: 5px; padding: 7px 9px !important; }
}

/* === Final horizontal overflow removal patch ===
   Fixes the small right-side mobile scroll/glitch on every page without changing layout. */
html,
body {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
}
@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip !important;
  }
}
body {
  min-width: 0 !important;
}

/* The cart drawer was positioned outside the viewport with right:-420px;
   using transform keeps it visually hidden without increasing page width. */
.cart-panel {
  right: 0 !important;
  width: min(380px, 100vw) !important;
  max-width: 100vw !important;
  transform: translateX(110%) !important;
  transition: transform 0.35s ease !important;
}
.cart-panel.open {
  transform: translateX(0) !important;
}

/* Prevent decorative absolute circles / wide blocks from creating mobile overflow. */
.page,
.site,
main,
header,
footer,
section,
.topbar,
.navbar,
.hero,
.about-page-hero,
.products-page-hero,
.product-detail-hero,
.policy-hero,
.contact-page-hero,
.checkout-hero,
.full-banner-section,
.full-banner-wrap,
.featured-products-section,
.products-section,
.products-showcase,
.vision-mission-section,
.about-story-section,
.about-why-choose,
.product-detail-page,
.sp-detail-intro,
.sp-table-section,
.footer {
  max-width: 100% !important;
  overflow-x: clip;
}

@media (max-width: 768px) {
  html,
  body {
    width: 100vw !important;
    max-width: 100vw !important;
  }
  .featured-products-section::before,
  .featured-products-section::after,
  .products-section::before,
  .products-section::after,
  .vision-mission-section::before,
  .vision-mission-section::after,
  .product-detail-page::before,
  .product-detail-page::after,
  .contact-info-panel::after {
    display: none !important;
  }
  .topbar,
  .navbar,
  .mobile-menu,
  .mobile-menu.open,
  .cart-panel,
  .hero,
  .full-banner-wrap,
  .product-detail-page,
  .sp-detail-intro,
  .sp-table-section,
  .policy-section,
  .contact-section,
  .checkout-section,
  .footer {
    max-width: 100vw !important;
  }
  .mobile-menu.open {
    width: auto !important;
    max-width: calc(100vw - 8%) !important;
  }
  img,
  video,
  iframe,
  canvas,
  svg {
    max-width: 100% !important;
    height: auto;
  }
}

/* === Mobile menu focus overlay + cart count hide === */
#cartCount {
  display: none !important;
}

body.mobile-menu-active::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  pointer-events: none;
}

body.mobile-menu-active .navbar,
body.mobile-menu-active .mobile-menu.open {
  z-index: 1000 !important;
}

@media (max-width: 900px) {
  .mobile-menu.open {
    position: fixed !important;
    left: 5% !important;
    right: 2% !important;
    top: 58px !important;
    z-index: 1001 !important;
    background: rgba(255, 253, 245, 0.96) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(222, 206, 183, 0.55);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28) !important;
  }

  .mobile-menu.open a {
    position: relative;
    padding: 11px 14px;
    border-radius: 12px;
    transition: color 0.25s ease, background 0.25s ease;
  }

  .mobile-menu.open a::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 6px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
  }

  .mobile-menu.open a:hover,
  .mobile-menu.open a:focus {
    color: var(--green);
    background: rgba(222, 206, 183, 0.32);
  }

  .mobile-menu.open a:hover::after,
  .mobile-menu.open a:focus::after {
    transform: scaleX(1);
  }
}


.contact-map {
  width: 100%;
  /* margin-top: 25px; */
  display: flex;
  justify-content: center;
}

.contact-map iframe {
  width: 100%;
  /* max-width: 600px; */
  /* height: 350px; */
  border: 0;
  /* border-radius: 20px; */
  padding: 25px;
}

/* Leadership Team Section */
.leadership-section {
  padding: 80px 20px;
  background: #f3eee0;
}
.leadership-container {
  max-width: 1200px;
  margin: auto;
}
.leadership-heading {
  text-align: center;
  margin-bottom: 40px;
}
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.leader-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: 0.3s;
}
.leader-card:hover {
  transform: translateY(-8px);
}
.leader-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 15px;
}
.leader-card h3 {
  margin: 10px 0 5px;
}
.leader-card span {
  display: block;
  color: #6b8e23;
  font-weight: 600;
  margin-bottom: 12px;
}
.leader-card p {
  line-height: 1.7;
}



@media(max-width:768px){
  .leadership-grid
  {
    grid-template-columns:1fr
  }
}


 .feedback-section {
  padding: 48px 22px 58px;
  background: linear-gradient(rgba(15, 28, 12, 0.54), rgba(15, 28, 12, 0.58)),
    url("./images/vm.jpg") center/cover no-repeat;
}
.feedback-box {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  padding: 28px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.feedback-box .feedback-intro {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 20px;
}
.feedback-box h2 {
  font-size: clamp(26px, 3vw, 38px);
  margin: 8px 0;
  color: #fff;
}
.feedback-box p {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.6;
}
.feedback-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}
.feedback-form input,
.feedback-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgb(246, 246, 246);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  outline: none;
  color: #26351f;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.feedback-form input::placeholder,
.feedback-form textarea::placeholder {
  color: #66735d;
}
.feedback-form textarea {
  grid-column: 1/-1;
  min-height: 105px;
  resize: vertical;
}
.feedback-form .full-row {
  grid-column: 1/-1;
}
.feedback-note {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.84);
  text-align: center;
}
@media (max-width: 720px) {
  .feedback-section {
    padding: 38px 16px 46px;
  }
  .feedback-box {
    padding: 22px 16px;
    border-radius: 22px;
  }
  .feedback-form {
    grid-template-columns: 1fr;
  }
  .feedback-form textarea {
    min-height: 95px;
  }
}



.feedback{
  background-color: #e7f2d5;
  color: #0f3d2e;
  
}

.feedback:hover{
  background-color: #d7e2df;
}


.testimonials-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: radial-gradient(
      circle at 12% 18%,
      rgba(203, 168, 102, 0.2),
      transparent 28%
    ),
    radial-gradient(circle at 88% 10%, rgba(15, 61, 46, 0.1), transparent 25%),
    linear-gradient(180deg, #fffdf7 0%, #f8f0d8 100%);
}
.testimonials-section::before,
.testimonials-section::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(15, 61, 46, 0.045);
  pointer-events: none;
}
.testimonials-section::before {
  top: 35px;
  left: -130px;
}
.testimonials-section::after {
  right: -120px;
  bottom: 80px;
}
.testimonials-section .section-head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 42px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.testimonials-section .section-head .eyebrow {
  margin: 0 auto 6px;
}
.testimonials-section h2 {
  font-size: clamp(30px, 3.4vw, 46px);
  margin: 0;
  color: #203219;
  text-align: center;
  width: 100%;
}
.testimonial-slider {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  overflow: hidden;
  padding: 8px 0 18px;
}
.testimonial-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: testimonialMove 24s linear infinite;
  will-change: transform;
}
.testimonial-slider:hover .testimonial-track {
  animation-play-state: paused;
}
.testimonial-card {
  width: 360px;
  min-height: 245px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(87, 111, 64, 0.14);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(52, 72, 43, 0.1);
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
}
.testimonial-card:before {
  content: "“";
  position: absolute;
  right: 22px;
  top: -14px;
  font-size: 92px;
  color: rgba(120, 146, 85, 0.16);
  font-family: serif;
}
.testimonial-stars {
  color: #d69a22;
  letter-spacing: 2px;
  font-size: 15px;
  margin-bottom: 16px;
}
.testimonial-card p {
  color: #596653;
  line-height: 1.75;
  margin: 0 0 22px;
}
.testimonial-author {
  border-top: 1px solid rgba(87, 111, 64, 0.12);
  padding-top: 16px;
}
.testimonial-author b {
  display: block;
  color: #24351e;
  font-size: 17px;
}
.testimonial-author span {
  display: block;
  color: #7a866f;
  font-size: 14px;
  margin-top: 4px;
}
@keyframes testimonialMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 11px));
  }
}
@media (max-width: 620px) {
  .testimonials-section {
    padding: 58px 0;
  }
  .testimonial-slider {
    width: calc(100% - 28px);
  }
  .testimonial-card {
    width: 300px;
    min-height: 250px;
    padding: 24px;
    border-radius: 22px;
  }
  .testimonial-track {
    gap: 16px;
    animation-duration: 22s;
  }
}
