* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  line-height: 24px;
  font-size: 14px;
}

/* General Styles */
#navbarSupportedContent {
  z-index: 6000;
  background: white;
}

.navbar-nav {
  gap: 10px;
}

.navbar-nav .nav-link {
  color: #1c1c1c;
  font: 500 1rem / 1.625em "Outfit", sans-serif;
}

.navbar-nav li.auth-nav-item a {
  background-color: #328016;
  border-radius: 5px;
  color: white !important;
}

.descriptor-head {
  font-size: 1.4rem;
}

@media (max-width: 1500px) {
  .descriptor-head {
    font-size: 1.2rem;
  }
}
@media (max-width: 1000px) {
  .descriptor-head {
    font-size: 1rem;
  }
}

li.nav-item {
  padding: 5px 10px;
  position: relative;
}

.navbar-nav .nav-link.active {
  color: #85bb43 !important;
  font-weight: 600;
}

.navbar-nav .nav-link {
  white-space: nowrap;
}

/* Search Area Styling */
.search-area-item {
  width: 100%;
}

.search-area div.form-select {
  color: #7e7e7e;
  font-size: 14px;
  border-radius: 8px;
}

.search-area-item .categories-dropdown-menu {
  background: white;
  z-index: 2000;
  left: -100%;
  top: 130%;
  width: 900px;
  max-width: 95vw;
  border: 1px solid #86bc44;
}

.search-area-item .dropdown-item {
  font-size: 12px;
  text-wrap: wrap;
  background-color: #9ce93621;
  margin-bottom: 4px;
  border-radius: 8px;
}

.search-area-item .dropdown-item:hover {
  background-color: #a5ee46;
}

.categories-list-chevron {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #86bc44;
  top: 0;
  left: 40%;
  clip-path: polygon(50% 0%, 0 50%, 100% 50%);
  transform: translateY(-50%);
}

.search-box {
  display: flex;
  align-items: center;
  border: 1px solid #86bc44;
  border-radius: 8px;
  height: 3rem;
}

.search-box input {
  border: none;
  box-shadow: none;
  font-size: 14px;
}

.search-box input:focus {
  box-shadow: none;
}

.search-box input::placeholder {
  color: #7e7e7e;
}

.search-box button {
  background: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-left: 1px solid #e5e5e5;
}

.search-box button:hover {
  background-color: #f8f9fa;
}

/* Mobile Menu */
.navbar-toggler:focus {
  box-shadow: none;
}

.cart {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #005439;
  gap: 8px;
  background-color: #eee;
  border-radius: 1000px;
  z-index: 1000;
  margin-right: 1rem;
}

.cart-icon {
  position: relative;
  width: 30px;
  height: 30px;
  background-color: #005439;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-icon img {
  width: 15px;
  height: 15px;
  margin: 10px;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: red;
  color: white;
  font-size: 12px;
  font-weight: bold;
  border-radius: 50%;
  padding: 3px 5px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-text {
  font-size: 12px;
  font-weight: bold;
  color: #005439;
  padding-right: 8px;
}

/* Filter Styles */
.filter-container {
  position: relative;
}

.filter-box {
  margin-bottom: 20px;
}

.filter-box h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #444;
}

.filter-slide {
  max-height: 150px;
  overflow-y: auto;
}

.filter-slide label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #666;
  cursor: pointer;
}

.filter-slide input[type="checkbox"] {
  margin-right: 8px;
}

.search-input-container {
  position: relative;
  margin-bottom: 15px;
}

.search-input-container input {
  width: 100%;
  padding: 8px 40px 8px 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.search-input-container .s-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0 15px;
}

button.search {
  background-color: #85bb43;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 8px 15px;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
}

button.search:hover {
  background-color: #76a73b;
}

/* Hero Carousel Styles */
.hero-carousel-img {
  position: relative;
  width: 100%;
  margin: auto;
  overflow: hidden;
}

.hero-carousel-img img {
  width: 100%;
  min-height: 300px;
  display: block;
}

.hero-carousel-box {
  position: absolute;
  top: 12%;
  left: 5%;
  background: rgb(0 0 0 / 12%);
  padding: 25px;
  border-radius: 40px;
  backdrop-filter: blur(8px);
  width: 35vw;
  min-width: 250px;
  color: white;
}

.hero-carousel-box h2 {
  font-size: 34px;
  font-weight: 400;
  margin: 0;
  line-height: 38px;
}

.hero-carousel-box button {
  background: white;
  color: black;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  margin: 15px 0 5px;
  text-transform: uppercase;
}

