/*
Theme Name: Organic
Theme URI: https://templatesjungle.com/
Author: TemplatesJungle
Author URI: https://templatesjungle.com/
Description: Organic is specially designed product packaged for eCommerce store websites.
Version: 1.1
*/

/*--------------------------------------------------------------
This is main CSS file that contains custom style rules used in this template
--------------------------------------------------------------*/
/*--------------------------------------------------------------
/** VARIABLES
--------------------------------------------------------------*/
body {
  --heading-font: "Inter", sans-serif;
  --bs-link-color: #333;
  --bs-link-hover-color: #333;

  --bs-link-color-rgb: 40, 40, 40;
  --bs-link-hover-color-rgb: 0, 0, 0;

  --bs-light-rgb: 248, 248, 248;

  --bs-font-sans-serif: "Inter", sans-serif;
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 2;
  --bs-body-color: #747474;

  --bs-primary: #6BB252;
  --bs-primary-rgb: 107, 178, 82;

  --bs-secondary: #364127;
  --bs-secondary-rgb: 54, 65, 39;

  --bs-danger: #F95F09;
  --bs-danger-rgb: 249, 95, 9;

  --bs-success: #a3be4c;
  --bs-success-rgb: 163, 190, 76;

  --bs-primary-bg-subtle: #FFF9EB;
  --bs-success-bg-subtle: #eef5e5;

  --bs-border-color: #F7F7F7;
}

/* ── Sticky Header ──────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

/* Header logo sizing */
.site-logo img {
  max-height: 80px;
  width: auto;
  height: auto;
  display: block;
}

/* Tighter header row padding */
header .row.py-3 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

/* ── Inline Cart Qty Stepper ────────────────────────── */
.cart-inline-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #4a9e32;
  border-radius: 999px;
  padding: 6px 14px;
  gap: 0;
  width: 100%;
  box-shadow: 0 4px 14px rgba(74, 158, 50, 0.35);
}

.stepper-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  padding: 2px 8px;
  border-radius: 50%;
  transition: background 0.15s;
  flex-shrink: 0;
}

.stepper-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}

.stepper-qty {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  min-width: 28px;
  text-align: center;
  flex-grow: 1;
  letter-spacing: 0.02em;
}


.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #f7a422;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--bs-primary);
  --bs-btn-active-border-color: transparent;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #d3d7dd;
  --bs-btn-disabled-border-color: transparent;
}

.btn-outline-primary {
  --bs-btn-color: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #ffc107;
  --bs-btn-hover-border-color: #ffc107;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #ffc107;
  --bs-btn-active-border-color: #ffc107;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff3cd;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #fff3cd;
  --bs-gradient: none;
}

.btn-outline-light {
  --bs-btn-color: #747474;
  --bs-btn-border-color: #EFEFEF;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #EFEFEF;
  --bs-btn-hover-border-color: #EFEFEF;
  --bs-btn-focus-shadow-rgb: 248, 249, 250;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #EFEFEF;
  --bs-btn-active-border-color: #EFEFEF;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #EFEFEF;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #EFEFEF;
  --bs-gradient: none;
}

.btn-warning {
  --bs-btn-color: #747474;
  --bs-btn-bg: #FCF7EB;
  --bs-btn-border-color: #FCF7EB;
  --bs-btn-hover-color: #747474;
  --bs-btn-hover-bg: #FFECBE;
  --bs-btn-hover-border-color: #FFECBE;
  --bs-btn-focus-shadow-rgb: 217, 164, 6;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #FFECBE;
  --bs-btn-active-border-color: #FFECBE;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #FCF7EB;
  --bs-btn-disabled-border-color: #FCF7EB;
}

.btn-success {
  --bs-btn-color: #222;
  --bs-btn-bg: #EEF5E4;
  --bs-btn-border-color: #EEF5E4;
  --bs-btn-hover-color: #222;
  --bs-btn-hover-bg: #9de3c2;
  --bs-btn-hover-border-color: #9de3c2;
  --bs-btn-focus-shadow-rgb: 60, 153, 110;
  --bs-btn-active-color: #222;
  --bs-btn-active-bg: #9de3c2;
  --bs-btn-active-border-color: #9de3c2;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #222;
  --bs-btn-disabled-bg: #EEF5E4;
  --bs-btn-disabled-border-color: #EEF5E4;
}

.btn-danger {
  --bs-btn-color: #222;
  --bs-btn-bg: #FFEADA;
  --bs-btn-border-color: #FFEADA;
  --bs-btn-hover-color: #222;
  --bs-btn-hover-bg: #ecc9af;
  --bs-btn-hover-border-color: #ecc9af;
  --bs-btn-focus-shadow-rgb: 60, 153, 110;
  --bs-btn-active-color: #222;
  --bs-btn-active-bg: #ecc9af;
  --bs-btn-active-border-color: #ecc9af;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #222;
  --bs-btn-disabled-bg: #FFEADA;
  --bs-btn-disabled-border-color: #FFEADA;
}

body {
  letter-spacing: 0.03em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  color: var(--bs-dark);
  font-weight: 700;
}

.breadcrumb.text-white {
  --bs-breadcrumb-divider-color: #fff;
  --bs-breadcrumb-item-active-color: var(--bs-primary);
}

.dropdown-menu {
  --bs-dropdown-link-active-bg: var(--bs-primary);
}

.nav-pills .nav-link {
  --bs-nav-pills-link-active-color: #111;
  --bs-nav-pills-link-active-bg: #f1f1f1;
}

.pagination {
  --bs-pagination-active-bg: var(--bs-primary);
  --bs-pagination-active-border-color: var(--bs-primary);
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 3rem;
}

/*----------------------------------------------*/
/* 6. SITE STRUCTURE */
/*----------------------------------------------*/
/* 6.1 Header
--------------------------------------------------------------*/
/* Preloader */
.preloader-wrapper {
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 111;
  background: #fff;
}

.preloader-wrapper .preloader {
  margin: 20% auto 0;
  transform: translateZ(0);
}

.preloader:before,
.preloader:after {
  content: '';
  position: absolute;
  top: 0;
}

.preloader:before,
.preloader:after,
.preloader {
  border-radius: 50%;
  width: 2em;
  height: 2em;
  animation: animation 1.2s infinite ease-in-out;
}

.preloader {
  animation-delay: -0.16s;
}

.preloader:before {
  left: -3.5em;
  animation-delay: -0.32s;
}

.preloader:after {
  left: 3.5em;
}

@keyframes animation {

  0%,
  80%,
  100% {
    box-shadow: 0 2em 0 -1em var(--bs-primary);
  }

  40% {
    box-shadow: 0 2em 0 0 var(--bs-primary);
  }
}

/* *** Start editing below this line *** */
/* .container-fluid {
  max-width: 1600px;
}
*/
@media (min-width: 1400px) {
  .container-lg {
    max-width: 1600px;
  }
}

