/* =============================================
   ROOT VARIABLES (Design Tokens)
============================================= */
:root {
  --color-heading-dark: #00240f;
  --color-heading-olive: #636e00;
  --color-paragraph: #252626;
  --color-btn-green: #00481c;
  --color-btn-green-hover: #00300f;
  --color-btn-gold: #9a7f0e;
  --color-btn-gold-hover: #806809;
  --color-category-name: #01692d;
  --color-product-name: #00240f;
  --color-product-desc: #3e3f3f;
  --color-trust-strip-bg: #003d1a;
  --color-cream-bg: #f8f6ee;
  --color-promo-bg: #f3ebcb;
  --color-contact-bg: #f6ecc9;
  --color-primary-green: #00481c;
  --color-secondary-green: #4a7a3d;
  --color-light-green: #6d8f3f;
  --color-dark-brown: #8a6a2f;
  --color-light-brown: #d9cfa3;
  --color-gold-accent: #a89c3f;

  --font-display: "Playfair Display", serif;
  --font-body: "Poppins", sans-serif;

  --container-max-width: 1320px;
}

/* =============================================
   BASE / RESET
============================================= */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--color-paragraph);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
}

.container-custom {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding-left: 12px;
  padding-right: 12px;
}

.common-gap {
  margin-top: 80px;
}

.cfs-extra-gap {
  padding-bottom: 40px;
}

/* =============================================
   TYPOGRAPHY
============================================= */
.hero-heading {
  font-family: "Playfair Display", serif;
  color: var(--color-heading-dark);
  font-size: 52px;
  line-height: 72px;
  font-weight: 700;
  margin-bottom: 20px;
  max-width: 630px;
}

.hero-heading-highlight {
  display: inline;
  color: var(--color-heading-olive);
  font-size: 52px;
  line-height: 72px;
  font-weight: 700;
}

.section-heading {
  font-family: "Playfair Display", serif;
  color: var(--color-heading-dark);
  font-size: 32px;
  line-height: 45px;
  font-weight: 600;
  margin-bottom: 0;
}

p,
.hero-para {
  color: var(--color-paragraph);
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  max-width: 650px;
}

.hs-extra-gap {
  padding-top: 40px;
}

/* =============================================
   BUTTONS
============================================= */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--color-btn-green);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 25px;
  font-weight: 500;
  border-radius: 8px;
  padding: 14px 32px;
  border: none;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

.btn-primary-custom:hover {
  background-color: var(--color-btn-green-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 72, 28, 0.25);
}

.btn-primary-custom i {
  transition: transform 0.3s ease;
}

.btn-primary-custom:hover i {
  transform: translateX(4px);
}

.btn-add-cart,
.woocommerce .btn-add-cart,
button.btn-add-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--color-btn-gold);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
  border-radius: 28px;
  padding: 10px 22px;
  min-height: 45px;
  border: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  text-transform: none;
  box-shadow: 0 10px 20px rgba(154, 127, 14, 0.18);
}

.btn-add-cart i {
  font-size: 14px;
}

.btn-add-cart:hover,
.woocommerce .btn-add-cart:hover,
button.btn-add-cart:hover {
  background-color: var(--color-btn-gold-hover);
  transform: translateY(-2px);
}