/* Custom Pagination (Outside Image) */
.custom-pagination {
  text-align: center;
  margin-top: 15px;
}

.custom-pagination button {
  width: 10px;
  height: 10px;
  margin: 5px;
  background: gray;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.custom-pagination button.active {
  background: black;
}

.feature-card-custom {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  background: white;
  width: 100%;
  max-width: 400px;
}

.feature-card-custom img {
  width: 65px;
  height: 65px;
  opacity: 0.6;
}

.card-title {
  font-size: 15px;
  font-weight: 600;
}

.card-text {
  font-size: 13px;
  color: gray;
  margin: 5px 0 0;
  line-height: 18px;
}

.product-name {
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  margin-bottom: 3px;
  line-height: 1.2;
  font-weight: 500;
}

.product-price {
  font-size: 19px;
  font-weight: 600;
  margin: 8px 0;
}

.buy-button {
  padding: 8px 12px;
  font-size: 12px;
  font-weight: bold;
  border: 1.5px solid #85b943;
  background: white;
  border-radius: 25px;
  width: 100%;
  letter-spacing: 2px;
  font-weight: 600;
}

.buy-button:hover {
  background: #85b943;
  color: white;
}

.product-image {
  background-color: #f4f4f4;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  overflow: hidden;
  margin-bottom: 12px;
}

.product-image img {
  height: 100%;
  object-fit: contain;
}

.product-name {
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  margin-bottom: 3px;
  line-height: 1.2;
  font-weight: 500;
}

.product-price {
  font-size: 17px;
  font-weight: 600;
  margin: 13px 0;
}

.buy-button {
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 600;
  border: 1.5px solid #85b943;
  background: white;
  border-radius: 25px;
  width: 100%;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  margin-top: auto;
}

.buy-button:hover {
  background: #85b943;
  color: white;
}

.clearfix {
  clear: both;
}

.btn-show-more {
  background-color: #f4f4f4;
  border: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-show-more:hover {
  background-color: #e0e0e0;
}

.card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
}

.blog-box .card-title {
  font-size: 18px;
  font-weight: 500;
}

.blog-box .card-text {
  color: #404040;
}

.date {
  font-size: 11px;
  font-weight: 500;
}

.faqs .accordion-item {
  border-left: none;
  border-right: none;
  border-radius: 0;
}

.faqs .accordion-body {
  padding: 1rem 1.25rem;
  font-weight: 500;
}

.faqs .accordion-button:not(.collapsed) {
  color: #000000;
  background-color: transparent;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.faqs .accordion-button {
  padding: 1.5rem 1.25rem;
  font-weight: 500;
}

.faqs .accordion-button::after {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-left: auto;
  content: "";
  background-image: url('data:image/svg + xml,%3csvgxmlns="http://www.w3.org/2000/svg"viewBox="0 0 16 16"fill="%23212529"%3e%3cpathfill-rule="evenodd"d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/%3e%3c/svg%3e');
  background-repeat: no-repeat;
  background-size: 0.8rem;
  transition: transform 0.2s ease-in-out;
}

.faq-link {
  color: #1a54d7;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.faq-link i {
  margin-left: 5px;
}

.password-input-container .form-control.is-invalid, 
.password-input-container .form-control.is-valid {
  background-image: none;
}

.form-check .input.checkbox.required label a {
  text-decoration: none;
  color: black;
}
.form-check .input.checkbox {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
}

/* Make the label text red when the checkbox is invalid */
input[type="checkbox"].is-invalid + label {
    color: red;
}

/* Make the anchor text inside the label red */
input[type="checkbox"].is-invalid + label a {
    color: red !important;
}

/* Media Queries */
@media (min-width: 1265px) {
  .categories-list-chevron {
    left: 50%;
  }
}
@media (min-width: 1700px) {
  .categories-list-chevron {
    left: 60%;
  }
}

@media (min-width: 768px) {
  .sidebar-wrapper {
    position: sticky !important;
    top: 20px;
    width: 100%;
    height: auto;
    padding: 20px;
    background-color: #fff;
    left: 0 !important;
  }

  .sidebar-content {
    height: auto;
    max-height: none;
    overflow-y: auto;
  }

  .sidebar-menu {
    padding: 0;
  }

  #show-sidebar,
  #close-sidebar {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .nav-container {
    align-items: stretch !important;
  }

  #navbarSupportedContent {
    position: relative;
    right: auto;
    width: 100%;
    z-index: 1000;
    background: white;
    padding: 15px;
    border-bottom: 2px solid #86bc44;
  }

  .navbar-nav {
    gap: 0;
  }

  .navbar-nav li.auth-nav-item a {
    padding: 5px 10px;
  }

  .navbar-nav .nav-item {
    padding: 0 10px;
    text-align: center;
  }

  .navbar-nav .nav-item {
    border-bottom: 1px solid #86bc44;
  }

  li .cart {
    margin-top: 1rem;
    margin-right: 0;
  }

  .search-area-item .categories-dropdown-menu {
    left: 0%;
    width: 800px;
    max-width: 95vw;
  }

  .categories-list-chevron {
    left: 10%;
  }

  .hero-carousel-box h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .hero-carousel-box button {
    padding: 6px 12px;
    font-size: 14px;
  }

  .feature-card-custom {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }

  .feature-card-custom img {
    margin-bottom: 10px;
  }
}

