.top-strip {
  height: 37px;
  background: var(--color-green-bright);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  line-height: 24px;
}

@media (min-width: 769px) and (max-width: 992px){
  .top-strip{
    font-size: 11px;
  }
}

.top-item {
  padding: 0 34px;
  position: relative;
}

@media (min-width: 769px) and (max-width: 992px){
  .top-item::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background-color: rgba(0, 91, 24, .35);
  }

  .top-item:last-child::after {
    display: none;
  }
}

.btn-navbar-toggler {
  font-size: 14px;
  border: none;
}

.main-nav {
  min-height: 60px;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(58, 36, 24, 0.08);
}

.navbar-brand {
  color: var(--color-green);
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 800;
}

.nav-links {
  gap: 47px;
}

.nav-links .nav-link {
  padding: 0 0 6px;
  color: var(--color-brown);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 24px;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links .nav-link.active {
  border-bottom: 2px solid var(--color-maroon);
  color: var(--color-maroon);
  font-weight: 700;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-button,
.round-control,
.cart-button {
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 9999px;
  background: transparent;
}

.icon-button {
  width: 32px;
  height: 32px;
}

/* .cart-dot {
  position: relative;
}

.cart-dot::after {
  position: absolute;
  top: 4px;
  right: 3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-yellow);
  content: "";
  
  position: absolute;
  top: 2px;
  right: 0;
  background: #f5bd16;
  color: var(--color-green);
  width: 17px;
  height: 17px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
} */

.hero-section {
  padding-top: 73px;
}

.hero-panel {
  overflow: hidden;
  border-radius: 20px;
}

.hero-media {
  min-height: 642px;
  padding-top: 34px;
  border-radius: 20px 20px 0 0;
  background:
    radial-gradient(circle at 18% 68%, rgba(252, 206, 9, 0.95) 0 5%, transparent 16%),
    radial-gradient(circle at 82% 62%, rgba(244, 185, 66, 0.8) 0 6%, transparent 18%),
    linear-gradient(135deg, rgba(3, 85, 11, 0.92), rgba(7, 187, 24, 0.86));
  background-position: center;
  background-size: cover;
  color: #ffffff;
  text-align: center;
}

.hero-logo img {
  width: 92px;
  height: 92px;
}

.hero-brand {
  margin: 24px 0 6px;
  font-family: var(--font-secondary);
  font-size: clamp(54px, 5.1vw, 96px);
  font-weight: 800;
  font-style: italic;
  line-height: 1;
}

.hero-subtitle {
  max-width: 630px;
  margin: 0 auto 18px;
  color: var(--color-yellow);
  font-size: 24px;
  font-weight: 800;
  line-height: 32px;
}

.hero-hotline {
  display: inline-flex;
  min-width: 314px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: #ffffff;
  color: var(--color-green);
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
}

.hero-stats {
  min-height: 108px;
  background: var(--color-green);
  color: #ffffff;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 108px;
  padding: 24px 15px;
  position: relative;
}

@media (max-width: 1399px) {
  .stat-item {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 108px;
    padding: 24px 50px;
    position: relative;
  }
}

.stat-item + .stat-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: calc(50% - 15%); /* Center the line vertically */
    height: 30%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

/* .stat-item + .stat-item { */
  /* border-left: 1px solid rgba(255, 255, 255, 0.2); */
/* } */

.stat-item img {
  width: 40px;
  height: 40px;
}

.stat-item strong,
.stat-item span {
  display: block;
}

.stat-item strong {
  color: #ffffff;
  font-family: var(--font-secondary);
  font-size: 20px;
  font-weight: 800;
  line-height: 20px;
}

.stat-item span {
  margin-top: 14px;
  color: rgba(253, 246, 232, 0.7);
  font-size: 16px;
  line-height: 16px;
}

.section-block {
  padding: 88px 0;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--color-green-soft);
  font-size: 18px;
  line-height: 24px;
}

.sub-heading {
  color: var(--color-green-soft);
  font-size: 18px;
  line-height: 24px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-green);
  font-size: 36px;
  font-weight: 800;
  line-height: 32px;
  text-transform: uppercase;
}

.section-kicker img {
  width: 48px;
  height: 48px;
}

.heading-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 992px) {
  .section-kicker {
    font-size: 26px;
  }

  .section-kicker img {
    width: 26px;
    height: 26px;
  }

  .sub-heading {
    font-size: 16px;
  }
}

.btn {
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 800;
  line-height: 20px;
  text-transform: uppercase;
}

.btn:hover {
  background: var(--color-green);
  color: #fff;
}

.btn-yellow {
  display: inline-flex;
  border: 0;
  background: var(--color-yellow);
  color: var(--color-green);
}

.btn-yellow:hover {
  background: var(--color-green);
  color: #fff;
}

.btn-green-bright {
  background: var(--color-green-bright);
  color: #ffffff;
}

.btn-green-bright:hover {
  background: var(--color-green);
  color: #fff;
}

.btn-white {
  border: 0;
  background: #ffffff;
  color: var(--color-green);
}

.btn-outline-green {
  border: 1px solid var(--color-green);
  color: var(--color-green);
}

.btn-outline-green-bright {
  border: 1px solid var(--color-green-bright);
  color: var(--color-green-bright);
}

.btn-gray {
  background: #efefef;
  color: #333;
}

.round-control {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(58, 36, 24, 0.1);
  background: #ffffff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.round-control:hover {
  background: var(--color-green);
}

.round-control:hover img {
  filter: brightness(0) invert(1);
}

.btn-view-all {
  height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  min-height: unset;
}

.btn-view-all p {
  margin-top: 0;
  color: var(--color-green);
  font-size: 16px;
}

.btn-view-all:hover p {
  color: #fff;
}

.btn-view-all img {
  width: 28px;
  height: 29px;
}

.btn-view-all:hover img {
  filter: brightness(0) invert(1);
}

.heading-actions .round-control img {
  width: 20px;
  height: 25px;
}

@media (max-width: 992px) {
  .btn-view-all {
    height: 42px;
  }

  .btn-view-all p{
    font-size: 14px;
  }

  .round-control {
    width: 46px;
    height: 46px;
  }

  .heading-actions .round-control img {
    width: 20px;
    height: 25px;
  }
}

