: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;
  margin-bottom: 6px;
}
.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.1);
  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.2);
}
.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.3) 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.1);
  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.2),
      transparent 28%
    ),
    radial-gradient(circle at 88% 10%, rgba(15, 61, 46, 0.1), 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.1);
  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.3);
}
.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.2);
}
@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;
}

/* Keep the complete copyright credit on one line. */
.copyright {
  white-space: nowrap;
}

.powered-by-line {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
}
/* Keep the complete copyright sentence on one visual line. */
.copyright {
  display: block;
  white-space: nowrap;
}
.copyright-line {
  display: inline-block;
  white-space: nowrap;
}
.copyright .copyright-line a {
  display: inline !important;
  margin: 0 !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.webp") center/cover no-repeat;
}
.about-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 61, 46, 0.78),
    rgba(0, 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: 0.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, 0.78);
  border: 1px solid rgba(15, 61, 46, 0.1);
  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.1);
  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, 0.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.1);
}
.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 0.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.2) 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, 0.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.1) 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.2) !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, 0.9);
  border: 1px solid rgba(214, 176, 87, 0.22);
  box-shadow: 0 24px 60px rgba(15, 61, 46, 0.11);
  transition: transform 0.35s ease, box-shadow 0.35s ease,
    border-color 0.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.webp") center/cover no-repeat;
}
.products-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 61, 46, 0.8),
    rgba(0, 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, 0.92);
  box-shadow: 0 16px 36px rgba(15, 61, 46, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease,
    border-color 0.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, 0.85) 0%,
      rgba(255, 255, 255, 0.35) 36%,
      rgba(255, 255, 255, 0) 62%
    ),
    linear-gradient(135deg, #fbfff6, #f4e6bd);
  transition: transform 0.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, 0.82),
    rgba(48, 52, 17, 0.55),
    rgba(48, 52, 17, 0.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: 0.8px;
  text-transform: uppercase;
}
.product-detail-hero .eyebrow {
  background: rgba(222, 206, 183, 0.22);
  padding: 9px 16px;
  color: #fff;
}
.product-detail-hero h1 {
  font-size: clamp(42px, 6vw, 54px);
  line-height: 0.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: 0.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, 0.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, 0.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, 0.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, 0.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, 0.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, 0.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, 0.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, 0.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, 0.12);
  overflow: hidden;
}
.sp-image-box:before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(109, 138, 78, 0.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, 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: 0.08em;
  text-transform: uppercase;
}
.sp-summary-box {
  position: relative;
  background: #fff;
  border: 1px solid rgba(58, 86, 38, 0.14);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 18px 50px rgba(33, 54, 23, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 440px;
}
.product-detail-wishlist {
  top: 28px;
  right: 28px;
}
.sp-category,
.sp-section-label {
  display: inline-block;
  color: #5e7e3f;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.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, 0.24);
}
.sp-meta-row small {
  display: block;
  color: #6d7666;
  margin-bottom: 5px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.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, 0.15);
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 55px rgba(32, 56, 22, 0.09);
}
.sp-info-col {
  padding: 30px 28px;
  border-right: 1px solid rgba(58, 86, 38, 0.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, 0.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, 0.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, 0.88);
  border: 1px solid rgba(48, 52, 17, 0.12);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 18px 48px rgba(48, 52, 17, 0.1);
}
.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, 0.55);
}


.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, 0.82),
    rgba(20, 25, 9, 0.52),
    rgba(20, 25, 9, 0.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, 0.12);
  border-radius: 34px;
  padding: 42px;
  box-shadow: 0 22px 60px rgba(48, 52, 17, 0.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, 0.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: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}