@media (max-width: 767.98px) {
  .search-area {
    margin-top: 0.5rem;
  }

  .menu-icon {
    display: none;
  }

  .search-area-item .categories-dropdown-menu {
    width: 100%;
  }

  #show-sidebar {
    position: fixed;
    left: 0;
    top: 31%;
    color: white !important;
    z-index: 999;
    border-radius: 0 4px 4px 0;
    transition-delay: 0.3s;
    background-color: #85bb43;
    border-color: #85bb43;
  }

  .page-wrapper.toggled #show-sidebar {
    left: -40px;
  }

  .sidebar-wrapper {
    width: 280px;
    height: 100%;
    position: fixed;
    top: 0;
    left: -300px;
    z-index: 1000;
    background-color: white;
    box-shadow: 3px 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .sidebar-wrapper.active {
    left: 0;
  }

  /* Sidebar Brand/Header */
  .sidebar-brand {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
  }

  .sidebar-brand a {
    font-weight: bold;
    color: #333;
    text-decoration: none;
  }

  #close-sidebar {
    cursor: pointer;
    font-size: 22px;
  }

  /* Sidebar Content */
  .sidebar-content {
    height: 100%;
    overflow-y: auto;
  }

  .sidebar-menu {
    padding: 0 20px 20px;
  }

  .hero-carousel-box {
    position: absolute;
    top: 17%;
    left: 0;
    background: rgb(0 0 0 / 12%);
    padding: 5px;
    border-radius: 10px;
    backdrop-filter: blur(8px);
    width: 35vw;
    min-width: 300px;
    color: white;
    right: 0;
    margin: auto;
  }

  .feature-card-custom {
    flex-direction: row;
  }

  .features-cards .col-md-4:has(.feature-card-custom) {
    justify-content: center !important;
  }

  .card img {
    max-width: 100% !important;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .hero-carousel-img img {
    object-fit: cover;
    object-position: left;
  }

  .hero-carousel-box {
    text-align: center;
    width: 80vw !important;
    height: 25vh;
  }

  .hero-carousel-box button {
    font-size: 12px;
  }

  button.s-btn {
    background: #000;
    color: #fff !important;
    border: none;
    width: 30px;
    height: 28px;
  }

  .latest {
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .navbar-brand img {
    max-height: 50px;
  }

  .search-box button {
    padding: 6px 10px;
  }

  .feature-card-custom {
    flex-direction: column;
  }

  .faqs .accordion-button {
    padding: 10px;
  }

  .faqs .accordion-body {
    font-weight: 400;
    padding: 10px;
  }

  .faqs .accordion-body p,
  .faqs .accordion-body a {
    font-size: 12px !important;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
.product-image {
    height: 150px;
  }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 5px;
  height: 7px;
}

::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}

::-webkit-scrollbar-thumb {
  background: #525965;
  border: 0px none #ffffff;
  border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover {
  background: #525965;
}

::-webkit-scrollbar-thumb:active {
  background: #525965;
}

::-webkit-scrollbar-track {
  background: transparent;
  border: 0px none #ffffff;
  border-radius: 50px;
}

::-webkit-scrollbar-track:hover {
  background: transparent;
}

::-webkit-scrollbar-track:active {
  background: transparent;
}

::-webkit-scrollbar-corner {
  background: transparent;
}

/* DONE TILL HERE */

a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Sticky navigation styles */
header {
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767.98px) {
  body:has(#navbarSupportedContent.show) {
    overflow: hidden !important;
  }
}
.sticky-header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 9000;
}

.search-item-wrapper {
  padding-left: 10px !important;
  padding-right: 10px !important;
  max-height: 36px;
}

.sticky-header .search-item-wrapper {
  padding-left: 0 !important;
}

.search-item-wrapper--name {
  padding-right: 5px !important;
}
.search-item-wrapper--store {
  padding-left: 5px !important;
}

/* Styles for desktop sticky mode */

.sticky-header .nav-container {
  padding: 0rem !important;
}

@media (min-width: 991.98px) {
  .sticky-header .descriptor-head {
    font-size: 1.4rem !important;
  }
}

@media (max-width: 991.98px) {
  .sticky-header nav {
    width: 100% !important;
  }
}

.sticky-header .search-area {
  width: 100%;
  justify-content: space-between;
  margin-left: 5px !important;
}

.sticky-header .navbar-brand img {
  max-height: 45px !important;
}

.sticky-header .search-area > div {
  margin-bottom: 0 !important;
}

.sticky-header .logo-section {
  padding-top: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile sticky styles */
@media (max-width: 991.98px) {
  .sticky-header .nav-container {
    flex-direction: row !important;
    justify-content: flex-start !important;
  }

  .sticky-header .descriptor-head {
    display: none;
  }

  .sticky-header .search-area > div:first-child {
    width: 100%;
    margin-bottom: 10px !important;
  }

  .sticky-header .search-area > div:not(:first-child) {
    width: 50%;
    padding: 0 5px;
  }
}

/* Mobile layout adjustment for non-sticky state */
@media (max-width: 991.98px) {
  .mobile-search-layout .search-area > div:first-child {
    width: calc(100% - 5px);
    margin-bottom: 10px !important;
  }

  .mobile-search-layout .search-area > div:not(:first-child) {
    width: 50%;
    padding: 0 5px;
  }
}

.consent-cookie-cover {
    z-index: 99999999;
    background-color: transparent;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex
;
    align-items: flex-end;
}
.consent-cookie-cover .consent-cookie {
    background-color: #d2ebb5;
    padding: 1.4rem 1rem;
    width: 100%;
}
.consent-cookie-cover .consent-cookie__content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.consent-cookie-cover .sf-button.color-outlined {
    border: 2px solid #85bc44;
    color: #3e3e3e;
    height: 48px;
    min-width: 127px;
    border-radius: 50px;
    background-color: #fff;
    font-weight: 500;
    font-size: 18px;
    transition: .3s;
}
@media (min-width: 2000px) {
  .categories-list-chevron {
    left: 80%;
  }
}
@media (min-width: 2200px) {
  .categories-list-chevron {
    left: 90%;
  }
}

/* footer begins here */
footer{
  z-index: 1001;
  position: relative;
}

.row-gap-3 {
  row-gap: 10px;
}


.footer-section {
  padding-top: 40px;
  background: linear-gradient(273.89deg, #f2f2f7 0.73%, #ffffff 99.6%);
}

.bottom-footer-section {
  padding-bottom: 40px;
  background: linear-gradient(273.89deg, #f2f2f7 0.73%, #ffffff 99.6%);
}

.logo-section {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.logo-2 {
  max-width: 244px !important;
}

.email-input-group {
  display: flex;
  width: 100%;
  max-width: 320px;
}

.logo-section p {
  font-size: 12px;
  color: #212529;
}

.logo-section h5 {
  font-size: 16px;
  font-weight: 700;
  color: #212529;
}

.email-input {
  border: 1px solid #86bc44;
  border-radius: 10px 0 0 10px;
  padding: 10px 18px;
  font-size: 15px;
  width: 100%;
  background: #d9d9d900;
  outline: none;
  transition: border-color 0.18s;
  color: #333;
}

.email-input:focus {
  border-color: #63b83a;
}

.email-submit-btn {
  border: 1px solid #86bc44;
  border-left: none;
  background: none;
  border-radius: 0 10px 10px 0;
  width: 48px;
  min-width: 48px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  font-size: 21px;
  box-sizing: border-box;
  margin-left: -1px;
  transition: all 0.3s;
}

.email-submit-btn::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url('data:image/svg+xml;utf8,<svg width="11" height="8" viewBox="0 0 11 8" xmlns="http://www.w3.org/2000/svg"><path d="M10.3536 4.35355C10.5488 4.15829 10.5488 3.84171 10.3536 3.64645L7.17157 0.464467C6.97631 0.269205 6.65973 0.269204 6.46447 0.464467C6.2692 0.659729 6.2692 0.976311 6.46447 1.17157L9.29289 4L6.46447 6.82843C6.2692 7.02369 6.2692 7.34027 6.46447 7.53553C6.65973 7.7308 6.97631 7.7308 7.17157 7.53553L10.3536 4.35355ZM0 4L0 4.5L10 4.5L10 4L10 3.5L0 3.5L0 4Z" fill="%2386BC44"/></svg>')
    no-repeat center;
  padding-bottom: 1px;
}

.email-submit-btn:hover{
  background-color: #e4f2d3;
}

.footer-links h6 {
  font-size: 14px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: #212529;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.footer-links a:hover {
  color: #22c55e;
}

.contact-info {
  font-size: 14px;
  color: #212529;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 5px;
}

.contact-info .location {
  display: flex;
  gap: 5px;
}

.bg-gradient-custom {
  background: linear-gradient(90deg, #f2f2f7 59.13%, #ffffff 100%);
}

.contact-info .email {
  display: flex;
  gap: 5px;
  overflow: visible;
}

.contact-info .location svg,
.contact-info .email svg {
  width: 20px;
  height: 20px;
  color: red;
  padding-top: 5px;
}

.recaptcha-container {
  display: flex;
  align-items: center;
  position: relative;
  border: 1px solid #d1d1d1cc;
  background-color: #f5f5f5;
  border-radius: 5px;

  padding: 10px 22px 10px 14px;
  max-width: 237px;
  width: 100%;
  box-sizing: border-box;
}

.recaptcha-input {
  width: 21px;
  height: 21px;
  accent-color: #86bc44;
  margin-right: 12px;
  cursor: pointer;
}

.recaptcha-label {
  font-size: 15px;
  color: #374151;
  cursor: pointer;
  margin-right: auto;
  font-weight: 500;
}

.recaptcha-logo {
  position: absolute;
  right: 17px;
  bottom: 4px;
  font-size: 12px;
  font-weight: 500;
  color: #86bc44;

  padding: 0 3px;

  letter-spacing: 0.04em;
}

.footer-bottom-section h6 {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 12px;
}

.payment-logos {
  display: flex;
  gap: 8px;
}

.payment-logo {
  height: 24px;
  width: auto;
  border-radius: 4px;
}

.partner-img {
  height: 32px;
  width: auto;
}

.trust-img {
  height: 40px;
  width: auto;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.social-icon:hover {
  transform: translateY(-2px);
}

.social-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer {
  font-weight: 600;
}

@media (max-width: 1050px) {
  .bottom-footer {
    padding-top: 10px;
  }
}

@media (max-width: 968px) {
  .newsletter-sections {
    display: flex;
    gap: 46px;
  }

  .logo-2 {
    max-width: 280px !important;
  }

  .email-input-group {
    display: flex;
    width: 100%;
    max-width: 333px;
  }
}

@media (max-width: 468px) {
  .footer-section {
    padding: 15px 0;
    font-size: 12px;
  }

  .sections {
    padding-bottom: 20px;
  }

  .logo-tagline {
    margin-left: 0;
    margin-top: 5px;
  }
  h6 {
    font-size: 12px;
  }

  .footer-links {
    margin-bottom: 30px;
  }

  .email {
    font-size: 12px;
    max-width: 150px;
  }

  .footer-links h6 {
    margin-bottom: 15px;
  }

  .trust-badge {
    margin-bottom: 10px;
  }

  .location {
    font-size: 12px;
  }

  .bottom-footer-section {
    padding-bottom: 5px;
  }

  .recaptcha-checkbox {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .footer-bottom-section {
    text-align: left;
    margin-bottom: 20px;
  }

  .social-icons {
    justify-content: start;
  }

  .logo {
    margin-bottom: 0;
  }

  h5 {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 2px;
    margin-top: 10px;
  }

  p {
    font-size: 12px;
  }

  .logo-section {
    margin-bottom: 5px;
  }

  .email-input-group {
    display: flex;
    width: 100%;
    max-width: 254px;
    max-height: 36px;
  }

  .email-input {
    font-size: 12px;
    padding: 5px 6px;
  }

  .footer-links li a {
    font-size: 12px;
  }

  .newsletter-sections {
    display: flex;
  }

  .email-submit-btn {
    border: 1px solid #86bc44;
    border-left: none;
    background: none;
    border-radius: 0 10px 10px 0;
    width: 48px;
    min-width: 35px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    font-size: 21px;
    box-sizing: border-box;
    margin-left: -1px;
  }

  .footer {
    font-size: 12px;
    font-weight: 700;
  }

  .logo-2 {
    max-width: 160px !important;
  }

  .logo-section p {
    font-size: 8px;
    color: #212529;
  }

  .newsletter-sections {
    display: flex;
    gap: 12px;
  }
}

@media (max-width: 320px) {
  p {
    font-size: 12px;
  }
}