.product-card {
  position: relative;
  min-height: 338px;
  padding: 16px;
  /* border: 1px solid rgba(58, 36, 24, 0.05); */
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.product-card-featured {
  min-height: 705px;
  padding: 24px;
  background: linear-gradient(180deg, #03550b 0%, #07bb18 100%);
  color: #ffffff;
  box-shadow: var(--shadow-deep);
}

@media (max-width: 992px) {
  .product-card-featured {
    min-height: unset;
  }
}

.product-card-gold {
  background: var(--color-yellow);
}

.product-image {
  height: 508px;
  border-radius: 17px;
}

.product-thumb {
  height: 214px;
  margin-bottom: 19px;
  border-radius: 16px;
  width: 100%;
}

.product-card h2,
.product-card h3 {
  margin: 0;
  font-family: var(--font-secondary);
  font-weight: 500;
}

.product-card h2 {
  margin-top: 37px;
  font-size: 20px;
  line-height: 25px;
}

.product-card h3 {
  color: var(--color-text);
  font-size: 20px;
  line-height: 28px;
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
}

.product-price-row strong {
  color: var(--color-green);
  font-size: 20px;
  font-weight: 800;
  line-height: 28px;
}

.product-card-featured .product-price-row strong {
  color: #ffffff;
  font-size: 24px;
  line-height: 32px;
}

@media (max-width: 576px) {
  .product-price-row strong {
    font-size: 18px;
  }
}

.cart-button {
  width: 32px;
  height: 32px;
  background: var(--color-green-bright);
}

.cart-button img.bright {
  filter: brightness(0) invert(1);
}

@media (max-width: 576px) {
  .product-price-row .cart-button {
    width: 28px;
    height: 28px;
  }
  .product-price-row .cart-button img {
    width: 16px;
    height: 16px;
  }
}

.cart-button:hover {
  background: var(--color-green);
}

.cart-button-light {
  width: 48px;
  height: 48px;
  background: #ffffff;
}

.cart-button-light img {
    width: 20px;
    height: 20px;
}

.cart-button-light:hover {
  background: var(--color-green);
}

.cart-button-light:hover img {
  filter: brightness(0) invert(1);
}

.badge-new {
  position: absolute;
  top: -14px;
  right: -12px;
  min-width: 50px;
  height: 30px;
  border: 1px solid var(--color-green);
  background: var(--color-gold);
  color: var(--color-green);
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 30px;
  text-align: center;
}

.deal-btn {
  height: fit-content;
  font-size: 18px;
  min-height: 0;
  line-height: 20px;
}

@media (max-width: 992px){
  .deal-btn{
    font-size: 16px;
  }
}

.deal-image
.review-card {
  background-position: center;
  background-size: cover;
}

.deal-tabs {
  display: grid;
  gap: 12px;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.deal-tabs li {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 16px 20px;
  border: 2px solid rgba(3, 85, 11, 0.08);
  border-radius: 8px;
  background: #F2F4F2;
  color: var(--color-green);
  font-size: 16px;
  font-weight: 700;
}

.deal-tabs li.active, .deal-tabs li:hover {
  /* box-shadow: inset 8px 0 0 var(--color-green); */
  border: 2px solid var(--color-green-bright);
  cursor: pointer;
}

.deal-tabs li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--color-green);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

.deal-card {
  position: relative;
  min-height: 555px;
  padding: 20px;
  border: 1px solid rgba(58, 36, 24, 0.1);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.deal-card-best {
  border: 2px solid var(--color-yellow);
  transform: translateY(-12px);
}

.best-pill {
  position: absolute;
  top: -12px;
  left: 50%;
  min-width: 114px;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 9999px;
  background: var(--color-green);
  color: var(--color-yellow);
  font-size: 12px;
  font-weight: 800;
  line-height: 24px;
  text-align: center;
}

.deal-slider {
  margin-top: 0;
  padding-top: 1.5rem !important;
  padding-bottom: 2.3rem !important;
}

@media (max-width: 992px) {
  .deal-slider{
    padding-left: calc(var(--bs-gutter-x) * .5) !important; 
    padding-right: calc(var(--bs-gutter-x) * .5) !important; 
  }
}

.deal-pagination .swiper-pagination-bullet-active {
  background: #4E2915;
}

@media (max-width: 992px) {
  .deal-pagination{
    display: none;
  }
}

.deal-card h3 {
  margin: 0 0 21px;
  color: var(--color-green);
  font-size: 18px;
  font-weight: 800;
  line-height: 28px;
  text-align: center;
}

.deal-image {
  height: 253px;
  margin-bottom: 36px;
  width: 100%;
}

.old-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 8px;
  color: var(--color-green-soft);
  font-size: 16px;
  line-height: 20px;
  text-decoration: line-through;
}

.old-price span {
  min-width: 47px;
  height: 24px;
  border-radius: 6px;
  background: var(--color-green);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  line-height: 24px;
  text-align: center;
  text-decoration: none;
}

.deal-card strong,
.deal-card small {
  display: block;
}

.deal-card strong {
  color: var(--color-green);
  font-size: 26px;
  font-weight: 800;
  line-height: 32px;
}

.deal-card small {
  margin: 13px 0 22px;
  color: var(--color-green-soft);
  font-size: 14px;
  line-height: 16px;
}

.deal-card .btn {
  width: 100%;
}

.promo-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 174px;
  margin-top: 72px;
  padding: 32px 64px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(3, 85, 11, 0.92), rgba(7, 187, 24, 0.82));
  color: #ffffff;
}

.promo-banner span {
  font-family: var(--font-secondary);
  font-size: 48px;
  font-weight: 800;
}

.store-strip {
    position: relative;
    overflow: hidden;
}

.store-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.35);
}

.store-strip > * {
    position: relative;
    z-index: 1;
}

.store-strip > div{
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}

.about-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.gallery-large,
.gallery-stack > div {
  border-radius: 16px;
}

.gallery-large {
  min-height: 460px;
}

.gallery-stack {
  display: grid;
  gap: 16px;
}



/* Farm Section Styles */
.farm-gallery {
  display: flex;
  gap: 16px;
}

.farm-gallery-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.farm-gallery-img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.farm-gallery-img:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 30px rgba(3, 85, 11, 0.15);
}

.farm-gallery-img.tall {
  height: 380px;
}

.farm-gallery-img.short {
  height: 220px;
}

.farm-section-title {
  color: var(--color-green) !important;
  font-family: var(--font-secondary);
  font-weight: bold;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-size: 40px;
}

.farm-section-title:after {
  display: none !important;
}

.farm-section-lead {
  color: var(--color-text);
  font-size: 20px;
  line-height: 1.7;
}

.farm-stat-box {
  padding-top: 10px;
}