.contact-info-panel,
.contact-form-panel {
  background: #fff;
  border: 1px solid rgba(48, 52, 17, 0.12);
  border-radius: 32px;
  padding: 34px;
  box-shadow: 0 20px 56px rgba(48, 52, 17, 0.1);
}
.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, 0.1);
}
.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, 0.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, 0.72),
      rgba(15, 61, 46, 0.38),
      rgba(0, 0, 0, 0.34)
    ),
    radial-gradient(
      circle at 20% 30%,
      rgba(214, 176, 87, 0.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, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 24px 70px rgba(0, 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, 0.22),
    rgba(255, 255, 255, 0.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, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 30px;
  margin-bottom: 20px;
}
.vm-glass-card .eyebrow {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.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, 0.9);
  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, 0.82),
    rgba(15, 61, 46, 0.42),
    rgba(0, 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;
}
.cart-item-info > b {
  display: block;
  color: var(--green);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.3;
}
.cart-item-info p {
  margin: 5px 0 0;
  color: var(--muted);
}
.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, 0.18);
  box-shadow: 0 10px 24px rgba(48, 52, 17, 0.08);
  font-size: 18px;
  transition: 0.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, 0.26),
      transparent 32%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(231, 244, 218, 0.75),
      transparent 38%
    ),
    linear-gradient(135deg, #fffdf7, #ffffff 55%, #f8fff2);
}
.auth-card {
  width: min(1040px, 100%);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(48, 52, 17, 0.12);
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(48, 52, 17, 0.14);
}
.auth-brand {
  padding: 48px;
  background: linear-gradient(
    135deg,
    rgba(48, 52, 17, 0.95),
    rgba(106, 103, 70, 0.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: 0.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, 0.18),
      transparent 34%
    ),
    radial-gradient(
      circle at 88% 84%,
      rgba(231, 244, 218, 0.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, 0.16);
}
.contact-form-panel {
  background: rgba(255, 255, 255, 0.95);
}
.contact-item {
  background: #fffdf7;
  border: 1px solid rgba(48, 52, 17, 0.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, 0.86),
      rgba(48, 52, 17, 0.62)
    ),
    url("images/policies-banner.webp") 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-warning {
  width: min(1120px, calc(100% - 10%));
  margin: 22px auto 0;
  padding: 15px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #7f3326;
  background: #fff0e9;
  border: 1px solid #e7b5a6;
  border-radius: 12px;
}
.checkout-warning > i { margin-top: 2px; color: #b4543d; }
.checkout-warning strong { display: block; font-size: 13px; }
.checkout-warning p { margin: 4px 0 0; font-size: 12px; line-height: 1.5; }
.contact-notification {
  width: min(760px, calc(100% - 10%));
  margin: 18px auto 0;
  padding: 13px 18px;
  border-radius: 12px;
  text-align: center;
  font-weight: 800;
  animation: notification-fade 5s ease forwards;
}
.contact-notification.success { color: #315c35; background: #e9f5df; border: 1px solid #b7d69e; }
.contact-notification.error { color: #8b372c; background: #fff0e9; border: 1px solid #e7b5a6; }
@keyframes notification-fade { 0%, 72% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(-8px); pointer-events: none; } }
.checkout-modern-section {
  background: radial-gradient(
      circle at 16% 18%,
      rgba(214, 176, 87, 0.2),
      transparent 32%
    ),
    radial-gradient(
      circle at 84% 80%,
      rgba(231, 244, 218, 0.7),
      transparent 40%
    ),
    #fffdf7;
}
.checkout-modern-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: stretch;
}
.checkout-left-stack {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.checkout-summary-card,
.checkout-form-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(48, 52, 17, 0.12);
  border-radius: 34px;
  padding: 34px;
  box-shadow: 0 24px 70px rgba(48, 52, 17, 0.11);
}
.checkout-summary-card {
  height: auto;
  max-height: none;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #ffffff, #fbf8ee);
}
.checkout-payment-method {
  margin-top: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(48, 52, 17, 0.12);
  border-radius: 24px;
  box-shadow: 0 14px 36px rgba(48, 52, 17, 0.08);
}
.checkout-payment-method h3 { margin: 0 0 14px; color: var(--green); font-size: 20px; }
.checkout-payment-options { display: grid; gap: 10px; }
.checkout-payment-option { position: relative; display: block; cursor: pointer; }
.checkout-payment-option > input { position: absolute; opacity: 0; pointer-events: none; }
.checkout-payment-box { min-height: 58px; box-sizing: border-box; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 10px 14px; border: 1px solid #dfe5d4; border-radius: 14px; background: #fffdf7; transition: border-color .2s, box-shadow .2s, background .2s; }
.checkout-payment-option > input:checked + .checkout-payment-box { border-color: var(--green); background: #f3f7e9; box-shadow: 0 0 0 2px rgba(58, 105, 66, .12); }
.checkout-payment-left { min-width: 0; display: flex; align-items: center; gap: 12px; color: var(--green); font-weight: 800; }
.checkout-payment-icon { flex: 0 0 48px; width: 48px; height: 36px; object-fit: contain; border-radius: 6px; background: #eef2e4; display: block; }
.checkout-payment-text { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.checkout-payment-check { width: 18px; height: 18px; border: 2px solid #b7bea7; border-radius: 50%; }
.checkout-payment-option > input:checked + .checkout-payment-box .checkout-payment-check { border: 5px solid var(--green); }
.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, 0.08);
  border-radius: 18px;
  padding: 13px;
  margin-bottom: 12px;
}
.checkout-item {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 13px;
  align-items: center;
  background: #fffdf7;
  border: 1px solid rgba(48, 52, 17, 0.08);
  border-radius: 18px;
  padding: 13px 13px 38px;
  margin-bottom: 12px;
}
.checkout-item > img { width: 72px; height: 72px; object-fit: contain; border-radius: 12px; background: #f0ecdf; }
.checkout-item-copy { min-width: 0; display: grid; gap: 4px; }
.checkout-item-copy strong { color: var(--green); font-size: 14px; }
.checkout-item-copy span { color: var(--muted); font-size: 11px; }
.checkout-item-copy b { color: #9b5a27; font-size: 14px; }
.checkout-item-controls { display: flex; align-items: center; gap: 8px; padding: 4px; border-radius: 999px; background: #f0f1e5; }
.checkout-item-controls button { width: 28px; height: 28px; display: grid; place-items: center; border: 0; border-radius: 50%; background: var(--green); color: #fff; font-size: 18px; line-height: 1; cursor: pointer; }
.checkout-item-controls button:last-child { background: #d7dcc5; color: var(--green); }
.checkout-item-controls span { min-width: 14px; text-align: center; font-weight: 800; color: var(--green); }
.checkout-item-remove { position: absolute; left: 98px; bottom: 10px; border: 0; padding: 0; background: transparent; color: var(--terracotta); font: inherit; font-size: 11px; font-weight: 800; cursor: pointer; }
.checkout-rate-chart { margin-top: 20px; padding: 16px; border: 1px solid #dfe5d4; border-radius: 16px; background: #f8faf2; }
.checkout-rate-chart h3 { margin: 0 0 10px; color: var(--green); font-size: 14px; }
.checkout-rate-chart table { width: 100%; border-collapse: collapse; color: var(--muted); font-size: 11px; }
.checkout-rate-chart th, .checkout-rate-chart td { padding: 7px 4px; text-align: left; border-top: 1px solid #e4e8dc; }
.checkout-rate-chart th { color: #59623c; font-weight: 800; }
.checkout-total-row {
  border-top: 1px solid rgba(48, 52, 17, 0.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-item { grid-template-columns: 58px minmax(0, 1fr); }
  .checkout-item > img { width: 58px; height: 58px; }
  .checkout-item-controls { grid-column: 2; justify-self: start; }
  .checkout-item-remove { left: 84px; }
  .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, 0.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, 0.96) !important;
  border: 1px solid rgba(48, 52, 17, 0.1) !important;
  box-shadow: 0 24px 70px rgba(48, 52, 17, 0.1) !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, 0.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, 0.42),
      transparent 32%
    ),
    radial-gradient(
      circle at 88% 82%,
      rgba(231, 244, 218, 0.7),
      transparent 38%
    ),
    #fffdf7 !important;
}
.contact-single-box {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(48, 52, 17, 0.12);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 26px 75px rgba(48, 52, 17, 0.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, 0.13) !important;
}
.contact-single-box .contact-form-panel {
  background: #fff !important;
}
.contact-single-box .contact-item {
  background: rgba(255, 255, 255, 0.82) !important;
  border: 1px solid rgba(48, 52, 17, 0.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, 0.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;
  }
}


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, 0.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: nowrap;
    white-space: nowrap;
    line-height: 1.6;
    padding-left: 4px;
    padding-right: 4px;
    font-size: clamp(10px, 3vw, 14px);
  }
}

@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;
  }
}

/* Icon-only navbar cart button */
.navbar .cart-btn {
  min-width: 44px;
  padding-inline: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* === 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%;
  height: 460px;
  min-height: 460px;
  border: 0;
  border-radius: 20px;
  padding: 0;
}

/* Leadership Team Section */
.leadership-section {
  padding: 80px 20px;
  background: #f3eee0;
}
.leadership-container {
  max-width: 1300px;
  margin: auto;
}
.leadership-heading {
  text-align: center;
  margin-bottom: 40px;
}
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 25rem);
  gap: 25px;
  justify-content: center;
}
.leadership-grid .leader-card:nth-child(4) {
  grid-column: 1 / -1;
  display: flex;
  align-items: stretch;
  gap: 32px;
  text-align: left;
  min-height: 260px;
  padding: 28px 32px;
}
.leadership-grid .leader-card:nth-child(4) img {
  width: 320px;
  height: 230px;
  flex: 0 0 320px;
  margin-bottom: 0;
}
.leadership-grid .leader-card:nth-child(4) h3 {
  margin-top: 0;
  margin-bottom: 6px;
}
.leadership-grid .leader-card:nth-child(4) .leader-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 850px;
}
.leadership-grid .leader-card:nth-child(4) span {
  margin-bottom: 14px;
}
.leadership-grid .leader-card:nth-child(4) p {
  margin-bottom: 0;
  line-height: 1.75;
}
.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: 1200px) {
  .leadership-grid {
    grid-template-columns: repeat(2, minmax(0, 25rem));
  }
  .leadership-grid .leader-card:nth-child(4) {
    grid-column: auto;
    display: block;
    text-align: center;
    min-height: auto;
    padding: 25px;
  }
  .leadership-grid .leader-card:nth-child(4) img {
    width: 100%;
    height: 320px;
    flex: initial;
    margin-bottom: 15px;
  }
  .leadership-grid .leader-card:nth-child(4) .leader-content {
    display: block;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .leadership-grid {
    grid-template-columns: 1fr;
  }
  .leadership-grid .leader-card:nth-child(4) {
    grid-column: auto;
    display: block;
    text-align: center;
    min-height: auto;
    padding: 25px;
  }
  .leadership-grid .leader-card:nth-child(4) img {
    width: 100%;
    height: 320px;
    flex: initial;
    margin-bottom: 15px;
  }
  .leadership-grid .leader-card:nth-child(4) .leader-content {
    display: block;
    max-width: none;
  }
}

.feedback-section {
  padding: 48px 22px 58px;
  background: linear-gradient(rgba(15, 28, 12, 0.54), rgba(15, 28, 12, 0.58)),
    url("./images/vm.webp") 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;
  }
}

.navlinks > a,
.mobile-menu > a {
  position: relative;
  transition: color 0.28s ease, transform 0.28s ease;
}

.navlinks > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 1px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--terracotta));
  transform: translateX(-50%);
  box-shadow: 0 5px 14px rgba(113, 60, 34, 0.18);
  transition: width 0.28s ease;
}