.banner-blocks {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 2rem;
}

.block-1 {
  grid-area: 1 / 1 / 3 / 8;
}

.block-2 {
  grid-area: 1 / 8 / 2 / 13;
}

.block-3 {
  grid-area: 2 / 8 / 3 / 13;
}

@media screen and (max-width:1140px) {
  .banner-blocks {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
  }

  .block-1 {
    grid-area: 1 / 1 / 3 / 2;
  }

  .block-2 {
    grid-area: 3 / 1 / 4 / 2;
  }

  .block-3 {
    grid-area: 4 / 1 / 5 / 2;
  }

}

/* Swiper carousel */
.swiper-prev,
.swiper-next {
  width: 38px;
  height: 38px;
  line-height: 38px;
  background: #F1F1F1;
  color: #222222;
  padding: 0;
  text-align: center;
  border-radius: 10px;
  --bs-btn-border-color: transparent;
  --bs-btn-active-bg: #ec9b22;
  --bs-btn-active-border-color: transparent;
  --bs-btn-hover-bg: var(--bs-primary);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-disabled-color: #ccc;
  --bs-btn-disabled-bg: #eaeaea;
  --bs-btn-disabled-border-color: #eaeaea
}

.swiper-prev:hover,
.swiper-next:hover {
  background: var(--bs-primary);
}

/* category carousel */
.category-carousel .category-item {
  text-align: center;
  padding: 10px 0;
  margin: 0;
  transition: transform 0.3s ease-out;
}

.category-carousel .swiper-slide img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  margin: 0 auto;
  display: block;
}

.category-carousel .category-item:hover {
  transform: translate3d(0, -10px, 0);
}

.category-carousel .category-item .category-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: #222222;
  margin-top: 20px;
}

/* brand carousel */
.brand-carousel .brand-item {
  background: #FFFFFF;
  border: 1px solid #FBFBFB;
  box-shadow: 0px 5px 22px rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  padding: 16px;
}

.brand-carousel .brand-item img {
  width: 100%;
  border-radius: 12px;
}

.brand-carousel .brand-item .brand-details {
  margin-left: 15px;
}

.brand-carousel .brand-item .brand-title {
  margin: 0;
}

/* product tabs */
.product-tabs .nav-tabs {
  justify-content: flex-end;
  border: none;

  --bs-nav-link-hover-color: #111;
  --bs-nav-link-color: #555;
  --bs-nav-tabs-link-border-color: #fff;
  --bs-nav-tabs-link-hover-border-color: transparent;
  --bs-nav-tabs-link-active-border-color: #fff;
}

.product-tabs .nav-tabs .nav-link.active,
.product-tabs .nav-tabs .nav-item.show .nav-link {
  /* border: none; */
  border-bottom: 3px solid var(--bs-primary);
}

/* products-carousel */
.products-carousel .swiper,
.products-carousel .swiper-container {
  overflow: visible;
}

/* product-grid */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  opacity: 1;
}

.product-item .button-area .quantity {
  padding: 0.5rem;
}

.product-item .button-area {
  display: none;
  position: absolute;
  text-align: center;
  background: #fff;
  width: 100%;
  left: 0;
  bottom: -55px;
  z-index: 1;
  box-shadow: 0px 20px 44px rgba(0, 0, 0, 0.08);
  /* transition: box-shadow 0.3s ease-out; */
}

.product-item {
  position: relative;
  padding: 16px;
  background: #FFFFFF;
  border-radius: 16px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 22px rgba(0, 0, 0, 0);
  /* transition: box-shadow 0.3s ease-out, margin 0.3s ease-out; */
}

.product-item:hover .button-area {
  display: block;
}

.product-item:hover {
  /* z-index: 1; */
  /* margin-bottom: -50px; */
  /* max-height: 500px; */
  box-shadow: 0px 0px 44px rgba(0, 0, 0, 0.08);
}

.product-item figure {
  text-align: center;
}

.product-item figure img {
  max-height: 210px;
  height: auto;
}

.product-item .product-qty {
  width: 85px;
}

.product-item .btn-link {
  text-decoration: none;
}

.product-item #quantity {
  height: auto;
  width: 28px;
  text-align: center;
  border: none;
  margin: 0;
  padding: 0;
}

.product-item .btn-number {
  width: 26px;
  height: 26px;
  line-height: 1;
  text-align: center;
  background: #FFFFFF;
  border: 1px solid #E2E2E2;
  border-radius: 6px;
  color: #222;
  padding: 0;
}

/* cart */
.cart .product-qty {
  min-width: 130px;
}

/* floating image */
.image-float {
  margin-top: -140px;
  margin-bottom: -140px;
}

@media screen and (max-width:991px) {
  .image-float {
    margin: 0;
  }
}

/* post item */
.post-item .post-meta {
  font-size: 0.8rem;
  line-height: 1;
}

.post-item .post-meta svg {
  margin-right: 5px;
}

@media screen and (max-width: 991px) {

  /* offcanvas menu */
  .offcanvas-body .nav-item {
    font-weight: 700;
    border-bottom: 1px solid #d1d1d1;
  }

  .offcanvas-body .filter-categories {
    width: 100%;
    margin-bottom: 20px !important;
    border: 1px solid #d1d1d1 !important;
    padding: 14px;
    border-radius: 8px;
  }

  /* dropdown-menu */
  .dropdown-menu {
    padding: 0;
    border: none;
    line-height: 1.4;
    font-size: 0.9em;
  }

  .dropdown-menu a {
    padding-left: 0;
  }

  .dropdown-toggle::after {
    position: absolute;
    right: 0;
    top: 21px;
  }
}

/* single product */
/* product-thumbnail-slider */
.product-thumbnail-slider {
  height: 740px;
}

@media screen and (max-width:992px) {
  .product-thumbnail-slider {
    margin-top: 20px;
    height: auto;
  }
}

@media screen and (min-width:992px) {
  .product-thumbnail-slider {
    height: 420px;
  }
}

@media screen and (min-width:1200px) {
  .product-thumbnail-slider {
    height: 540px;
  }
}

@media screen and (min-width:1400px) {
  .product-thumbnail-slider {
    height: 740px;
  }
}

/* bootstrap extended */
.border-dashed {
  border-bottom: 1px dashed #d1d1d1;
}

.ls-1 {
  letter-spacing: -0.04em;
}

.button-area .btn-cart {
  text-wrap: nowrap;
  height: 3.3em;
  line-height: 2em;
  width: 100%;
}

.fs-7 {
  font-size: 0.8rem !important;
}

/* button */
.btn-link {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: bold;
  font-family: var(--bs-body-font-family);
  letter-spacing: 0.0875rem;
  text-transform: uppercase;
  text-decoration: none;
}

a.btn-link,
a.btn-link:after {
  transition: all .5s;
}

a.btn-link {
  position: relative;
}