.farm-stat-num {
  color: var(--color-green);
  font-family: var(--font-secondary);
  font-size: 36px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 8px;
}

.farm-stat-text {
  color: var(--color-green-soft);
  font-size: 16px;
}

@media (max-width: 991.98px) {
  .farm-gallery-img.tall {
    height: 300px;
  }

  .farm-gallery-img.short {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .farm-section-title {
    font-size: 32px;
  }

  .farm-section-lead {
    font-size: 16px;
  }

  .farm-stat-num {
    font-size: 28px;
  }
}

@media (max-width: 575.98px) {
  .farm-gallery-img.tall {
    height: 220px;
  }

  .farm-gallery-img.short {
    height: 130px;
  }

  .farm-section-title {
    font-size: 24px;
  }
  
  .farm-section-lead {
    font-size: 16px;
  }

  .farm-stat-num {
    font-size: 18px;
  }
}


.about-copy h1 {
  max-width: 672px;
  margin: 0 0 24px;
  color: var(--color-green);
  font-family: var(--font-secondary);
  font-size: 44px;
  font-weight: 800;
  line-height: 52px;
}

.about-copy p {
  max-width: 672px;
  color: #3a2418;
  font-size: 18px;
  line-height: 32px;
}

.about-metrics {
  display: flex;
  gap: 88px;
  margin-top: 36px;
}

.about-metrics strong,
.about-metrics span {
  display: block;
}

.about-metrics strong {
  color: var(--color-green);
  font-size: 32px;
  font-weight: 800;
  line-height: 40px;
}

.about-metrics span {
  color: var(--color-green-soft);
  font-size: 14px;
}

.review-card {
  display: flex;
  min-height: 260px;
  align-items: end;
  overflow: hidden;
  border-radius: 8px;
  padding: 16px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.footer-contact {
  background: #62c04e;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.footer-contact .col-md {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 12px;
}

.footer-main {
  padding: 48px 0 28px;
  background: var(--color-green);
  color: rgba(255, 255, 255, 0.76);
}

.footer-logo {
  width: 74px;
  height: 74px;
  margin-bottom: 18px;
}

.footer-main h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-main a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
}

.footer-form {
  display: flex;
  max-width: 360px;
}

.footer-form input {
  min-width: 0;
  flex: 1;
  border: 0;
  border-radius: 4px 0 0 4px;
  padding: 10px 12px;
}

.footer-form button {
  border: 0;
  border-radius: 0 4px 4px 0;
  background: #62c04e;
  color: #ffffff;
  font-weight: 800;
  padding: 0 16px;
}

.copyright {
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-align: center;
}

.text-green {
  color: var(--color-green) !important;
}

.fw-extrabold {
  font-weight: 800 !important;
}

.play-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background-color: var(--color-green-bright);
  color: #ffffff;
  border-radius: 50%;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(98, 192, 78, 0.25);
}

.play-icon-wrap i {
  transform: translateX(1px);
}

.btn-outline-green.btn-rounded {
  border-radius: 9999px !important;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 24px;
  border: 1.5px solid var(--color-green) !important;
  color: var(--color-green) !important;
  letter-spacing: 0.05em;
  background: transparent !important;
  transition: all 0.3s ease;
}

.btn-outline-green.btn-rounded:hover {
  background-color: var(--color-green) !important;
  color: #ffffff !important;
}

.reviews-section a.btn img {
  width: 28px;
  height: 28px;
}

@media (max-width: 768px) {
  .reviews-section a.btn {
    font-size: 14px;
    width: fit-content;
  }

  .reviews-section a.btn img {
    width: 20px;
    height: 20px;
  }
}

.review-story-card {
  display: flex;
  flex-direction: column;
}

.review-video-box {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3.4; /* Aspect ratio matching the design images */
  background-position: center;
  background-size: cover;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.35s ease;
}

.review-video-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(3, 85, 11, 0.18);
}

.review-video-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.review-badge-text {
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-family: var(--font-secondary);
  font-weight: 800;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.review-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid #ffffff;
  color: #ffffff;
  display: inline-grid;
  place-items: center;
  z-index: 2;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.2s ease, box-shadow 0.2s ease;
}

.review-play-btn i {
  transform: translateX(2px);
}

.review-video-box:hover .review-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
  background-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.review-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background-color: rgba(0, 0, 0, 0.65);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 6px;
  z-index: 2;
  letter-spacing: 0.02em;
}

.review-author-info {
  margin-top: 14px;
  padding: 0 4px;
}

.review-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(3, 85, 11, 0.15);
}

.review-author-name {
  color: var(--color-green);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -0.01em;
}

.review-views {
  color: var(--color-green-soft);
  font-size: 12px;
  font-weight: 500;
}

.reviews-nav-btn {
  position: absolute;
  top: 45% !important;
  transform: translateY(-50%);
  width: 38px !important;
  height: 38px !important;
  border-radius: 50%;
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08) !important;
  color: var(--color-green-soft) !important;
  display: inline-grid;
  place-items: center;
  font-size: 18px;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reviews-nav-btn:hover {
  background-color: var(--color-green) !important;
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(3, 85, 11, 0.22) !important;
}

.reviews-nav-btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.reviews-nav-prev {
  left: -22px;
}

.reviews-nav-next {
  right: -22px;
}

.reviews-nav-btn::after {
  display: none !important;
}

/* Custom Pagination styles */
.reviews-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px !important;
}

.reviews-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: var(--color-border);
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
  margin: 0 !important;
}

.reviews-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-green) !important;
}

/* Adjustments for mobile view */
@media (max-width: 767.98px) {
  .reviews-nav-btn {
    display: none !important; /* Hide navigation buttons on mobile, swipe is enough */
  }
  .review-video-box {
    aspect-ratio: 1 / 1;
    padding: 12px;
  }
  .review-badge-text {
    font-size: 13.5px;
  }
  .review-play-btn {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  .review-author-name {
    font-size: 13px;
  }
  .review-views {
    font-size: 11px;
  }
}


/* Premium Drawer Item Additional Elements */
.drawer-item div {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.4;
}

.drawer-item div span {
  display: block;
  margin-top: 4px;
  font-size: 14.5px;
  color: #888;
}

.drawer-item div span strong {
  color: #333;
  font-weight: 700;
}

.drawer-item .btn {
  width: 28px;
  height: 28px;
  border-radius: 50% !important;
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
  color: #888;
  display: inline-grid;
  place-items: center;
  padding: 0 !important;
  font-size: 16px;
  background: transparent;
  transition: all 0.2s ease;
  line-height: 1;
  min-height: unset;
}

.drawer-item .btn:hover {
  background: var(--color-green);
  color: #fff;
  border-color: rgba(0, 0, 0, 0.3) !important;
}
/* ============================================
   PRODUCT QUICK VIEW MODAL — FULL RESPONSIVE
   ============================================ */

/* Backdrop override for product modal specifically */
#productQuickViewModal {
  padding: 24px 16px;
  align-items: flex-start;
}