.navlinks > a:hover::after,
.navlinks > a.active::after {
  width: 78%;
}

.navlinks > a.active {
  color: var(--terracotta);
  font-weight: 800;
}

.mobile-menu > a.active {
  color: var(--terracotta);
  font-weight: 800;
  background: rgba(113, 60, 34, 0.08);
  border-left: 4px solid var(--terracotta);
  padding-left: 14px;
  border-radius: 12px;
}

.topbar a {
  color: inherit;
  text-decoration: none;
}

.topbar a:hover {
  text-decoration: underline;
}

.checkout-btns1 {
  display: flex;
  gap: 10px;
}

/* ---------------- */
.whatsapp-checkout-btn {
  /* width: 100%; */
  margin-top: 16px;
  border: none;
  border-radius: 999px;
  padding: 10px 15px;
  background: #25d366;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  /* box-shadow: 0 16px 30px rgba(37, 211, 102, .24); */
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.whatsapp-checkout-btn i {
  font-size: 22px;
}

@media (max-width: 620px) {
  .whatsapp-checkout-btn {
    padding: 13px 18px;
    font-size: 15px;
  }
}

/* === Siddhi e-commerce interaction layer (cart, wishlist, inventory, order confirmation) === */
.product-card {
  position: relative;
}
.product-card[style*="display: none"] {
  display: none !important;
}
.wishlist-nav-btn {
  background: transparent;
  color: var(--green);
  border: 1.5px solid rgba(48, 52, 17, 0.32);
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.25s ease;
}
.wishlist-nav-btn:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
  background: rgba(158, 85, 53, 0.06);
}
.wishlist-nav-btn i {
  font-size: 15px;
}
#wishlistCount {
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--green);
  color: #fff;
  font-size: 11px;
}
.wishlist-panel {
  position: fixed;
  right: -430px;
  top: 0;
  width: 390px;
  max-width: 92%;
  height: 100%;
  background: var(--white);
  z-index: 1100;
  padding: 28px;
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.15);
  transition: right 0.35s ease;
  overflow-y: auto;
}
.wishlist-panel.open {
  right: 0;
}
.wishlist-panel h2 {
  color: var(--green);
  margin-top: 6px;
}
.wishlist-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 13px;
  align-items: start;
  border-bottom: 1px solid rgba(48, 52, 17, 0.1);
  padding: 15px 0;
}
.wishlist-item img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 14px;
  background: #f0ead7;
}
.wishlist-item p {
  margin: 6px 0 2px;
  font-weight: 800;
  color: var(--terracotta);
}
.wishlist-item small {
  color: var(--muted);
}
.wishlist-row-actions {
  display: flex;
  gap: 9px;
  margin-top: 9px;
}
.wishlist-row-actions button {
  border: 0;
  border-radius: 999px;
  padding: 7px 10px;
  cursor: pointer;
  font-weight: 700;
  background: var(--green);
  color: #fff;
}
.wishlist-row-actions button:last-child {
  background: transparent;
  color: var(--terracotta);
  padding-inline: 4px;
}
.wishlist-row-actions button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.wishlist-heart {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 39px;
  height: 39px;
  border: 1px solid rgba(48, 52, 17, 0.13);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 253, 245, 0.94);
  color: var(--green);
  box-shadow: 0 8px 20px rgba(48, 52, 17, 0.12);
  cursor: pointer;
  z-index: 3;
  font-size: 17px;
  transition: transform 0.2s ease, color 0.2s ease;
}
.wishlist-heart:hover {
  transform: translateY(-2px);
  color: var(--terracotta);
}
.wishlist-heart.active {
  color: #a33e2d;
}
.detail-wishlist-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--green);
  background: transparent;
  color: var(--green);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  font-size: 18px;
  flex: 0 0 auto;
}
.detail-wishlist-btn.active {
  background: #fff4ee;
  color: #a33e2d;
  border-color: #a33e2d;
}
.stock-status {
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 800;
}
.stock-status[hidden] {
  display: none;
}
.stock-status.in-stock {
  color: #557631;
}
.stock-status.out-stock {
  color: #a33e2d;
}
.btn:disabled,
.cart-btn:disabled,
.qty-controls button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.product-unavailable {
  max-width: 700px;
  margin: 65px auto;
  padding: 55px 32px;
  background: #fffdf7;
  border-radius: 26px;
  box-shadow: var(--shadow);
  text-align: center;
}
.store-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 25px);
  background: #23261a;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  z-index: 2000;
  transition: 0.25s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  max-width: min(90vw, 520px);
  text-align: center;
}
.store-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.order-success-modal {
  position: fixed;
  inset: 0;
  z-index: 1900;
  background: rgba(20, 24, 13, 0.54);
  backdrop-filter: blur(7px);
  display: none;
  place-items: center;
  padding: 22px;
}
.order-success-modal.show {
  display: grid;
}
.order-success-card {
  width: min(470px, 100%);
  background: #fffdf7;
  border-radius: 28px;
  padding: 36px;
  position: relative;
  text-align: center;
  box-shadow: 0 28px 70px rgba(20, 24, 13, 0.25);
}
.modal-x {
  position: absolute;
  top: 16px;
  right: 18px;
  border: 0;
  background: transparent;
  font-size: 27px;
  cursor: pointer;
  color: var(--muted);
}
.success-check {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  background: var(--green);
  color: #fff;
  font-size: 34px;
  font-weight: 900;
}
.payment-failed-check {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  background: #a23e35;
  color: #fff;
  font-size: 32px;
  font-weight: 900;
}
.order-success-card.payment-failed-card h2 {
  color: #a23e35;
}
.order-success-card h2 {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 30px;
}
.order-success-card > p {
  color: var(--muted);
  line-height: 1.6;
}
.order-placement-modal {
  position: fixed;
  inset: 0;
  z-index: 1900;
  display: grid;
  place-items: center;
  padding: 28px 18px;
  background: rgba(20, 24, 13, 0.56);
  backdrop-filter: blur(7px);
}
.order-placement-card {
  position: relative;
  width: min(760px, 100%);
  max-height: min(690px, calc(100vh - 36px));
  overflow-y: auto;
  padding: 52px 42px 36px;
  border: 1px solid #e0e6d5;
  border-radius: 24px;
  background: #fffdf7;
  box-shadow: 0 28px 70px rgba(20, 24, 13, 0.25);
  text-align: left;
}
.order-placement-card h2 { margin: 16px 0 10px; color: var(--green); font-size: 30px; }
.order-placement-card > p { margin: 0 0 20px; max-width: 520px; color: var(--muted); line-height: 1.6; }
.order-placement-card .modal-x {
  z-index: 2;
  width: auto;
  height: auto;
  display: grid;
  place-items: center;
  top: 18px;
  right: 18px;
  border-radius: 0;
  background: transparent;
  color: rgba(26, 31, 24, 0.8);
  font-size: 42px;
  line-height: 1;
  font-weight: 300;
}
.order-placement-status {
  display: flex;
  align-items: center;
  gap: 10px 18px;
  flex-wrap: wrap;
  margin: 18px 0 22px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  text-align: left;
}
.order-placement-status span {
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
}
.order-placement-status strong {
  color: var(--green);
  text-align: left;
  font-size: 16px;
}
.order-placement-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
  margin-top: 6px;
}
.order-placement-actions .btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1 1 210px;
  padding: 12px 24px;
}
.order-placement-actions .whatsapp-order-action {
  flex: 1 1 260px;
}
.order-success-info {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 11px 18px;
  text-align: left;
  background: #f7f1df;
  border-radius: 18px;
  padding: 17px;
  margin: 22px 0;
}
.order-success-info span {
  color: var(--muted);
}
.order-success-info strong {
  color: var(--green);
}