a.btn-link:before,
a.btn-link:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  background-color: var(--bs-dark);
  height: 2px;
}

[data-bs-theme=dark] a.btn-link:after {
  background-color: var(--bs-light);
}

a.btn-link:before {
  background-color: rgba(var(--bs-light-rgb), 0.2);
  width: 100%;
}

a.btn-link.is-checked:after,
a.btn-link:hover:after {
  width: 100%;
}

a.btn-link.text-white:after {
  background-color: var(--bs-light);
}

a.btn-link.text-light:after {
  background-color: var(--bs-light);
}

.navbar .megamenu {
  padding: 1rem;
}

/* ============ desktop view ============ */
@media all and (min-width: 992px) {

  .navbar .has-megamenu {
    position: static !important;
  }

  .navbar .megamenu {
    left: 0;
    right: 0;
    width: 100%;
    margin-top: 0;
  }

}

/* ============ desktop view .end// ============ */


/* ============ mobile view ============ */
@media(max-width: 991px) {

  .navbar.fixed-top .navbar-collapse,
  .navbar.sticky-top .navbar-collapse {
    overflow-y: auto;
    max-height: 90vh;
    margin-top: 10px;
  }
}

/* ============ mobile view .end// ============ */

/* ============================================ */
/* OUR PRODUCT CATALOGUE SECTION               */
/* ============================================ */

/* Section background: warm cream to stay on-brand */
.catalogue-section {
  background-color: var(--bs-primary-bg-subtle);
}

/* ---- Filter Pill Buttons ---- */
.catalogue-filter-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: 999px;
  border: 1.5px solid #d4e8c7;
  background: #fff;
  color: #444;
  font-family: var(--bs-body-font-family);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  line-height: 1.4;
}

.catalogue-filter-btn:hover {
  background: var(--bs-primary);
  color: #fff;
  border-color: var(--bs-primary);
}

.catalogue-filter-btn.active {
  background: var(--bs-secondary);
  color: #fff;
  border-color: var(--bs-secondary);
  box-shadow: 0 4px 14px rgba(54, 65, 39, 0.25);
}

.catalogue-filter-btn svg {
  flex-shrink: 0;
}

/* ---- Catalogue Product Card ---- */
.catalogue-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.catalogue-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  transform: translate3d(0, -6px, 0);
}

/* ---- Card Image Wrapper (for overlay & badges) ---- */
.card-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 260px;
  flex-shrink: 0;
}

/* anchor tag around image on products.html — stretch to fill wrapper */
.card-img-wrapper > a,
.card-img-wrapper > a.d-block {
  display: block !important;
  width: 100%;
  height: 100%;
}

.catalogue-img {
  width: 100%;
  height: 260px !important;  /* !important ensures no override from Bootstrap or inline */
  object-fit: cover;
  object-position: center center;
  background-color: #f5f2ec;
  display: block;
  transition: transform 0.4s ease;
}



.catalogue-card:hover .catalogue-img {
  transform: scale(1.04);
}

/* ---- Badges (Bestseller / Export Ready / New) ---- */
.badge-label {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  z-index: 2;
  line-height: 1.4;
}

.badge-label.bestseller {
  background: #f7a422;
  color: #fff;
}

.badge-label.export {
  background: var(--bs-secondary);
  color: #fff;
}

.badge-label.new-item {
  background: var(--bs-primary);
  color: #fff;
}

/* ---- Quick View Hover Overlay ---- */
.quick-view-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.catalogue-card:hover .quick-view-overlay {
  opacity: 1;
}

/* ---- Card Body Content ---- */
.catalogue-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Product tagline in brand orange */
.product-tagline {
  color: var(--bs-danger);
  font-size: 0.83rem;
  font-weight: 500;
  line-height: 1.4;
}

/* Origin / MOQ meta info */
.product-meta {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.8;
  margin-top: auto;
}

.product-meta a {
  color: var(--bs-primary);
  text-decoration: none;
  font-weight: 500;
}

.product-meta a:hover {
  text-decoration: underline;
}

/* Hide filtered-out items */
.catalogue-item.hidden {
  display: none;
}

/* ============================================ */
/* ROOTED IN INDIA / ORIGIN STORY SECTION      */
/* ============================================ */

.origin-section {
  background-color: var(--bs-primary-bg-subtle);
}

/* Stats numbers */
.origin-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--bs-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.origin-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  margin-bottom: 0;
}

/* Right-column image wrapper */
.origin-img-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.origin-img-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

/* Key Sourcing Regions overlay card */
.sourcing-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.sourcing-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bs-secondary);
  margin-bottom: 14px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.sourcing-dot {
  color: var(--bs-primary);
  font-size: 0.7rem;
  margin-right: 4px;
}

.sourcing-region {
  font-size: 0.83rem;
  font-weight: 600;
  color: #333;
}

.sourcing-product {
  font-size: 0.75rem;
  color: #888;
  margin-bottom: 0;
  padding-left: 16px;
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
  .origin-img-wrapper img {
    height: 280px;
  }

  .sourcing-card {
    position: static;
    border-radius: 0 0 12px 12px;
    box-shadow: none;
    border-top: 1px solid #eee;
  }

  .origin-img-wrapper {
    border-radius: 12px;
  }
}


/* ============================================ */
/* SECTION 1: WHY CHOOSE AYUSHKAMA             */
/* ============================================ */

.why-choose-section {
  background: var(--bs-secondary);
}

.why-section-subtitle {
  color: rgba(255, 255, 255, 0.70);
  font-size: 1.05rem;
  margin-top: 8px;
}

.why-icon-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #f7a422;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-card-title {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.why-card-text {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.85rem;
  line-height: 1.65;
}


/* ============================================ */
/* SECTION 2: GLOBAL STANDARDS. LOCAL SOUL.    */
/* ============================================ */

.global-section {
  background: var(--bs-primary-bg-subtle);
}

.export-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.export-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.10);
}

.export-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bs-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.export-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bs-secondary);
  margin-bottom: 8px;
}

.export-card-text {
  font-size: 0.83rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Destinations Card */
.destinations-card {
  background: #fff;
  border-radius: 18px;
  padding: 36px 40px;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.07);
}

.destinations-list {
  margin-bottom: 0;
}

.destinations-list li {
  font-size: 0.9rem;
  color: #444;
  padding: 4px 0;
  line-height: 1.6;
}

.country-dot {
  color: var(--bs-danger);
  font-size: 0.65rem;
  margin-right: 8px;
  vertical-align: middle;
}

/* Download button */
.btn-download {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--bs-secondary);
  color: #fff;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  transition: background 0.25s ease, transform 0.2s ease;
}

.btn-download:hover {
  background: #2a3320;
  color: #fff;
  transform: translateY(-2px);
}

/* World map wrapper */
.world-map-wrapper {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 260px;
}

.world-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.6);
}

.world-map-overlay {
  position: absolute;
  inset: 0;
}