/* =============================================
   1. HERO SECTION
============================================= */
.hero-section {
  background-image: url("https://www.justmakeinindia.com/HubProjects/vista-seeds/assets/images/hero-banner-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
}

/* .hero-content {
  max-width: 560px;
} */

.hero-para {
  margin-bottom: 32px;
}

.hero-features {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 28px;
  margin-top: 44px;
  margin-bottom: 32px;
}

.hero-feature-item {
  display: grid;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  text-align: center;
}

.img_icon {
  text-align: center;
  display: flex;
  justify-content: center;
}

.hero-feature-divider {
  width: 1px;
  align-self: stretch;
  background-color: #9a7f0e;
  flex-shrink: 0;
}

.hero-feature-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--color-btn-green);
  color: var(--color-btn-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.hero-feature-text {
  font-size: 14px;
  line-height: 18px;
  color: var(--color-paragraph);
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

/* Mobile layout for hero features (icons + text + dividers) */
@media (max-width: 576px) {
  .hero-features {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px 20px !important;
    padding: 0 6px !important;
    margin: 0 auto !important;
    max-width: 520px !important;
  }

  .hero-feature-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    padding: 12px 8px !important;
    text-align: center !important;
    background: transparent !important;
  }
}

.hero-visual {
  position: relative;
  min-height: 420px;
}

.hero-full-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* =============================================
   2. TRUST STRIP
============================================= */
.trust-strip {
  background-color: var(--color-trust-strip-bg);
  padding-top: 28px;
  padding-bottom: 28px;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

/* .trust-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.12);
  color: #C9B65C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
} */

.trust-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
  line-height: 1.2;
  text-align: left;
  font-family: "Inter", sans-serif;
}

.trust-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 0;
  text-align: left;
  font-family: "Inter", sans-serif;
  margin-top: 8px;
}

/* =============================================
   SECTION HEADING (shared)
============================================= */
.section-heading-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.section-heading-center {
  justify-content: center;
}

.section-heading-rule {
  flex: 1;
  height: 1px;
  background-color: #d8d4c4;
  max-width: 260px;
}

.section-heading-center .section-heading-rule {
  flex: 0 0 60px;
}

/* =============================================
   3. CATEGORY SECTION
============================================= */
.category-section {
  background-color: #ffffff;
}

.category-card {
  text-align: center;
}

.category-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
}

.category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-card:hover .category-img {
  transform: scale(1.06);
}

.category-title {
  font-size: 18px;
  font-weight: 600;
  color: #252626;
  margin-bottom: 0;
  font-family: "Inter", sans-serif;
}

/* =============================================
   4. PROMOTIONAL SECTION
============================================= */
.promo-section {
  background-color: #ffffff;
  padding-top: 0;
}

.promo-card {
  background-image: url("https://www.justmakeinindia.com/HubProjects/vista-seeds/assets/images/seeds-that-turn-box-bg.webp");
  border-radius: 20px;
  padding: 40px 40px 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  height: 100%;
}

.promo-card-second {
  background-image: url("https://www.justmakeinindia.com/HubProjects/vista-seeds/assets/images/farmers-trust-box-bg.webp");
}

.promo-card-text {
  flex: 1;
  min-width: 240px;
}

.promo-heading {
  font-family: "Playfair Display", serif;
  color: var(--color-heading-dark);
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 14px;
}

.promo-para {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
}

.promo-para-bold {
  font-weight: 600;
  color: #003d1a;
}

/* =============================================
   PRODUCT GRID - center product images
============================================= */
.promo-img,
.promo-illustration {
  width: 200px;
  flex-shrink: 0;
}

.promo-number {
  font-family: "Inter", sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #005d27;
  margin-bottom: 4px;
  line-height: 38px;
}