@media (max-width: 900px) {
  .navbar .nav-actions {
    gap: 7px !important;
  }
  .wishlist-nav-btn {
    width: 38px;
    height: 38px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    position: relative;
  }
  .wishlist-nav-btn .wishlist-label {
    display: none;
  }
  #wishlistCount {
    position: absolute;
    right: -5px;
    top: -6px;
    min-width: 17px;
    height: 17px;
    font-size: 10px;
  }
}
@media (max-width: 560px) {
  .order-placement-modal { padding: 16px 12px; }
  .order-placement-card { max-height: calc(100vh - 24px); padding: 48px 20px 24px; border-radius: 20px; }
  .order-placement-card h2 { font-size: 25px; }
  .order-placement-actions { grid-template-columns: 1fr; }
  .order-placement-actions .whatsapp-order-action { grid-column: auto; }
  .wishlist-panel {
    padding: 23px 18px;
  }
  .wishlist-heart {
    width: 36px;
    height: 36px;
    top: 11px;
    right: 11px;
  }
  .sp-action-row {
    gap: 9px;
  }
  .detail-wishlist-btn {
    width: 44px;
    height: 44px;
  }
}
.nav-actions {
  gap: 10px !important;
}

/* Navbar icon badges intentionally disabled */
#cartCount,
#wishlistCount {
  display: none !important;
}

