@charset "UTF-8";
#site-loader {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(to bottom, #f9f9f6 0%, #ffffff 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#site-loader .loader-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 240px;
}
#site-loader .loader-ring {
  position: absolute;
  width: 240px;
  height: 240px;
  border: 4px solid rgba(198, 72, 49, 0.2);
  border-top-color: rgba(198, 72, 49, 0.7);
  border-radius: 50%;
  animation: spin 2s linear infinite;
  z-index: 0;
}
#site-loader .loader-logo {
  width: 180px;
  height: auto;
  z-index: 1;
  animation: pulseLogo 1.5s ease-in-out infinite;
}
#site-loader .loader-tagline {
  font-family: "Baloo Tamma 2", system-ui;
  font-size: 2rem;
  color: #a07438;
  text-align: center;
  margin-top: 1rem;
  font-weight: 600;
}
@media (max-width: 576px) {
  #site-loader .loader-tagline {
    font-size: 1.5rem;
    white-space: pre-line;
    line-height: 1.4;
  }
}
#site-loader .loader-line {
  margin-top: 2rem;
  width: 120px;
  height: 4px;
  background: rgba(198, 72, 49, 0.3);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
#site-loader .loader-line::after {
  content: "";
  position: absolute;
  left: -40%;
  width: 40%;
  height: 100%;
  background: rgba(198, 72, 49, 0.8);
  animation: loaderLineAnim 1.5s linear infinite;
}
@keyframes loaderLineAnim {
  0% {
    left: -40%;
  }
  100% {
    left: 100%;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulseLogo {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
}

/* -----------------------------
   Utility: Dashed Border
   ----------------------------- */
/* -----------------------------
   Utility: Filled Button Style
   ----------------------------- */
/* -----------------------------
   Responsive Breakpoint Mixin - DOWN
   Uses max-width: breakpoint - 0.02px (Bootstrap's logic)
   ----------------------------- */
/* -----------------------------
   Responsive Breakpoint Mixin - UP
   Uses min-width: breakpoint
   ----------------------------- */
/* -----------------------------
   Responsive Breakpoint Mixin - BETWEEN
   Uses min-width and max-width range
   ----------------------------- */
/* -----------------------------
   Responsive Font Size with Clamp
   Signature:
     @include responsive-font-size($min-size, $max-size, $min-vw: 320, $max-vw: 1440)
   Note: $min-vw / $max-vw are numbers (px appended inside)
   ----------------------------- */
/* -----------------------------
   NEW: Responsive Spacing (clamp-based)
   Usage:
     @include responsive-spacing(padding-top, 0.5rem, 2rem);
     @include responsive-spacing(margin-bottom, 0.5rem, 1.5rem);
   ----------------------------- */
/* -----------------------------
   NEW: Responsive Component helper
   Packs font-size + vertical/horizontal padding.
   Usage:
     @include responsive-component(0.85rem, 1rem, (0.45rem 0.8rem), (0.9rem 1.6rem));
   where pad tuples: (vertical horizontal) min and max
   ----------------------------- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #a07438;
  background-color: #f9f9f6;
  line-height: 1.6;
  font-size: clamp(0.95rem, 0.95rem + (1rem - 0.95rem) * (100vw - 320px) / (1440 - 320), 1rem);
}

[id] {
  scroll-margin-top: 150px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  color: #c1140e;
}

h1 {
  font-size: clamp(1.75rem, 1.75rem + (3rem - 1.75rem) * (100vw - 320px) / (1440 - 320), 3rem);
}

h2 {
  font-size: clamp(1.5rem, 1.5rem + (1.5rem - 1.5rem) * (100vw - 320px) / (1440 - 320), 1.5rem);
}

h3 {
  font-size: clamp(1.25rem, 1.25rem + (1.25rem - 1.25rem) * (100vw - 320px) / (1440 - 320), 1.25rem);
}

h4 {
  font-size: clamp(1.125rem, 1.125rem + (1.0625rem - 1.125rem) * (100vw - 320px) / (1440 - 320), 1.0625rem);
}

h5 {
  font-size: clamp(1rem, 1rem + (1rem - 1rem) * (100vw - 320px) / (1440 - 320), 1rem);
}

h6 {
  font-size: clamp(0.875rem, 0.875rem + (0.875rem - 0.875rem) * (100vw - 320px) / (1440 - 320), 0.875rem);
}

p {
  margin-bottom: 1rem;
  font-size: clamp(0.95rem, 0.95rem + (1rem - 0.95rem) * (100vw - 320px) / (1440 - 320), 1rem);
}

small {
  font-size: 0.875rem;
  color: #567d46;
}

a {
  color: #d64941;
  text-decoration: none;
}
a:hover {
  color: rgb(187.5324675325, 48.3636363636, 40.4675324675);
}

hr {
  margin: 2rem 0;
  border: none;
  border-top: 1px solid #a07438;
  opacity: 0.1;
}

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

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
  width: 100%;
  box-sizing: border-box;
}

button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  font-family: "Baloo Tamma 2", system-ui;
  z-index: 1000;
  background-color: transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  padding: 0 1.25rem;
  height: 50px;
  backdrop-filter: blur(30px);
}
.navbar.scrolled {
  background-color: rgba(160, 116, 56, 0.9);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}
.navbar .navbar-brand {
  height: 100%;
  display: flex;
  align-items: center;
}
.navbar .navbar-brand .logo-wrapper {
  background-color: #f9f9f6;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  left: 1rem;
  transform: translateY(-20%);
  z-index: 1001;
}
.navbar .navbar-brand .logo-img {
  max-width: 120px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.navbar .navbar-brand .logo-img:hover {
  transform: scale(1.1);
}
.navbar .navbar-toggler {
  border: none;
  background: none;
  color: #ffffff;
}
.navbar .navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}
.navbar .navbar-collapse {
  justify-content: flex-end;
  text-align: center;
}
.navbar .nav-link {
  font-size: 1.2em;
  font-weight: 500;
  padding: 0 1rem;
  margin-left: 0;
  margin-right: 0;
  border-radius: 0.25rem;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
  color: #ffffff !important;
  text-shadow: 1px 1px 3px rgb(0, 0, 0);
}
.navbar .nav-link:hover {
  color: #000000 !important;
  background-color: rgba(86, 125, 70, 0.75);
  transform: scale(1.07);
}
.navbar .nav-item {
  position: relative;
}
@media (min-width: 992px) {
  .navbar .nav-item:not(:first-child)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 25%;
    bottom: 25%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.4);
  }
  .navbar .nav-item:not(:first-child) {
    margin-left: 1rem;
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 991.98px) {
  .navbar .nav-item {
    margin-left: 0;
    padding-left: 0;
  }
  .navbar .nav-item::before {
    display: none;
  }
}
@media (min-width: 992px) {
  .navbar .nav-desktop-equal {
    display: flex;
    gap: 12px;
  }
  .navbar .nav-desktop-equal .nav-item {
    flex: 1 1 0;
  }
  .navbar .nav-desktop-equal .nav-link {
    min-width: 90px;
    text-align: center;
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  .navbar .nav-link {
    color: #000000 !important;
    height: auto;
    display: block;
    padding: 0.5rem 1rem;
    margin: 0.25rem 0;
    background-color: rgba(86, 125, 70, 0.8);
    backdrop-filter: blur(6px);
  }
  .navbar .navbar-nav .nav-link {
    text-align: center;
    width: 100%;
    text-shadow: none;
  }
  .navbar .navbar-collapse {
    max-width: 150px;
    width: 80vw;
    background-color: #ffffff;
    backdrop-filter: none;
    padding: 1rem;
    margin-left: auto;
    margin-right: 1rem;
    margin-top: 0.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 100%;
    right: 1rem;
    z-index: 1050;
  }
}
@media (max-width: 1400px) {
  .navbar .navbar-brand .logo-wrapper {
    padding: 0.5rem 1rem;
    transform: translateY(-25%);
  }
  .navbar .navbar-brand .logo-img {
    max-width: 100px;
  }
}
@media (max-width: 767.98px) {
  .navbar .navbar-brand .logo-wrapper {
    padding: 0.5rem 1rem;
    transform: translateY(-40%);
  }
  .navbar .navbar-brand .logo-img {
    max-width: 100px;
  }
}
@media (max-width: 575.98px) {
  .navbar .navbar-brand .logo-wrapper {
    padding: 0.4rem 0.75rem;
    transform: translateY(-35%);
  }
  .navbar .navbar-brand .logo-img {
    max-width: 80px;
  }
}

.hero-section {
  position: relative;
  min-height: 100vh;
  background: url("../images/hero1.webp") no-repeat center center/cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem 0;
  padding-top: 7rem;
}
@media (max-width: 991.98px) {
  .hero-section {
    background-image: url("../images/herover.webp");
    background-attachment: fixed;
    display: flex;
    flex-direction: column; /* stack children */
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.hero-section .hero-section .container {
  padding-top: 0.5rem !important;
  margin-top: 0 !important;
}
.hero-section .hero-text-wrapper {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
.hero-section .hero-section h1,
.hero-section .hero-section p {
  margin-top: 0 !important;
}

.container {
  z-index: 2;
}

.hero-text-wrapper {
  text-align: center;
  padding: 1rem;
  transition: box-shadow 0.3s ease;
}
.hero-text-wrapper .hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 600;
  color: #c1140e;
  margin-bottom: 0.5rem;
}
.hero-text-wrapper .hero-subtitle {
  font-family: "Dosis", sans-serif;
  font-weight: bolder;
  font-size: 1.5rem;
  color: #a07438;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}
.hero-text-wrapper .hero-highlights {
  margin: 1.5rem 0;
  list-style: none;
  padding: 0;
}
.hero-text-wrapper .hero-highlights li {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #567d46;
}
.hero-text-wrapper .hero-badge {
  margin-top: 1rem;
}
.hero-text-wrapper .hero-badge small {
  font-size: 0.875rem;
  color: #7baf7b;
  font-weight: 500;
  background-color: #f3f3f3;
  padding: 0.4rem 0.8rem;
  border-radius: 0.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: box-shadow 0.3s ease;
}
.hero-text-wrapper .hero-cta {
  margin-top: 2rem;
}
.hero-text-wrapper .hero-cta .cta-button-group {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-text-wrapper .hero-cta .cta-button-group a {
  max-width: 150px;
  width: 100%;
  flex: 1 1 0;
  text-align: center;
}
@media (max-width: 767.98px) {
  .hero-text-wrapper .hero-cta .cta-button-group {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .hero-text-wrapper .hero-cta .cta-button-group a {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .hero-text-wrapper .hero-cta .cta-button-group {
    gap: 3rem;
  }
}
@media (min-width: 768px) {
  .hero-text-wrapper .hero-cta {
    font-size: 0.87rem;
  }
}
@media (min-width: 1024px) {
  .hero-text-wrapper .hero-cta {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    line-height: 1.5rem;
  }
}
.hero-text-wrapper .hero-cta:active {
  transform: scale(0.97);
  box-shadow: none;
}
.hero-text-wrapper .hero-cta .btn-gradient-modern,
.hero-text-wrapper .hero-cta .btn-reverse-gradient {
  background-image: linear-gradient(to top, #d8d9db 0%, #fff 80%, #fdfdfd 100%);
  border-radius: 30px;
  border: 1px solid #8f9092;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  color: #606060;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-shadow: 0 1px #fff;
  transition: all 0.2s ease;
  cursor: pointer;
}
.hero-text-wrapper .hero-cta .btn-gradient-modern:hover,
.hero-text-wrapper .hero-cta .btn-reverse-gradient:hover {
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.8), 0 4px 3px 1px #fcfcfc, 0 6px 8px #d6d7d9, 0 -4px 4px #cecfd1, 0 -6px 4px #fefefe, inset 0 0 3px 3px #cecfd1;
  transform: scale(0.975);
}
.hero-text-wrapper .hero-cta .btn-gradient-modern:focus:not(:active),
.hero-text-wrapper .hero-cta .btn-reverse-gradient:focus:not(:active) {
  animation: active 0.9s alternate infinite;
  outline: none;
}
.hero-text-wrapper .hero-cta .btn-gradient-modern:active,
.hero-text-wrapper .hero-cta .btn-reverse-gradient:active {
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.6), 0 4px 3px 1px #fcfcfc, 0 6px 8px #d6d7d9, 0 -4px 4px #cecfd1, 0 -6px 4px #fefefe, inset 0 0 5px 3px #999, inset 0 0 30px #aaa;
  transform: scale(0.95);
}
.hero-text-wrapper .hero-cta .btn-gradient-modern:disabled,
.hero-text-wrapper .hero-cta .btn-reverse-gradient:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-gradient-modern .bi-basket3-fill {
  color: #a07438;
}

.btn-gradient-modern .bi-cart-fill {
  color: #567d46;
}

.btn-reverse-gradient .bi-youtube {
  color: #ff0000;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: box-shadow 0.3s ease;
}
.hero-image:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

@media (max-width: 767.98px) {
  .hero-text-wrapper .hero-title {
    font-size: 3rem;
  }
  .hero-text-wrapper .hero-subtitle {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
  }
  .hero-cta {
    text-align: center;
  }
}
.hero-certifications {
  display: flex;
  justify-content: center;
  gap: unset;
  margin-top: 2rem;
}
.hero-certifications img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 2rem;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-certifications img:last-child {
  margin-right: 0;
}
.hero-certifications img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.hero-social-proof {
  display: inline-block;
  background-color: #d6d6d6;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-weight: 600;
  animation: pulse 2s infinite;
}
.hero-social-proof:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.faq-section {
  position: relative;
  background-image: linear-gradient(to bottom, #f9f9f6 0%, #f9f9f6 45%, #f9f9f6 55%, #f9f9f6 100%);
  box-shadow: inset 0 20px 40px rgba(0, 0, 0, 0.1), inset 0 -20px 40px rgba(0, 0, 0, 0.1);
  background-attachment: fixed;
  color: #000000;
  padding: 5rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  z-index: 1;
}
.faq-section .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}
.faq-section .section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.faq-section .section-header h2 {
  font-family: "Baloo Tamma 2", system-ui;
  font-size: clamp(1.5rem, 1vw + 1.1rem, 2rem);
  font-weight: 700;
}
.faq-section .section-header .faq-head {
  color: #d64941;
  letter-spacing: 0.5em;
  font-size: clamp(2rem, 1.5vw + 1.25rem, 2.5rem);
  animation: pulse 2s ease-in-out infinite;
}
.faq-section .section-header .faq-ans {
  color: #000000;
  font-size: 1.25rem;
  font-weight: 500;
}
.faq-section .section-header p {
  font-size: clamp(0.875rem, 0.3vw + 0.8rem, 1rem);
  color: #a07438;
  max-width: 600px;
  margin-inline: auto;
}
.faq-section .custom-accordion .accordion-item {
  background-color: #ffffff;
  border-radius: 1rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  border: none;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.45);
}
.faq-section .custom-accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.faq-section .custom-accordion .accordion-item:has(.accordion-collapse.show) {
  box-shadow: 0 0 10px #d36b35;
  transform: translateY(-2px);
}
.faq-section .custom-accordion .accordion-item .accordion-header {
  flex: 1;
}
.faq-section .custom-accordion .accordion-item .accordion-header .accordion-button {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #d64941, #d36b35);
  color: #ffffff;
  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.125rem);
  font-weight: 600;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  transition: background 0.3s ease, color 0.3s ease;
}
.faq-section .custom-accordion .accordion-item .accordion-header .accordion-button::after {
  display: none;
}
.faq-section .custom-accordion .accordion-item .accordion-header .accordion-button .faq-icon {
  min-width: 60px;
  max-width: 60px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease-in-out;
}
@media (max-width: 767.98px) {
  .faq-section .custom-accordion .accordion-item .accordion-header .accordion-button .faq-icon {
    min-width: 50px;
    max-width: 50px;
    font-size: 1.25rem;
    padding: 0.75rem;
  }
}
.faq-section .custom-accordion .accordion-item .accordion-header .accordion-button .question-text {
  padding: 1rem 1.25rem;
  flex: 1;
}
.faq-section .custom-accordion .accordion-item .accordion-header .accordion-button[aria-expanded=true] {
  background: linear-gradient(135deg, #d36b35, #d64941);
}
.faq-section .custom-accordion .accordion-item .accordion-header .accordion-button[aria-expanded=true] .faq-icon {
  transform: scaleX(-1);
}
.faq-section .custom-accordion .accordion-item .accordion-header .accordion-button:hover {
  filter: brightness(1.05);
  color: #ffffff;
  background-color: #f9f3e5;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}
.faq-section .custom-accordion .accordion-item .accordion-body {
  font-size: clamp(0.875rem, 0.3vw + 0.8rem, 1rem);
  padding: 1rem 1.5rem;
  color: #000000;
  background: linear-gradient(to right, #fff3e0, #ffcc80);
  line-height: 1.65;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  text-align: justify;
  text-justify: inter-word;
  padding: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.faq-section .custom-accordion .accordion-item .accordion-body p {
  text-indent: 2em;
  margin-bottom: 1rem;
}
.faq-section .kannada-text {
  font-family: "Baloo Tamma 2", cursive;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
}
.faq-section .accordion-body {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.shape-divider {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.6;
}
.shape-divider svg {
  display: block;
  width: 100%;
  height: auto;
}
.shape-divider.shape-top {
  top: 0;
}
.shape-divider.shape-bottom {
  bottom: 0;
  transform: rotate(180deg);
  z-index: 0;
}

@media (min-width: 1024px) {
  .custom-accordion {
    max-width: 750px;
    margin-inline: auto;
  }
}
@media (max-width: 767.98px) {
  .section-header h2 {
    font-size: clamp(1.25rem, 0.7vw + 1rem, 1.5rem) !important;
  }
  .custom-accordion .accordion-button {
    font-size: clamp(0.875rem, 0.3vw + 0.8rem, 1rem);
  }
}
.products-page-section {
  /* Declarations first (fixes Sass mixed-decls warning) */
  position: relative;
  background: url("../images/hero2.webp") no-repeat center center/cover;
  background-attachment: fixed;
  padding: 5rem 0 5rem; /* desktop default: top | sides | bottom */
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Baloo Tamma 2", system-ui;
  z-index: 1;
  /* Min-height only on larger screens */
  /* Responsive section padding & disable fixed bg on small devices */
}
@media (min-width: 768px) {
  .products-page-section {
    min-height: 100vh;
  }
}
@media (max-width: 767.98px) {
  .products-page-section {
    background-attachment: scroll;
    padding: 3rem 1rem 3rem;
  }
}
@media (max-width: 479.98px) {
  .products-page-section {
    padding: 2.5rem 0.75rem 2.5rem;
  }
}
.products-page-section h3 {
  font-size: 4rem;
}
.products-page-section p {
  text-align: justify;
  text-indent: 2rem;
}
.products-page-section .row {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.products-page-section .product-block {
  /* Desktop / default declarations first */
  background-color: rgba(221, 221, 221, 0.88);
  border-radius: 1rem;
  padding: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  /* Desktop: image column */
  /* Keep alternating layout on desktop */
  /* Mobile: force stacking (image on top, text below) */
  /* Subtle desktop zoom-on-hover (simple) */
}
.products-page-section .product-block:hover, .products-page-section .product-block:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.products-page-section .product-block ul {
  padding-left: 1rem;
  list-style: none;
}
.products-page-section .product-block ul li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 0.5rem;
}
.products-page-section .product-block ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #567d46;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  line-height: 1;
}
.products-page-section .product-block .product-image-wrap {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 320px;
}
.products-page-section .product-block .product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: block;
  transition: transform 350ms ease;
  will-change: transform;
}
.products-page-section .product-block .product-content {
  flex: 1 1 50%;
  max-width: 50%;
  color: #000000;
  text-align: left;
}
.products-page-section .product-block .product-content .product-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #d64941;
  font-size: clamp(1.125rem, 1.125rem + (1.5rem - 1.125rem) * (100vw - 320px) / (1440 - 320), 1.5rem);
}
.products-page-section .product-block .product-content .product-description {
  margin-bottom: 1.25rem;
  color: #000000;
  font-size: clamp(0.95rem, 0.95rem + (1.0625rem - 0.95rem) * (100vw - 320px) / (1440 - 320), 1.0625rem);
}
.products-page-section .product-block .product-content .btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: none;
  -webkit-border-radius: 2rem;
  -moz-border-radius: 2rem;
  border-radius: 2rem;
  background-color: #d64941;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  -moz-transition: background 0.3s ease, color 0.3s ease;
  -o-transition: background 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease;
  background-color: #d64941;
  color: #ffffff;
}
.products-page-section .product-block .product-content .btn:hover {
  background-color: #ffffff;
  color: #d64941;
}
.products-page-section .product-block .product-content .btn:hover {
  background-color: #ffffff;
  color: #d64941;
}
.products-page-section .product-block.reverse {
  flex-direction: row-reverse;
}
@media (max-width: 767.98px) {
  .products-page-section .product-block {
    flex-direction: column !important;
    text-align: center;
  }
  .products-page-section .product-block .product-image-wrap {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    height: 240px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .products-page-section .product-block .product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0.5rem;
  }
  .products-page-section .product-block .product-content {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .products-page-section .product-block .product-image-wrap img {
    transition: transform 350ms ease;
    will-change: transform;
  }
  .products-page-section .product-block:hover .product-image-wrap img,
  .products-page-section .product-block .product-image-wrap:focus-within img {
    transform: scale(1.06);
  }
}
@media (min-width: 768px) and (prefers-reduced-motion: reduce) {
  .products-page-section .product-block .product-image-wrap img {
    transition: none;
    transform: none;
  }
}
.products-page-section .product-block + .product-block {
  margin-top: 1.75rem;
}

.about-products-section {
  position: relative;
  background-image: linear-gradient(to bottom, #f9f9f6 0%, #f9f9f6 45%, #f9f9f6 55%, #f9f9f6 100%);
  box-shadow: inset 0 20px 40px rgba(0, 0, 0, 0.1), inset 0 -20px 40px rgba(0, 0, 0, 0.1);
  background-attachment: fixed;
  color: #000000;
  padding: 20rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  z-index: 1;
}
.about-products-section .container {
  position: relative;
  z-index: 2;
}
.about-products-section .about-us,
.about-products-section .product-intro {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  flex-direction: row;
  width: 100%;
}
.about-products-section .about-us .text-content,
.about-products-section .product-intro .text-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-products-section .about-us .text-content h2.section-heading,
.about-products-section .product-intro .text-content h2.section-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 1.5vw + 1.25rem, 2.5rem);
  margin-bottom: 1rem;
  color: #a07438;
}
.about-products-section .about-us .text-content p,
.about-products-section .product-intro .text-content p {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.125rem);
  color: #000000;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.about-products-section .about-us .text-content .about-text,
.about-products-section .product-intro .text-content .about-text {
  text-align: justify;
  text-indent: 2rem;
}
.about-products-section .about-us .text-content .product-text,
.about-products-section .product-intro .text-content .product-text {
  text-align: justify;
  text-indent: 2rem;
}
.about-products-section .about-us .text-content .logo-wrapper,
.about-products-section .product-intro .text-content .logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
.about-products-section .about-us .text-content .logo-wrapper img,
.about-products-section .product-intro .text-content .logo-wrapper img {
  width: 150px;
  height: auto;
  animation: pulse 2s infinite ease-in-out;
}
.about-products-section .about-us .text-content .btn-read-more,
.about-products-section .product-intro .text-content .btn-read-more {
  margin-top: auto;
}
.about-products-section .about-us .text-content .abt-product-list ul,
.about-products-section .product-intro .text-content .abt-product-list ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}
.about-products-section .about-us .text-content .abt-product-list li,
.about-products-section .product-intro .text-content .abt-product-list li {
  color: #d64941;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.125rem);
  margin-bottom: 0.3rem;
}
.about-products-section .about-us .text-content .abt-product-list li a,
.about-products-section .product-intro .text-content .abt-product-list li a {
  color: #567d46;
  text-decoration: none;
  font-weight: bolder;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}
.about-products-section .about-us .text-content .abt-product-list li a:hover, .about-products-section .about-us .text-content .abt-product-list li a:focus,
.about-products-section .product-intro .text-content .abt-product-list li a:hover,
.about-products-section .product-intro .text-content .abt-product-list li a:focus {
  text-decoration: underline;
  color: #a07438;
  transform: scale(1.08);
}
.about-products-section .about-us .img-wrapper,
.about-products-section .product-intro .img-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  border-radius: 0.5rem;
  transition: all 0.3s ease-in-out;
}
.about-products-section .about-us .img-wrapper:hover,
.about-products-section .product-intro .img-wrapper:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transform: scale(1.01);
}
.about-products-section .about-us .img-wrapper img,
.about-products-section .product-intro .img-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0.5rem;
}
.about-products-section .btn-read-more {
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.875rem, 0.3vw + 0.8rem, 1rem);
  text-align: center;
  background-color: #ffffff;
  color: #d64941;
  border-radius: 2rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease-in-out;
  display: inline-block;
}
.about-products-section .btn-read-more:hover, .about-products-section .btn-read-more:focus {
  background: linear-gradient(to bottom, #f9f9f6, rgb(238.8, 238.8, 230.7));
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: #d64941;
  text-decoration: none;
  animation: pulse 2s infinite ease-in-out;
}
.about-products-section .shape-divider {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}
.about-products-section .shape-divider svg {
  display: block;
  width: 100%;
  height: auto;
}
.about-products-section .shape-divider.shape-top {
  top: 0;
}
.about-products-section .shape-divider.shape-bottom {
  bottom: 0;
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .about-products-section .about-us,
  .about-products-section .product-intro {
    flex-direction: column;
  }
  .about-products-section .about-us .img-wrapper,
  .about-products-section .product-intro .img-wrapper {
    order: 2;
    margin-top: 2rem;
  }
  .about-products-section .about-us .text-content,
  .about-products-section .product-intro .text-content {
    order: 1;
    padding: 1rem;
  }
}

.about-hero-section {
  position: relative;
  min-height: 60vh;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
}
.about-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/hero3.webp") no-repeat center center/cover;
  background-attachment: fixed;
  z-index: -1;
  opacity: 0.9;
}
.about-hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
.about-hero-section h1 {
  font-size: clamp(2rem, 2rem + (3rem - 2rem) * (100vw - 320px) / (1440 - 320), 3rem);
}
.about-hero-section p {
  font-size: clamp(1rem, 1rem + (1.25rem - 1rem) * (100vw - 320px) / (1440 - 320), 1.25rem);
  max-width: 720px;
  margin: 0 auto;
}