/* Modal card — base (mobile-first) */
.product-modal-card {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: modalFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  margin: auto;
  overflow: visible;
}

@keyframes modalFadeIn {
  from { transform: translateY(24px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* Close button */
.btn-modal-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.12);
  background: #ffffff;
  color: #444;
  font-size: 15px;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 20;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.btn-modal-close:hover {
  background: #f0f0f0;
  transform: rotate(90deg);
}

/* Main image */
.modal-main-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  background: #fdfcf9;
  border: 1px solid rgba(0,0,0,0.06);
  aspect-ratio: 1 / 1;
  width: 100%;
}
.modal-main-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.modal-main-img-wrap:hover img {
  transform: scale(1.04);
}

/* Thumbnail row */
.modal-thumb-row {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.modal-thumb {
  flex: 1;
  min-width: 0;
  height: 68px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.modal-thumb:hover {
  border-color: var(--color-border);
  transform: translateY(-2px);
}
.modal-thumb.active {
  border-color: var(--color-green-bright);
  box-shadow: 0 0 0 2px rgba(98, 192, 78, 0.2);
}

/* Product info — mobile */
.modal-product-name {
  color: var(--color-green);
  font-size: 20px;
  font-weight: 800;
  margin: 14px 0 8px;
  line-height: 1.25;
}
.modal-stars {
  color: #fcce09;
  font-size: 15px;
  letter-spacing: 1px;
}
.modal-rating-text {
  font-size: 12px;
  color: #777;
  font-weight: 500;
  margin-left: 6px;
}
.modal-price-box {
  padding: 12px 16px;
  font-size: 14px;
}
.modal-old-price {
  font-size: 14px;
  color: #999;
}
.modal-sale-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-green);
}

/* Variation buttons */
.btn-variation {
  border: 1.5px solid #d5cec8;
  background: #ffffff;
  color: #444;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 8px;
  font-size: 13px;
  transition: all 0.2s ease;
  min-height: 36px;
}
.btn-variation:hover {
  border-color: var(--color-green);
  color: var(--color-green);
  background: #fff;
}
.btn-variation.active {
  background: var(--color-green) !important;
  color: #fff !important;
  border-color: var(--color-green) !important;
  box-shadow: 0 3px 8px rgba(3,85,11,0.15);
}

/* Quantity selector */
.modal-qty-selector {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #d5cec8;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.qty-btn {
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}
.qty-btn:hover { background: #f5f5f5; }
.qty-val {
  width: 40px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  border-left: 1px solid #e5e0d8;
  border-right: 1px solid #e5e0d8;
}

/* Action buttons */
.btn-buy-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--color-yellow);
  color: var(--color-green);
  font-weight: 800;
  border: 0;
  border-radius: 10px;
  height: 44px;
  font-size: 13px;
  width: 100%;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(252,206,9,0.25);
}
.btn-buy-now img { width: 18px; height: 18px; }
.btn-buy-now:hover {
  background: var(--color-green);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(3,85,11,0.35);
}
.btn-add-to-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #fff;
  color: var(--color-green);
  border: 1.5px solid var(--color-green);
  font-weight: 800;
  border-radius: 10px;
  height: 44px;
  font-size: 13px;
  width: 100%;
  transition: all 0.25s ease;
}
.btn-add-to-cart img { width: 18px; height: 18px; }
.btn-add-to-cart:hover {
  background: var(--color-green);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(3,85,11,0.18);
}
.btn-add-to-cart:hover img,
.btn-buy-now:hover img {
  filter: brightness(0) invert(1);
}

@media (max-width: 576px) {
  .btn-buy-now,
  .btn-add-to-cart {
    gap: 6px;
    padding: 10px 12px;
    font-size: 12px;
  }

  .btn-buy-now img,
  .btn-add-to-cart img {
    width: 15px;
    height: 15px;
  }
}

/* Trust info */
.modal-trust-info {
  padding: 10px 12px;
}
.trust-item {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: #555;
  gap: 6px;
  line-height: 1.3;
}
.trust-item img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ── TABLET: ≥ 576px ── */
@media (min-width: 576px) {
  .product-modal-card {
    padding: 28px;
    border-radius: 20px;
  }
  .modal-product-name {
    font-size: 22px;
    margin-top: 0;
  }
  .modal-thumb { height: 80px; }
  .btn-buy-now,
  .btn-add-to-cart {
    height: 46px;
    font-size: 13.5px;
  }
}

/* ── TABLET LG: ≥ 768px ── */
@media (min-width: 768px) {
  #productQuickViewModal {
    padding: 32px 24px;
    align-items: center;
  }
  .product-modal-card {
    max-width: 780px;
    padding: 32px;
    border-radius: 20px;
  }
  .modal-product-name { font-size: 24px; }
  .modal-old-price    { font-size: 15px; }
  .modal-sale-price   { font-size: 22px; }
  .modal-thumb        { height: 90px; }
  .btn-variation      { padding: 8px 20px; font-size: 13.5px; }
  .qty-btn            { width: 40px; height: 40px; }
  .qty-val            { width: 42px; font-size: 15px; }
  .btn-buy-now,
  .btn-add-to-cart    { height: 48px; font-size: 14px; }
  .trust-item         { font-size: 13px; }
}

/* ── DESKTOP: ≥ 992px ── */
@media (min-width: 992px) {
  #productQuickViewModal {
    padding: 40px 24px;
    align-items: center;
  }
  .product-modal-card {
    max-width: 900px;
    padding: 36px;
  }
  .modal-product-name { font-size: 26px; }
  .modal-price-box    { font-size: 16px; padding: 14px 18px; }
  .modal-old-price    { font-size: 15px; }
  .modal-sale-price   { font-size: 24px; }
  .modal-thumb        { height: 95px; }
  .btn-buy-now,
  .btn-add-to-cart    { height: 50px; font-size: 14.5px; }
  .trust-item         { font-size: 13.5px; }
  .trust-item img     { width: 18px; height: 18px; }
  .btn-variation      { padding: 9px 24px; font-size: 14px; }
  .qty-btn            { width: 42px; height: 42px; }
  .qty-val            { width: 44px; font-size: 15px; }
}