/* === Customer account / frontend authentication === */
.navbar .nav-actions {
  overflow: visible;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.profile-cart-count {
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--accent, #a95632);
  color: #fff;
  font-size: 11px;
  line-height: 18px;
  text-align: center;
}
.customer-account-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.customer-account-trigger {
  min-height: 42px;
  border: 1.5px solid rgba(48, 52, 17, 0.22);
  background: #fff;
  color: var(--green);
  border-radius: 999px;
  padding: 9px 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: 0.22s ease;
  white-space: nowrap;
}
.customer-account-trigger:hover {
  border-color: var(--green);
  background: #f7f8ed;
}
.customer-account-trigger > .fa-user {
  font-size: 17px;
}
.customer-account-guest {
  width: 43px;
  padding: 0;
}
.customer-first-name {
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.customer-cart-count {
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--accent, #a95632);
  color: #fff;
  font-size: 11px;
  line-height: 18px;
  text-align: center;
}
.customer-chevron {
  font-size: 10px;
  opacity: 0.72;
  transition: transform 0.2s ease;
}
.customer-account-trigger[aria-expanded="true"] .customer-chevron {
  transform: rotate(180deg);
}
.customer-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: 220px;
  padding: 9px;
  background: #fff;
  border: 1px solid rgba(48, 52, 17, 0.12);
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(37, 43, 17, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: 0.2s ease;
  z-index: 1400;
}
.customer-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.customer-dropdown-head {
  padding: 9px 10px 11px;
  margin-bottom: 5px;
  border-bottom: 1px solid #eef0df;
}
.customer-dropdown-head span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin-bottom: 3px;
}
.customer-dropdown-head strong {
  display: block;
  color: var(--green);
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.customer-dropdown > button,
.customer-dropdown > a {
  width: 100%;
  border: 0;
  background: transparent;
  color: #303411;
  text-decoration: none;
  padding: 10px 11px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 11px;
  text-align: left;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.customer-dropdown > button:hover,
.customer-dropdown > a:hover {
  background: #f3f5e6;
}
.customer-dropdown > button i,
.customer-dropdown > a i {
  width: 17px;
  text-align: center;
  color: #6a7340;
}
.customer-dropdown .customer-logout-item {
  color: #a23e35;
  margin-top: 4px;
  border-top: 1px solid #eef0df;
  border-radius: 0 0 10px 10px;
  padding-top: 12px;
}
.customer-dropdown .customer-logout-item i {
  color: #a23e35;
}

.customer-auth-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(24, 31, 15, 0.52);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  transition: 0.22s ease;
}
.customer-auth-modal.show {
  opacity: 1;
  visibility: visible;
}
body.customer-auth-open {
  overflow: hidden;
}
.customer-auth-card {
  width: min(460px, 100%);
  max-height: calc(100vh - 44px);
  overflow-y: auto;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 26px 80px rgba(20, 26, 12, 0.28);
  padding: 25px 30px 28px;
  position: relative;
}
.customer-auth-card.signup-mode {
  width: min(620px, 100%);
  max-height: none;
  overflow: visible;
}
.customer-auth-close {
  position: absolute;
  right: 16px;
  top: 13px;
  border: 0;
  background: transparent;
  color: #5f6740;
  font-size: 29px;
  line-height: 1;
  cursor: pointer;
}
.customer-auth-brand {
  text-align: center;
  margin: 1px auto 14px;
}
.customer-auth-brand img {
  width: 102px;
  height: auto;
}
.customer-auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  background: #f3f5e7;
  padding: 5px;
  border-radius: 12px;
  margin-bottom: 20px;
}
.customer-auth-tabs button {
  border: 0;
  background: transparent;
  color: #697047;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  padding: 9px;
  border-radius: 9px;
  cursor: pointer;
}
.customer-auth-tabs button.active {
  background: #fff;
  color: var(--green);
  box-shadow: 0 3px 12px rgba(48, 52, 17, 0.08);
}
.customer-auth-form {
  display: none;
}
.customer-auth-form.active {
  display: block;
}
.customer-auth-form h2 {
  margin: 0 0 5px;
  color: var(--green);
  font-size: 24px;
  text-align: center;
}
.customer-auth-form > p {
  margin: 0 auto 17px;
  text-align: center;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.55;
  max-width: 350px;
}
.customer-auth-form label {
  display: block;
  font-size: 12px;
  color: #4e5533;
  font-weight: 800;
  margin-bottom: 11px;
}
.signup-password-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.signup-password-row label {
  min-width: 0;
}
.customer-auth-form input {
  width: 100%;
  margin-top: 6px;
  border: 1px solid #dfe3cc;
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
  color: #303411;
  background: #fff;
  outline: none;
}
.customer-auth-form input:focus {
  border-color: #7c8b4a;
  box-shadow: 0 0 0 3px rgba(124, 139, 74, 0.1);
}
.password-input-wrap {
  position: relative;
  margin-top: 6px;
}
.password-input-wrap input {
  margin-top: 0;
  padding-right: 44px;
}
.password-toggle {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #697047;
  cursor: pointer;
}
.password-toggle:hover,
.password-toggle:focus-visible {
  background: #f3f5e7;
  color: var(--green);
}
.customer-auth-error {
  min-height: 18px;
  margin: 4px 0 2px;
  color: #b42318;
  font-size: 12px;
  font-weight: 700;
}
.customer-auth-submit {
  width: 100%;
  margin-top: 4px;
  padding-block: 11px;
}
.customer-auth-form .customer-auth-switch {
  width: 100%;
  max-width: none;
  margin: 14px auto 0;
  text-align: center;
  font-size: 12px;
}
.customer-auth-switch button {
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--terracotta);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

/* === Customer Settings page === */
.customer-settings-page {
  background: #fbfcf7;
  min-height: 62vh;
  padding: 54px 5% 70px;
}
.customer-settings-shell {
  max-width: 1000px;
  margin: 0 auto;
}
.customer-settings-heading {
  margin-bottom: 24px;
}
.customer-settings-heading .eyebrow {
  margin-bottom: 8px;
}
.customer-settings-heading h1 {
  margin: 0 0 7px;
  color: var(--green);
  font-size: clamp(28px, 4vw, 40px);
}
.customer-settings-heading p {
  margin: 0;
  color: var(--muted);
}
.settings-guest-card,
.customer-settings-card {
  background: #fff;
  border: 1px solid #e9ecda;
  border-radius: 20px;
  box-shadow: 0 13px 35px rgba(48, 52, 17, 0.07);
}
.settings-guest-card {
  padding: 40px;
  text-align: center;
  max-width: 560px;
  margin: 30px auto;
}
.settings-guest-card i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin: 0 auto 14px;
  background: #f0f3df;
  color: var(--green);
  font-size: 22px;
}
.settings-guest-card h2 {
  color: var(--green);
  margin: 0 0 8px;
}
.settings-guest-card p {
  color: var(--muted);
  margin: 0 auto 18px;
}
.customer-settings-card {
  padding: 30px;
}
.settings-profile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid #edf0df;
}
.settings-profile-identity {
  display: flex;
  align-items: center;
  gap: 14px;
}
.settings-profile-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #edf1dc;
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 19px;
}
.settings-profile-identity span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin-bottom: 3px;
}
.settings-profile-identity strong {
  display: block;
  color: var(--green);
  font-size: 16px;
}
.customer-settings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px 18px;
}
.customer-settings-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.customer-settings-field.full {
  grid-column: 1 / -1;
}
.customer-settings-field label {
  font-size: 12px;
  color: #515836;
  font-weight: 800;
}
.customer-settings-field input,
.customer-settings-field textarea {
  width: 100%;
  border: 1px solid #dde2c9;
  background: #fff;
  border-radius: 11px;
  padding: 12px 13px;
  font: inherit;
  color: #303411;
  outline: none;
  resize: vertical;
}
.customer-settings-field input:focus,
.customer-settings-field textarea:focus {
  border-color: #82904e;
  box-shadow: 0 0 0 3px rgba(130, 144, 78, 0.1);
}
.customer-settings-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid #edf0df;
}