/* ============================================ */
/* SECTION 3: TRUSTED BY GLOBAL IMPORTERS      */
/* ============================================ */

.testimonials-section {
  background: var(--bs-primary-bg-subtle);
}

.testimonial-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

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

.testimonial-stars {
  color: #f7a422;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-quote-icon {
  font-size: 3rem;
  color: #f7a422;
  line-height: 0.8;
  font-family: Georgia, serif;
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.9rem;
  color: #333;
}

.testimonial-role {
  font-size: 0.78rem;
  color: #999;
  margin-bottom: 2px;
}

/* Certification badges */
.cert-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px 24px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  min-width: 130px;
  transition: transform 0.25s ease;
}

.cert-card:hover {
  transform: translateY(-3px);
}

.cert-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
}

.cert-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--bs-secondary);
  margin-top: 10px;
  margin-bottom: 0;
}





/* ============================================ */
/* WHY CHOOSE AYUSHKAMA — CARDS & STATS        */
/* ============================================ */

.why-card {
  padding: 1.5rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  height: 100%;
  transition: background 0.25s ease;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.14);
}

.why-stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: #f7a422;
  line-height: 1;
  margin-bottom: 4px;
}

.why-stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0;
}

/* ============================================ */
/* ADVANCED ABOUT PAGE ENHANCEMENTS            */
/* ============================================ */

.about-hero {
  background: linear-gradient(135deg, #f4fbee 0%, var(--bs-success-bg-subtle) 55%, #d3e9b4 100%);
  padding: 5rem 0 4rem; position: relative; overflow: hidden;
}
.about-hero::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 340px; height: 340px; border-radius: 50%; background: rgba(107, 178, 82, 0.06);
}
.hero-eyebrow {
  display: inline-block; background: var(--bs-secondary); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 5px 16px; border-radius: 20px; margin-bottom: 18px;
}
.about-hero h1 {
  font-family: var(--heading-font);
  font-size: clamp(1.9rem, 3.8vw, 2.9rem); font-weight: 800;
  color: var(--bs-secondary); line-height: 1.2;
}
.hero-badge {
  display: inline-block; background: #fff; border: 1px solid #c0dd97;
  color: var(--bs-secondary); font-size: .73rem; font-weight: 600;
  padding: 5px 13px; border-radius: 20px; margin: 3px 3px 3px 0;
}