/* ── DESKTOP LG: ≥ 1200px ── */
@media (min-width: 1200px) {
  .product-modal-card {
    max-width: 980px;
    padding: 40px;
  }
  .modal-product-name { font-size: 28px; }
  .modal-thumb        { height: 100px; }
  .btn-buy-now,
  .btn-add-to-cart    { height: 52px; font-size: 15px; border-radius: 12px; }
  .btn-variation      { padding: 9px 26px; }
}

/* ── DESKTOP XL: ≥ 1440px ── */
@media (min-width: 1440px) {
  .product-modal-card {
    max-width: 1060px;
    padding: 44px;
    border-radius: 24px;
  }
  .modal-product-name { font-size: 30px; }
  .modal-price-box    { font-size: 17px; }
  .modal-old-price    { font-size: 16px; }
  .modal-sale-price   { font-size: 26px; }
  .modal-thumb        { height: 108px; }
  .btn-buy-now,
  .btn-add-to-cart    { height: 54px; font-size: 15.5px; }
  .trust-item         { font-size: 14px; }
  .trust-item img     { width: 20px; height: 20px; }
  .btn-variation      { padding: 10px 28px; font-size: 14.5px; min-height: 40px; }
  .qty-btn            { width: 44px; height: 44px; }
  .qty-val            { width: 46px; font-size: 16px; }
  .modal-rating-text  { font-size: 13.5px; }
}

/* ── WIDESCREEN: ≥ 1800px ── */
@media (min-width: 1800px) {
  .product-modal-card {
    max-width: 1200px;
    padding: 52px;
    border-radius: 28px;
  }
  .modal-product-name { font-size: 34px; }
  .modal-price-box    { font-size: 18px; padding: 18px 22px; }
  .modal-old-price    { font-size: 18px; }
  .modal-sale-price   { font-size: 30px; }
  .modal-stars        { font-size: 20px; }
  .modal-rating-text  { font-size: 15px; }
  .modal-thumb        { height: 120px; border-radius: 10px; }
  .modal-thumb-row    { gap: 10px; margin-top: 14px; }
  .btn-buy-now,
  .btn-add-to-cart    { height: 58px; font-size: 16px; border-radius: 14px; }
  .btn-buy-now img,
  .btn-add-to-cart img { width: 22px; height: 22px; }
  .trust-item         { font-size: 15px; gap: 8px; }
  .trust-item img     { width: 22px; height: 22px; }
  .modal-trust-info   { padding: 14px 18px; border-radius: 14px; }
  .btn-variation      { padding: 11px 32px; font-size: 15px; min-height: 44px; border-radius: 10px; }
  .qty-btn            { width: 50px; height: 50px; font-size: 20px; }
  .qty-val            { width: 52px; font-size: 18px; }
  .btn-modal-close    { width: 40px; height: 40px; font-size: 17px; }
  .modal-main-img-wrap { border-radius: 16px; }
}

/* ── ULTRA-WIDE: ≥ 2000px ── */
@media (min-width: 2000px) {
  .product-modal-card {
    max-width: 1360px;
    padding: 60px;
    border-radius: 32px;
  }
  .modal-product-name { font-size: 38px; }
  .modal-price-box    { font-size: 20px; padding: 20px 26px; }
  .modal-old-price    { font-size: 20px; }
  .modal-sale-price   { font-size: 34px; }
  .modal-stars        { font-size: 22px; }
  .modal-rating-text  { font-size: 16px; }
  .modal-thumb        { height: 140px; border-radius: 12px; }
  .modal-thumb-row    { gap: 12px; margin-top: 16px; }
  .btn-buy-now,
  .btn-add-to-cart    { height: 64px; font-size: 17px; border-radius: 16px; }
  .btn-buy-now img,
  .btn-add-to-cart img { width: 24px; height: 24px; }
  .trust-item         { font-size: 16px; gap: 10px; }
  .trust-item img     { width: 24px; height: 24px; }
  .modal-trust-info   { padding: 16px 22px; border-radius: 16px; }
  .btn-variation      { padding: 12px 36px; font-size: 16px; min-height: 48px; border-radius: 12px; }
  .qty-btn            { width: 56px; height: 56px; font-size: 22px; }
  .qty-val            { width: 58px; font-size: 20px; }
  .btn-modal-close    { width: 44px; height: 44px; top: -18px; right: -18px; font-size: 18px; }
}

.benefits {
  background: var(--color-green-bright);
  color: #fff;
  padding: 26px 0;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 16px;
}