.founder-story-section {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 5rem 0;
}
.founder-story-section h2 {
  color: #d64941;
  font-size: 3rem;
  font-weight: bolder;
  text-align: center;
}
.founder-story-section p {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #a07438;
  text-align: justify;
  text-indent: 2rem;
}
.founder-story-section .img-fluid {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
}
.founder-story-section .abt-shape-divider {
  position: absolute;
  width: 100%;
  left: 0;
  z-index: 0;
  pointer-events: none;
}
.founder-story-section .abt-shape-divider svg {
  display: block;
  width: 100%;
  height: auto;
}
.founder-story-section .abt-shape-divider.abt-shape-top {
  top: 0;
}

.brand-mission-section {
  position: relative;
  background-color: #f9f9f6;
  overflow: hidden;
}
.brand-mission-section h2 {
  color: #c1140e;
  font-size: 3rem;
  font-weight: bolder;
  text-align: center;
}
.brand-mission-section p {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #a07438;
  text-align: justify;
  text-indent: 2rem;
}
.brand-mission-section blockquote {
  background-color: rgba(86, 125, 70, 0.3);
  padding: 1.5rem;
  border-left: 4px solid #d64941;
  font-style: italic;
  border-radius: 0.5rem;
}

.why-milsera-section {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: #c1140e;
  text-align: center;
}
.why-milsera-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 auto 3rem auto;
  color: #c1140e;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
  background-color: rgba(255, 255, 255, 0.5);
  padding: 0.6rem 1.25rem;
  border-radius: 1rem;
  text-align: center !important;
  line-height: 1.2;
  vertical-align: middle !important;
  width: 50%;
}
.why-milsera-section h5 {
  font-size: 1.5rem;
}
.why-milsera-section .bg-opacity-75 {
  background-color: rgba(255, 255, 255, 0.75);
}
.why-milsera-section .shadow {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.why-milsera-section img {
  filter: brightness(1.1);
}

.why-icon {
  display: block;
  font-size: 48px;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
  animation: iconPulse 2s infinite ease-in-out;
}
.why-icon:hover {
  color: #d36b35;
  text-shadow: 0 0 8px rgba(211, 107, 53, 0.8);
}

.why-card {
  background-color: rgba(86, 125, 70, 0.9);
}

.about-page-products {
  background: linear-gradient(to bottom, #f9f9f6 0%, #faf8f8 45%, #f2f2ef 55%, #f9f9f6 100%);
  padding: 5rem 0;
}
.about-page-products h2 {
  color: #a07438;
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  font-weight: bolder;
  text-align: center;
  margin-bottom: 3rem;
}
.about-page-products h4 {
  color: #c1140e;
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: bolder;
  text-decoration: underline;
  margin-bottom: 1rem;
}
.about-page-products p,
.about-page-products ul li {
  color: #a07438;
  font-size: 1.25rem;
  font-size: clamp(1rem, 1rem + (1rem - 1rem) * (100vw - 320px) / (1440 - 320), 1rem);
}
.about-page-products img {
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0 auto;
  border-radius: 0.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}
.about-page-products .product-img {
  height: 200px;
  width: 600px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0 auto;
  border-radius: 0.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}
.about-page-products ul {
  padding-left: 1rem;
  list-style: none;
}
.about-page-products ul li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 0.5rem;
}
.about-page-products ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #567d46;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  line-height: 1;
}
.about-page-products .fw-semibold {
  color: #d64941;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  text-align: right;
  font-weight: 600;
  padding-right: 5rem;
}
@media (max-width: 767.98px) {
  .about-page-products .row {
    margin-bottom: 3rem;
  }
  .about-page-products .col-md-6 {
    margin-bottom: 2rem;
  }
  .about-page-products .row {
    margin-bottom: 3rem;
  }
  .about-page-products .fw-semibold {
    color: #d64941;
    font-size: 2rem;
    font-weight: 600;
    padding-right: 2.5rem;
  }
  .about-page-products h4 {
    font-size: 3rem;
  }
}

