@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");

/* ========================================
   SITE-WIDE — header call link, nav width, button shape
   ======================================== */
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Roboto", Arial, sans-serif;
  text-decoration: none;
  color: #1f4d1f;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.header-phone:hover {
  color: #2b6127;
}
.header-phone-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #5a9c40 0%, #3d7c31 45%, #2b6127 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(43, 97, 39, 0.22);
  transition: all 0.3s ease;
}
.header-phone:hover .header-phone-icon {
  transform: scale(1.06);
  box-shadow: 0 6px 16px rgba(43, 97, 39, 0.3);
}
.header-phone-icon .fi {
  font-size: 14px;
  color: #fff;
}
.header-phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.header-phone-label {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #7a7a7a;
}
.header-phone-number {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

@media (max-width: 1199px) {
  .header-phone-label { display: none; }
  .header-phone-text { display: flex; }
  .header-phone-number { font-size: 0.85rem; }
}
@media (max-width: 991px) {
  .header-phone { margin-right: 8px; }
  .header-phone-icon { width: 34px; height: 34px; }
  .header-phone-number { font-size: 0.8rem; }
}
@media (max-width: 767px) {
  .header-phone-icon { display: flex; width: 30px; height: 30px; }
  .header-phone-icon .fi { font-size: 12px; }
  .header-phone-number { font-size: 0.75rem; font-weight: 600; }
}

/* Mobile: the theme hides the whole right-hand header block, but click-to-call
   is the one thing phone users need — keep the icon-only call button visible. */
@media (max-width: 991px) {
  .ina-wraper-header-top .ina_position-right {
    display: flex !important;
    position: absolute;
    top: 50%;
    right: 62px;
    transform: translateY(-50%);
    z-index: 5;
  }
  .ina-wraper-header-top .ina_position-right .ina_button {
    display: none !important;
  }
  .header-phone { margin-right: 0 !important; }
}

/* ========================================
   HEADER WIDTH — wider than the content containers
   ======================================== */
.ina-topbar .ina-container,
.headerTop .wraper-header-information {
  max-width: 1660px;
  padding-left: 34px;
  padding-right: 34px;
}
.ina-wrraper-navbar {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1199px) {
  .ina-topbar .ina-container,
  .headerTop .wraper-header-information {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ========================================
   BUTTON SHAPE — pill radius everywhere
   ======================================== */
.ina_button,
.ina_button_green,
.ina_button_light,
.ina_button_dark,
.ina_button_orange,
.header-cta-btn,
.hero-btn,
.hero-btn-primary,
.hero-btn-outline,
.btn,
.btn-sm,
.product-buttons .btn,
.contact-form button,
input[type="submit"] {
  border-radius: 50px !important;
}
.gaushala-photo-card,
.seva-value-card,
.product-card,
.cow-card,
.story-card,
.desi-cow-card,
.seva-opportunity-card { border-radius: 16px; }

/* ========================================
   BANNER ICONS — filled gradient circles
   ======================================== */
.hero-feature-icon {
  border: 0 !important;
  background: linear-gradient(135deg, #5a9c40 0%, #3d7c31 45%, #23511f 100%) !important;
  box-shadow: 0 6px 16px rgba(35, 81, 31, 0.28);
}
.hero-feature-icon .fi { color: #fff; }

/* ========================================
   PRODUCTS — price and BUY share one row
   ======================================== */
.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
}
.product-price-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.product-price-row .product-price {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #2b6127;
}
.product-unit {
  font-family: "Lora", sans-serif;
  font-size: 0.78rem;
  color: #8a8a8a;
}
.btn-buy {
  flex: 0 0 auto;
  padding: 9px 20px !important;
  font-size: 0.72rem !important;
  letter-spacing: 1px;
  line-height: 1;
  min-width: 0;
}
.product-content .btn-buy {
  display: inline-flex;
  margin-top: 4px;
}

/* ========================================
   PRODUCT MEDIA — image swaps to a clip on hover
   ======================================== */
.product-image,
.shop-product-image {
  position: relative;
  overflow: hidden;
}
.product-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.product-card:hover .product-video,
.shop-product-card:hover .product-video {
  opacity: 1;
}

/* ========================================
   SECONDARY BUTTON — was white text on white, i.e. invisible
   ======================================== */
.ina_button_light,
.cta-buttons .ina_button_light,
.visit-buttons .ina_button_light {
  background: #fff;
  color: #1f4d1f;
  border: 1px solid rgba(31, 77, 31, 0.2);
  font-weight: 700;
}
.ina_button_light span { color: #1f4d1f; }
.ina_button_light:hover,
.cta-buttons .ina_button_light:hover {
  background: #f2f7ef;
  color: #2b6127;
  border-color: #2b6127;
}
.bg-green .ina_button_light,
.final-cta-section .ina_button_light { color: #1f4d1f; border-color: transparent; }

/* ========================================
   FOOTER — one type scale
   ======================================== */
footer .ina_footer-text,
footer h4 { font-size: 1.05rem; font-weight: 700; }
footer a,
footer li,
footer p,
footer span { font-size: 0.95rem; line-height: 1.9; }
footer .ina_social-footer li a { font-size: 1rem; }
/* theme sets footer link sizes on deeper selectors — match them */
footer .ina_footer-menu li a,
footer .ina_content-footer a,
footer .ina_content-footer p,
footer .ina_content-footer li,
footer .ina_content-footer span,
.ina_footer-bg-green a,
.ina_footer-bg-green p,
.ina_footer-bg-green li { font-size: 0.95rem; line-height: 1.9; }
.ina_footer-bg-green .ina_footer-text,
footer .ina_footer-text.color-light { font-size: 1.05rem; }
.ina_footer-bg-green .ina_content-footer .ina_site-info p { font-size: 0.95rem; }

/* ========================================
   PHONE LAYOUT
   ======================================== */
@media (max-width: 767px) {
  /* topbar: address is redundant next to the footer, keep the bar slim */
  .ina-topbar .ina-topbar-address { display: none; }

  /* header: shorter bar, smaller mark */
  .headerTop .wraper-header-information { padding-left: 14px; padding-right: 14px; }

  .ina-wraper-header-top .ina_position-right { right: 54px; }
  .header-phone-icon { width: 32px; height: 32px; }
  .header-phone-icon .fi { font-size: 13px; }
  .navbar-toggler { padding: 4px; border: 0; }

  /* the inline collapse is replaced by the off-canvas panel */
  #mynNavbarHeader { display: none !important; }

  /* off-canvas menu */
  .ina-sidebar .sidbar-content {
    position: fixed;
    top: 0;
    right: 0;
    width: min(86vw, 340px);
    height: 100%;
    background: #fff;
    box-shadow: -12px 0 40px rgba(30, 50, 30, 0.18);
    transform: translateX(105%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1200;
    overflow-y: auto;
    padding: 20px 22px 40px;
  }
  .ina-sidebar .sidbar-content.active { transform: translateX(0); }
  .ina-sidebar .overlay-sidebar {
    position: fixed;
    inset: 0;
    background: rgba(20, 35, 20, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1100;
  }
  .ina-sidebar .overlay-sidebar.active { opacity: 1; visibility: visible; }
  .ina-sidebar .ina-sidebar-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
  }
  .ina-sidebar .ina-sidebar-top img { max-height: 44px; width: auto; }
  .ina-sidebar .search-close {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1f5ee;
    cursor: pointer;
  }
  .ina-sidebar .search-close::before {
    content: "\00d7";
    font-size: 22px;
    line-height: 1;
    color: #2b6127;
  }
  .ina-sidebar .navbar-nav { flex-direction: column; align-items: flex-start; gap: 2px; }
  .ina-sidebar .navbar-nav .nav-item { width: 100%; }
  .ina-sidebar .navbar-nav a {
    display: block;
    width: 100%;
    padding: 13px 0;
    border-bottom: 1px solid #eef2ea;
    font-family: "Syne", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #24331f;
  }
  .ina-sidebar .navbar-nav a:hover span { color: #2b6127; }
  .ina-sidebar-footer { margin-top: 22px; }
  .ina-sidebar-footer .ina_button { width: 100%; justify-content: center; }

  /* card grids turn into swipeable rows */
  .mobile-swiper { overflow: hidden; padding-bottom: 34px; }
  .mobile-swiper .swiper-slide { height: auto; display: flex; }
  .mobile-swiper .swiper-slide > * { width: 100%; margin: 0 !important; }
  .mobile-swiper-pagination.swiper-pagination { bottom: 0; }
  .mobile-swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px !important;
    background: #f3b183;
    opacity: 1;
  }
  .mobile-swiper-pagination .swiper-pagination-bullet-active {
    width: 22px;
    border-radius: 4px;
    background: #ef6c17;
  }
  .hero-features-card.mobile-swiper { padding: 16px 12px 34px; }
}

/* ---- phone: flush navbar, compact hero ---- */
@media (max-width: 767px) {
  .headerTop,
  .headerTop .container,
  .ina-wraper-header-top,
  .ina-navbar-section-header,
  .ina-navbar,
  .ina-wrraper-navbar {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .navbar-brand.ina-logo-wrapper { margin: 0; padding: 0; }

  /* hero: 40% of the viewport, no body copy */
  /* flex on the section made the container compete with the feature strip and
     squeezed the copy to ~140px, so the 40% lives on the content block instead */
  .hero-section {
    display: block;
    height: auto;
    min-height: 0;
    padding: 0 0 16px;
  }
  .hero-section > .container { width: 100%; }
  .hero-content {
    min-height: 40svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px 0;
  }
  .hero-subtitle { display: none; }
  .hero-content { max-width: 100%; }
  .hero-title { font-size: 1.55rem; margin-bottom: 12px; }
  .hero-buttons { gap: 8px; margin-bottom: 10px; }
  .hero-btn { padding: 10px 18px; font-size: 0.74rem; }
  .hero-btn .fi { font-size: 13px; }
  .hero-tagline { font-size: 0.78rem; }
  .hero-features { margin-top: 18px; }
}

/* ---- phone: the feature strip reads as its own bar under the hero ---- */
@media (max-width: 767px) {
  /* the banner image covers only the hero copy band, not the strip below it */
  .hero-section .hero-bg-image {
    height: 40svh;
    bottom: auto;
  }
  .hero-features {
    position: static;
    margin-top: 0;
    background: #f7edde;
    padding: 16px 0 6px;
  }
  .hero-features-card {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }
  .hero-section { padding-bottom: 0; }
}

/* ---- phone: banner image on top, hero copy stacked under it ---- */
@media (max-width: 767px) {
  .hero-section {
    background: #fbf0e6;
    padding-top: 0;
  }
  .hero-section .hero-bg-image {
    position: static;
    height: 34svh;
    width: 100%;
  }
  .hero-section .hero-bg-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center 30%;
  }
  .hero-content {
    min-height: 0;
    padding: 20px 0 4px;
  }
  .hero-title { font-size: 1.6rem; margin-bottom: 14px; }
  .hero-buttons { margin-bottom: 12px; }
}

/* ---- phone: hero copy sits ON the banner image again ---- */
@media (max-width: 767px) {
  .hero-section { position: relative; padding-top: 0; }
  .hero-section .hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40svh;
    z-index: 1;
  }
  .hero-section .hero-bg-image img {
    height: 100%;
    object-fit: cover;
    object-position: 62% center;
  }
  /* scrim keeps the dark copy readable over the photograph */
  .hero-section .hero-bg-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(251, 240, 230, 0.86) 0%,
      rgba(251, 240, 230, 0.7) 55%,
      rgba(251, 240, 230, 0.55) 100%
    );
  }
  .hero-section > .container { position: relative; z-index: 3; }
  .hero-content {
    min-height: 40svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px 0;
  }
}

/* ---- phone: hero shows the message only, image stays untinted ---- */
@media (max-width: 767px) {
  .hero-buttons { display: none; }
  .hero-section .hero-bg-image::after { content: none; }
  .hero-content { padding: 10px 0; }
  .hero-title { margin-bottom: 10px; }
  .hero-tagline { margin-bottom: 0; }

  /* close the gap between the feature bar and the next section */
  .hero-section { padding-bottom: 0; }
  .hero-features { padding: 10px 0 0; }
  .hero-features-card.mobile-swiper { padding: 6px 10px 24px; }
  .hero-features-card { padding: 8px 10px; }
  .purchase-seva-section { padding-top: 34px; }
}

/* ---- phone: hero keeps one primary CTA so the page still converts ---- */
@media (max-width: 767px) {
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 10px;
  }
  /* secondary action lives in the menu and further down the page */
  .hero-buttons .hero-btn-outline { display: none; }
  .hero-buttons .hero-btn-primary {
    width: auto;
    align-self: flex-start;
    padding: 11px 22px;
    font-size: 0.76rem;
  }
  .hero-content { padding: 12px 0; }
  .hero-title { margin-bottom: 12px; }
}

/* ---- phone: hero CTA is label only ---- */
@media (max-width: 767px) {
  .hero-buttons .hero-btn .fi { display: none; }
  .hero-buttons .hero-btn { gap: 0; }
}

/* ---- phone: the strip card was still display:grid, so the swiper wrapper and
   pagination became grid items and left a dead row between them ---- */
@media (max-width: 767px) {
  .hero-features-card.mobile-swiper {
    display: block;
    height: auto;
    padding: 4px 10px 20px;
  }
  .hero-features-card.mobile-swiper .swiper-wrapper { align-items: stretch; }
  .hero-features-card .mobile-swiper-pagination.swiper-pagination { bottom: 2px; }
  .hero-features { padding: 8px 0 0; }
  .hero-feature { padding: 0 8px; border-right: 0; }
}

/* ---- phone: pagination flows right under the strip instead of floating in
   reserved padding, which left ~28px of dead space ---- */
@media (max-width: 767px) {
  .hero-features-card.mobile-swiper { padding: 4px 10px 8px; }
  .hero-features-card .mobile-swiper-pagination.swiper-pagination {
    position: static;
    margin-top: 8px;
    line-height: 1;
  }
}

/* ---- phone: the hero strip is a self-running ticker, no dots ---- */
@media (max-width: 767px) {
  .hero-features-card .mobile-swiper-pagination { display: none; }
  .hero-features-card.mobile-swiper { padding: 6px 10px; }
  .hero-features-card.mobile-swiper .hero-feature { justify-content: center; }
}

/* ========================================
   PHONE REDESIGN — topbar, header, hero, strip
   ======================================== */
.ina-topbar-follow { display: none; }

@media (max-width: 767px) {
  /* topbar */
  .ina-topbar .ina-topbar-inner { align-items: center; }
  .ina-topbar .fi { font-size: 15px; }
  .ina-topbar-follow {
    display: inline-block;
    margin-right: 10px;
    font-family: "Syne", sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
  }
  .ina-topbar-social li a .social-circle {
    width: 30px;
    height: 30px;
    background: #fff;
    color: #ef6c17;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .ina-topbar-social li a .social-circle i,
  .ina-topbar-social li a .social-circle svg { color: #ef6c17; fill: #ef6c17; }

  /* header: phone number visible, heavier burger */
  .ina-wraper-header-top .ina_position-right { right: 60px; }
  .header-phone-text { display: flex; }
  .header-phone-label { display: none; }
  .header-phone-number { font-size: 0.95rem; color: #2b6127; }
  .header-phone-icon { width: 42px; height: 42px; }
  .header-phone-icon .fi { font-size: 17px; }
  .navbar-toggler .ina-humberger-line {
    height: 3px;
    width: 30px;
    background: #1f2a1c;
    border-radius: 2px;
  }
  .navbar-toggler .ina-humberger-lists { gap: 7px; }

  /* hero */
  .hero-content { padding: 26px 0 20px; }
  .hero-title { font-size: 2rem; line-height: 1.2; margin-bottom: 22px; }
  .hero-buttons { margin-bottom: 16px; }
  .hero-buttons .hero-btn-primary {
    width: 100%;
    justify-content: space-between;
    padding: 15px 12px 15px 22px;
    font-size: 0.92rem;
    border-radius: 50px;
  }
  .hero-buttons .hero-btn .fi { display: inline-flex; }
  .hero-btn-go {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
  }
  .hero-btn-go .fi { font-size: 15px; color: #fff; }

  /* tagline becomes a card */
  .hero-tagline {
    background: rgba(255, 255, 255, 0.86);
    border-radius: 14px;
    padding: 14px 16px;
    gap: 12px;
    align-items: center;
    font-size: 0.92rem;
    line-height: 1.45;
    color: #3a4436;
    box-shadow: 0 6px 18px rgba(40, 60, 38, 0.08);
  }
  .hero-tagline .fi { font-size: 20px; color: #2b6127; }

  /* feature strip card */
  .hero-features-card.mobile-swiper { padding: 0 10px; background: transparent; }
  .hero-feature {
    width: 100%;
    justify-content: flex-start;
    gap: 14px;
    padding: 14px 14px;
    background: #f7edde;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(40, 60, 38, 0.1);
  }
  .hero-feature-icon { width: 46px; height: 46px; }
  .hero-feature-text { flex: 1; }
  .hero-feature-text h3 { font-size: 1.02rem; }
  .hero-feature-go {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #5a9c40 0%, #3d7c31 45%, #2b6127 100%);
    color: #fff;
  }
  .hero-feature-go .fi { font-size: 16px; color: #fff; }
}

/* the badge is a phone-only affordance */
@media (min-width: 768px) {
  .hero-feature-go,
  .hero-btn-go { display: none; }
}

/* ---- phone hero: taller band, copy on the clear left, art to the right ---- */
@media (max-width: 767px) {
  .hero-section .hero-bg-image {
    height: 62svh;
  }
  .hero-section .hero-bg-image img {
    object-position: 78% bottom;
  }
  .hero-content {
    min-height: 62svh;
    justify-content: flex-start;
    padding: 34px 0 18px;
  }
  .hero-title {
    font-size: 1.85rem;
    line-height: 1.22;
    max-width: 84%;
    margin-bottom: 26px;
  }
  .hero-buttons { margin-bottom: 14px; }
  .hero-buttons .hero-btn-primary {
    width: 82%;
    max-width: 300px;
    padding: 14px 10px 14px 20px;
  }
  .hero-tagline {
    width: 82%;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 16px;
    padding: 13px 15px;
  }

  /* the strip card overlaps the grass like the reference */
  .hero-features {
    padding: 0;
    margin-top: -34px;
    position: relative;
    z-index: 4;
    background: transparent;
  }
  .hero-features-card.mobile-swiper { padding: 0 12px; }
  .hero-feature {
    background: #f7edde;
    border-radius: 18px;
    padding: 16px 14px;
    box-shadow: 0 12px 30px rgba(40, 60, 38, 0.16);
  }
  .purchase-seva-section { padding-top: 44px; }
}

/* ---- phone: hero headline is exactly two lines ---- */
@media (max-width: 767px) {
  .hero-title {
    font-size: 1.6rem;
    line-height: 1.24;
    max-width: 92%;
    margin-bottom: 24px;
  }
  .hero-title .hero-title-accent { white-space: nowrap; }
}

/* ---- phone: hero CTA is label + arrow badge only, and smaller ---- */
@media (max-width: 767px) {
  .hero-buttons .hero-btn > .fi { display: none; }
  .hero-buttons .hero-btn-primary {
    width: auto;
    max-width: none;
    padding: 10px 8px 10px 20px;
    gap: 14px;
    font-size: 0.8rem;
    letter-spacing: 0.8px;
  }
  .hero-btn-go { width: 28px; height: 28px; }
  .hero-btn-go .fi { font-size: 13px; display: inline-flex; }
}

/* ---- phone: show the whole banner, shorter band ---- */
@media (max-width: 767px) {
  .hero-section .hero-bg-image { height: 44svh; }
  .hero-section .hero-bg-image img {
    object-fit: contain;
    object-position: center bottom;
  }
  .hero-content {
    min-height: 44svh;
    padding: 24px 0 16px;
  }
  .hero-title { margin-bottom: 18px; }
  .hero-features { margin-top: -26px; }
}

/* ---- phone: shorter hero band, image still covers ---- */
@media (max-width: 767px) {
  .hero-section .hero-bg-image { height: 46svh; }
  .hero-section .hero-bg-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: 76% bottom;
  }
  .hero-content {
    min-height: 46svh;
    padding: 22px 0 14px;
  }
  .hero-title { margin-bottom: 18px; }
  .hero-features { margin-top: -28px; }
}

/* ---- call link: bare green glyph, no filled circle ---- */
.header-phone-icon {
  width: auto;
  height: auto;
  background: none !important;
  box-shadow: none !important;
  border-radius: 0;
  color: #2b6127;
}
.header-phone-icon .fi { color: #2b6127; font-size: 18px; }
.header-phone:hover .header-phone-icon { transform: none; box-shadow: none; }
.header-phone:hover .header-phone-icon .fi { color: #3d7c31; }

@media (max-width: 767px) {
  .header-phone-icon { width: auto; height: auto; }
  .header-phone-icon .fi { font-size: 17px; }
  .header-phone { gap: 7px; }
}

/* ---- phone: hero is headline + CTA only ---- */
@media (max-width: 767px) {
  .hero-tagline { display: none; }
  .hero-content { padding: 20px 0 12px; }
  .hero-buttons { margin-bottom: 0; }
}

/* ---- phone: tagline returns, pinned to the bottom of the hero band ---- */
@media (max-width: 767px) {
  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px 0 68px;
  }
  .hero-tagline {
    display: flex;
    margin-top: auto;
    width: auto;
    max-width: 300px;
    padding: 10px 14px;
    font-size: 0.84rem;
    line-height: 1.4;
  }
  .hero-tagline .fi { font-size: 17px; }
}

/* ---- phone: tagline out, CTA takes the bottom slot ---- */
@media (max-width: 767px) {
  .hero-tagline { display: none; }
  .hero-buttons {
    margin-top: auto;
    margin-bottom: 0;
  }
}

/* ---- phone: no cream strip between the banner and the next section ---- */
@media (max-width: 767px) {
  .hero-section { background: #fff; }
  .hero-features { background: transparent; }
  .purchase-seva-section { background: #fff; }
}

/* ---- hero feature strip: flat, no drop shadow ---- */
.hero-features-card { box-shadow: none !important; }
.hero-feature { box-shadow: none !important; }

/* Reduce whitespace between hero features and next section on mobile */
@media (max-width: 767px) {
  .hero-features { margin-bottom: 0; padding-bottom: 10px; }
  .hero-section { margin-bottom: 0; }
}

/* ========================================
   PHONE: centre section content and every button
   ======================================== */
@media (max-width: 767px) {
  .who-we-are-content,
  .about-intro-content,
  .visit-content,
  .seva-intro,
  .belief-head,
  .daily-care-head,
  .flow-head,
  .title-section,
  .purchase-supports-banner,
  .story-content,
  .cow-content,
  .product-content,
  .shop-product-content { text-align: center; }

  .who-point,
  .belief-points li,
  .visit-details li,
  .flow-step,
  .care-card-body { justify-content: center; }
  .who-point { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
  .care-card-body { text-align: left; }

  .visit-buttons,
  .cta-buttons,
  .hero-features-card .hero-feature,
  .text-center.mt-4 { justify-content: center; }

  .ina_button,
  .ina_button_green,
  .ina_button_light,
  .ina_button_text,
  .about-intro-btn,
  .btn-buy {
    margin-left: auto;
    margin-right: auto;
    align-self: center;
  }
  .product-price-row { justify-content: center; gap: 18px; }
  .product-price-wrap { align-items: center; }

  /* the hero keeps its left-aligned composition */
  .hero-content,
  .hero-content .hero-title,
  .hero-content .hero-tagline { text-align: left; }
  .hero-buttons { align-items: flex-start; }
  .hero-buttons .hero-btn-primary { margin-left: 0; margin-right: 0; align-self: flex-start; }
}

/* ---- phone: tighter navbar band ---- */
@media (max-width: 767px) {
  .ina-navbar-section-header,
  .ina-wraper-header-top { min-height: 50px; }
  .headerTop .wraper-header-information { padding-top: 0 !important; padding-bottom: 0 !important; }
  .navbar-brand.ina-logo-wrapper img,
  .navbar-brand img { max-height: 40px; }
  .ina-topbar { padding: 6px 0; }
  .ina-topbar-social li a .social-circle { width: 26px; height: 26px; }
  .ina-topbar-follow { font-size: 0.76rem; }
  .header-phone-icon .fi { font-size: 15px; }
  .header-phone-number { font-size: 0.86rem; }
  .navbar-toggler .ina-humberger-line { width: 26px; height: 2.5px; }
  .navbar-toggler .ina-humberger-lists { gap: 6px; }
}

/* ---- phone: flow carousel, tighter impact stats, no visit photo ---- */
@media (max-width: 767px) {
  .how-it-works-flow.mobile-swiper { display: block; padding-bottom: 34px; }
  .how-it-works-flow.mobile-swiper .swiper-slide { height: auto; display: flex; }
  .how-it-works-flow.mobile-swiper .flow-step,
  .how-it-works-flow.mobile-swiper .flow-final { width: 100%; flex: 1 1 auto; }
  .flow-arrow { display: none !important; }

  /* impact stats: half the dead space */
  .our-impact-section .impact-stat { padding: 8px 0; }
  .our-impact-section .row > [class*="col-"] { margin-bottom: 0 !important; }
  .our-impact-section .impact-number { margin-bottom: 2px; }

  /* the visit photo repeats the hero art, drop it on small screens */
  .visit-section .visit-image { display: none; }

  /* strip sits 20px lower over the grass */
  .hero-features { margin-top: -8px; }
}

/* ---- phone: converted grids must be block, or the swiper wrapper and dots
   become grid items (dead row, hidden pagination) ---- */
@media (max-width: 767px) {
  .mobile-swiper {
    display: block !important;
    grid-template-columns: none !important;
    gap: 0 !important;
    padding-bottom: 0;
  }
  .mobile-swiper .swiper-wrapper { align-items: stretch; }
  .mobile-swiper-pagination.swiper-pagination {
    position: static;
    margin-top: 12px;
    line-height: 1;
    display: block;
  }
  .hero-features-card .mobile-swiper-pagination { display: none; }
  .seva-value-grid.mobile-swiper,
  .belief-grid.mobile-swiper,
  .products-section .row.mobile-swiper,
  .how-it-works-flow.mobile-swiper { padding-bottom: 0; }
}

/* ---- phone: impact stats two per row ---- */
@media (max-width: 767px) {
  .our-impact-section .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 10px;
    margin: 0;
  }
  .our-impact-section .row > [class*="col-"] {
    width: 100%;
    max-width: none;
    flex: none;
    padding: 0;
  }
  .our-impact-section .impact-stat { padding: 6px 0; }
  .our-impact-section .impact-number { font-size: 1.9rem; }
  .our-impact-section .impact-stat p { font-size: 0.85rem; line-height: 1.4; }
}

/* ---- phone: carousels stop reserving pagination padding, tighter section joins ---- */
@media (max-width: 767px) {
  .cows-swiper,
  .seva-swiper,
  .stories-swiper,
  .daily-care-swiper { padding-bottom: 0; }
  .cows-swiper-pagination.swiper-pagination,
  .seva-swiper-pagination.swiper-pagination,
  .stories-swiper-pagination.swiper-pagination,
  .daily-care-pagination.swiper-pagination {
    position: static;
    margin-top: 12px;
    line-height: 1;
  }

  .stories-section { padding-bottom: 26px; }
  .visit-section { padding-top: 26px; }

  /* visit block: copy, details, then the two actions stacked and clear of the
     floating WhatsApp bubble */
  .visit-content { padding-right: 0; }
  .visit-details { margin: 14px 0; }
  .visit-details li { padding: 6px 0; }
  .visit-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding-bottom: 74px;
  }
  .visit-buttons .ina_button {
    width: 100%;
    max-width: 280px;
    margin: 0 !important;
    justify-content: center;
  }
}

/* ---- phone: final CTA is one action, smaller type ---- */
@media (max-width: 767px) {
  .final-cta-section { padding-top: 34px; padding-bottom: 34px; }
  .final-cta-section .cta-title { font-size: 1.32rem; line-height: 1.3; }
  .final-cta-section .cta-subtitle { font-size: 0.88rem; }
  .cta-buttons { flex-direction: column; align-items: center; gap: 0; margin-top: 14px !important; }
  .cta-buttons .ina_button:nth-child(1),
  .cta-buttons .ina_button:nth-child(2) { display: none !important; }
  .cta-buttons .ina_button:nth-child(3) {
    width: 100%;
    max-width: 260px;
    margin: 0 !important;
    font-size: 0.8rem;
  }
}

/* ---- phone: final CTA button hugs its label ---- */
@media (max-width: 767px) {
  .cta-buttons .ina_button:nth-child(3) {
    width: auto;
    max-width: none;
    padding: 12px 30px;
    font-size: 0.78rem;
  }
}

/* ---- phone: no dead space under the visit buttons ---- */
@media (max-width: 767px) {
  .visit-buttons { padding-bottom: 0; margin-bottom: 0; }
  .visit-section { padding-bottom: 26px; }
}

/* ---- sidebar menu: clean close mark, no inner scrollbars, real social buttons ---- */
@media (max-width: 767px) {
  .ina-sidebar .search-close {
    width: 34px;
    height: 34px;
    position: relative;
    flex: 0 0 auto;
  }
  .ina-sidebar .search-close::before,
  .ina-sidebar .search-close::after {
    position: absolute;
    left: 50%;
    top: 50%;
  }
  .ina-sidebar .search-close::before { transform: translate(-50%, -50%) rotate(45deg); }
  .ina-sidebar .search-close::after { transform: translate(-50%, -50%) rotate(-45deg); }

  .ina-sidebar .ina-sidebar-bottom,
  .ina-sidebar .ina-navbar-sidebar,
  .ina-sidebar .navbar,
  .ina-sidebar .ina-wrraper-navbar,
  .ina-sidebar .navbar-collapse {
    max-height: none !important;
    overflow: visible !important;
    height: auto !important;
    padding: 0;
  }
  .ina-sidebar .navbar-nav { overflow: visible; }
  .ina-sidebar .navbar-nav .nav-item:last-child a { border-bottom: 0; }

  .ina-sidebar-footer .ina-text-follow {
    display: block;
    margin: 18px 0 10px;
    font-family: "Syne", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #24331f;
  }
  .ina-sidebar-footer ul { display: flex; gap: 10px; margin: 0; }
  .ina-sidebar-footer ul li { display: flex; gap: 10px; }
  .ina-sidebar-footer ul li a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1f5ee;
    color: #2b6127;
  }
  .ina-sidebar-footer ul li a svg { width: 17px; height: 17px; }
  .ina-sidebar-footer ul li a:hover { background: #2b6127; color: #fff; }
  .ina-sidebar-footer .ina_button { margin-bottom: 4px !important; }
}

/* ---- sidebar: kill the leftover glyph and the inner scroll area ---- */
@media (max-width: 767px) {
  .ina-sidebar .sidbar-content .search-close::before,
  .ina-sidebar .sidbar-content .search-close::after {
    content: "" !important;
    width: 17px !important;
    height: 2px !important;
    border-radius: 2px;
    background: #2b6127 !important;
    font-size: 0 !important;
  }
  .ina-sidebar .sidbar-content .navbar-nav {
    max-height: none !important;
    overflow: visible !important;
    height: auto !important;
  }
}

/* ---- sidebar links: underline only as wide as the label, no stray marks ---- */
@media (max-width: 767px) {
  .ina-sidebar .sidbar-content .navbar-nav a {
    border-bottom: 0 !important;
    padding: 12px 0;
    width: auto;
    display: inline-block;
  }
  .ina-sidebar .sidbar-content .navbar-nav a span {
    display: inline-block;
    padding-bottom: 6px;
    border-bottom: 1px solid #e7ece2;
  }
  .ina-sidebar .sidbar-content .navbar-nav a:hover span { border-bottom-color: #2b6127; }
  .ina-sidebar .sidbar-content .navbar-nav a::after,
  .ina-sidebar .sidbar-content .navbar-nav a::before,
  .ina-sidebar .sidbar-content .navbar-nav a span::after,
  .ina-sidebar .sidbar-content .navbar-nav a span::before { display: none !important; content: none !important; }
}

/* ---- phone: belief band sits on white, no green strip ---- */
@media (max-width: 767px) {
  .why-desi-cows-section {
    background-image: none;
    background-color: #fff;
    padding-bottom: 26px;
  }
  .why-desi-cows-section::after { display: none !important; content: none !important; }
}

/* ---- topbar: tighten the icon row (Follow Us label controlled in phone redesign section) ---- */
.ina-topbar-social {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
}
.ina-topbar-social li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ina-topbar-social li + li {
  margin-left: 6px;
}
.ina-topbar-social li a {
  margin: 0;
  padding: 0;
  display: inline-flex;
}

/* ---- desktop: the belief band reserved 760px of height for the artwork and
   left a dead zone above and below the content ---- */
@media (min-width: 768px) {
  .why-desi-cows-section {
    min-height: 0;
    background-size: cover;
    background-position: center;
  }
  .life-at-gaushala-section { padding-bottom: 40px; }
  .daily-care-swiper { padding-bottom: 34px; }
  .belief-head { margin-bottom: 26px; }
}

/* ---- Who We Are: image fills its column and matches the text height ---- */
@media (min-width: 992px) {
  .who-we-are-image {
    max-width: 100%;
    height: 100%;
  }
  .who-we-are-image img {
    width: 100%;
    height: 100%;
    max-height: none;
    min-height: 440px;
    object-fit: cover;
    border-radius: 18px;
  }
  .who-we-are-section .row { align-items: stretch; }
  .who-we-are-section .row > [class*="col-"] { display: flex; align-items: center; }
  .who-we-are-content { width: 100%; }
}
@media (min-width: 768px) and (max-width: 991px) {
  .who-we-are-image { max-width: 100%; }
  .who-we-are-image img { width: 100%; max-height: 380px; object-fit: cover; }
}

/* a11y: keyboard focus must stay visible (theme reset killed the ring) */
.contact-form .form-control:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
form .form-control:focus-visible {
  outline: 2px solid #2b6127 !important;
  outline-offset: 2px !important;
  border-color: #2b6127 !important;
  box-shadow: 0 0 0 3px rgba(43, 97, 39, 0.14) !important;
}
a:focus-visible,
button:focus-visible,
.ina_button:focus-visible {
  outline: 2px solid #2b6127;
  outline-offset: 3px;
}
/* gradient pill inherited the surrounding grey text colour */
.find-us-list .find-us-item .find-us-wa,
.find-us-list .find-us-item .find-us-wa span { color: #fff !important; }

/* ========================================
   STICKY HEADER — nav stays available on every page
   ======================================== */
header.headerTop {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #fff;
  box-shadow: 0 2px 14px rgba(30, 50, 30, 0.06);
}
/* the off-canvas panel and its scrim must sit above the sticky bar */
.ina-sidebar .sidbar-content { z-index: 1200; }
.ina-sidebar .overlay-sidebar { z-index: 1100; }
.whatsapp-floating-btn { z-index: 950; }
/* anchor targets clear the sticky bar instead of hiding under it */
html { scroll-behavior: smooth; }
section[id],
[id^="prod"],
[id^="about"],
#plan-your-visit,
#shipping,
#returns { scroll-margin-top: 96px; }

@media (max-width: 767px) {
  section[id],
  #plan-your-visit { scroll-margin-top: 74px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* the theme sets body { overflow-x: hidden; height: 100% }, which turns body
   into a scroll container and stops position:sticky from ever sticking.
   overflow-x: clip contains the same horizontal bleed without that side effect. */
body {
  overflow-x: clip !important;
  overflow-y: visible !important;
  height: auto !important;
}
html { overflow-x: clip; }

/* ========================================
   BUTTON TYPE — Jost, so actions read distinctly from Syne headings
   ======================================== */
.ina_button,
.ina_button span,
.ina_button_green,
.ina_button_light,
.ina_button_dark,
.ina_button_orange,
.header-cta-btn,
.header-cta-btn span,
.hero-btn,
.hero-btn span,
.btn-buy,
.btn,
.related-all-btn,
.about-intro-btn,
.contact-form button,
button[type="submit"],
input[type="submit"] {
  font-family: "Jost", sans-serif !important;
  font-weight: 600;
  letter-spacing: 1.1px;
}
.ina_button_text,
.ina_button_text span {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ========================================
   SMALL TEXT — one step down, semibold
   ======================================== */
.product-unit,
.related-product-unit,
.cow-info,
.flow-step p,
.hero-feature-text p,
.photo-caption,
.product-crumbs,
.text-muted.small,
.product-content p,
.ina-topbar-left li span,
.ina-topbar-follow,
.contact-form label,
.find-us-rows dt,
.header-phone-label,
.seva-type-number,
.belief-card-number,
.impact-stat p,
.related-product-price,
.form-message span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.product-crumbs,
.photo-caption { letter-spacing: 0.3px; }
.find-us-rows dd { font-size: 0.83rem; }
.hero-tagline { font-size: 0.85rem; font-weight: 600; }
.section-tagline,
.daily-care-eyebrow,
.belief-eyebrow,
.flow-eyebrow,
.eyebrow-label { font-size: 16px; }

@media (max-width: 767px) {
  .product-unit,
  .cow-info,
  .photo-caption,
  .product-content p,
  .contact-form label { font-size: 0.76rem; }
}
/* eyebrow label lives behind a .title-section rule, so match that specificity */
.title-section .section-tagline,
.find-us-head .section-tagline,
.daily-care-head .daily-care-eyebrow,
.belief-head .belief-eyebrow,
.flow-head .flow-eyebrow,
.who-we-are-content .eyebrow-label { font-size: 16px; }