.benefit i {
  font-size: 26px;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.benefit:hover i {
  background: #ffffff;
  color: var(--color-green-bright);
  transform: scale(1.08);
}

.benefit img {
  width: 22px;
  height: 22px;
}

.benefit strong {
  display: block;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 2px;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.benefit span {
  display: block;
  opacity: .9;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1200px) {
  .benefit strong {
    font-size: 12px;
  }

  .benefit span {
    font-size: 11px;
  }
}

.footer-main {
  background: var(--green);
  color: rgba(255, 255, 255, .76);
  padding: 60px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-main h3 {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
  letter-spacing: 0.05em;
}

.footer-main h3::after {
  display: none;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--color-green-bright);
}

.footer-logo {
  width: 92px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

.footer-main p {
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-main p i {
  font-size: 16px;
  color: var(--color-green-bright);
  transition: transform 0.2s ease;
}

.footer-main p:hover i {
  transform: scale(1.15);
}

.footer-main ul.list-unstyled li {
  margin: 0 0 12px;
  font-size: 14px;
}

.footer-main ul.list-unstyled li a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-main ul.list-unstyled li a:hover {
  color: var(--color-green-bright);
  transform: translateX(4px);
}

.social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social a:hover {
  background: var(--color-green-bright);
  border-color: var(--color-green-bright);
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(98, 192, 78, 0.3);
}

.newsletter {
  overflow: hidden;
  display: flex;
  max-width: 320px;
  align-items: center;
}

.newsletter .form-control {
  background: rgba(0, 0, 0, 0.22);
  border: 0 !important;
  color: #fff;
  height: 44px;
  padding-left: 16px;
  font-size: 14px;
  box-shadow: none !important;
  border-radius: 8px 0 0 8px !important;
}

.newsletter .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter .btn {
  background: var(--color-green-bright);
  border-radius: 0 8px 8px 0 !important;
  color: #fff;
  font-weight: 800;
  padding: 0 22px;
  font-size: 14px;
  transition: all 0.25s ease;
  border: 0;
}

.newsletter .btn {
  height: 44px;
  padding: 0 22px;
  min-height: unset;
}

.newsletter .btn:hover {
  background: #ffffff;
  color: var(--color-green);
  transform: scale(1.02);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 48px;
  padding-top: 28px;
  text-align: center;
  color: rgba(255, 255, 255, .45);
  font-size: 13.5px;
}

.hero-banner {
  overflow: hidden;
  box-shadow: var(--shadow);
}

.home-section {
  padding: 72px 0;
}

/* Responsive Fixes for Screen Width < 1200px */
@media (max-width: 1199.98px) {
  /* 1. Header & Navigation (prevent wrapping) */
  .nav-link {
    font-size: 15px !important;
    padding: 28px 10px !important;
  }
  .brand-logo {
    width: 56px !important;
    height: 56px !important;
  }
  .site-header {
    height: 74px !important;
  }
  .header-icon {
    font-size: 20px !important;
    width: 32px !important;
    height: 32px !important;
  }

  /* 2. Hero stats section */
  .stat-item {
    padding: 20px 24px !important;
    gap: 12px !important;
  }
  .stat-item img {
    width: 36px !important;
    height: 36px !important;
  }
  .stat-item strong {
    font-size: 16px !important;
  }
  .stat-item span {
    font-size: 13px !important;
    line-height: 1.3 !important;
  }

  /* 3. Product Cards & Grid Layouts (Trending section) */
  .product-image {
    height: 380px !important;
    aspect-ratio: 3 / 4;
    object-fit: cover;
  }
  .product-thumb {
    height: 180px !important;
    object-fit: cover;
  }
  .product-card h2 {
    font-size: 16px !important;
    line-height: 1.3 !important;
    margin-top: 20px !important;
  }
  .product-card h3 {
    font-size: 16px !important;
    line-height: 1.3 !important;
    min-height: 42px !important;
  }
  .product-card .price {
    font-size: 20px !important;
  }
  .product-card-featured .product-price-row strong {
    font-size: 20px !important;
  }

  /* 4. Deal tabs & Section */
  .deal-tabs li {
    padding: 12px 14px !important;
    font-size: 14px !important;
    min-height: 60px !important;
    gap: 8px !important;
  }
  .deal-tabs li span {
    width: 26px !important;
    height: 26px !important;
    font-size: 12px !important;
    margin-right: 4px !important;
  }
  .deal-card {
    min-height: 480px !important;
    padding: 16px !important;
  }
  .deal-image {
    height: 190px !important;
    margin-bottom: 20px !important;
  }
  .deal-card h3 {
    font-size: 16px !important;
    margin-bottom: 15px !important;
  }
  .deal-card strong {
    font-size: 22px !important;
  }

  /* 5. Store strip */
  .store-strip > div {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  /* 6. Farm Gallery */
  .farm-gallery-img.tall {
    height: 300px !important;
  }
  .farm-gallery-img.short {
    height: 180px !important;
  }

  /* 7. Reviews Section story card */
  .review-badge-text {
    font-size: 13px !important;
  }
  .review-play-btn {
    width: 40px !important;
    height: 40px !important;
    font-size: 16px !important;
  }
  .review-author-name {
    font-size: 13px !important;
  }
  .review-views {
    font-size: 11px !important;
  }
  
  /* 8. Footer responsiveness and layout spacing */
  .footer-main {
    padding: 40px 0 30px !important;
  }
  .footer-main h3 {
    font-size: 13px !important;
    margin-bottom: 18px !important;
  }
  .footer-main p, .footer-main ul li {
    font-size: 13px !important;
  }
  .newsletter {
    max-width: 100% !important;
  }
  .newsletter .form-control {
    padding-left: 12px !important;
    font-size: 13px !important;
  }
  .newsletter .btn {
    padding: 0 16px !important;
    font-size: 13px !important;
  }
}

/* Adjustments for screens < 992px (Bootstrap default LG breakpoint) */
@media (max-width: 991.98px) {
  /* Handle home trending grid on tablets */
  .product-card-featured .product-image {
    width: 100% !important;
  }

  .product-image {
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
  }
  .newsletter {
    margin-top: 15px;
  }
}

@media (max-width: 768px) {
  .stat-item {
    padding: 14px 16px !important;
    gap: 8px !important;
    min-height: 80px;
  }

  .stat-item strong {
    font-size: 14px !important;
  }

  .stat-item span {
    font-size: 12px !important;
    line-height: 1.3 !important;
    margin-top: 8px;
  }
}

@media (max-width: 576px) {
  .stat-item {
    padding: 12px 10px !important;
    gap: 6px !important;
    min-height: 50px !important;
  }

  .stat-item img {
    width: 28px !important;
    height: 28px !important;
  }

      .stat-item strong {
        font-size: 11px !important;
    }

    .stat-item span {
    font-size: 10px !important;
    line-height: 1.3 !important;
    margin-top: 8px;
  }
}

/* Auth Modal */
.auth-modal {
  width: min(100%, 520px);
  background: #fff;
  border-radius: 8px;
  padding: 28px 30px 36px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .2);
  animation: modalFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  margin: auto;
}

.auth-modal h2 {
  text-align: center;
  margin-bottom: 22px;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: 0%;
}

.auth-modal .form-check-input {
  transform: scale(1.5);
  margin-right: 8px;
}

.auth-modal .form-control {
  height: 49px;
  border-radius: 5px;
}

.auth-modal p {
  font-size: 14px !important;
}

.auth-modal .btn.btn-link {
  text-decoration: none;
  color: black;
  background: transparent;
  border: none;
}

.auth-modal .form-control.is-invalid {
  background-image: none;
}


/* About */
/* .about-hero-bg {
  background-image: url("../assets/img/about-hero.jpg");
} */
.about .section-title {
  font-size: 26px;
}

.brand-story {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center;
}

.box-square {
  position: absolute;
  bottom: -15%;
  right: -8%;
  width: calc(350px/2);
  aspect-ratio: 1/1;
  background-color: #FFDF93;
  z-index: 0;
}

@media (max-width: 992px) {
  .box-square {
    bottom: -8%;
    right: -8%;
    width: 50%;
  }
}

@media (max-width: 768px) {
  .box-square {
    bottom: -8%;
    right: -8%;
  }
}

@media (max-width: 576px) {
  .box-square {
    bottom: -5%;
    right: -2.5%;
  }
}

.tour-hero-bg {
  background-image: url("../assets/img/tour-hero.jpg");
}

.story-card > div.icon-box {
  background-color: var(--color-green);
  padding: 1rem;
  border-radius: 1rem;
  width: fit-content;
  display: flex;
}

.story-card > div.icon-box img {
  width: 100%;
  max-width: 28px;
  max-height: 28px;
}

.story-card h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
}

.story-card p {
  font-size: 18px;
}

.section-title {
  color: var(--color-green);
  font-weight: 900;
  letter-spacing: -.02em;
  font-size: 3rem;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }
}

.section-title.relative:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 46px;
  height: 3px;
  background: var(--color-green-bright);
  margin-top: 10px;
}

.timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    /* gap: 40px; */
    margin-top: 60px;
}
/* Line */
.timeline::before {
  display: none;
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 29px;
  /* = 58px / 2 */
  height: 2px;
  background: #E4C57C;
  z-index: 1;
}