/* =============================================
   5. PRODUCT SECTION
============================================= */
.product-section {
  background-color: transparent;
  margin-bottom: 40px;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: linear-gradient(180deg, #f6f9f1 0%, #ebf5e8 100%);
  border-radius: 24px;
  padding: 22px;
  min-height: 100%;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-img {
  display: block;
  margin: 0 auto 16px auto;
  width: auto;
  max-width: 160px;
  max-height: 160px;
  object-fit: contain;
}

@media (max-width: 576px) {
  .product-img {
    max-width: 120px;
    max-height: 120px;
  }
}

.product-category {
  color: var(--color-category-name);
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 2px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

.product-name {
  color: var(--color-product-name);
  font-size: 18px;
  line-height: 25px;
  font-weight: 600;
  margin-bottom: 4px;
  font-family: "Inter", sans-serif;
}

.product-desc {
  color: var(--color-product-desc);
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
}

.product-price-row {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.product-price {
  color: var(--color-product-name);
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  margin-right: 8px;
}

.product-old-price {
  color: #9c9c9c;
  font-size: 15px;
  text-decoration: line-through;
}

.more-products-wrap {
  margin-top: 48px;
}

.more-products-btn {
  color: var(--color-btn-green);
  font-size: 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.more-products-btn:hover {
  color: var(--color-btn-green-hover);
  gap: 14px;
}

/* =============================================
   7. WHY CHOOSE SECTION
============================================= */
.why-choose-section {
  background-color: #ffffff;
}

.why-choose-box {
  border: 1px solid #d8d4c4;
  border-radius: 20px;
  padding: 56px;
  background-image: url(https://www.justmakeinindia.com/HubProjects/vista-seeds/assets/images/why-choose-bg.webp);
  background-size: cover;
  background-position: right;
  width: 100%;
}

.why-choose-label {
  color: var(--color-btn-gold);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 12px;
  font-family: "Inter", sans-serif;
}

.why-choose-label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-btn-gold);
}

.why-choose-para {
  margin: 16px 0 28px;
  max-width: 480px;
}

/* =============================================
   8. FEATURES SECTION
============================================= */
.features-section {
  background-color: transparent;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.feature-icon {
  width: 76px;
  height: 76px;
  background-color: transparent;
  color: var(--color-btn-gold);
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-divider {
  display: none;
}

.feature-title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #252626;
  margin-bottom: 0;
  text-align: center;
}

/* =============================================
   9. CONTACT SECTION
============================================= */
.contact-section {
  background-image: url("https://www.justmakeinindia.com/HubProjects/vista-seeds/assets/images/form-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-para {
  margin-bottom: 28px;
  margin-top: 20px;
}

.contact-form-card {
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 40px;
}

.form-label-custom {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-heading-dark);
  margin-bottom: 6px;
  display: inline-block;
}

.form-control-custom {
  border-radius: 12px;
  border: 1px solid #dad6c4;
  padding: 12px 18px;
  font-size: 15px;
  background-color: #ffffff;
}

.form-control-custom:focus {
  border-color: var(--color-btn-green);
  box-shadow: 0 0 0 3px rgba(0, 72, 28, 0.12);
}

.btn-submit {
  width: 100%;
  justify-content: center;
}

.contact-illustration-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.extra-gap {
  padding-bottom: 80px;
}

/* Footer styles refined to match provided screenshot */
.vs-footer {
  color: #d7e8dd;
  padding: 56px 16px 18px;
  background: url("https://www.justmakeinindia.com/HubProjects/vista-seeds/assets/images/Footer-desktop.webp")
    no-repeat center center;
  background-size: cover;
}

.vs-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.04);
  z-index: 0;
}

.vs-footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.vs-footer__col {
  flex: 1 1 220px;
  min-width: 200px;
}

.vs-footer__brand .vs-logo {
  max-width: 220px;
  display: block;
  margin-bottom: 10px;
}

.vs-tag {
  color: #b4b4b4 !important;
  font-size: 16px !important;
  line-height: 25px !important;
  font-family: "Inter", sans-serif;
}

.vs-footer h4 {
  color: #e9f8ee;
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 600;
}

.vs-footer__links ul,
.vs-footer .contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vs-footer__links li {
  margin: 6px 0;
  color: #b4b4b4 !important;
  font-size: 16px !important;
  line-height: 25px !important;
}

.vs-footer__links a {
  color: #b4b4b4;
  text-decoration: none;
  font-size: 14px;
}

.vs-footer__links a:hover {
  color: #ffffff;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0;
  color: #c8e1cb;
  font-size: 14px;
}

.contact-list address {
  color: #b4b4b4 !important;
  font-size: 16px !important;
  line-height: 25px !important;
}

.vs-footer__social .social-icons {
  display: flex;
  gap: 14px;
  align-items: center;
}

.vs-footer__rule {
  height: 1px;
  background: rgba(255, 255, 255, 0.04);
  margin: 20px 0 12px;
}

.vs-footer__copyright {
  text-align: center;
  color: #9bbda9;
  padding: 12px 0 22px;
  font-size: 13px;
}
/* Footer bottom layout: place copyright and developer credit side-by-side */
.vs-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0 18px;
}
.vs-footer__bottom .vs-footer__copyright {
  text-align: left;
  padding: 0;
  color: #9bbda9;
  font-size: 13px;
}
.vs-footer__bottom .vs-footer__developer {
  text-align: right;
}
@media (max-width: 767px) {
  .vs-footer__bottom {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  .vs-footer__bottom .vs-footer__copyright {
    text-align: center;
  }
  .vs-footer__bottom .vs-footer__developer {
    text-align: center;
  }
}
.contact-list li a {
  color: #b4b4b4 !important;
  font-size: 16px !important;
  line-height: 25px !important;
}

/* =============================================
   RESPONSIVE
============================================= */

/* Laptop */
@media (max-width: 1199px) {
  .common-gap {
    margin-top: 64px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .hero-heading,
  .hero-heading-highlight {
    font-size: 40px;
    line-height: 52px;
  }

  .hero-content {
    text-align: center;
  }
  .hero-features {
    justify-content: center;
  }
  .promo-img,
  .promo-illustration {
    width: auto;
  }
  .vs-footer {
    padding: 40px 12px;
  }

  .vs-footer__inner {
    padding: 18px;
  }

  .vs-footer__col {
    flex: 1 1 45%;
  }

  .section-heading {
    font-size: 28px;
    line-height: 38px;
  }

  .hero-visual {
    min-height: 320px;
  }

  .why-choose-box {
    padding: 36px;
  }

  .common-gap {
    margin-top: 56px;
  }

  .feature-title {
    font-size: 15px;
    line-height: 22px;
  }

  /* Features section: 4 columns on all screens */
  .features-section .col-md-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  /* Category section slider (tablet) */
  .category-section .row {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    margin-left: 0;
    margin-right: 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE / legacy Edge */
  }

  .category-section .row::-webkit-scrollbar {
    display: none; /* Chrome / Safari / new Edge */
  }

  .category-section .row > [class*="col-"] {
    flex: 0 0 auto;
    width: 46%;
    scroll-snap-align: start;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .hero-heading,
  .hero-heading-highlight {
    font-size: 32px;
    line-height: 42px;
  }

  .extra-gap {
    padding-bottom: 0px;
  }

  .hero-section {
    text-align: center;
    padding-top: 48px;
    background-image: url("https://www.justmakeinindia.com/HubProjects/vista-seeds/assets/images/banner-mobile-bg.webp");
    background-size: cover;
    background-position: center top;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-para {
    max-width: 100%;
  }

  .hero-features {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    justify-content: space-between !important;
    gap: 0 !important;
    overflow: hidden !important;
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }

  .hero-feature-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    width: 33.333% !important;
    padding: 10px 6px !important;
    border-top: none !important;
  }

  .hero-feature-text {
    text-align: center !important;
    font-size: 13px !important;
    line-height: 1.3 !important;
  }

  .hero-feature-divider {
    display: block !important;
    width: 1px !important;
    height: 60px !important;
    background-color: #9a7f0e !important;
    align-self: center !important;
    margin: 0 !important;
  }

  /* Trust strip: stacked, left-aligned, divided by horizontal lines */
  .trust-strip .row {
    flex-direction: column;
    row-gap: 0;
  }

  .trust-item {
    padding: 14px 0;
  }

  .trust-strip .col-md-4:not(:first-child) .trust-item {
    border-top: 1px solid #cdbf5a;
  }

  .section-heading-row {
    gap: 14px;
    margin-bottom: 28px;
  }

  .why-choose-box {
    background-image: url(https://www.justmakeinindia.com/HubProjects/vista-seeds/assets/images/why-choose-mobile-bg.webp);
    height: 500px;
    background-position: bottom;
  }

  .section-heading {
    font-size: 24px;
    line-height: 32px;
  }

  .promo-card {
    padding: 28px;
    flex-direction: column;
    text-align: center;
  }

  .why-choose-box {
    padding: 24px;
  }

  .contact-form-card {
    padding: 24px;
  }

  .common-gap {
    margin-top: 44px;
  }

  .feature-title {
    font-size: 14px;
    line-height: 20px;
  }

  /* Features section: 4 columns on all screens */
  .features-section .col-md-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  /* Category section slider (mobile) */
  .category-section .row > [class*="col-"] {
    width: 68%;
  }

  .features-section .row {
    display: flex !important;
    flex-wrap: wrap !important;
  }

  .features-section .col-md-3 {
    width: 50% !important;
    flex: 0 0 50% !important;
    max-width: 50% !important;
    margin-bottom: 30px !important;
  }

  .features-section .feature-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .features-section .feature-title {
    position: relative !important;
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    padding-top: 12px !important;
    margin-bottom: 0 !important;
  }
}

/* Small Mobile */
@media (max-width: 575px) {
  .hero-heading,
  .hero-heading-highlight {
    font-size: 26px;
    line-height: 34px;
  }

  p,
  .hero-para {
    font-size: 16px;
    line-height: 22px;
  }

  .btn-primary-custom {
    font-size: 16px;
    padding: 12px 26px;
  }

  .feature-title {
    font-size: 14px;
    line-height: 20px;
  }

  /* Features section: 4 columns on all screens */
  .features-section .col-md-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .vs-footer__inner {
    display: block;
    padding: 12px;
  }

  .vs-footer__col {
    width: 100%;
    margin-bottom: 18px;
  }

  .vs-footer__col .brand {
    text-align: center;
    justify-content: center;
    display: flex;
  }

  .vs-footer__col p {
    text-align: center;
  }

  .vs-footer__links li {
    margin: 16px 0;
  }

  .vs-footer__brand .vs-logo {
    max-width: 160px;
  }

  .contact-list li {
    font-size: 13px;
    margin: 16px 0;
  }

  .vs-footer h4 {
    font-size: 16px;
    margin-top: 20px;
  }
}

/* Desktop: ensure features are in one row with vertical dividers */
@media (min-width: 577px) {
  .hero-features {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 40px;
    padding: 0;
    margin-top: 44px;
    margin-bottom: 32px;
  }

  .hero-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    text-align: center;
    padding: 0 8px;
  }

  .hero-feature-divider {
    width: 2px;
    height: 72px;
    background-color: #bfae6a;
    margin: 0 12px;
    flex-shrink: 0;
  }
}
/* Header phone icon inline fix */
.menu-section .phone_header,
.menu-section .phone_header a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  white-space: nowrap !important;
}

.menu-section .phone_header img.ci {
  display: inline-block !important;
  width: 20px !important;
  height: 20px !important;
  vertical-align: middle !important;
}

/*shop filter */
.shop-sorting {
  display: flex;
  align-items: center;
}

.filter-toggle-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px 0;
}

.filter-toggle-btn .filter-label {
  font-size: 15px;
  font-weight: 500;
  color: #1c1c1c;
}

.filter-toggle-btn .filter-icon path {
  stroke: #9a7f0e;
}

.filter-toggle-btn[aria-expanded="true"] .filter-label {
  color: #9a7f0e;
}

.filter-dropdown-panel {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 300px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 20px;
  z-index: 50;
}

.filter-dropdown-panel.open {
  display: block;
}

.filter-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-weight: 600;
}

.filter-reset-btn {
  background: none;
  border: none;
  color: #9a7f0e;
  font-size: 13px;
  cursor: pointer;
}

.filter-group {
  margin-bottom: 18px;
}

.filter-group-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #777;
  margin-bottom: 10px;
}

.filter-checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 160px;
  overflow-y: auto;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
}

.filter-checkbox input[type="checkbox"] {
  accent-color: #9a7f0e;
  width: 16px;
  height: 16px;
}

.filter-price-inputs {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-price-inputs input {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 14px;
}

.filter-apply-btn {
  width: 100%;
  background: #9a7f0e;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.filter-apply-btn:hover {
  background: #7f6a0c;
}

.product-filter-loader {
  display: flex;
  justify-content: center;
  padding: 30px 0;
}

.product-filter-loader .spinner {
  width: 30px;
  height: 30px;
  border: 3px solid #f0e8d0;
  border-top-color: #9a7f0e;
  border-radius: 50%;
  animation: vista-spin 0.8s linear infinite;
}

@keyframes vista-spin {
  to {
    transform: rotate(360deg);
  }
}

#productGrid {
  transition: opacity 0.3s ease;
}

/* end filter styles */