.hero-pill { background: #3a5a22; color: #fff; padding: 6px 16px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; display: inline-block; margin-bottom: 24px; }
.btn-blue { background: #0076ff; color: #fff; font-weight: 700; border: none; border-radius: 30px; padding: 12px 30px; }
.btn-blue:hover { background: #006ae6; color: #fff; }


.hero-img-wrap { position: relative; display: inline-block; width: 100%; }
.hero-float-card { 
  position: absolute; bottom: 20px; right: 20px; 
  background: #fff; border-radius: 12px; padding: 22px 28px; 
  box-shadow: 0 10px 40px rgba(0,0,0,0.12); z-index: 10;
  max-width: 180px;
}
.hero-float-card .hfc-num { font-size: 1.6rem; font-weight: 800; color: #264d1a; line-height: 1.1; }
.hero-float-card .hfc-label { font-size: 0.75rem; color: #666; font-weight: 600; margin-top: 4px; }






.stats-strip { background: var(--bs-secondary); padding: 2.6rem 0; }
.stat-item .sn { font-size: 2.1rem; font-weight: 800; color: #fff; display: block; }
.stat-item .sl { font-size: .75rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .07em; }

.sec-eyebrow { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--bs-primary); margin-bottom: 8px; }
.sec-title   { font-family: var(--heading-font); font-size: clamp(1.55rem, 2.8vw, 2.1rem); font-weight: 800; color: var(--bs-secondary); line-height: 1.25; margin-bottom: 14px; }

.bq-brand { border-left: 4px solid var(--bs-primary); padding: .9rem 0 .9rem 1.4rem; margin: 1.4rem 0; }
.bq-brand p      { font-size: 1rem; font-style: italic; color: var(--bs-secondary); margin-bottom: 6px; line-height: 1.7; }
.region-card { background: var(--bs-success-bg-subtle); border: 1px solid #c0dd97; border-radius: 10px; padding: 11px 15px; }
.region-card .rn { font-weight: 700; color: var(--bs-secondary); font-size: .88rem; }
.rdot { color: var(--bs-primary); margin-right: 5px; }

.mv-card { background: #fff; border: 1px solid #c0dd97; border-radius: 16px; padding: 2rem; height: 100%; transition: transform 0.3s ease; }
.mv-card:hover { transform: translateY(-5px); }
.mv-icon { width: 50px; height: 50px; background: var(--bs-success-bg-subtle); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }

.val-card { border: 1px solid #e4ecce; border-radius: 14px; padding: 1.5rem; height: 100%; transition: box-shadow .2s, transform .2s; }
.val-card:hover { box-shadow: 0 8px 28px rgba(107, 178, 82, .09); transform: translateY(-3px); }
.val-icon { width: 44px; height: 44px; background: var(--bs-success-bg-subtle); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 13px; }


.timeline-sec { background: #264d1a; padding: 5rem 0; }
.tl-wrap { position: relative; padding-left: 38px; max-width: 520px; }
.tl-wrap::before { content: ''; position: absolute; left: 9px; top: 0; bottom: 0; width: 2px; background: rgba(255,255,255,.18); }
.tl-entry { position: relative; padding-bottom: 40px; }
.tl-dot-outer { position: absolute; left: -39px; top: 2px; width: 22px; height: 22px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.4); display: flex; align-items: center; justify-content: center; background: #264d1a; z-index: 2; }
.tl-dot { width: 10px; height: 10px; border-radius: 50%; background: #f7a422; }


.cert-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid #c0dd97;
  color: var(--bs-secondary); font-weight: 600; font-size: .83rem;
  padding: 8px 18px; border-radius: 30px; margin: 5px;
}
.cert-card { background: #fff; border: 1px solid #c0dd97; border-radius: 12px; padding: 1.2rem; text-align: center; height: 100%; }

.testi-card { background: var(--bs-success-bg-subtle); border: 1px solid #c0dd97; border-radius: 16px; padding: 1.8rem; height: 100%; }
.testi-stars { color: var(--bs-danger); letter-spacing: 2px; font-size: .88rem; }

.team-card { background: #fff; border: 1px solid #c0dd97; border-radius: 14px; padding: 1.6rem; text-align: center; height: 100%; }
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--bs-success-bg-subtle); border: 2px solid #c0dd97;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700; color: var(--bs-secondary);
  margin: 0 auto 14px; overflow: hidden;
}

.about-cta { background: var(--bs-secondary); padding: 5rem 0; }
.btn-amber { background: var(--bs-danger); color: #fff; font-weight: 700; border: none; border-radius: 30px; padding: 12px 30px; font-size: .9rem; text-decoration: none; display: inline-block; margin: 5px; transition: opacity .2s; }
.btn-amber:hover { opacity: .88; color: #fff; }

/* --- CONTACT & EXPORT PORTAL STYLES --- */
:root {
  --green-dark:   #2d5a1b;
  --green-mid:    #3d7a24;
  --green-light:  #eaf3de;
  --green-border: #c0dd97;
  --amber:        #f5c518;
  --text-contact-muted:   #6c7a5f;
}

/* Breadcrumb */
.pg-bc { background: var(--green-light); padding: 11px 0; border-bottom: 1px solid var(--green-border); }
.pg-bc a { color: var(--green-dark); text-decoration: none; font-size: .84rem; }
.pg-bc span { color: var(--text-contact-muted); font-size: .84rem; }

/* Page Hero */
.contact-hero {
  background: linear-gradient(135deg, #f4fbee 0%, var(--green-light) 55%, #d3e9b4 100%);
  padding: 4rem 0 3rem; position: relative; overflow: hidden;
}
.contact-hero::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 280px; height: 280px; border-radius: 50%; background: rgba(61,122,36,.06);
}
.contact-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; color: var(--green-dark); line-height: 1.2; }
.contact-hero p  { font-size: 1rem; color: var(--text-contact-muted); line-height: 1.8; max-width: 560px; }

/* Inquiry type tabs */
.inquiry-tabs { background: #fff; border-bottom: 1px solid var(--green-border); padding: 0; }
.inquiry-tab-btn {
  background: none; border: none; border-bottom: 3px solid transparent;
  color: var(--text-contact-muted); font-weight: 600; font-size: .88rem;
  padding: 16px 24px; cursor: pointer; transition: all .2s;
}
.inquiry-tab-btn:hover  { color: var(--green-dark); }
.inquiry-tab-btn.active { color: var(--green-dark); border-bottom-color: var(--green-dark); }

/* Main layout */
.contact-main { padding: 4rem 0; background: #fff; }

/* Form card */
.form-card {
  background: #fff; border: 1px solid var(--green-border);
  border-radius: 16px; padding: 2.2rem;
}
.form-card h3 { font-weight: 700; color: var(--green-dark); margin-bottom: 6px; font-size: 1.3rem; }
.form-card .fc-sub { color: var(--text-contact-muted); font-size: .88rem; margin-bottom: 1.8rem; line-height: 1.6; }

/* Product checkboxes */
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.prod-check {
  display: flex; align-items: center; gap: 8px;
  background: var(--green-light); border: 1px solid var(--green-border);
  border-radius: 8px; padding: 8px 12px; cursor: pointer;
  transition: background .15s, border-color .15s; font-size: .82rem;
}
.prod-check input { accent-color: var(--green-dark); width: 15px; height: 15px; cursor: pointer; flex-shrink: 0; }
.prod-check:hover { background: #ddf0c4; border-color: var(--green-mid); }
.prod-check span { color: var(--green-dark); font-weight: 500; line-height: 1.3; }

/* Submit button */
.btn-submit {
  background: var(--green-dark); color: #fff; border: none;
  border-radius: 30px; padding: 13px 36px; font-size: .92rem; font-weight: 700;
  cursor: pointer; transition: background .2s; width: 100%; margin-top: 8px;
}
.btn-submit:hover { background: var(--green-mid); }

/* Success message */
.form-success {
  display: none; background: var(--green-light); border: 1px solid var(--green-border);
  border-radius: 12px; padding: 2rem; text-align: center; margin-top: 16px;
}
.form-success .fs-icon { font-size: 2.5rem; margin-bottom: 10px; }
.form-success h4 { color: var(--green-dark); font-weight: 700; margin-bottom: 8px; }
.form-success p  { color: var(--text-contact-muted); font-size: .88rem; margin: 0; }

/* Contact detail cards */
.contact-card {
  background: var(--green-light); border: 1px solid var(--green-border);
  border-radius: 14px; padding: 1.3rem 1.5rem; margin-bottom: 14px;
  display: flex; align-items: flex-start; gap: 14px;
}
.contact-card-icon {
  width: 42px; height: 42px; background: var(--green-dark); color: #fff;
  border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-card h6 { font-weight: 700; color: var(--green-dark); font-size: .88rem; margin-bottom: 3px; }
.contact-card p  { color: var(--text-contact-muted); font-size: .83rem; line-height: 1.55; margin: 0; }
.contact-card a  { color: var(--green-mid); text-decoration: none; font-weight: 600; }
.contact-card a:hover { text-decoration: underline; }

/* Department contacts */
.dept-card {
  background: #fff; border: 1px solid var(--green-border);
  border-radius: 12px; padding: 1.1rem 1.3rem; margin-bottom: 10px;
}
.dept-card .dept-label { font-size: .7rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--green-mid); margin-bottom: 3px; }
.dept-card .dept-name  { font-size: .88rem; font-weight: 700; color: var(--green-dark); margin-bottom: 2px; }
.dept-card .dept-email { font-size: .82rem; color: var(--text-contact-muted); }
.dept-card .dept-email a { color: var(--green-mid); text-decoration: none; }

/* Response time badge */
.resp-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-dark); color: #fff;
  font-size: .75rem; font-weight: 600; padding: 6px 14px;
  border-radius: 20px; margin-bottom: 1rem;
}
.resp-dot { width: 7px; height: 7px; background: var(--amber); border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

/* WhatsApp CTA */
.whatsapp-btn {
  display: flex; align-items: center; gap: 10px;
  background: #25d366; color: #fff; font-weight: 700;
  border-radius: 12px; padding: 14px 18px; text-decoration: none;
  font-size: .9rem; transition: background .2s; margin-bottom: 14px;
}
.whatsapp-btn:hover { background: #1ebe5c; color: #fff; }
.whatsapp-btn svg { flex-shrink: 0; }

/* Map section */
.map-section { background: var(--green-light); padding: 4rem 0; }
.map-embed { border-radius: 16px; overflow: hidden; border: 1px solid var(--green-border); }
.map-embed iframe { width: 100%; height: 380px; border: none; display: block; }

/* Export offices */
.office-card {
  background: #fff; border: 1px solid var(--green-border);
  border-radius: 12px; padding: 1.3rem; height: 100%;
}
.office-flag { font-size: 1.6rem; margin-bottom: 8px; display: block; }
.office-card h6 { font-weight: 700; color: var(--green-dark); margin-bottom: 4px; font-size: .9rem; }
.office-card p  { font-size: .8rem; color: var(--text-contact-muted); line-height: 1.6; margin: 0; }

/* FAQ strip */
.faq-item { border-bottom: 1px solid var(--green-border); padding: 1rem 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-weight: 700; color: var(--green-dark); font-size: .92rem; margin-bottom: 6px; }
.faq-a { color: var(--text-contact-muted); font-size: .86rem; line-height: 1.7; margin: 0; }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* --- ENQUIRY CART STYLES --- */
:root {
  --green-dark:   #2d5a1b;
  --green-mid:    #3d7a24;
  --green-light:  #eaf3de;
  --green-border: #c0dd97;
  --amber:        #f5c518;
  --text-cart-muted:   #6c7a5f;
}

/* Page hero */
.cart-hero {
  background: linear-gradient(135deg, #f4fbee 0%, var(--green-light) 60%, #d3e9b4 100%);
  padding: 3rem 0 2.5rem; border-bottom: 1px solid var(--green-border);
}
.cart-hero h1 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; color: var(--green-dark); margin-bottom: 6px; }
.cart-hero p  { color: var(--text-cart-muted); font-size: .95rem; margin: 0; }
.cart-hero .badge-info {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-dark); color: #fff;
  font-size: .72rem; font-weight: 600; padding: 5px 14px; border-radius: 20px;
}
.live-dot { width: 7px; height: 7px; background: var(--amber); border-radius: 50%; animation: pulse 1.5s infinite; flex-shrink: 0; }

/* Cart items table */
.cart-table-wrap { border: 1px solid var(--green-border); border-radius: 14px; overflow: hidden; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table thead th {
  background: var(--green-light); color: var(--green-dark);
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
  padding: 12px 16px; border-bottom: 1px solid var(--green-border);
}
.cart-table tbody tr { border-bottom: 1px solid var(--green-border); transition: background .15s; }
.cart-table tbody tr:last-child { border-bottom: none; }
.cart-table tbody tr:hover { background: #fafef6; }
.cart-table td { padding: 14px 16px; vertical-align: middle; }

/* Product cell */
.cart-product { display: flex; align-items: center; gap: 14px; }
.cart-product-img-placeholder {
  width: 58px; height: 58px; border-radius: 10px;
  background: var(--green-light); border: 1px solid var(--green-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.cart-product-name { font-weight: 700; color: var(--green-dark); font-size: .88rem; margin-bottom: 2px; }
.cart-product-tag  { font-size: .72rem; color: var(--text-cart-muted); }

/* Quantity input */
.qty-wrap { display: flex; align-items: center; gap: 6px; }
.qty-input {
  width: 70px; border: 1px solid var(--green-border); border-radius: 8px;
  padding: 7px 10px; font-size: .85rem; text-align: center; color: var(--green-dark);
  font-weight: 600;
}
.qty-input:focus { border-color: var(--green-mid); outline: none; }
.qty-unit { font-size: .75rem; color: var(--text-cart-muted); }

/* Packaging select */
.pkg-select {
  border: 1px solid var(--green-border); border-radius: 8px;
  padding: 7px 10px; font-size: .82rem; color: var(--green-dark);
  background: #fff; min-width: 140px;
}
.pkg-select:focus { border-color: var(--green-mid); outline: none; }

/* Remove button */
.btn-remove {
  background: none; border: 1px solid #f0c0c0; color: #c0392b;
  border-radius: 8px; padding: 6px 10px; font-size: .78rem;
  cursor: pointer; transition: background .15s;
}
.btn-remove:hover { background: #fff0f0; }

/* MOQ note */
.moq-note {
  display: inline-block; background: var(--green-light); color: var(--green-dark);
  font-size: .7rem; font-weight: 600; padding: 3px 8px; border-radius: 6px; margin-top: 4px;
}

/* Summary card */
.summary-card {
  background: var(--green-light); border: 1px solid var(--green-border);
  border-radius: 16px; padding: 1.8rem; position: sticky; top: 20px;
}
.summary-card h4 { font-weight: 700; color: var(--green-dark); margin-bottom: 1.2rem; font-size: 1.1rem; }
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--green-border); font-size: .87rem; }
.summary-row:last-of-type { border-bottom: none; }
.summary-row .sr-label { color: var(--text-cart-muted); }
.summary-row .sr-value { font-weight: 700; color: var(--green-dark); }

.summary-note {
  background: #fff; border: 1px solid var(--green-border); border-radius: 10px;
  padding: 12px 14px; font-size: .8rem; color: var(--text-cart-muted); margin: 1rem 0; line-height: 1.6;
}
.summary-note strong { color: var(--green-dark); }

/* Buyer details form inside summary */
.buyer-form .form-label { font-size: .78rem; font-weight: 600; color: var(--green-dark); margin-bottom: 4px; }
.buyer-form .form-control,
.buyer-form .form-select {
  border: 1px solid var(--green-border); border-radius: 8px;
  font-size: .83rem; padding: 8px 12px; margin-bottom: 10px;
}
.buyer-form .form-control:focus,
.buyer-form .form-select:focus { border-color: var(--green-mid); outline: none; box-shadow: 0 0 0 3px rgba(61,122,36,.1); }
.buyer-form textarea { min-height: 80px; resize: vertical; }

/* Submit button */
.btn-submit-enquiry {
  background: var(--green-dark); color: #fff; border: none;
  border-radius: 30px; padding: 14px 20px; font-size: .92rem; font-weight: 700;
  cursor: pointer; width: 100%; transition: background .2s; margin-top: 4px;
}
.btn-submit-enquiry:hover { background: var(--green-mid); }
.btn-submit-enquiry:disabled { background: #aaa; cursor: not-allowed; }

/* WhatsApp shortcut */
.btn-wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #25d366; color: #fff; text-decoration: none; font-weight: 700;
  border-radius: 30px; padding: 12px 20px; font-size: .88rem; margin-top: 10px;
  transition: background .2s;
}
.btn-wa:hover { background: #1ebe5c; color: #fff; }

/* Success state */
.enquiry-success {
  display: none; text-align: center; padding: 2rem 1rem;
  background: var(--green-light); border: 1px solid var(--green-border); border-radius: 14px;
}
.enquiry-success .es-icon { font-size: 3rem; margin-bottom: 12px; display: block; }
.enquiry-success h4 { font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
.enquiry-success p  { color: var(--text-cart-muted); font-size: .88rem; margin: 0; }

/* Trust badges row */
.trust-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1rem; }
.trust-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: #fff; border: 1px solid var(--green-border);
  color: var(--green-dark); font-size: .72rem; font-weight: 600;
  padding: 5px 10px; border-radius: 20px;
}

/* Suggested products */
.suggested-sec { background: var(--green-light); padding: 4rem 0; }
.suggest-card {
  background: #fff; border: 1px solid var(--green-border); border-radius: 14px;
  overflow: hidden; height: 100%; transition: box-shadow .2s, transform .2s;
}
.suggest-card:hover { box-shadow: 0 6px 22px rgba(45,90,27,.1); transform: translateY(-2px); }
.suggest-card img { width: 100%; height: 160px; object-fit: cover; }
.suggest-card .sc-body { padding: 14px; }
.suggest-card h6 { font-weight: 700; color: var(--green-dark); font-size: .88rem; margin-bottom: 3px; }
.suggest-card .sc-tag { font-size: .75rem; color: var(--text-cart-muted); margin-bottom: 10px; }
.btn-add-suggest {
  background: var(--green-light); color: var(--green-dark); border: 1px solid var(--green-border);
  border-radius: 20px; padding: 6px 14px; font-size: .78rem; font-weight: 700;
  cursor: pointer; width: 100%; transition: background .15s;
}
.btn-add-suggest:hover { background: var(--green-border); }

/* Mobile responsive */
@media (max-width: 768px) {
  .cart-table thead { display: none; }
  .cart-table, .cart-table tbody, .cart-table tr, .cart-table td { display: block; width: 100%; }
  .cart-table td { padding: 8px 12px; }
  .cart-table td::before { content: attr(data-label); font-size: .7rem; font-weight: 700; color: var(--text-cart-muted); text-transform: uppercase; display: block; margin-bottom: 4px; }
  .cart-table tbody tr { border: 1px solid var(--green-border); border-radius: 12px; margin-bottom: 12px; padding: 4px; }
}

/* --- UPDATED SELECTED PRODUCTS UI --- */
.cart-card {
  background: #fff; border: 1px solid #eee; border-radius: 20px;
  overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.02); margin-bottom: 2rem;
}
.cart-card-header {
  padding: 1.5rem 2rem; border-bottom: 1px solid #f5f5f5;
  display: flex; justify-content: space-between; align-items: center;
}
.cart-card-header h5 { font-weight: 800; color: #222; margin: 0; font-size: 1.1rem; }
.btn-add-more { color: #5a964a; font-weight: 700; font-size: 0.75rem; text-decoration: none; letter-spacing: 0.05em; }
.btn-add-more:hover { color: #3d7a24; }

.cart-table-v2 { width: 100%; border-collapse: collapse; }
.cart-table-v2 thead th {
  padding: 12px 2rem; text-align: left;
  font-size: 0.7rem; font-weight: 700; color: #999;
  text-transform: uppercase; letter-spacing: 0.08em;
  border-bottom: 1px solid #f5f5f5;
}
.cart-table-v2 tbody tr { border-bottom: 1px solid #f5f5f5; }
.cart-table-v2 tbody tr:last-child { border-bottom: none; }
.cart-table-v2 td { padding: 1.5rem 2rem; vertical-align: middle; }

/* Product Info */
.cart-item-info { display: flex; align-items: center; gap: 1rem; }
.cart-item-img { width: 68px; height: 68px; border-radius: 12px; border: 1px solid #f0f0f0; object-fit: cover; }
.cart-item-name { font-weight: 700; color: #444; font-size: 0.95rem; margin-bottom: 2px; }
.cart-item-moq { font-size: 0.8rem; color: #888; }

/* Stepper */
.stepper-wrap {
  display: inline-flex; align-items: center; border: 1px solid #ccc; border-radius: 6px; overflow: hidden;
}
.stepper-btn {
  width: 32px; height: 32px; background: #fff; border: none;
  font-size: 1.1rem; color: #666; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.1s;
}
.stepper-btn:hover { background: #f9f9f9; }
.stepper-val {
  width: 40px; height: 32px; border: none; border-left: 1px solid #eee; border-right: 1px solid #eee;
  text-align: center; font-weight: 600; font-size: 0.9rem; color: #222;
}
.stepper-val:focus { outline: none; }

/* Remove button lite */
.btn-remove-lite {
  background: #fdf0e6; color: #333; border: none; font-weight: 600;
  padding: 11px 18px; border-radius: 8px; font-size: 0.82rem; transition: background 0.2s;
}
.btn-remove-lite:hover { background: #fce1cd; }

/* ============================================ */
/* MOBILE VIEW OVERRIDES (max-width: 991px)      */
/* ============================================ */

@media (max-width: 991px) {
  /* Header Adjustments */
  header .row.align-items-center {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .site-logo img {
    max-height: 40px !important; /* Matches inline style in HTML */
  }

  .navbar-toggler svg {
    width: 28px;
    height: 28px;
  }

  /* Search Bar Compactness */
  .search-bar {
    padding: 6px 12px !important;
    margin-bottom: 5px;
    background: #f8f9fa !important;
  }

  .search-bar input {
    font-size: 0.9rem;
  }



  /* Origin Story Section */
  .origin-section {
    padding-top: 3.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .origin-section h2 {
    font-size: 1.85rem !important;
    text-align: center;
    margin-bottom: 1.8rem !important;
  }

  .origin-section .text-muted {
    text-align: center;
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .origin-stat-number {
    font-size: 2rem !important;
  }

  .origin-stat-label {
    font-size: 0.7rem !important;
  }

  /* Offcanvas Menu Styling */
  .offcanvas-body .nav-link {
    font-size: 1.05rem;
    padding: 14px 0 !important;
    font-weight: 600;
  }

  .offcanvas-body h4.fs-6 {
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    font-weight: 800;
    color: var(--bs-secondary);
    border-bottom: 2px solid var(--bs-primary);
    display: inline-block;
  }

  /* Layout refinements */
  .container-lg {
    --bs-gutter-x: 1.5rem !important;
  }

  /* About Page Mobile Fixes */
  .about-hero {
    padding-top: 3rem !important;
    padding-bottom: 2rem !important;
    text-align: center;
  }
  .about-hero h1 {
    font-size: 2rem !important;
    line-height: 1.3 !important;
  }
  .about-hero .hero-badge {
    font-size: 0.7rem !important;
    padding: 4px 10px !important;
    margin-bottom: 5px !important;
    display: inline-block;
  }
  .hero-img-wrap img {
    height: 300px !important;
    margin-top: 2rem;
  }
  .hero-float-card {
    right: 1rem !important;
    bottom: 1rem !important;
    padding: 10px 15px !important;
  }

  .stats-strip {
    padding: 2rem 0 !important;
  }
  .stats-strip .sn {
    font-size: 1.5rem !important;
  }
  .stats-strip .sl {
    font-size: 0.65rem !important;
  }

  /* Contact Page Mobile Fixes */
  .contact-hero {
    padding: 3rem 0 !important;
    text-align: center;
  }
  .contact-hero h1 {
    font-size: 1.8rem !important;
  }
  .inquiry-tabs .d-flex {
    justify-content: center;
  }
  .inquiry-tab-btn {
    width: 100%;
    margin-bottom: 10px;
    font-size: 0.85rem !important;
  }
  .form-card {
    padding: 1.5rem !important;
  }
  .info-section {
    margin-top: 3rem;
  }
}

/* ================================================
   HERO BANNER — Safe fix for desktop + mobile
   Only touches .hero-banner specific classes.
   Does NOT affect Bootstrap or any other section.
================================================ */

.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: block;
}

.hero-banner__img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
}

.hero-banner__text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 60px;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.60) 40%,
    rgba(0, 0, 0, 0.05) 100%
  );
  box-sizing: border-box;
}

.hero-title {
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
  max-width: 520px;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 460px;
}

.hero-banner__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ── TABLET (max 991px) ── */
@media (max-width: 991px) {
  .hero-banner__img {
    height: 460px;
  }
  .hero-banner__text-overlay {
    padding: 36px 40px;
  }
  .hero-title {
    font-size: 2rem;
  }
}

/* ── MOBILE (max 767px) ── */
@media (max-width: 767px) {
  .hero-banner__img {
    height: 480px;
    object-position: 15% center;
  }
  .hero-banner__text-overlay {
    padding: 28px 20px;
    justify-content: flex-end;
    padding-bottom: 40px;
    background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.82) 50%,
      rgba(0, 0, 0, 0.70) 100%
    );
  }
  .hero-title {
    font-size: 1.55rem;
    max-width: 100%;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  }
  .hero-subtitle {
    font-size: 0.875rem;
    max-width: 100%;
    margin-bottom: 20px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
  }
  .hero-banner__cta {
    flex-direction: column;
    gap: 10px;
  }
  .hero-banner__cta .btn {
    width: 100%;
    text-align: center;
  }
}

/* Floating WhatsApp Icon */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  color: #FFF;
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
}

@media (max-width: 767px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 25px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* ================================================
   B2B PRODUCT CATALOGUE & UI CONSISTENCY
   Refines card heights, image ratios, and breadcrumbs.
================================================ */

.catalogue-card {
  transition: all 0.3s ease;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
}

.catalogue-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.card-img-wrapper {
  overflow: hidden;
  background: #f8f9fa;
  position: relative;
}

.catalogue-img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.catalogue-card:hover .catalogue-img {
  transform: scale(1.05);
}

.product-tagline {
  overflow: hidden;
}


.catalogue-filter-btn {
  padding: 8px 18px;
  border: 1px solid #eee;
  background: white;
  border-radius: 30px;
  color: #666;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.catalogue-filter-btn.active, 
.catalogue-filter-btn:hover {
  background: #739d2d !important; /* Theme Green */
  color: white !important;
  border-color: #739d2d !important;
  box-shadow: 0 4px 10px rgba(115, 157, 45, 0.2);
}

/* Breadcrumb Styling Consistency */
.pg-bc {
  font-size: 0.95rem;
}

.pg-bc a {
  text-decoration: none;
  color: #666;
  transition: color 0.2s;
}

.pg-bc a:hover {
  color: #739d2d;
}

.pg-bc .text-primary {
  color: #739d2d !important;
}

/* Badge Label adjustments */
.badge-label {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 10;
  text-transform: uppercase;
}

.badge-label.bestseller { background: #ffc107; color: #000; }
.badge-label.export { background: #198754; color: #fff; }
.badge-label.new-item { background: #0d6efd; color: #fff; }

@media (max-width: 576px) {
  .catalogue-card .btn { font-size: 0.75rem; padding: 6px 10px; }
}



/* ================================================
   ABOUT US PAGE — B2B SHARPENING
   Enhances Farmer Stories, Flags, and Value Cards.
================================================ */

.mv-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: transform 0.3s ease;
  height: 100%;
}

.mv-card:hover {
  transform: translateY(-5px);
}

.mv-icon {
  background: rgba(115, 157, 45, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.val-card {
  background: white;
  border: 1px solid #f0f0f0;
  padding: 2.5rem; /* Increased padding */
  border-radius: 12px;
  height: 100%;
}

.val-card h5 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

/* Farmer Story Cards */
.farmer-story-card {
  background: #fdfdfd;
  border-left: 4px solid #739d2d;
  padding: 2rem;
  border-radius: 0 16px 16px 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.farmer-img-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Testimonial Flags */
.flag-icon {
  width: 20px;
  height: 14px;
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
  background-size: contain;
  background-repeat: no-repeat;
}

.flag-us { background-image: url('https://flagcdn.com/us.svg'); }
.flag-de { background-image: url('https://flagcdn.com/de.svg'); }
.flag-ae { background-image: url('https://flagcdn.com/ae.svg'); }

/* Certification B2B Badges */
.cert-card-b2b {
  background: white;
  border: 1px solid #eee;
  padding: 1.5rem;
  border-radius: 12px;
  transition: border-color 0.3s;
  text-align: center;
}

.cert-card-b2b:hover {
  border-color: #739d2d;
}

.cert-id-tag {
  background: #f8f9fa;
  font-family: monospace;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 4px;
  color: #666;
}

/* Footer & CTA refinements */
.partner-cta-box {
  background: #739d2d;
  padding: 1.5rem;
  border-radius: 12px;
  color: white;
}

.partner-cta-box h6 { color: #fff; margin-bottom: 0.5rem; }
.partner-cta-box p { font-size: 0.85rem; opacity: 0.9; margin-bottom: 1rem; }

@media (max-width: 991px) {
  .val-card { padding: 1.5rem; }
}

/* ==========================================================================
   B2B SERVICES & PRIVATE LABEL STYLES
   ========================================================================== */

/* Process Timeline (Step-by-Step) */
.process-step-wrap {
    position: relative;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
}

.process-step-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background: #e9ecef;
}

@media (min-width: 992px) {
    .process-step-wrap::before {
        left: 50%;
        transform: translateX(-50%);
    }
}

.step-card {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    margin-bottom: 3rem;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -1.5rem;
    left: 20px;
    width: 3.5rem;
    height: 3.5rem;
    background: #111;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 4px solid #fff;
}

@media (min-width: 992px) {
    .step-card { width: 45%; }
    .step-card.odd { align-self: flex-start; }
    .step-card.even { align-self: flex-end; }
    .step-card.odd .step-number { right: -4.75rem; left: auto; }
    .step-card.even .step-number { left: -4.75rem; }
}

/* Packaging Gallery */
.pack-gallery-card {
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #fff;
    height: 100%;
}

.pack-gallery-card:hover {
    border-color: #739d2d;
    transform: translateY(-5px);
}

.pack-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #739d2d;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* B2B Table Customization */
.b2b-table thead {
    background: #f8f9fa;
    border-bottom: 2px solid #739d2d;
}

.b2b-table th {
    padding: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
    color: #333;
}

.b2b-table td {
    padding: 1.25rem;
    vertical-align: middle;
}

/* Institutional Badge Large */
.inst-badge-lg {
    padding: 2.5rem 1.5rem;
    border-radius: 1.5rem;
    background: #fff;
    border: 1px solid #eee;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.inst-badge-lg:hover {
    background: #f8faf1;
    border-color: #739d2d;
    transform: translateY(-5px);
}

.inst-badge-lg img {
    height: 90px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

/* Homepage FAQ Custom Styling */
.faq-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
    border-color: #739d2d !important;
}