.timeline-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.timeline-dot {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--color-green-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 3;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
}

.timeline-dot img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.timeline-year {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-green);
  margin-bottom: 8px;
  position: relative;
}

.timeline-year p {
    position: relative; /* bắt buộc */
    z-index: 2;
    display: inline-block;
    margin-bottom: 0;
}

/* Line */
.timeline-year::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 2px;
  left: 0;
  background: #E4C57C;
  z-index: 1;
  width: 100%;
}

.timeline-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-green);
  margin-bottom: 10px;
}

.timeline-desc {
  font-size: 13px;
  line-height: 1.5;
  color: #6A625D;
  max-width: 180px;
  margin: 0 auto;
}

@media (max-width: 991.98px) {
/* 
  .timeline {
    gap: 20px;
  } */

  .timeline::before {
    left: 8%;
    right: 8%;
  }

  .timeline-dot {
    width: 50px;
    height: 50px;
  }

  .timeline::before {
    top: 25px;
    /* 50/2 */
  }

  .timeline-desc {
    max-width: 150px;
  }
}

@media (max-width: 767.98px) {

  .timeline {
    flex-direction: column;
    gap: 40px;
    padding-left: 40px;
  }

  .timeline::before {
    left: 28px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
  }

  .timeline-item {
    text-align: left;
  }

  .timeline-dot {
    margin: 0 0 15px;
  }

  .timeline-desc {
    max-width: 100%;
    margin: 0;
  }

  .timeline {
    padding: 0;
  }

  .timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .timeline-year::after {
    display: none;
  }
}

/* eco system style */
/* .ecosystem-section {
    background: #f6f4ef;
} */

.ecosystem-heading {
    max-width: 700px;
    margin: 0 auto 50px;
}

.ecosystem-heading h2 {
    color: #004c13;
    font-weight: 700;
}

.ecosystem-heading p {
    color: #6f6f6f;
}

.ecosystem-sub-heading {
    font-size: 16px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.7)
}
/* =======================
   GRID
======================= */

/* .ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
} */

/* =======================
   FOODS
======================= */

.eco-foods {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    min-height: 350px;
    display: block;
    padding: 0;
}

.eco-foods img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eco-foods::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.75),
            rgba(0,0,0,.05)
        );
}

.eco-foods{
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 32px;
}

.eco-foods img{
    width: 100%;
    display: block;
}

/* Lớp gradient phủ lên ảnh */
.eco-foods::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(34, 11, 2, 0.95) 0%,
        rgba(34, 11, 2, 0.4) 50%,
        rgba(34, 11, 2, 0) 100%
    );
    z-index: 1;
}

/* Nội dung nằm trên lớp phủ */
.eco-overlay{
    z-index: 2;
}

.eco-overlay {
    position: absolute;
    left: 32px;
    bottom: 28px;
    z-index: 2;
    color: #fff;
}

.eco-overlay h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.eco-overlay p {
    margin: 0;
}

/* =======================
   FARM
======================= */

.eco-farm{
    background: var(--color-green);
    border-radius: 34px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.eco-farm img{
    width: 100%;
    flex: 1;
    min-height: 180px;
    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 20px;
}

.eco-farm h3 {
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
    font-size: 24px;
    line-height: 32px;
}

.eco-farm p {
    color: white;
    font-size: 16px;
    line-height: 24px;
}

.eco-farm a {
    color: var(--color-green-bright);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    text-decoration: none;
}

/* =======================
   RETAIL
======================= */

.eco-retail {
    background: #F3EDE4;
    border-radius: 34px;
    padding: 32px;
}

.eco-retail img {
    width: 50%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 24px;
}

.eco-retail h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: black;
}

/* .eco-retail p {
    color: #6f6f6f;
} */

/* =======================
   TOUR
======================= */

.eco-tour {
  background: var(--color-green-bright);
  border-radius: 34px;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.eco-tour img {
  width: 25%;
  aspect-ratio: 1 / 1;
  border-radius: 32px;
  object-fit: cover;
}

.eco-tour h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: black;
}

.eco-tour p {
  max-width: 500px;
  color: black;
}

.eco-tour .btn {
  padding: 12px 30px;
  font-weight: 600;
  color: var(--color-green);
  font-size: 14px;
}

.eco-tour .btn:hover {
  color: white;
  background-color: var(--color-green);
  border: 0;
}
/* =======================
   ICON
======================= */

.eco-icon img {
  margin-bottom: 16px;
  width: 26px;
  height: auto;
  border-radius: unset;
  aspect-ratio: unset;
}

.eco-foods,
.eco-farm,
.eco-retail,
.eco-tour {
  height: 100%;
}

.eco-foods {
  min-height: 380px;
}

.eco-farm {
  min-height: 380px;
}

.eco-retail {
  min-height: 300px;
}

.eco-tour {
  min-height: 300px;
}

.eco-farm,
.eco-retail {
  display: flex;
  flex-direction: column;
}