@media (max-width: 900px) {
  .customer-account-trigger {
    min-height: 38px;
    padding: 8px 10px;
  }
  .customer-account-guest {
    width: 38px;
    padding: 0;
  }
  .customer-first-name {
    max-width: 78px;
    font-size: 12px;
  }
  .customer-dropdown {
    right: -6px;
    width: 210px;
  }
}
@media (max-width: 650px) {
  .customer-auth-modal {
    padding: 12px;
  }
  .customer-auth-card {
    padding: 23px 18px 24px;
    border-radius: 18px;
  }
  .customer-auth-card.signup-mode {
    width: 100%;
    max-height: calc(100vh - 24px);
    overflow-y: auto;
  }
  .signup-password-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .customer-settings-page {
    padding: 38px 4% 55px;
  }
  .customer-settings-card {
    padding: 20px 16px;
  }
  .customer-settings-grid {
    grid-template-columns: 1fr;
  }
  .customer-settings-field.full {
    grid-column: auto;
  }
  .settings-profile-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .customer-settings-actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* Reusable confirmation modal for storefront delete/remove actions */
.site-confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(20, 25, 20, 0.48);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}
.site-confirm-modal.show { opacity: 1; visibility: visible; }
.site-confirm-card {
  width: min(390px, 100%);
  background: #fff;
  border-radius: 18px;
  padding: 28px 26px 24px;
  text-align: center;
  box-shadow: 0 22px 65px rgba(0,0,0,.2);
  transform: translateY(8px) scale(.98);
  transition: transform .2s ease;
}
.site-confirm-modal.show .site-confirm-card { transform: translateY(0) scale(1); }
.site-confirm-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #b42318;
  background: #fff1f0;
  font-size: 20px;
}
.site-confirm-card h3 { margin: 0 0 9px; font-size: 21px; color: #20251f; }
.site-confirm-card p { margin: 0; color: #667064; line-height: 1.6; font-size: 14px; }
.site-confirm-actions { display: flex; gap: 10px; margin-top: 22px; }
.site-confirm-actions button {
  flex: 1;
  min-height: 43px;
  border-radius: 10px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.site-confirm-cancel { border: 1px solid #d8ddd6; background: #fff; color: #41483f; }
.site-confirm-delete { border: 1px solid #b42318; background: #b42318; color: #fff; }
.site-confirm-cancel:hover { background: #f7f8f6; }
.site-confirm-delete:hover { filter: brightness(.96); }


/* Large catalogue progressive loading */
.products-load-more-wrap{display:flex;justify-content:center;margin:28px 0 0}
.products-load-more-wrap .btn{min-width:150px}
.footer-view-all-products{font-weight:700}


/* === Customer My Orders === */
.customer-orders-page,
.customer-tracking-page {
  min-height: 66vh;
  padding: 52px 5% 76px;
  background: #f7f8f3;
}
.customer-orders-shell,
.tracking-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
}
.customer-orders-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}
.customer-orders-heading h1 {
  margin: 5px 0 7px;
  color: var(--green);
  font-size: clamp(30px, 4vw, 42px);
}
.customer-orders-heading p { margin: 0; color: var(--muted); }
.customer-orders-heading .orders-help-note {
  border: 1px solid #dce2c8;
  background: #fff;
  border-radius: 999px;
  padding: 10px 15px;
  color: #59623c;
  font-size: 12px;
  font-weight: 750;
}
.customer-orders-list { display: grid; gap: 18px; }
.customer-order-card {
  overflow: hidden;
  background: #fff;
  border-radius: 18px;
  border: 2px solid #d5d8d3;
  box-shadow: 0 10px 28px rgba(48,52,17,.055);
}
.customer-order-card.active { border-color: #73813e; box-shadow: 0 13px 32px rgba(80,93,37,.12); }
.customer-order-card.delivered { border-color: #d3d5d4; }
.customer-order-card.cancelled { border-color: #e3c7c3; }
.customer-order-card-top {
  min-height: 66px;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 34px;
  background: #f8f9f4;
  border-bottom: 1px solid #e8eadf;
}
.customer-order-card.active .customer-order-card-top { background: #f2f5e6; }
.customer-order-card-top > div { display: grid; gap: 3px; }
.order-mini-label { color: #7a7f6b; font-size: 9px; font-weight: 850; letter-spacing: .9px; }
.customer-order-card-top strong { color: #3c432d; font-size: 12px; }
.order-id-block { margin-left: auto; }
.order-current-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}
.customer-order-card-body {
  padding: 21px 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 28px;
  align-items: center;
}
.customer-order-products { display: flex; align-items: center; gap: 20px; min-width: 0; }
.customer-order-images { display: flex; align-items: center; flex-shrink: 0; }
.customer-order-images img {
  width: 78px; height: 78px; object-fit: contain; background: #f1eddf;
  border: 4px solid #fff; border-radius: 14px; box-shadow: 0 4px 14px rgba(48,52,17,.08);
}
.customer-order-images img + img { margin-left: -23px; }
.customer-order-images span {
  width: 42px; height: 42px; display: grid; place-items: center; margin-left: -17px;
  border-radius: 50%; border: 3px solid #fff; background: #68733a; color:#fff; font-size: 11px; font-weight: 800;
}
.customer-order-copy { min-width: 0; }
.customer-order-status { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 850; margin-bottom: 7px; }
.customer-order-status.active { color: #61712e; }
.customer-order-status.delivered { color: #686d68; }
.customer-order-status.cancelled { color: #a64b42; }
.customer-order-copy h2 { margin: 0 0 5px; color: #303411; font-size: 18px; }
.customer-order-copy h2 small { color: #7e826f; font-size: 11px; font-weight: 700; }
.customer-order-copy p { margin: 0; color: #727667; font-size: 11.5px; line-height: 1.55; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 610px; }
.customer-order-actions { display: grid; gap: 8px; }
.order-primary-action,
.order-secondary-action {
  width: 100%; min-height: 38px; border-radius: 10px; padding: 9px 12px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: inherit; font-size: 11px; font-weight: 850; cursor: pointer; text-decoration: none;
}
.order-primary-action { border: 1px solid var(--green); background: var(--green); color: #fff; }
.order-primary-action:hover { background: #4b5222; }
.order-secondary-action { border: 1px solid #d8dccd; background: #fff; color: #4b5236; }
.order-secondary-action:hover { border-color: #8a9655; background: #f7f9ef; }
.orders-empty,
.tracking-not-found { max-width: 620px; margin: 42px auto; padding: 52px 28px; text-align:center; background:#fff; border:1px solid #e2e6d5; border-radius:20px; }
.orders-empty > i,
.tracking-not-found > i { width:62px; height:62px; border-radius:50%; display:grid; place-items:center; margin:0 auto 16px; background:#eff2df; color:var(--green); font-size:24px; }
.orders-empty h2,
.tracking-not-found h1 { color:var(--green); margin:0 0 7px; }
.orders-empty p,
.tracking-not-found p { color:var(--muted); margin:0 0 20px; }

/* === Dynamic order tracking (premium, space-filled ecommerce layout) === */
.customer-tracking-page {
  min-height: 72vh;
  padding: 34px 4.5% 48px;
  background:
    radial-gradient(circle at 8% 8%, rgba(203,215,162,.46), transparent 30%),
    radial-gradient(circle at 94% 30%, rgba(230,220,185,.52), transparent 27%),
    linear-gradient(145deg, #eef3df 0%, #f4f1e5 52%, #e8efda 100%);
}
.tracking-shell { width:min(1240px,100%); }
.tracking-breadcrumb {
  display:flex; align-items:center; gap:9px; margin-bottom:12px; color:#697057; font-size:12px;
  padding:9px 13px; width:max-content; max-width:100%; border-radius:999px;
  background:rgba(255,255,255,.58); border:1px solid rgba(109,124,60,.18); backdrop-filter:blur(5px);
}
.tracking-breadcrumb a { color:#4c5929; font-weight:850; }
.tracking-breadcrumb strong { color:#394126; }
.tracking-status-card {
  position:relative; overflow:hidden;
  background:linear-gradient(130deg,#fbfcf4 0%,#edf3da 58%,#e0e9c4 100%);
  border:1px solid #aebd7b; border-radius:24px; padding:25px 27px 22px;
  box-shadow:0 18px 44px rgba(64,75,28,.13); margin-bottom:16px;
}
.tracking-status-card::after {
  content:""; position:absolute; width:250px; height:250px; border-radius:50%; right:-85px; top:-120px;
  background:rgba(103,120,49,.09); pointer-events:none;
}
.tracking-status-card.delivered { background:linear-gradient(130deg,#f7f8f4 0%,#eceee8 100%); border-color:#c7ccc3; box-shadow:0 15px 34px rgba(47,54,42,.08); }
.tracking-status-card.cancelled { background:linear-gradient(130deg,#fff8f6 0%,#f9e7e3 100%); border-color:#ddb7b0; }
.tracking-status-head { display:flex; justify-content:space-between; gap:24px; align-items:flex-start; position:relative; z-index:1; }
.tracking-overline { color:#6a754c; font-size:10px; font-weight:900; letter-spacing:1.15px; }
.tracking-status-head h1 { margin:5px 0 5px; color:var(--green); font-size:clamp(25px,3vw,35px); }
.tracking-status-card.delivered h1 { color:#535a51; }
.tracking-status-head p { margin:0; color:#67705f; font-size:12.5px; }
.tracking-estimate {
  margin-top:12px; display:inline-flex; flex-direction:column; gap:2px; padding:10px 12px; border-radius:12px;
  background:rgba(255,255,255,.45); border:1px solid rgba(99,119,54,.16); color:#4e5a33;
}
.tracking-estimate span { font-size:9px; letter-spacing:1px; text-transform:uppercase; color:#68715d; font-weight:800; }
.tracking-estimate strong { font-size:13px; }
.tracking-status-icon {
  width:58px; height:58px; flex:0 0 58px; display:grid; place-items:center; border-radius:18px;
  background:#657431; color:#fff; font-size:22px; box-shadow:0 10px 24px rgba(88,103,40,.22);
}
.tracking-status-card.delivered .tracking-status-icon { background:#687068; color:#fff; }
.tracking-status-card.cancelled .tracking-status-icon { background:#ad574d; color:#fff; }
.tracking-stepper { display:grid; grid-template-columns:repeat(6,1fr); margin-top:22px; position:relative; z-index:1; gap:8px; }
.tracking-stepper::before { content:""; position:absolute; height:4px; left:7%; right:7%; top:16px; background:linear-gradient(90deg, rgba(112,126,70,.20), rgba(112,126,70,.42)); z-index:0; border-radius:99px; }
.tracking-step { position:relative; z-index:1; display:grid; justify-items:center; gap:7px; color:#7f8575; font-size:10.5px; font-weight:800; text-align:center; }
.tracking-step-dot { width:35px; height:35px; display:grid; place-items:center; border-radius:50%; border:3px solid #cfd6bd; background:#f9fbf3; color:#7f8870; font-size:10px; }
.tracking-step.complete .tracking-step-dot { background:#687839; border-color:#687839; color:#fff; }
.tracking-step.current .tracking-step-dot { background:#fff; border-color:#687839; color:#687839; box-shadow:0 0 0 5px rgba(239,243,223,.95); }
.tracking-step.complete span,.tracking-step.current span { color:#4f5b2b; }
.tracking-cancelled-banner { display:flex; align-items:center; gap:12px; margin-top:20px; padding:14px; border-radius:14px; background:#f7ded9; color:#93483f; }
.tracking-cancelled-banner i { font-size:21px; }
.tracking-cancelled-banner strong,.tracking-cancelled-banner span { display:block; }
.tracking-cancelled-banner span { font-size:11px; margin-top:3px; }
.tracking-quick-facts {
  position:relative; z-index:1; display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:1px;
  margin-top:22px; overflow:hidden; border:1px solid rgba(104,120,57,.18); border-radius:16px;
  background:rgba(95,110,51,.14);
}
.tracking-fact { min-width:0; padding:12px 14px; background:rgba(255,255,255,.67); }
.tracking-fact span { display:flex; align-items:center; gap:7px; color:#778064; font-size:9.5px; font-weight:850; text-transform:uppercase; letter-spacing:.45px; }
.tracking-fact span i { color:#69783b; }
.tracking-fact strong { display:block; margin-top:5px; color:#384126; font-size:11.5px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.tracking-content-grid { display:grid; grid-template-columns:minmax(0,1.55fr) minmax(310px,.62fr); gap:16px; align-items:stretch; }
.tracking-content-grid > .tracking-order-details { grid-column:1 / -1; grid-row:2; }
.tracking-content-grid > .tracking-activity-panel { grid-column:1; grid-row:1; }
.tracking-content-grid > .tracking-side-stack { grid-column:2; grid-row:1; }
.tracking-side-stack { display:grid; grid-template-rows:1fr 1fr; gap:16px; }
.tracking-panel {
  background:linear-gradient(145deg,rgba(252,253,247,.95),rgba(241,245,229,.97));
  border:1px solid #d2dbc0; border-radius:20px; box-shadow:0 10px 28px rgba(48,52,17,.07); padding:20px;
}
.tracking-activity-panel { min-height:100%; }
.tracking-activity-followup { margin-top:16px; }
.tracking-panel-head { display:flex; justify-content:space-between; align-items:center; gap:18px; }
.tracking-panel-kicker { display:block; color:#75805e; font-size:9.5px; font-weight:900; text-transform:uppercase; letter-spacing:1.05px; }
.tracking-panel h2 { margin:4px 0 0; color:#303a1e; font-size:18px; }
.tracking-live-pill { border-radius:999px; background:#dfe9bd; color:#50611f; padding:7px 11px; font-size:9px; font-weight:900; text-transform:uppercase; letter-spacing:.6px; }
.tracking-live-pill.delivered { background:#e3e7e0; color:#626a61; }
.tracking-event-list { margin-top:14px; display:grid; gap:7px; }
.tracking-event {
  display:grid; grid-template-columns:38px 1fr; gap:12px; position:relative; padding:11px 12px;
  border-radius:14px; background:rgba(255,255,255,.64); border:1px solid rgba(207,216,190,.72);
}
.tracking-event:not(:last-child)::before { content:none; }
.tracking-event-marker { width:36px; height:36px; border-radius:12px; display:grid; place-items:center; background:#e8eed5; color:#76834d; font-size:11px; position:relative; z-index:1; }
.tracking-event.latest { background:#edf3dc; border-color:#b8c68d; box-shadow:inset 4px 0 0 #687839; }
.tracking-event.latest .tracking-event-marker { background:#61712e; color:#fff; box-shadow:none; }
.tracking-event-copy strong { display:block; color:#38422a; font-size:12.5px; margin-top:0; }
.tracking-event-copy p { margin:3px 0; color:#6f7765; font-size:11px; line-height:1.42; }
.tracking-event-copy time { color:#8e9587; font-size:9.5px; }
.tracking-shipment-panel,.tracking-address-panel { display:flex; flex-direction:column; justify-content:center; }
.tracking-shipment-panel dl { margin:13px 0 0; }
.tracking-shipment-panel dl > div { display:flex; justify-content:space-between; gap:15px; padding:10px 0; border-top:1px solid #dfe5d4; }
.tracking-shipment-panel dt { color:#7c846f; font-size:10.5px; }
.tracking-shipment-panel dd { margin:0; color:#3f4930; font-size:10.5px; font-weight:850; text-align:right; }
.tracking-address-panel p { color:#65705f; line-height:1.58; font-size:11px; margin:11px 0; padding:10px 11px; border-radius:12px; background:rgba(255,255,255,.62); border:1px solid #e0e6d5; }
.tracking-address-panel > span:last-child { display:flex; align-items:center; gap:7px; color:#465133; font-size:10.5px; font-weight:800; }
.tracking-order-details { margin-top:16px; scroll-margin-top:100px; padding:19px 20px; }
.tracking-total { color:#303a1e; font-size:17px; padding:8px 12px; border-radius:12px; background:#e4ebcf; }
.tracking-order-items { margin-top:13px; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; border-top:0; }
.tracking-order-item { display:grid; grid-template-columns:62px 1fr auto; gap:12px; align-items:center; padding:11px; border:1px solid #dbe3cc; border-radius:15px; background:rgba(255,255,255,.66); }
.tracking-order-item img { width:62px; height:62px; object-fit:contain; background:#eee8d7; border-radius:12px; }
.tracking-order-item h3 { margin:0 0 4px; color:#364027; font-size:12.5px; }
.tracking-order-item p { margin:0; color:#798071; font-size:10px; }
.tracking-order-item > strong { color:#3e482f; font-size:11.5px; }
.tracking-detail-footer { display:flex; align-items:center; gap:34px; margin-top:12px; padding:12px 13px 0; border-top:1px dashed #ccd6bc; }
.tracking-detail-footer > div span,.tracking-detail-footer > div strong { display:block; }
.tracking-detail-footer > div span { color:#7e8577; font-size:9.5px; margin-bottom:3px; }
.tracking-detail-footer > div strong { color:#465033; font-size:11.5px; }
.tracking-detail-footer .order-primary-action { width:auto; margin-left:auto; }

@media (max-width: 820px) {
  .customer-orders-heading { align-items:flex-start; flex-direction:column; }
  .customer-order-card-body { grid-template-columns:1fr; gap:18px; }
  .customer-order-actions { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .customer-order-actions .order-primary-action { grid-column:1 / -1; }
  .tracking-content-grid { grid-template-columns:1fr; }
  .tracking-content-grid > .tracking-order-details,
  .tracking-content-grid > .tracking-activity-panel,
  .tracking-content-grid > .tracking-side-stack { grid-column:auto; grid-row:auto; }
  .tracking-side-stack { grid-template-columns:repeat(2,minmax(0,1fr)); grid-template-rows:auto; }
  .tracking-quick-facts { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width: 600px) {
  .customer-orders-page,
  .customer-tracking-page { padding:35px 4% 55px; }
  .customer-orders-heading .orders-help-note { display:none; }
  .customer-order-card-top { display:grid; grid-template-columns:1fr 1fr; gap:10px 18px; padding:13px 14px; }
  .order-id-block { margin-left:0; }
  .order-current-label { justify-self:start; }
  .customer-order-card-body { padding:17px 14px; }
  .customer-order-products { align-items:flex-start; gap:13px; }
  .customer-order-images img { width:61px; height:61px; }
  .customer-order-images img + img { margin-left:-28px; }
  .customer-order-images span { width:33px; height:33px; margin-left:-23px; }
  .customer-order-copy h2 { font-size:15px; }
  .customer-order-copy p { white-space:normal; font-size:10.5px; }
  .customer-order-actions { grid-template-columns:1fr; }
  .customer-order-actions .order-primary-action { grid-column:auto; }
  .tracking-status-card { padding:21px 15px 24px; }
  .tracking-status-icon { width:46px; height:46px; flex-basis:46px; font-size:18px; }
  .tracking-status-head h1 { font-size:23px; }
  .tracking-status-head p { font-size:11.5px; }
  .tracking-stepper { grid-template-columns:1fr; gap:0; margin-top:25px; }
  .tracking-stepper::before { left:16px; right:auto; top:17px; bottom:17px; width:3px; height:auto; }
  .tracking-step { min-height:52px; grid-template-columns:34px 1fr; align-items:center; justify-items:start; gap:12px; text-align:left; }
  .tracking-step-dot { grid-row:1; grid-column:1; }
  .tracking-step span { grid-row:1; grid-column:2; }
  .tracking-side-stack { grid-template-columns:1fr; grid-template-rows:auto; }
  .tracking-quick-facts { grid-template-columns:1fr 1fr; }
  .tracking-fact { padding:11px 10px; }
  .tracking-fact strong { white-space:normal; }
  .tracking-panel { padding:18px 15px; }
  .tracking-order-items { grid-template-columns:1fr; }
  .tracking-order-item { grid-template-columns:55px 1fr; }
  .tracking-order-item img { width:55px; height:55px; }
  .tracking-order-item > strong { grid-column:2; }
  .tracking-detail-footer { align-items:flex-start; flex-wrap:wrap; gap:15px 25px; }
  .tracking-detail-footer .order-primary-action { width:100%; margin-left:0; }
}