@keyframes iconPulse {
  0% {
    text-shadow: 0 0 6px rgba(255, 215, 0, 0.6);
  }
  50% {
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.9);
  }
  100% {
    text-shadow: 0 0 6px rgba(255, 215, 0, 0.6);
  }
}
.products-section {
  position: relative;
  background: url("../images/hero2.webp") no-repeat center center/cover;
  background-attachment: fixed;
  color: #ffffff;
  padding-top: 5rem;
  padding-bottom: 5rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  z-index: 1;
  font-family: "Cormorant Garamond", serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.products-section .row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.products-section h2 {
  font-weight: 700;
  margin: 0 auto 3rem auto;
  color: #c1140e;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 0.6rem 1.25rem;
  border-radius: 1rem;
  line-height: 1.2;
}
.products-section .product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 1rem;
  background-color: #f9f9f6;
  transition: all 0.3s ease-in-out;
}
.products-section .product-card:hover {
  box-shadow: 0 0 28px rgba(193, 20, 14, 0.4);
}
.products-section .product-card img {
  width: auto;
  height: 35vh;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}
.products-section .product-card:hover img {
  transform: scale(1.08);
}
.products-section .product-card .card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
}
.products-section .product-card .product-title {
  font-size: 2.5rem !important;
  font-weight: 900 !important;
  color: #567d46 !important;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}
.products-section .product-card .product-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background-color: #d36b35;
  transform: scaleX(1);
  transition: transform 0.3s ease-in-out;
}
.products-section .product-card:hover .product-title::after {
  transform: scaleX(0);
  transform-origin: center;
}
.products-section .product-card .product-description {
  font-size: 1.25rem !important;
  color: #000000 !important;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.products-section .product-card .product-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.products-section .product-card .product-footer .btn-split {
  display: inline-flex;
  align-items: center;
  height: 2rem;
  min-width: 45%;
  overflow: visible;
  border: none;
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 50%, #e0e0e0 100%);
  border-radius: 50px;
  overflow: visible;
  cursor: pointer;
  transform: translateZ(0);
  transition: background-color 0.2s, transform 0.2s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}