.eco-tour {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.eco-farm {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eco-retail {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.eco-tour {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.eco-farm a {
  margin-top: auto;
}

/* =======================
   MOBILE
======================= */

@media (max-width: 991px) {

  .ecosystem-grid {
    grid-template-columns: 1fr;
  }

  .eco-tour {
    flex-direction: column;
    align-items: flex-start;
  }

  .eco-tour img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 32px;
    object-fit: cover;
  }

  .eco-icon img {
    margin-bottom: 16px;
    width: 26px;
    height: auto;
    border-radius: unset;
    aspect-ratio: unset;
  }
}

/* =======================
   stats-band
======================= */
.stats-band {
  background: var(--green);
  color: var(--color-yellow);
  padding: 80px 0;
  text-align: center;
}

.stats-band strong {
  font-size: 60px;
  font-weight: 900;
}

.stats-band .section-title {
  color: var(--color-yellow);
  font-size: 14px;
}

.stats-band .section-title.relative:after {
  background: var(--color-yellow);
}

.stats-band .row > div {
    min-width: 0;
}

.stats-band strong {
    display: block;
    font-weight: 900;
    line-height: 1.1;
    word-break: break-word;
}

.stats-band p {
    margin-top: 10px;
    margin-bottom: 0;
    overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .stats-band strong {
    font-size: 28px;
  }

  .stats-band p {
    font-size: 14px;
  }
}
/* =======================
   COMPANION SECTION
======================= */
.companion-section .btn {
  font-size: 16px;
  padding: 20px 48px;
}

.companion-section .btn-light {
  border: 1px solid rgba(0, 0, 0, 0.2);
}

/* Products page */

.sort-row label {
  white-space: nowrap;
}

.sort-row .form-select {
  border: 0;
  background: transparent;
  /* outline: 0;
  box-shadow: none; */
}

/* Products Swiper Styles */
.products-swiper {
  padding-bottom: 20px !important;
}

.product-detail-main .btn-buy .btn:hover img{
  filter: brightness(0) invert(1);
}

/* Tour */
.tour-introduce-section p , .tour-introduce-section ul li{
  font-size: 18px;
}

/* =========================
   Activities
========================= */

.activity-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    color: #fff;
    height: 100%;
}

.activity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .5s;
}

.activity-card:hover img {
    transform: scale(1.05);
}

/* overlay */
.activity-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0) 25%,
        rgba(0,0,0,.25) 50%,
        rgba(0,0,0,.8) 100%
    );
}

.activity-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px;
    z-index: 2;
}

.activity-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.activity-content p {
    margin: 0;
    color: rgba(255,255,255,.9);
    line-height: 1.6;
}

.activity-badge {
    position: absolute;
    left: 24px;
    bottom: 120px;
    z-index: 2;

    background: #F5D890;
    color: #333;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

/* kích thước card */

.activity-lg {
    height: 390px;
}

.activity-md {
    height: 390px;
}

.activity-wide {
    height: 260px;
}

.activity-wide .activity-content {
  bottom: unset;
  top: 10%;
}

.activity-wide .activity-content h3 {
    font-size: 48px;
}

.activity-features {
    display: flex;
    gap: 24px;
    margin-top: 16px;
    font-size: 15px;
    color: #F5D890;
}

@media (max-width: 991.98px) {

    .activity-lg,
    .activity-md,
    .activity-wide {
        height: 300px;
    }

    .activity-content h3 {
        font-size: 24px;
    }

    .activity-wide .activity-content h3 {
        font-size: 32px;
    }
}

.contact-tour-section .section-title.relative::after {
  left: 5%;
}

.contact-image-hero::before {
  display: none;
}

/* Checkout */
.coupon {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 10px;
  min-height: 116px;
}

.coupon img {
  width: 92px;
  height: 92px;
  object-fit: cover;
}

.coupon {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;

    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 18px;
    padding: 12px 20px;

    overflow: visible; /* QUAN TRỌNG */
}

/* Khoét nửa hình tròn */
.coupon::before,
.coupon::after {
    content: "";
    position: absolute;

    width: 24px;
    height: 24px;

    background: var(--color-page); /* màu nền ngoài card */
    border-radius: 50%;

    left: 90px; /* vị trí đường cắt */
    transform: translateX(-50%);
    z-index: 2;
}

.coupon::before {
    top: -12px;
}

.coupon::after {
    bottom: -12px;
}

.coupon-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    flex-shrink: 0;
}

.coupon-content {
    flex: 1;
}

.coupon-content strong {
    display: block;
    font-size: 22px;
    margin-bottom: 6px;
}

.checkout-coupons-swiper,
.cart-coupons-swiper {
    padding: 15px 0 !important;
}

.invoice-check{
    background-color: var(--color-green-bright) !important;
    border-color: var(--color-green-bright) !important;
}

.form-switch .form-check-input{
    width: 2.8rem;
    height: 1.4rem;
    cursor: pointer;
}

.form-switch .form-check-input:checked{
    background-color: #1e73ff;
    border-color: #1e73ff;
}

.payment-option {
  border: 1px solid var(--line);
  border-radius: 6px;
  height: 58px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 18px;
  background: #fff;
  /* white-space: nowrap; */
}

/* Cart */
.cart-page .coupon{
  padding: 18px 20px;
}

.btn-cancel {
  font-size: 16px;
    min-height: unset;
    width: 24px;
    height: 24px;
    padding: 0;
}

.account-edit-page .form-control:hover, 
.account-edit-page .form-select:hover,
.account-edit-page .form-control:focus,
.account-edit-page .form-select:focus{
  border-color: var(--color-green-bright);
  box-shadow: none;
}

.account-edit-page .form-control:active,
.account-edit-page .form-select:active{
  border-color: var(--color-green-bright);
  box-shadow: none;
}

.error-visual {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* page-order-tracking */
.order-tracking-page .pagination .page-item {
  cursor: pointer;
}
.order-tracking-page .pagination .page-link:hover{
  background-color: var(--color-green-bright) !important;
  border: 0;
  color: #ffffff;
}
.order-tracking-page .pagination .active .page-link {
  background-color: var(--color-green-bright) !important;
  border: 0;
}


/* FAQ */

.faq-item {
  border-radius: 5px;
  background: #f5f0e8;
  margin-bottom: 17px;
  overflow: hidden;
}

.faq-item .faq-button .btn {
  justify-content: center;
  display: flex;
  align-items: center;
  width: 25px;
  height: 25px;
  min-height: unset;
  aspect-ratio: 1 / 1;
  padding: 10px;
  background-color: #F2F2F2;
  border: 0;
}

.faq-item .faq-button .btn:hover {
  background-color: var(--color-green) !important;
  color: #fff !important;
}

.faq-button {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 20px 18px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
}

.faq-answer {
  border-top: 1px solid #91bd7e;
  background: #fff;
  padding: 18px;
  color: #666;
  display: none;
}

.faq-item.open {
  border: 1px solid #91bd7e;
  background: #fff;
}

.faq-item.open .faq-answer {
  display: block;
}