.products-section .product-card .product-footer .btn-split:hover {
  background: linear-gradient(180deg, #c1140e, #d36b35);
  transform: scale(1.05);
  text-decoration: none;
}
.products-section .product-card .product-footer .btn-split:hover .btn-icon {
  background: #000;
  box-shadow: 0 0 0 4px rgba(193, 20, 14, 0.8), 0 0 15px rgba(0, 0, 0, 0.9);
}
.products-section .product-card .product-footer .btn-split:focus, .products-section .product-card .product-footer .btn-split:visited {
  text-decoration: none;
}
.products-section .product-card .product-footer .btn-split .btn-icon {
  position: relative;
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  min-height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.25rem;
  vertical-align: middle;
  line-height: 1;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.8), 0 0 15px rgba(0, 0, 0, 0.9);
}
.products-section .product-card .product-footer .btn-split .btn-icon i {
  font-size: 1.25em;
  color: #fff;
  transition: color 0.2s;
}
.products-section .product-card .product-footer .btn-split .btn-label {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.8rem !important;
  font-size: 0.9rem !important;
  font-weight: 600;
  color: #000;
  line-height: 1 !important;
}
.products-section .product-card .product-footer .btn-split:hover {
  transform: scale(1.05);
}
.products-section .product-card .product-footer .btn-split:hover .btn-icon i {
  color: #000;
}
.products-section .product-card .product-footer .btn-split:active, .products-section .product-card .product-footer .btn-split:focus {
  outline: none;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2), 0 2px 4px rgba(0, 0, 0, 0.1);
}
.products-section .product-card .product-footer .btn-split:active .btn-icon, .products-section .product-card .product-footer .btn-split:focus .btn-icon {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.products-section .product-card .product-footer .read-more .btn-icon {
  background: #a07438;
}
.products-section .product-card .product-footer .read-more .btn-label {
  background: transparent;
}
.products-section .product-card .product-footer .read-more:hover .btn-icon {
  background: rgb(229.2, 229.2, 216.3);
}
.products-section .product-card .product-footer .read-more:hover .btn-label {
  background: transparent;
}
.products-section .product-card .product-footer .buy-now .btn-icon {
  background: #d64941;
}
.products-section .product-card .product-footer .buy-now .btn-label {
  background: transparent;
}
.products-section .product-card .product-footer .buy-now:hover .btn-icon {
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(193, 20, 14, 0.8), 0 0 15px rgba(0, 0, 0, 0.9);
}
.products-section .product-card .product-footer .buy-now:hover .btn-label {
  background: transparent;
}
.products-section .product-card:hover {
  animation: wiggle 2s ease-in-out;
}
@media (max-width: 767.98px) {
  .products-section h2 {
    font-size: 2rem;
  }
  .products-section .product-card {
    box-shadow: 0 0 8px 2px rgba(193, 20, 14, 0.4);
  }
  .products-section .product-card .product-title {
    font-size: 1.125rem;
  }
  .products-section .product-card .product-footer {
    flex-direction: row;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .products-section .product-card .product-footer .btn-split {
    width: 45%;
    height: 2.5rem;
    align-items: center;
  }
  .products-section .product-card .product-footer .btn-split .btn-icon {
    width: 2rem !important;
    height: 2rem !important;
  }
  .products-section .product-card .product-footer .btn-split .btn-label {
    padding: 0.4rem 0.8rem !important;
    font-size: 0.9rem !important;
    line-height: 1 !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@keyframes wiggle {
  0% {
    transform: rotate(0deg);
  }
  15% {
    transform: rotate(-3deg);
  }
  30% {
    transform: rotate(3deg);
  }
  45% {
    transform: rotate(-2deg);
  }
  60% {
    transform: rotate(2deg);
  }
  75% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.testcon-testimonial-section {
  background-image: url("../images/3.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 4rem 2rem;
  position: relative;
  z-index: 1;
}
.testcon-testimonial-section .testcon-section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 1.5vw + 1.25rem, 2.5rem);
  color: #c1140e;
  text-align: center;
  margin-bottom: 2rem;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  display: inline-block;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.testcon-testimonial-section .testcon-testimonial-card {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testcon-testimonial-section .testcon-testimonial-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: scale(1.01);
}
.testcon-testimonial-section .testcon-testimonial-card .testcon-testimonial-text {
  font-style: italic;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.125rem);
  font-weight: 600;
  color: #a07438;
  margin-bottom: 1rem;
  line-height: 1.5;
  text-indent: 1.5rem;
}
.testcon-testimonial-section .testcon-testimonial-card .testcon-testimonial-author {
  font-weight: 600;
  color: #567d46;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.875rem, 0.3vw + 0.8rem, 1rem);
}

.contact-section {
  position: relative;
  background: url("../images/hero4.webp") no-repeat center center/cover;
  background-attachment: fixed;
  min-height: 100vh;
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: flex;
  align-items: center;
}
.contact-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #c1140e;
}
.contact-section .lead {
  color: #567d46;
  font-size: 1.15rem;
  font-weight: 500;
}
.contact-section .contact-form {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-section .contact-form .form-message,
.contact-section .contact-form button {
  grid-column: span 2;
}
.contact-section .contact-form label {
  font-weight: 600;
  color: #a07438;
}
.contact-section .contact-form .form-control {
  border-radius: 1rem;
  border: 1px solid #ccc;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}
.contact-section .contact-form .form-control:focus {
  border-color: #c1140e;
  box-shadow: 0 0 0 0.1rem rgba(193, 20, 14, 0.25);
}
.contact-section .contact-form .btn {
  margin-top: 1rem;
  border-radius: 1rem;
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  width: fit-content;
}
.contact-section .contact-details {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
}
.contact-section .contact-details a {
  color: #c1140e;
  text-decoration: none;
}
.contact-section .contact-details a:hover {
  text-decoration: underline;
}
.contact-section .contact-details h3 {
  color: #567d46;
  font-weight: 600;
}
.contact-section .contact-details h5,
.contact-section .contact-details h6 {
  color: #567d46;
  font-weight: 600;
}
.contact-section .contact-details .social-icons a {
  color: #567d46;
  transition: color 0.3s ease;
}
.contact-section .contact-details .social-icons a:hover {
  color: #c1140e;
}
@media (max-width: 767.98px) {
  .contact-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .contact-section h2 {
    font-size: 2rem;
  }
  .contact-section .contact-form,
  .contact-section .contact-details {
    padding: 1.5rem;
    text-align: center;
  }
  .contact-section .contact-form {
    display: block;
  }
  .contact-section .contact-form .mb-3 {
    margin-bottom: 1rem;
  }
  .contact-section .contact-form button {
    width: 100%;
  }
  .contact-section .social-icons {
    justify-content: center;
  }
}

.footer-branded {
  background-color: #a07438;
  color: #ffffff !important;
  padding-top: 5rem;
  padding-bottom: 4rem;
}
.footer-branded .footer-inner {
  max-width: 960px;
  margin: 0 auto;
  gap: 2rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer-branded .footer-brand,
.footer-branded .footer-content {
  flex: 0 0 400px;
  max-width: 400px;
  text-align: center;
  color: #ffffff;
}
.footer-branded .footer-brand p,
.footer-branded .footer-brand a,
.footer-branded .footer-brand i,
.footer-branded .footer-brand small,
.footer-branded .footer-brand strong,
.footer-branded .footer-content p,
.footer-branded .footer-content a,
.footer-branded .footer-content i,
.footer-branded .footer-content small,
.footer-branded .footer-content strong {
  color: #ffffff !important;
}
.footer-branded .footer-brand img {
  height: 60px;
  margin-bottom: 0.75rem;
}
.footer-branded .footer-brand strong {
  color: #d64941;
}
.footer-branded .footer-brand p {
  margin-top: 0.5rem;
}
.footer-branded .footer-content .footer-icons {
  margin: 1.25rem 0;
}
.footer-branded .footer-content .footer-icons a {
  display: inline-block;
  margin: 0 0.5rem;
  font-size: 1.3rem;
  color: #ffffff !important;
  transition: color 0.3s ease, transform 0.3s ease;
}
.footer-branded .footer-content .footer-icons a:hover {
  color: #c1140e !important;
  transform: scale(1.15);
}
.footer-branded .footer-content .footer-link {
  color: #ffffff !important;
  text-decoration: none;
  margin: 0 0.3rem;
  transition: color 0.3s ease;
}
.footer-branded .footer-content .footer-link:hover {
  color: #d64941 !important;
}
@media (max-width: 767.98px) {
  .footer-branded .footer-inner {
    flex-direction: column;
    align-items: center;
  }
  .footer-branded .footer-brand,
  .footer-branded .footer-content {
    max-width: 100%;
    flex: 0 0 100%;
    text-align: center;
  }
  .footer-branded .footer-icons a {
    font-size: 1.2rem;
    margin: 0 0.4rem;
  }
}

.whatsapp-cta {
  position: fixed;
  right: 2rem;
  bottom: 10rem;
  z-index: 9999;
  background-color: #25d366;
  border: none;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}
.whatsapp-cta img {
  width: 65px;
  height: 65px;
}
.whatsapp-cta .tooltip-text {
  position: absolute;
  bottom: 110%;
  right: 50%;
  transform: translateX(50%);
  background-color: #c1140e;
  color: #ffffff;
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 1rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.whatsapp-cta:hover {
  transform: scale(1.1);
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.3);
}
.whatsapp-cta:hover .tooltip-text {
  opacity: 1;
}
@media (max-width: 767.98px) {
  .whatsapp-cta {
    right: 1rem;
    bottom: 5rem;
    width: 70px;
    height: 70px;
  }
  .whatsapp-cta img {
    width: 72px;
    height: 72px;
  }
  .whatsapp-cta .tooltip-text {
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
html,
body {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

/*# sourceMappingURL=styles.css.map */
