@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

.container {
  width: 1200px;
  margin: 0 auto;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
}

body {
  font-size: 17px;
  line-height: 1.6;
  color: #3d3d3d;
  font-weight: 400;
   font-family: "Roboto", sans-serif;
}



h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  line-height: 1.4;
}

h1 {
  font-size: 50px;
  font-weight: 700;
}

h2 {
  font-size: 40px;
  font-weight: 600;
}

h3 {
  font-size: 35px;
}

h4 {
  font-size: 28px;
  font-weight: bold;
}

h5 {
  font-size: 26px;
  font-weight: 600;
}

h6 {
  font-size: 22px;
  font-weight: 600;
}

/* IMG-RESPONSIVE */
.img-responsive {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.pt-20 {
  padding-top: 20px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-40 {
  padding-top: 40px;
}


.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.m-0-auto {
  margin: 0 auto;
}

.m-30 {
  margin: 30px 0px 0px 0px !important;
}

.mt-10 {
  margin-top: 10px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mt-60 {
  margin-top: 60px;
}

/* COMMOM-CSS */
.flex {
  display: flex;
}

.f-d-c {
  flex-direction: column;
}

.f-d-r {
  flex-direction: row;
}

.space-between {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.flex-end {
  justify-content: flex-end;
}

.txt-center {
  text-align: center;
}

.grid {
  display: grid;
}

.grid-2 {
  grid-template-columns: 1fr 1fr;
}

.grid-06-2 {
  grid-template-columns: 0.6fr 2fr;
}

.grid-2-1 {
  grid-template-columns: 2fr 1fr;
}

.grid-17-1 {
  grid-template-columns: 1.7fr 1fr;
}

.grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.gap-15 {
  gap: 15px;
}

.gap-20 {
  gap: 20px;
}

.gap-25 {
  gap: 25px;
}

.gap-30 {
  gap: 30px;
}

.gap-90-30 {
  gap: 25px;
}

.gap-40 {
  gap: 40px;
}

.gap-70 {
  gap: 70px;
}

.width-50 {
  width: 50%;
}

.width-100,
.fill-form {
  width: 100% !important;
}

.w-20 {
  width: 20px !important;
}

.w-42 {
  width: 42px !important;
}

.w-55 {
  width: 55px !important;
}

.w-60 {
  width: 60px !important;
}

.blue-bg {
  background: #f0f5fe;
}

.text-color {
  color: #3d3d3d !important;
}

.primary-color {
  /*color: #4777c9 !important;*/
  color: #00bf63 !important;
}

/* Float */
.hvr-float {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}

.hvr-float:hover,
.hvr-float:focus,
.hvr-float:active {
  transform: translateY(-8px);
}

/* image-hover */
.image-effect {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  cursor: pointer;
}

.image-effect img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease-in-out;
}

.image-effect:hover img {
  transform: scale(1.04);
}

/* HOVER-EFFECT */
.hvr-link {
  position: relative;
}

.hvr-link::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  /*background: #4777c9;*/
  background:#00bf63;
  transition: all 0.5s ease-in-out;
}

.hvr-link:hover::before {
  right: auto;
  left: 0;
  width: 100%;
  transition: all 0.5s ease-in-out;
}

.white-hvr-link {
  position: relative;
}

.white-hvr-link::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: all 0.5s ease-in-out;
}

.white-hvr-link:hover::before {
  right: auto;
  left: 0;
  width: 100%;
  transition: all 0.5s ease-in-out;
}

button {
  border: none;
  font-family: "Poppins", sans-serif;
}

input,
textarea {
  font-family: "Poppins", sans-serif;
}

.underline {
  text-decoration: underline;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 6px;
  font-weight: normal;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
  width: fit-content;
  
  transition: all 0.5s ease-in-out;
}

@media (max-width: 768px) {
  .btn {
    padding: 8px 12px;
    /* Reduced horizontal padding */
    font-size: 12px;
    /* Slightly smaller font */
    height: 38px;
    white-space: nowrap;
    /* Prevent text wrapping */
  }

  .btn-icon {
    width: 12px;
  }
}

.primary-btn {
  color: #fff;
  /*box-shadow: 0px 12px 22px rgba(0, 122, 255, 0.22);*/
  box-shadow: 0px 12px 22px rgba(0, 191, 99, 0.22);

  /*border: 1px solid #4777c9;*/
    border: 1px solid #00bf63;
  transition: all 0.5s ease-in-out;
}

.primary-btn::after {
  content: "";
  position: absolute;
  height: 110%;
  width: 160%;
  /*border: 1px solid #4777c9;*/
  /*background: #4777c9;*/
  border: 1px solid #00bf63;
   background: #00bf63;
  transform: skewX(45deg);
  top: 0;
  left: -22%;
  z-index: -2;
  transition: all 0.5s ease-in-out;
}

.primary-btn:hover {
  /*border: 1px solid #4777c9;*/
    border: 1px solid #6a3c1a;
  /*color: #4777c9;*/
  color: #ffffff;
  /*background: none;*/
  background: #6a3c1a;
  transition: all 0.5s ease-in-out;
}

.primary-btn:hover:hover::after {
  left: 133%;
  transition: all 0.5s ease-in-out;
}

.black-btn {
  color: #fff;
  border: 1px solid #3d3d3d;
  box-shadow: 0px 8px 22px rgba(0, 0, 0, 0.18);
  transition: all 0.5s ease-in-out;
}

.black-btn::after {
  content: "";
  position: absolute;
  height: 110%;
  width: 160%;
  border: 1px solid #3d3d3d;
  background: #3d3d3d;
  transform: skewX(45deg);
  top: 0;
  left: -20%;
  z-index: -2;
  transition: all 0.5s ease-in-out;
}

.black-btn:hover {
  border: 1px solid #3d3d3d;
  color: #3d3d3d;
  background: none;
  transition: all 0.5s ease-in-out;
}

.black-btn:hover:hover::after {
  left: 130%;
  transition: all 0.5s ease-in-out;
}

.btn-icon {
  margin-left: 5px;
}

/* NAVBAR */
header {
  position: sticky;
  top: 0px;
  z-index: 9999;
}

.navbar {
  padding: 10px 0px;
  background: #fff;
  transition: all 0.5s ease-in-out;
  box-shadow: 0px 10px 35px 5px rgba(0, 0, 0, 0.1);
}

.active {
  /*color: #4777c9 !important;*/
  color: #00bf63 !important;
}

.nav-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo a img {
  width: 121px;
}

.nav-contentsdiff {
  padding: 25px 0;
}

.nav-contentsdiff a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 600;
  color: #3d3d3d;
  transition: all 0.5s ease-in-out;
}

.nav-contentsdiff a:hover {
  /*color: #4777c9;*/
  color: #00bf63;
  transition: all 0.5s ease-in-out;
}

.nav-contentsdiff .dropdownmenu {
  position: absolute;
  padding: 25px;
  margin-top: 60px;
  margin-left: -50px;
  text-align: left;
  min-width: -moz-fit-content;
  min-width: fit-content;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 4px 32px 0px rgba(0, 0, 0, 0.08);
  list-style: none;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

.nav-contentsdiff .dropdownmenu li {
  padding-bottom: 20px;
  transition: all 0.5s ease-in-out;
}

.nav-contentsdiff .dropdownmenu lili:nth-last-child(1) {
  padding-bottom: 0px;
}

.nav-contentsdiff .dropdownmenu li:hover a {
  color: #ea181e;
  transition: all 0.5s ease-in-out;
}

.nav-contentsdiff .dropdownmenu li a {
  font-size: 16px;
  font-weight: 500;
  color: #3d3d3d !important;
  border: none !important;
  transition: all 0.5s ease-in-out;
}

.nav-contentsdiff .dropdownmenu:hover .dropdownmenu {
  margin-top: 25px;
  opacity: 1;
  z-index: 99;
  visibility: visible;
  transition: all 0.5s ease-in-out;
}

.cart-icon {
  cursor: pointer;
  position: relative;
  font-size: 12px;
}

.cart-icon p {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -4px;
  right: -2px;
  /*background: #4777c9;*/
  background:#00bf63;
  border-radius: 50%;
  height: 21px;
  width: 21px;
  color: #fff;
}

.drop-down {
  margin-left: 7px;
}

.nav-contentsdiff .navbar.sticky .nav-contentsdiff:hover .dropdownmenu {
  margin-top: 20px;
}

.nav-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  border-radius: 50%;
  background: #f6f6f6;
  transition: all 0.5s ease-in-out;
}

.nav-btn a img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  transition: all 0.5s ease-in-out;
}

.nav-btn a:hover {
  /*background: #4777c9;*/
  background:#00bf63;
  transition: all 0.5s ease-in-out;
}

.nav-btn a:hover img {
  filter: brightness(10);
  transition: all 0.5s ease-in-out;
}

.user-dropdown-menu a {
  height: 30px;
}

.cart-dropdown {
  display: none;
  position: fixed;
  /* Change position to fixed to make it a sidebar */
  right: -425px;
  /* Initially place it outside the screen to the right */
  top: 0;
  z-index: 2;
  background: #fff;
  width: 425px;
  height: 100vh;
  /* Full height */
  box-shadow: 0px 2px 32px rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  transition: right 0.5s ease-in-out;
  /* Add transition for smooth sliding */
}

.cart-dropdown.open {
  right: 0;
  /* When opened, move the dropdown to the right */
  display: block;
}

.cross-icon {
  cursor: pointer;
}

.upper-cart {
  padding: 15px 35px;
  background: #4777c9;
  color: #fff;
}

.upper-cart h5 {
  font-weight: 400;
}

.all-carts {
  padding: 20px 35px 35px;
}

.notification-info {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px 0px;
  border-bottom: 1px solid #e7e7e7;
}

.notification-info img {
  width: 35px;
}

.notification-info:first-child {
  padding-top: 0;
}

.notification-info p:first-child {
  color: #6d6d6d;
}

.scrollbar {
  float: left;
  height: 345px;
  width: 110%;
  overflow-y: scroll;
}

#style-1::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}

#style-1::-webkit-scrollbar {
  width: 8px;
  background: transparent;
}

#style-1::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #4777c9;
}

.cart-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  border-radius: 50%;
  background: #f6f6f6;
  transition: all 0.5s ease-in-out;
}

.cart-icon img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  transition: all 0.5s ease-in-out;
}

.cart-icon:hover {
  /*background: #4777c9;*/
  background:#00bf63 ;
  transition: all 0.5s ease-in-out;
}

.cart-icon:hover img {
  filter: brightness(10);
  transition: all 0.5s ease-in-out;
}

/* mobile menu */
nav {
  height: 66px;
}

.mobile-view {
  display: none;
  background: #fff;
  transition: all 0.5s ease-in-out;
}

.slidein-menu {
  display: none;
}

/* Mobile Auth Buttons */
.mobile-auth-btn {
  color: #fff !important;
}

.mobile-auth-btn i {
  color: #fff !important;
}

.mobile-auth-btn:hover {
  background: #365b9e !important;
  /* Darker blue on hover */
  color: #fff !important;
  border: 1px solid #365b9e !important;
}

.black-btn.mobile-auth-btn:hover {
  background: #000 !important;
  /* Darker black on hover */
  color: #fff !important;
  border: 1px solid #000 !important;
}

footer {
  background: #1662b7;
}

footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr 1fr;
  gap: 60px;
}

footer .footer-grid .footer-module .footer-img {
  padding: 15px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 6px;
  background: #fff;
}

footer .footer-grid .footer-module .footer-img img {
  width: 100px;
}

.footer-about-text
{
    font-size: 26px;
    color: #ffffff;
    margin: 20px 0px 10px 0px;
    
}

.footer-contact-details
{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

footer .footer-grid .footer-module .footer-contact-details p {
  display: flex;
  gap: 10px;
  align-items: center;
  /*padding-top: 30px;*/
  color: #fff;
  font-size: 16px;
}

footer .footer-grid .footer-module .footer-contact-details p svg {
  margin-top: 5px;
}

footer .footer-grid .footer-module .footer-contact-details p a {
  color: #fff;
  font-weight: 400;
}

footer .footer-grid .footer-module .social-links {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 25px;
  transition: all 0.5s ease-in-out;
}

footer .footer-grid .footer-module .social-links li
{
    transition: all 0.5s ease-in-out;
}

footer .footer-grid .footer-module .social-links li:hover a i
{
    color:#6a3c1a;
    transition: all 0.5s ease-in-out;
}




footer .footer-grid .footer-module .social-links li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 47px;
  width: 47px;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
}

footer .footer-grid .footer-module .social-links li a svg {
  color: #fff;
  transition: all 0.5s ease-in-out;
}

.copyright-section p 
{
    color: #ffffff;
}

.copyright-section p a
{
    position: relative;
    color:#ffffff;
    
}
.copyright-section p a::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: all 0.5s ease-in-out;
}

.copyright-section p a:hover::before {
  right: auto;
  left: 0;
  width: 100%;
  transition: all 0.5s ease-in-out;
}
/* Mobile Toast Styles */
.mobile-toast {
  font-size: 14px !important;
}

.mobile-toast-title {
  font-size: 14px !important;
  line-height: 1.5 !important;
}

/* SweetAlert Z-Index Fix */
.swal2-container {
  z-index: 10000 !important;
}

footer .footer-grid .footer-module .social-links li a:hover {
  background: #fff;
  transition: all 0.5s ease-in-out;
}

footer .footer-grid .footer-module .social-links li a:hover svg {
  color: #4777c9;
  transition: all 0.5s ease-in-out;
}

footer .footer-grid .footer-module h6 {
  color: #fff;
  font-size: 20px;
  padding-bottom: 15px;
}

footer .footer-grid .footer-module .links li {
  padding-top: 15px;
}

footer .footer-grid .footer-module .links li a {
  color: #fff;
  font-size: 16px;
}

footer .footer-grid .footer-module:first-child {
  padding-right: 40px;
}

.banner-section {
  position: relative;
  background: url(../images/banner.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner-section .banner-wrap {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: center;
}

.banner-section .banner-wrap .banner-content h6 {
  color: #407e26;
}

.banner-section .banner-wrap .banner-content h1 {
  color: #ea181e;
}

.banner-section .banner-wrap .banner-img {
  padding: 135px 0px 70px 0px;
}

.icon-wrap {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1fr 1fr;
}

.icon-wrap .icon-module img {
  width: 40px;
}

.icon-wrap .icon-module p {
  padding: 15px 0px;
}

.icon-wrap .icon-module span {
  color: #4f4f4f;
  font-size: 14px;
}

.icon-wrap .icon-module:nth-child(1) {
  padding-right: 25px;
}

.icon-wrap .icon-module:nth-child(2) {
  border-left: 2px solid #d1d1d1;
  border-right: 2px solid #d1d1d1;
  padding-left: 25px;
  padding-right: 25px;
}

.icon-wrap .icon-module:nth-child(3) {
  border-right: 2px solid #d1d1d1;
  padding-left: 25px;
  padding-right: 25px;
}

.icon-wrap .icon-module:nth-child(4) {
  padding-left: 25px;
}

.farm-fresh-module,
.healthy-tea-module {
  border-radius: 6px;
  padding: 25px 30px;
}

.farm-fresh-module h4,
.healthy-tea-module h4 {
  font-weight: 400;
}

.farm-fresh-module p,
.healthy-tea-module p {
  padding-top: 10px;
}

.farm-fresh-module {
  background: #ffe0e1;
}

.healthy-tea-module {
  background: #cadef3;
}

.healthy-tea-module img {
  width: 70%;
}

.centered-txt {
  text-align: center;
}

.centered-txt h6 {
  color: #407e26;
}

.centered-txt h2,
.centered-txt h3 {
  /*padding: 10px 0px;*/
  font-weight: 600;
}

.centered-txt img {
  width: 300px;
  margin: 0 auto;
}

.centered-txt p {
  padding: 15px 0px 0px 0px;
  width: 50%;
  margin: 0 auto 40px auto;
  
}

.hover-module {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  right: 10px;
  top: 10px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.hover-module a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 66px;
  width: 66px;
  background: #fff;
  border-radius: 6px;
  border: none;
  transition: all 0.5 ease-in-out;
}

.hover-module a img {
  width: 30px;
  transition: all 0.5 ease-in-out;
}

.hover-module a:hover {
  background: #ea1d22;
  transition: all 0.5 ease-in-out;
}

.hover-module a:hover img {
  filter: brightness(10);
  transition: all 0.5 ease-in-out;
}
.category-modulewrapp
{
      display: flex;
            flex-direction: column;
            justify-content: space-between;
}
.category-module {
  cursor: pointer;
  position: relative;
}

.category-module .category-module-img {
  display: block;
  position: relative;
  padding: 25px;
  background: #f6f6f6;
  border-radius: 6px;
}

.category-module .category-module-img img {
  transition: all 0.3s ease-in-out;
}

.category-module h6 {
  color: #3d3d3d;
  text-align: center;
  padding-top: 20px;
  font-size: 22px;
}

.category-module:hover .hover-module {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.category-module:hover .category-module-img img {
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}

.category-module:hover a h6 {
  color: #ea181e;
  transition: all 0.3s ease-in-out;
}

.category-module:hover a span {
  color: #4777c9;
  transition: all 0.3s ease-in-out;
}

.bestin-store-module {
  position: relative;
  cursor: pointer;
}

.bestin-store-module .category-module-img {
  display: block;
  position: relative;
  padding: 25px;
  background: #ffffff;
  border-radius: 6px;
  margin-bottom: 25px;
  border-bottom: 1px solid #cccccc;
}

.bestin-store-module .category-module-img img {
  transition: all 0.3s ease-in-out;
}

.bestin-store-module span {
  color: #4f4f4f;
  font-size: 14px;
}

.bestin-store-module h6 {
  color: #3d3d3d;
  padding: 10px 0px 10px 0px;
}

.bestin-store-module p {
  /*color: #3d3d3d;*/
  color: #00bf63;
}

.bestin-store-module:hover .hover-module {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.bestin-store-module:hover .category-module-img img {
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}

.bestin-store-module:hover a h6 {
  color: #ea181e;
  transition: all 0.3s ease-in-out;
}

.bestin-store-module:hover a span {
  /*color: #4777c9;*/
  color:#447b2a;
  transition: all 0.3s ease-in-out;
}

.quality-health-wrap {
  position: relative;
  padding: 90px 0px;
  background: #cadef3;
  border-radius: 6px;
  overflow: hidden;
}

.quality-health-wrap .carrot,
.quality-health-wrap .capcicorn {
  position: absolute;
  width: 26%;
}

.quality-health-wrap .carrot {
  top: -140px;
  left: 0;
}

.quality-health-wrap .capcicorn {
  top: 0;
  right: 0;
}

.quality-health-wrap .quality-health-module {
  position: relative;
  width: 50%;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}

.quality-health-wrap .quality-health-module h4 {
  font-weight: 400;
  padding-top: 10px;
}

.feedback-section {
  margin-top: -200px;
  padding-top: 280px;
}

.feedback-section .mySwiper .swiper-horizontal>.swiper-pagination-bullets,
.feedback-section .mySwiper .swiper-pagination-bullets.swiper-pagination-horizontal {
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: flex-end;
  bottom: 50%;
  left: 0%;
  transform: translate(0%, 50%);
}

.feedback-section .mySwiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  /*background: #9bbcf5;*/
  background: #f5e6be;
  opacity: 1;
}

.feedback-section .mySwiper .swiper-pagination-bullet-active {
  /*background: #4777c9;*/
  background: #00bf63;
  height: 60px;
  border-radius: 10px;
}

.feedback-section .mySwiper .swiper-slide {
  display: flex;
  gap: 20px;
}

.feedback-section .mySwiper .swiper-slide .review-profile .review-profile-img {
  /*background: #cadef3;*/
  background:#fff9ea;
  border-radius: 16px;
}

.feedback-section .mySwiper .swiper-slide .review-profile .review-profile-img img {
  width: 227px;
}

.feedback-section .mySwiper .swiper-slide .review-profile .review-profile-details {
  margin-top: 20px;
  padding: 15px 25px;
  color: #fff;
  /*background: #4777c9;*/
  background: #00bf63;
  border-radius: 6px;
}

.feedback-section .mySwiper .swiper-slide .review-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 50px;
  /*background: #dee7fb;*/
  background:#fff9ea;
  border-radius: 16px;
  margin-right: 40px;
}

.feedback-section .mySwiper .swiper-slide .review-content img {
  width: 58px;
}

.feedback-section .mySwiper .swiper-slide .review-content h6 {
  font-weight: 400;
  padding-top: 65px;
}

.left-title-txt {
  width: 45%;
}

.left-title-txt h6 {
  color: #407e26;
}

.left-title-txt h2,
.left-title-txt h3 {
  padding: 10px 0px;
  font-weight: 600;
}

.left-title-txt img {
  width: 200px;
}

.left-title-txt p {
  padding: 20px 0px 30px 0px;
}

.left-faq-module {
  position: relative;
  background: #f9f3c8;
  border-radius: 16px;
  padding: 50px 40px 0px 40px;
}

.left-faq-module h4 {
  font-weight: 400;
}

.left-faq-module .left-faq-img {
  position: absolute;
  bottom: 0;
  left: 10px;
  width: 106%;
}

.accordion {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 25px 25px 0px;
  width: 100%;
  border: none;
  text-align: left;
  background: none;
  outline: none;
  transition: 0.4s;
}

.accordion:before {
  content: "+";
  font-family: FontAwesome;
}

.accordion h6 {
  font-weight: 400;
}

.accordion-active:before {
  content: "\f068";
  font-family: FontAwesome;
}

.panel {
  max-height: 0;
  overflow: hidden;
  border-bottom: 1px solid #b0b0b0;
  transition: max-height 0.2s ease-out;
}

.gap-10 {
  gap: 10px;
}

.panel p,
.panel ul {
  padding: 0px 30px 25px;
  color: #5d5d5d;
}

.blog-module {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/*.blog-module h6*/
/*{*/
/*    font-size:22px;*/
/*}*/

/*.blog-module .blog-module-img {*/
/*  display: block;*/
/*  border-radius: 6px;*/
/*  overflow: hidden;*/
/*  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.2);*/
/*  transition: all 0.5s ease-in-out;*/
/*}*/

.blog-module .blog-module-img {
  display: block;
  height: 220px; /* This ensures uniform height */
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease-in-out;
}

/*.blog-module .blog-module-img img {*/
/*  border-radius: 6px;*/
/*  transition: all 0.5s ease-in-out;*/
/*}*/


.blog-module .blog-module-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* This makes the image fill the area without stretching */
  border-radius: 6px;
  transition: all 0.5s ease-in-out;
}

.blog-placeholder {
  background-color: #f4f4f4;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  border-radius: 6px;
}

.blog-placeholder img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.5;
}

.blog-placeholder-sm {
  background-color: #f4f4f4;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 6px;
  flex-shrink: 0;
}

.blog-placeholder-sm img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.5;
}

.blog-module h6,
.blog-module p {
  color: #3d3d3d;
}

.blog-module h6 {
  padding: 25px 0px 20px 0px;
  font-size: 18px;
}

.blog-module p {
  padding-bottom: 15px;
}

.blog-module span {
  font-size: 16px;
  color: #4777c9;
}

.blog-module span svg {
  width: 12px;
}

.blog-module:hover .blog-module-img img {
  transform: scale(1.05);
  transition: all 0.5s ease-in-out;
}

.mySwiper2 {
  overflow: visible;
  overflow-x: clip;
}

.mySwiper2 .swiper-button-next,
.mySwiper2 .swiper-button-prev {
  top: -55px;
}

.mySwiper2 .swiper-button-prev,
.mySwiper2 .swiper-rtl .swiper-button-next {
  left: auto;
  right: 70px;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  content: "";
}

.left-arrow,
.right-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #4777c9;
  border-radius: 6px;
  box-shadow: 0px 12px 22px rgba(0, 122, 255, 0.22);
}

.left-arrow svg,
.right-arrow svg {
  width: 12px !important;
  color: #fff;
  padding: 10px 15px;
}

.grey-bg-section {
  position: relative;
  padding: 50px 0px;
  background: url(../images/white-grey-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.grey-bg-section img {
  position: absolute;
  right: -55px;
  top: -170px;
  width: 50%;
}

.grey-bg-section .quality-trust-module {
  width: 55%;
}

.grey-bg-section .quality-trust-module h4 {
  font-weight: 400;
}

.main-banner-section,
footer {
  position: relative;
  /* padding: 150px 0px 80px 0px; */
  padding: 80px 0px 80px 0px;
  /* Increased top padding to account for sticky header */
  background: url(../images/Component-1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.banner-heading h1 {
  position: relative;
  color: #fff;
  font-weight: 500;
  padding-bottom: 20px;
  z-index: 1;
  /* margin-top: 40px; */
  /* Add margin to push text down further */
}

.banner-heading h2 {
  position: relative;
  color: #fff;
  font-weight: 500;
  padding-bottom: 20px;
  z-index: 1;
  /* margin-top: 40px; */
  /* Add margin to push text down further */
}

.single-page-left-module h1 
{
    font-size: 32px;
    color: #000000;
}

.breadcrumb {
  position: relative;
  align-items: center;
  z-index: 1;
}

.breadcrumb li {
  color: #fff;
  font-weight: normal;
}

.breadcrumb li a {
  color: #fff;
  font-weight: normal;
}

.breadcrumb li+li:before {
  padding: 0px 4px;
  content: "/";
  color: #fff;
}

.login-form {
  padding: 20px 45px 20px 0px;
}

.login-form .form-title img {
  width: 32px;
}

.login-form .form-title h4 {
  font-weight: 400;
}

.login-form h5 {
  font-weight: 400;
  padding: 35px 0px 20px 0px;
  margin-bottom: 15px;
  border-bottom: 1px solid #d1d1d1;
}

.login-form h5:first-of-type {
  padding-top: 0;
  font-weight: 600;
}

.login-form strong {
  color: #3d3d3d;
}

.login-form input,
.login-form textarea {
  color: #3d3d3d;
  border: 1px solid #888888;
  border-radius: 6px;
  width: 100%;
  outline: none;
  font-size: 16px;
  padding: 8px;
  margin: 15px 0px 15px 0px;
  font-family: "Poppins", sans-serif;
}

.login-form .forget {
  color: #4777c9;
  display: flex;
  justify-content: space-between;
  margin: 35px 0px;
  text-align: left;
}

.login-form .forget span {
  color: #6d6d6d;
  font-size: 14px;
}

.login-form .forget a {
  color: #3d3d3d;
}

.login-form .forget label {
  color: #3d3d3d;
}

.login-form .forget label input {
  margin-right: 3px;
}

.login-form .forget label a {
  color: #3d3d3d;
}

.login-form .round-check {
  display: block;
  position: relative;
  padding-left: 20px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.login-form .round-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.login-form .round-check .checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 15px;
  width: 15px;
  border-radius: 3px;
  border: 1px solid #4f4f4f;
}

.login-form .round-check .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.login-form .round-check input:checked~.checkmark {
  background-color: #4777c9;
  border: 1px solid #4777c9;
}

.login-form .round-check input:checked~.checkmark:after {
  display: block;
}

.login-form .round-check .checkmark:after {
  left: 4px;
  top: 1px;
  width: 3px;
  height: 7px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.line {
  background: #888888;
  height: 1px;
  width: 150px;
}

.policy-link {
  transition: all 0.3s ease-in-out;
}

.policy-link:hover strong {
  color: #ea181e;
  transition: all 0.3s ease-in-out;
}

.fb-wrap {
  background: #385caa;
}

.google-wrap {
  background: #6c9aee;
}

.fb-wrap,
.google-wrap {
  border-radius: 6px;
  padding: 5px 90px 5px 5px;
  width: 100%;
  margin-top: 35px;
}

.fb-wrap .fb-icon,
.google-wrap .fb-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  height: 36px;
  width: 36px;
  border-radius: 6px;
}

.fb-wrap .fb-icon img,
.google-wrap .fb-icon img {
  width: 12px;
}

.fb-wrap p,
.google-wrap p {
  color: #fff;
  font-weight: 600;
}

.register-module {
  border-left: 1px solid #b0b0b0;
  padding: 20px 0px 20px 45px;
  text-align: center;
}

.register-module h4 {
  font-weight: 400;
  padding-bottom: 35px;
}

.forget-password {
  width: 40%;
  margin: 0 auto;
}

.dashboard-wrapper {
  display: grid;
  grid-template-columns: 0.3fr 1fr;
  gap: 30px;
}

.dashboard-module,
.dashboard-intro-module {
  border: 1px solid #e7e7e7;
  border-radius: 6px;
}

.dashboard-module {
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
  width: 270px;
}

.dashboard-module a {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #3d3d3d;
  padding: 20px 30px;
  transition: all 0.5s ease-in-out;
}

.dashboard-module a img {
  width: 18px;
}

.dashboard-module a:hover {
  background: #e7e7e7;
  transition: all 0.5s ease-in-out;
}

.dashboard-module h6 {
  font-weight: 400;
  padding: 20px 30px;
}

.dashboard-module .toggle-icon {
  display: none;
  cursor: pointer;
}

.dashboard-module .collapsible {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.dashboard-module .collapsible .collapsible-text {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.dashboard-active {
  background: #e7e7e7;
}

.dashboard-intro-module {
  padding: 30px;
}

.dashboard-intro-module p:last-of-type {
  padding-top: 15px;
}

.dashboard-icon-module {
  padding: 30px 20px;
  border: 1px solid #e7e7e7;
  border-radius: 6px;
  transition: all 0.5s ease-in-out;
}

.dashboard-icon-module img {
  width: 50px;
  margin: 0 auto;
  transition: all 0.5s ease-in-out;
}

.dashboard-icon-module p {
  text-align: center;
  padding-top: 15px;
  color: #3d3d3d;
}

.dashboard-icon-module:hover {
  background: #f6f6f6;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.12);
  transition: all 0.5s ease-in-out;
}

.dashboard-icon-module:hover img {
  filter: invert(27%) sepia(59%) saturate(558%) hue-rotate(180deg) brightness(90%) contrast(100%);
  transition: all 0.5s ease-in-out;
}

.order-wrap table {
  font-family: "Poppins", sans-serif;
  border-collapse: collapse;
  width: 100%;
  white-space: nowrap;
}

.order-wrap table tr:last-child td {
  padding-bottom: 0;
}

.order-wrap table tr td,
.order-wrap table tr th {
  text-align: left;
}

.order-wrap table tr th {
  border: none;
  font-size: 21px;
  font-weight: 400;
  padding-bottom: 25px;
}

.order-wrap table tr td {
  border-top: 1px solid #d1d1d1;
  padding: 25px 0px;
}

.order-wrap,
.order-details-wrap,
.border-wrap {
  padding: 30px;
  border: 1px solid #d1d1d1;
  border-radius: 6px;
}

.main-order-wrapper,
.order-wrap {
  overflow-x: auto;
}

.grey-btn {
  padding: 9px 14px;
  background: #d1d1d1;
  border-radius: 4px;
  color: #3d3d3d;
  transition: all 0.5s ease-in-out;
}

.grey-btn:hover {
  color: #137ce6;
  transition: all 0.5s ease-in-out;
}

.order-details-wrap {
  overflow-x: auto;
}

.order-details-wrap .order-txt {
  color: #6d6d6d;
}

.order-details-wrap .order-txt span {
  color: #3d3d3d;
}

.order-details-wrap h5 {
  font-weight: 700;
  padding: 30px 0px 40px 0px;
}

.order-details-wrap table {
  font-family: "Poppins", sans-serif;
  border-collapse: collapse;
  width: 100%;
  white-space: nowrap;
}

.order-details-wrap table tr:last-child td {
  padding-bottom: 0;
}

.order-details-wrap table tr td:last-child,
.order-details-wrap table tr th:last-child {
  text-align: right;
}

.order-details-wrap table tr th {
  border: none;
  font-weight: 400;
  font-size: 21px;
  padding-bottom: 25px;
  text-align: left;
}

.order-details-wrap table tr td {
  border-top: 1px solid #d1d1d1;
  padding: 12px 0px;
}

.order-details-wrap table tr td:last-child {
  color: #4777c9;
}

.order-details-wrap table tr td h6 {
  font-weight: 400;
}

.order-details-wrap table tr td img {
  width: 60px;
}

.order-details-wrap .order-delivery-details table {
  border-collapse: collapse;
}

.order-details-wrap .order-delivery-details table td:last-child,
.order-details-wrap .order-delivery-details table th:last-child {
  text-align: left;
  width: 220px;
  color: #3d3d3d;
}

.product-wishlist {
  padding: 20px;
  background: #d9f3ff;
  border-radius: 6px;
}

.product-wishlist p {
  color: #4777c9;
}

.product-wishlist .wishlist-share-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  width: 28px;
  border-radius: 50%;
  background: #f6f6f6;
}

.product-wishlist .wishlist-share-link a svg {
  color: #3d3d3d;
  font-size: 15px;
  transition: all 0.5s ease-in-out;
}

.product-wishlist .wishlist-share-link a:hover svg {
  color: #4777c9;
  transition: all 0.5s ease-in-out;
}

.empty-wishlist-module {
  width: 60%;
  margin: 0 auto;
  text-align: center;
}

.empty-wishlist-module img {
  width: 92px;
  margin: 0 auto;
}

.empty-wishlist-module h3 {
  font-weight: 400;
  padding: 35px 0px 25px 0px;
}

.empty-wishlist-module p {
  margin-bottom: 25px;
}

.all-category-sidebar {
  position: relative;
  padding: 0px 20px 20px;
  border: 1px solid #e7e7e7;
  border-radius: 6px;
  height: -moz-fit-content;
  height: fit-content;
}

.all-category-sidebar .accordion::before {
  content: "\f107";
  /* Plus icon */
  font-family: FontAwesome;
  position: absolute;
  /* Position the icon absolutely */
  right: 20px;
  /* Align icon to the right */
  font-size: 16px;
  /* Adjust icon size */
}

.all-category-sidebar .accordion-active::before {
  content: "\f106";
  /* Minus icon */
  font-family: FontAwesome;
}

.all-category-sidebar ul li {
  padding-bottom: 15px;
}

.all-category-sidebar ul li a {
  color: #3d3d3d;
  transition: all 0.5s ease-in-out;
}

.all-category-sidebar ul li a:hover {
  color: #4777c9;
  transition: all 0.5s ease-in-out;
}

.all-products .hover-module a {
  height: 50px;
  width: 50px;
}

.all-products .hover-module a img {
  width: 20px;
}

.range-slider {
  position: relative;
}

.range-slider .range-value input {
  border: none;
  font-size: 17px;
  font-weight: 600;
}

.range-slider .ui-slider .ui-slider-range {
  background: #137ce6;
}

.range-slider .ui-state-default,
.range-slider .ui-widget-content .ui-state-default,
.range-slider .ui-widget-header .ui-state-default,
.range-slider .ui-button,
.range-slider html .ui-button.ui-state-disabled:hover,
.range-slider html .ui-button.ui-state-disabled:active {
  border: 1px solid #1662b7;
  background: #1662b7;
  border-radius: 4px;
  height: 14px;
  width: 6px;
  margin-left: 0;
  top: -6px;
}

.range-slider .ui-widget.ui-widget-content {
  border: none;
  background: #d1d1d1;
  margin: 20px 0px;
  height: 3px;
}

.cart-wrapper {
  overflow-x: auto;
}

.cart-wrapper table {
  border-collapse: collapse;
  width: 100%;
  white-space: nowrap;
}

.cart-wrapper table tr th {
  text-align: left;
  font-weight: 400;
  font-size: 21px;
  padding-bottom: 25px;
}

.cart-wrapper table tr th:last-child {
  text-align: right;
}

.cart-wrapper table tr td {
  border-top: 1px solid #d1d1d1;
  padding: 25px 0px;
}

.cart-wrapper table tr td .cart-module {
  width: 100px;
}

.cart-wrapper table tr td img {
  width: 50px;
}

.cart-wrapper table tr td p:first-child {
  color: #6d6d6d;
}

.cart-wrapper table tr td:last-child {
  text-align: right;
  color: #4777c9;
}

.cart-module {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #d1d1d1;
  border-radius: 5px;
}

.cart-module button {
  background: #f6f6f6;
  border: none;
  padding: 15px 10px;
  cursor: pointer;
  border-radius: 3px;
  font-size: 16px;
}

.cart-module button:hover {
  background: #e7e7e7;
}

.cart-module .quantity {
  padding: 0px 15px;
}

.swiper-container {
  position: relative;
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
  position: absolute;
  top: 45%;
  z-index: 1;
}

.swiper-container .swiper-button-prev:after,
.swiper-container .swiper-button-next:after {
  content: "";
}

.swiper-container .swiper-button-prev,
.swiper-container .swiper-rtl .swiper-button-next {
  left: -13px;
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-rtl .swiper-button-prev {
  right: -15px;
}

.thumbnail-swiper .swiper-slide {
  height: -moz-fit-content !important;
  height: fit-content !important;
}

.thumbnail-swiper .swiper-slide img {
  cursor: pointer;
  padding: 20px;
  width: 100px;
  background: #f6f6f6;
  border-radius: 6px;
}

.thumbnail-swiper .swiper-slide-thumb-active {
  opacity: 1;
  border: 1px solid #3d3d3d;
  border-radius: 6px;
}

.view-product {
  width: 348px;
  height: 498px;
}

.view-product .thumb-swiper .swiper-slide img {
  display: block;
  padding: 40px;
  background: #f6f6f6;
  border-radius: 6px;
}

.cart-btn img {
  width: 40px;
  filter: brightness(5);
  transition: all 0.5s ease-in-out;
}

.cart-btn:hover img {
  filter: brightness(1);
  transition: all 0.5s ease-in-out;
}

.product-right-module .product-right-description {
  padding-bottom: 30px;
  border-bottom: 1px solid #e7e7e7;
}

.product-right-module .product-right-description h4 {
  padding-top: 20px;
}

.product-right-module .product-right-description h4 span {
  font-size: 17px;
  color: #6d6d6d;
  font-weight: 400;
}

.product-right-module .product-right-description p {
  color: #6d6d6d;
}

.product-right-module .product-right-description p strong {
  color: #3d3d3d;
}

.product-right-module .product-right-description p:first-child {
  padding: 30px 0px 20px 0px;
}

.tab-container {
  width: 100%;
  border: 1px solid #e7e7e7;
  border-radius: 6px;
}

.tab-container .tab-buttons {
  display: flex;
  gap: 90px;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding: 0px 20px;
}

.tab-container .tab-button {
  padding: 20px 0px;
  font-size: 17px;
  font-weight: 600;
  color: #888888;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.tab-container .tab-button.tab-active {
  color: #3d3d3d;
  border-bottom: 2px solid #3d3d3d;
}

.tab-container .tab-pane {
  display: none;
  padding: 40px;
  border-top: none;
}

.tab-container .tab-pane.tab-active {
  display: block;
}

.tab-container .tab-pane p {
  color: #6d6d6d;
  padding-bottom: 20px;
}

.tab-container .tab-pane p:last-child {
  padding-bottom: 0;
}

.tab-container .tab-pane p strong {
  color: #3d3d3d;
}

.tab-container .tab-pane li {
  color: #6d6d6d;
}

.circle-list {
  padding-left: 20px;
}

.circle-list li {
  list-style: disc;
  padding-top: 20px;
}

.customer-profile-img {
  background: #c4d7f9;
  border-radius: 4px;
  width: 80px;
  padding: 10px 10px 0px 10px;
}

.customer-review-left-module {
  padding-right: 40px;
}

.customer-review-left-module p {
  font-size: 14px;
}

.customer-review-left-module .customer-review-sub-left-module {
  margin-top: 25px;
}

.customer-review-right-module {
  padding-left: 40px;
  border-left: 1px solid #e7e7e7;
}

.customer-review-right-module p,
.customer-review-right-module label {
  font-size: 14px;
}

.star-rating {
  font-size: 20px;
  cursor: pointer;
}

.star-rating .star {
  color: #b0b0b0;
  transition: color 0.2s ease;
}

.star-rating .star.selected {
  color: #4777c9;
}

.checkout-right-module {
  background: #f6f6f6;
  padding: 20px;
  border-radius: 6px;
  /* Selected State */
  /* Icon and Text Alignment */
}

.checkout-right-module .checkout-table {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
}

.checkout-right-module .checkout-table h6 {
  font-weight: 400;
  padding-bottom: 20px;
}

.checkout-right-module .checkout-table table {
  border-collapse: collapse;
  width: 100%;
}

.checkout-right-module .checkout-table table tr:last-child td {
  padding-bottom: 0;
  color: #4777c9;
}

.checkout-right-module .checkout-table table tr td,
.checkout-right-module .checkout-table table tr th {
  font-size: 15px;
}

.checkout-right-module .checkout-table table tr th {
  border: none;
  font-size: 21px;
  font-weight: 400;
  padding-bottom: 25px;
  text-align: left;
}

.checkout-right-module .checkout-table table tr td {
  border-top: 1px solid #d1d1d1;
  padding: 20px 0px;
}

.checkout-right-module .checkout-table table tr td:last-child {
  text-align: right;
}

.checkout-right-module .checkout-table table tr td h6 {
  font-weight: 400;
}

.checkout-right-module .payment-method div {
  padding-top: 20px;
}

.checkout-right-module .payment-method div img {
  width: 35px;
}

.checkout-right-module .payment-option {
  display: block;
  position: relative;
  cursor: pointer;
}

.checkout-right-module .payment-input {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}

.checkout-right-module .payment-content {
  padding: 12px 20px;
  margin-top: 15px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: #fff;
  transition: all 0.3s ease;
}

.checkout-right-module .payment-input:checked+.payment-content {
  background: #e8f5e9;
  border: 1px solid #407e26;
}

.checkout-right-module .payment-content img {
  width: 30px;
  height: auto;
}

.google-maps {
  position: relative;
  padding-bottom: 30%;
  height: 0;
  overflow: hidden;
}

.google-maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.contact-module p {
  padding: 20px 0px 10px 0px;
}

.contact-module a {
  color: #3d3d3d;
  transition: all 0.5s ease-in-out;
}

.contact-module a:hover {
  color: #4777c9;
  transition: all 0.5s ease-in-out;
}

.contact-module .contact-module-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  height: 47px;
  width: 47px;
  border: 1px solid #3d3d3d;
  color: #3d3d3d;
}

.contact-module .contact-module-link a:hover {
  color: #3d6de6;
  background: #f0f5fe;
  border: 1px solid #f0f5fe;
}

.contact-form {
  padding: 30px;
  background: #f6f6f6;
  border-radius: 6px;
}

.contact-form h5 {
  padding: 0px;
  border-bottom: none;
}

.contact-form p {
  padding-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  background: transparent;
}

.about-module p {
  padding-top: 20px;
}

.commitments-module {
  text-align: center;
}

.commitments-module .commitments-module-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  width: 120px;
  margin: 0 auto;
  /*background: #d9f3ff;*/
  background: #fff5da;
  border-radius: 50%;
}

.commitments-module .commitments-module-img img {
  width: 50px;
}

.commitments-module h5 {
  padding: 20px 0px;
}

.why-choose-us-module {
  padding: 25px 0px;
  border-bottom: 1px solid #e7e7e7;
}

.why-choose-us-module img {
  width: 25px;
}

.why-choose-us-module p {
  padding-top: 20px;
}

.why-choose-us-module:first-child {
  padding-top: 0;
}

.why-choose-us-module:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.page-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 80px;
}

.page-links li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  height: 38px;
  width: 38px;
  border-radius: 3px;
  color: #3d3d3d;
  transition: all 0.5s ease-in-out;
}

.page-links li a:hover {
  background: #4777c9;
  color: #fff !important;
  transition: all 0.5s ease-in-out;
}

.active-page-link {
  background: #4777c9;
  color: #fff !important;
}

.single-page-left-module p,
.single-page-left-module img,
.single-page-left-module h5 {
  padding-top: 30px;
}

.single-page-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  height: 28px;
  width: 28px;
  font-size: 12px;
  background: #f0f5fe;
  border: 1px solid #f0f5fe;
  color: #3d3d3d;
  transition: all 0.5s ease-in-out;
}

.single-page-share a:hover {
  color: #3d6de6;
  transition: all 0.5s ease-in-out;
}

.recent-post-module {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 0px;
  border-bottom: 1px solid #e7e7e7;
}

.recent-post-module img {
  width: 100px;
  border-radius: 5px;
}

.recent-post-module p,
.recent-post-module span {
  font-size: 16px;
  color: #3d3d3d;
}

.recent-post-module span {
  font-weight: 600;
}

.recent-post-module:last-child {
  border-bottom: none;
}

.error-wrap {
  margin: 0 auto;
  width: 55%;
  text-align: center;
}

.error-wrap img {
  width: 30%;
  margin: 0 auto;
}

.error-wrap h3 {
  padding: 60px 0px 30px 0px;
}

.search {
  width: 50%;
  position: relative;
  display: flex;
  margin: 0 auto;
}

.search .searchTerm {
  width: 100%;
  border: none;
  padding: 18px 26px;
  height: 50px;
  border-radius: 5px 0 0 5px;
  outline: none;
  background: #f6f6f6;
  font-family: "Poppins", sans-serif;
}

.search .searchTerm::-moz-placeholder {
  color: #b0b0b0;
}

.search .searchTerm::placeholder {
  color: #b0b0b0;
}

.search .searchTerm:focus {
  color: #3d3d3d;
}

.search .searchButton {
  width: 56px;
  height: 50px;
  border: 1px solid #d1d1d1;
  background: #d1d1d1;
  text-align: center;
  color: #4f4f4f;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-size: 16px;
}

.index-search-bar {
  position: absolute;
  top: 115px;
  display: flex;
  right: 75px;
  z-index: 1;
  width: 300px;
}

.index-search-bar .searchButton {
  background: #4777c9;
  color: #fff;
}

.privacy-container h1,
.privacy-container h2,
.privacy-container h3,
.privacy-container h4,
.privacy-container h5,
.privacy-container h6 {
  margin-top: 30px;
}

.privacy-container p {
  margin-top: 20px;
}

.privacy-container .disc-style {
  margin-top: 20px;
  padding-left: 40px;
}

.privacy-container .disc-style li {
  list-style: disc;
  margin-bottom: 7px;
}

.privacy-container .contact-policy {
  margin-top: 20px;
}

.privacy-container .contact-policy li {
  margin-bottom: 7px;
}

.privacy-container .contact-policy li a {
  color: #4777c9;
  transition: all 0.3s ease-in-out;
}

.privacy-container .contact-policy li a:hover {
  color: #ea181e;
  transition: all 0.3s ease-in-out;
}

.thank-you {
  max-width: 60%;
  margin: 0 auto;
  text-align: center;
}

.thank-you .thank-you-icon {
  color: #27ae60;
  /* margin-bottom: 40px; */
  font-size: 100px;
}

.thank-you h2 {
  margin-bottom: 5px;
}

.alert {
  position: relative;
  padding: 15px 20px;
  margin: 15px 0;
  border-radius: 6px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: slideIn 0.3s ease-out;
  background: white;
}

/* Alert Content */
.alert-content {
  flex: 1;
}

.alert-title {
  font-weight: 600;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.alert-message {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}

/* Alert Types */
.alert-success {
  background: rgba(40, 167, 69, 0.0784313725);
}

.alert-success .alert-icon {
  color: #28a745;
}

.alert-error {
  background: rgba(220, 53, 69, 0.0784313725);
}

.alert-error .alert-icon {
  color: #dc3545;
}

.alert-warning {
  background: rgba(255, 193, 7, 0.168627451);
}

.alert-warning .alert-icon {
  color: #ffc107;
}

/* Alert Icon */
.alert-icon {
  margin-right: 12px;
  font-size: 20px;
}

/* Close Button */
.alert-close {
  margin-left: 15px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  opacity: 0.7;
  color: #666;
  transition: opacity 0.2s;
}

.alert-close:hover {
  opacity: 1;
}

/* Animation */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.prdinfo {
    margin: 20px 0px;
}

.newfaqmodule p
{
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
}


/* 404 Page Start */
.error-logo {
  margin-bottom: 40px;
}
.error-404-section .error-visual h1 {
  font-size: 150px;
  line-height: 1;
  margin-bottom: 15px;
  font-weight: 800;
  letter-spacing: -5px;
}
.error-line {
  width: 80px;
  height: 5px;
  /*background: #4777c9;*/
  
  background:#00bf63;
  border-radius: 10px;
}
.error-content p {
  max-width: 600px;
  margin: 0 auto 35px;
  font-size: 18px;
  color: #6d6d6d;
}
.error-actions .mr-10 {
  margin-right: 10px;
}
@media (max-width: 768px) {
  .error-404-section .error-visual h1 {
    font-size: 80px;
    letter-spacing: -2px;
  }
  .error-content p {
    font-size: 16px;
  }
  .error-actions {
    flex-direction: column;
    align-items: center;
  }
  .error-actions .btn {
    width: 100%;
    max-width: 250px;
  }
  .error-logo {
    margin-bottom: 10px;
}
.error-content p {
    margin: 0 auto 20px;
}
}
/* 404 Page End */


@media (max-width: 1200px) {
  .container {
    width: 90%;
  }

  .main-nav .gap-70 {
    gap: 30px;
  }

  .all-products.grid-4 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 1140px) {

  .nav-logo,
  .nav-list {
    display: none !important;
  }

  .logo-wrap a img {
    width: 90px;
  }

  .mobile-view {
    display: block;
  }

  .slidein-menu {
    display: block;
    position: fixed;
    width: 400px;
    height: 100%;
    background: #fff;
    top: 0;
    left: -120%;
    padding: 20px 40px;
    box-sizing: border-box;
    transition: all 0.5s ease-in-out;
    z-index: 99;
  }

  .slidein-menu.open {
    left: 0;
    transition: all 0.5s ease-in-out;
  }

  .slidein-menu .slidein-logo a img {
    width: 90px;
  }

  .slidein-menu .bdr-bottom {
    background-image: linear-gradient(45deg, #2569a0, #d84444);
    height: 1px;
    width: 100%;
    margin-top: 20px;
  }

  .slidein-menu .m-nav-bar {
    margin-top: 30px;
  }

  .slidein-menu .m-nav-bar .m-menu-list li {
    position: relative;
    /* padding: 7px 0px 20px 0px; */
    padding: 7px 0px 10px 0px;
  }

  .slidein-menu .m-nav-bar .m-menu-list li a {
    color: #3d3d3d;
    display: block;
    line-height: 2;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.5s ease-in-out;
  }

  .slidein-menu .m-nav-bar .m-menu-list li a:hover {
    color: #4777c9;
    border-bottom: 1px solid #4777c9;
    width: -moz-fit-content;
    width: fit-content;
    transition: all 0.5s ease-in-out;
  }

  .slidein-menu .m-nav-bar .m-menu-list li .sidebar-menu {
    color: #3d3d3d;
    transition: all 0.5s ease-in-out;
  }

  .slidein-menu .m-nav-bar .m-menu-list li .sidebar-menu:hover .expand svg {
    color: #4777c9;
    transition: all 0.5s ease-in-out;
  }

  .slidein-menu .m-nav-bar .m-menu-list li .sidebar-menu .expand1 {
    line-height: 3;
  }

  .slidein-menu .m-nav-bar .m-menu-list li .sub-menu {
    display: none;
    color: #141414;
  }

  .slidein-menu .m-nav-bar .m-menu-list li .sub-menu ul li a {
    font-size: 14px;
    padding-left: 15px;
  }

  .ham-btn {
    height: 30px;
    width: 25px;
    right: 5px;
    position: relative;
    cursor: pointer;
  }

  .ham-btn span {
    position: absolute;
    width: 100%;
    height: 2px;
    border-radius: 10px;
    background: #29689c;
    display: block;
  }

  .ham-btn span:nth-child(1) {
    top: 7px;
    width: 100%;
    right: -5px;
  }

  .ham-btn span:nth-child(2) {
    top: 14px;
    left: 5px;
    width: 15px;
  }

  .ham-btn span:nth-child(3) {
    bottom: 6px;
    left: 5px;
    width: 20px;
  }

  .ham-btn.cross span {
    background: #29689c;
  }

  .ham-btn.cross span:nth-child(2) {
    display: none;
  }

  .ham-btn.cross span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
    right: -5px;
    width: 100%;
  }

  .ham-btn.cross span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: auto;
    top: 10px;
    right: 0;
    width: 100%;
  }

  .index-search-bar {
    top: 90px;
  }
}

@media (max-width: 1024px) {

  body,
  p {
    font-size: 15px;
  }

  h1 {
    font-size: 57px;
  }

  h2 {
    font-size: 45px;
  }

  h3 {
    font-size: 36px;
  }

  h4 {
    font-size: 29px;
  }

  h5 {
    font-size: 23px;
  }

  h6 {
    font-size: 18px;
  }

  .pt-80 {
    padding-top: 60px;
  }

  .pb-80 {
    padding-bottom: 60px;
  }

  .order-wrap table tr th,
  .order-details-wrap table tr th,
  .cart-wrapper table tr th {
    font-size: 18px;
  }

  footer .footer-grid {
    grid-template-columns: 1.7fr 0.7fr 1fr 1.3fr;
    gap: 40px;
  }

  footer .footer-grid .footer-module .links li a,
  footer .footer-grid .footer-module .links p a,
  footer .footer-grid .footer-module .footer-contact-details li a,
  footer .footer-grid .footer-module .footer-contact-details p a {
    font-size: 16px;
  }

  footer .footer-grid .footer-module:first-child {
    padding-right: 0px;
  }

  footer .footer-grid .footer-module .social-links li a {
    height: 30px;
    width: 30px;
    font-size: 14px;
  }

  .farm-fresh-module,
  .healthy-tea-module {
    border-radius: 6px;
    padding: 20px;
  }

  .centered-txt p {
    width: 60%;
  }

  .hover-module a {
    height: 55px;
    width: 55px;
  }

  .hover-module a img {
    width: 25px;
  }

  .quality-health-wrap .quality-health-module {
    width: 60%;
  }

  .left-faq-module {
    padding: 40px 30px 0px 30px;
  }

  .blog-module span {
    font-size: 15px;
  }

  .main-banner-section,
  footer {
    position: relative;
    padding: 60px 0px;
  }

  .banner-heading h1 {
    padding-bottom: 7px;
  }

  .commitments-module .commitments-module-img {
    height: 90px;
    width: 90px;
  }

  .commitments-module .commitments-module-img img {
    width: 30px;
  }

  .why-choose-us-module img {
    width: 20px;
  }

  .line {
    width: 100px;
  }

  .fb-wrap,
  .google-wrap {
    padding: 5px 50px 5px 5px;
  }

  .checkout-right-module .checkout-table table tr td,
  .checkout-right-module .checkout-table table tr th {
    font-size: 14px;
  }

  .empty-wishlist-module {
    width: 85%;
  }

  .thank-you {
    max-width: 70%;
  }
}

@media (max-width: 950px) {
  .gap-70 {
    gap: 40px;
  }

  .w-60 {
    width: 40px !important;
  }

  footer .footer-grid {
    grid-template-columns: 2fr 1fr;
  }

  .banner-section .banner-wrap {
    grid-template-columns: 1fr 0.6fr;
  }

  .icon-wrap {
    grid-template-columns: 0.8fr 1fr 1fr 1fr;
  }

  .icon-wrap .icon-module img {
    width: 25px;
  }

  .icon-wrap .icon-module span {
    font-size: 13px;
  }

  .recent-post-module {
    gap: 15px;
    padding: 20px 0px;
  }

  .recent-post-module img {
    width: 80px;
  }

  .recent-post-module p,
  .recent-post-module span {
    font-size: 14px;
  }

  .all-products.grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .order-wrap table tr th {
    padding: 0px 15px 20px 15px;
  }

  .order-wrap table tr td {
    padding: 20px 15px;
  }
}

@media (max-width: 850px) {

  .grid-2,
  .grid-2-1,
  .grid-17-1 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .about-module {
    font-size: 14px;
  }

  .banner-section .banner-wrap .banner-img {
    padding: 70px 0px 70px 0px;
  }

  .icon-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .icon-wrap .icon-module p {
    padding: 15px 0px;
  }

  .icon-wrap .icon-module:nth-child(1) {
    padding-right: 15px;
  }

  .icon-wrap .icon-module:nth-child(2) {
    border-left: 1px solid #b0b0b0;
    /*border-right: none;*/
    /*padding-left: 40px;*/
    padding-right: 0;
  }

  .icon-wrap .icon-module:nth-child(3) {
    /*border-right: none;*/
    padding-left: 0;
    padding-right: 0;
  }

  .icon-wrap .icon-module:nth-child(4) {
    border-left: 1px solid #b0b0b0;
    padding-left: 40px;
  }

  .centered-txt p {
    width: 75%;
  }

  .left-title-txt {
    width: 70%;
  }

  .farm-tea-wrap.grid-2 {
    grid-template-columns: 1fr;
  }

  .farm-tea-wrap .farm-fresh-module.grid-2,
  .farm-tea-wrap .healthy-tea-module.grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  .hover-module a {
    height: 40px;
    width: 40px;
  }

  .hover-module a img {
    width: 20px;
  }

  .quality-health-wrap .quality-health-module {
    width: 70%;
  }

  .quality-health-wrap {
    padding: 45px 0px;
  }

  .grey-bg-section img {
    top: -55px;
  }

  .login-form {
    padding: 0px;
  }

  .register-module {
    border-left: none;
    padding: 0;
    margin-top: 50px;
  }

  .fb-wrap,
  .google-wrap {
    padding: 5px 125px 5px 5px;
  }

  .left-faq-module {
    padding: 60px 30px 60px 30px;
  }

  .left-faq-module div {
    width: 60%;
  }

  .left-faq-module .left-faq-img {
    left: auto;
    right: 0;
    width: 38%;
  }

  .contact-form {
    padding: 25px;
  }

  .all-category-sidebar {
    width: 220px;
  }

  .checkout-right-module {
    margin-top: 25px;
  }

  .order-details-wrap table tr th {
    padding-bottom: 20px;
  }

  .order-details-wrap .order-delivery-details table th {
    padding: 0px 15px 20px 15px;
  }

  .order-details-wrap .order-delivery-details table td {
    padding: 20px 15px;
  }

  .order-details-wrap .order-delivery-details table td:last-child,
  .order-details-wrap .order-delivery-details table th:last-child {
    text-align: left;
    width: auto;
  }

  .dashboard-intro-module {
    padding: 20px;
  }

  .error-wrap {
    width: 70%;
  }

  .error-wrap h3 {
    padding: 30px 0px 15px 0px;
  }
}

@media (max-width: 768px) {

  body,
  p {
    font-size: 13px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 15px;
  }

  .pt-80 {
    padding-top: 30px;
  }

  .pb-80 {
    padding-bottom: 30px;
  }

  .pt-60 {
    padding-top: 30px;
  }

  .mt-30 {
    margin-top: 20px;
  }

  .mb-35 {
    margin-bottom: 20px;
  }

  .mt-60 {
    margin-top: 30px;
  }


  .gap-30 {
    gap: 20px;
  }

  .w-42 {
    width: 30px !important;
  }

  .w-55 {
    width: 37px !important;
  }

  .order-wrap table tr th,
  .order-details-wrap table tr th,
  .cart-wrapper table tr th {
    font-size: 15px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 13px;
  }

  .main-banner-section,
  footer {
    position: relative;
    padding: 45px 0px;
  }

  .logo-wrap a img {
    width: 65px;
  }

  .nav-btn a,
  .cart-icon {
    height: 30px;
    width: 30px;
  }

  .nav-btn a img,
  .cart-icon img {
    width: 12px;
  }

  .nav-btn a p,
  .cart-icon p {
    height: 14px;
    width: 14px;
    font-size: 8px;
  }

  .centered-txt p {
    padding: 15px 0px 0px 0px;
  }

  .centered-txt img {
    width: 200px;
  }

  .left-title-txt img {
    width: 135px;
  }

  .feedback-section .mySwiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }

  .feedback-section .mySwiper .swiper-pagination-bullet-active {
    height: 40px;
  }

  .feedback-section .mySwiper .swiper-slide .review-profile .review-profile-img img {
    width: 175px;
  }

  .feedback-section .mySwiper .swiper-slide .review-profile .review-profile-details {
    padding: 15px;
  }

  .feedback-section .mySwiper .swiper-slide .review-content {
    padding: 20px;
  }

  .feedback-section .mySwiper .swiper-slide .review-content img {
    width: 35px;
  }

  .blog-module span {
    font-size: 13px;
  }

  .tab-container .tab-buttons {
    gap: 30px;
  }

  .tab-container .tab-buttons .tab-button {
    padding: 15px 0px;
    font-size: 14px;
  }

  .tab-container .tab-pane {
    padding: 25px;
  }

  .feedback-section {
    padding-top: 250px;
  }

  .customer-review-right-module {
    padding-left: 0px;
    border-left: none;
    margin-top: 30px;
  }

  .all-category-sidebar {
    width: 200px;
  }

  .checkout-right-module .checkout-table table tr td,
  .checkout-right-module .checkout-table table tr th {
    font-size: 13px;
  }

  .cart-wrapper {
    overflow-x: auto;
  }

  .cart-wrapper table tr th {
    padding: 0px 15px 20px 15px;
  }

  .cart-wrapper table tr td {
    padding: 20px 15px;
  }

  .dashboard-module {
    width: 200px;
  }

  .dashboard-module a {
    gap: 10px;
    padding: 20px;
  }

  .dashboard-module h6 {
    padding: 20px;
  }

  .dashboard-icon-module img {
    width: 35px;
  }

  .order-wrap,
  .order-details-wrap,
  .border-wrap {
    padding: 20px;
  }

  .order-details-wrap h5 {
    padding: 15px 0px 20px 0px;
  }

  .order-details-wrap table tr td {
    padding: 15px 0px;
  }

  .login-form input,
  .login-form textarea {
    font-size: 13px;
  }

 
}

@media (max-width: 750px) {
  .dashboard-wrapper {
    grid-template-columns: 0.1fr 1fr;
    gap: 20px;
  }

  .dashboard-wrapper .dashboard-module {
    width: 60px;
    transition: width 0.5s ease-in-out;
  }

  .dashboard-wrapper .dashboard-module.expanded {
    width: 200px;
  }

  .dashboard-wrapper .dashboard-module .icon-collapsible {
    height: 50px;
  }

  .dashboard-wrapper .dashboard-module .toggle-icon {
    display: block;
    position: absolute;
    padding: 20px;
    transition: transform 0.5s ease-in-out;
  }

  .dashboard-wrapper .dashboard-module .collapsible .collapsible-text {
    opacity: 0;
    visibility: hidden;
  }

  .dashboard-wrapper .dashboard-module h6.collapsible {
    opacity: 0;
    visibility: hidden;
  }

  .dashboard-wrapper .dashboard-module.expanded h6.collapsible {
    opacity: 1;
    visibility: visible;
  }

  .dashboard-wrapper .dashboard-module.expanded .collapsible .collapsible-text {
    opacity: 1;
    visibility: visible;
  }

  .dashboard-wrapper .dashboard-module.expanded .toggle-icon {
    position: relative;
    transform: rotate(180deg);
    transition: all 0.5s ease-in-out;
  }
}

@media (max-width: 700px) {
  .grid-06-2 {
    grid-template-columns: 1fr;
  }

  .all-category-sidebar {
    width: 100%;
  }
}

@media (max-width: 650px) {
    .single-page-left-module h1 
{
    font-size: 22px;
    color: #000000;
}

  footer .footer-grid {
    grid-template-columns: 1fr;
  }

  footer .footer-grid .footer-module .footer-contact-details p {
    padding-top: 20px;
  }

  .centered-txt p {
    width: 90%;
  }

  .grey-bg-section .quality-trust-module {
    width: 75%;
  }

  .grey-bg-section img {
    right: -140px;
  }

  .quality-health-wrap .quality-health-module {
    width: 100%;
  }

  .quality-health-wrap .carrot,
  .quality-health-wrap .capcicorn {
    width: 20%;
  }

  .quality-health-wrap .carrot {
    top: auto;
    bottom: 0;
  }

  .thumbnail-swiper .swiper-slide img {
    width: 80px;
  }

  .view-product {
    width: 250px;
    height: auto;
  }

  .tab-container .tab-pane p {
    padding-bottom: 10px;
  }

  .google-maps {
    padding-bottom: 55%;
  }

  .border-wrap .flex {
    flex-direction: column;
    gap: 0px;
  }

  .main-order-wrapper .product-wishlist.flex {
    flex-direction: column;
    gap: 10px;
  }

  .main-order-wrapper .product-wishlist p {
    text-align: center;
  }

  .product-wishlist p {
    padding-bottom: 10px;
  }

  .product-wishlist .flex {
    flex-direction: row;
    gap: 10px;
  }

  .thank-you {
    max-width: 100%;
  }

  .thank-you .thank-you-icon {
    margin-bottom: 20px;
    font-size: 50px;
  }

  .thank-you h2 {
    margin-bottom: 15px;
  }

  .forget-password {
    width: 60%;
  }
}

@media (max-width: 600px) {
    
    .accordion {
    padding: 10px 25px 10px 0px;
}
    
    .panel p,
.panel ul {
  padding: 0px 15px 10px;
  color: #5d5d5d;
}
    
    
    footer .footer-grid .footer-module h6 {
    padding-bottom: 5px;
}
    
        footer .footer-grid {
        gap: 25px;
    }
    
    footer .footer-grid .footer-module .social-links {

    gap: 15px;
    margin-top: 20px;
    transition: all 0.5s ease-in-out;
}
    
        footer .footer-grid .footer-module .footer-contact-details p {
        padding-top: 0px;
    }
    
    .icon-module
    {
            display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    }
    
    .icon-wrap .icon-module p {
        padding: 5px 0px;
    }
    
    
    .icon-wrap .icon-module {
        border-radius: 6px;
        padding: 15px;
    }
    
    
    .icon-wrap .icon-module:nth-child(2) {

    padding-left: 15px;
    padding-right: 15px;
}

.icon-wrap .icon-module:nth-child(2) {
    border-right: 1px solid #cccccc;
    border-left: 1px solid #cccccc;
}

.icon-wrap .icon-module:nth-child(3)
{
    border-right: 1px solid #cccccc;
}


    .icon-wrap .icon-module:nth-child(4) {
        border-left: 1px solid #cccccc;
    }

    
    .icon-module
    {
        border: 1px solid #cccccc;
    }
    
    .icon-wrap .icon-module:nth-child(4)
    {
        padding-left: 15px;
    }
    
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .fb-wrap,
  .google-wrap {
    padding: 5px 90px 5px 5px;
  }

  .feedback-section .mySwiper .swiper-slide {
    flex-direction: column;
  }

  .feedback-section .mySwiper .swiper-slide .review-content {
    margin-right: 25px;
  }

  .feedback-section .mySwiper .swiper-slide .review-content img {
    width: 25px;
  }

  .feedback-section .mySwiper .swiper-slide .review-content h6 {
    padding-top: 20px;
    text-align: center;
  }

  .feedback-section .mySwiper .swiper-slide .review-profile .review-profile-details {
    width: -moz-fit-content;
    width: fit-content;
  }

  .feedback-section .mySwiper .swiper-slide .review-profile .review-profile-img {
    width: -moz-fit-content;
    width: fit-content;
  }

  .feedback-section .mySwiper .swiper-slide .review-profile .review-profile-img img {
    width: 120px;
  }

  .feedback-section .mySwiper .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 25%;
  }
  
  .heroimgs img 
  
  {
      width: 100%;
  }
  
  .bestin-store-module .category-module-img
  {
      height: 300px !important;
  }
  
  .review-profile
  {
          display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .left-faq-module {
          padding: 30px 30px 0px 30px !important;
  }
  
      .left-faq-module div {
        width: 100%;
    }
    
    .left-faq-module h4 {
    font-size: 25px !important;
    }
    
    .left-faq-module
    {
        min-height: 300px !important;
    }
    
    .left-title-txt p {
    padding: 20px 0px 20px 0px;
} 

.left-arrow,
.right-arrow {
    display: none;
}

.left-title-txt p 
{
    margin-bottom: 10px;
}

 .description p
  {
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
  }
  
  .centered-txt p {
  padding: 15px 0px 0px 0px;
  width: 50%;
  margin: 0 auto 40px auto;
  font-size: 16px;
}

.banner-section .banner-wrap .banner-content h6
{
    font-size: 13px;
}

.category-module h6 {

    padding-top: 15px;
    font-size: 25px;
}


.bestin-store-module h6 {
    font-size: 22px !important;
}

.bestin-store-module p {
    font-size: 18px !important;
}

    .icon-wrap .icon-module span {
        font-size: 14px;
    }
    
        body, p {
        font-size: 16px;
    }

  
}

@media (max-width: 550px) {
        .icon-module {
        border: 1px solid #cccccc;
    }
  .gap-90-30 {
    gap: 25px;
  }

  .centered-txt p {
    margin-bottom: 30px;
  }

  .single-page-share {
    justify-content: flex-start;
  }

  .banner-section {
    padding: 45px 0px;
  }

  .banner-section .banner-wrap .banner-content h1 {
    font-size: 22px;
  }

  .banner-section .banner-wrap .banner-img {
    padding: 0px;
  }

  .icon-wrap {
    gap: 20px;
  }

  .fb-wrap,
  .google-wrap {
    padding: 5px 55px 5px 5px;
  }

  .search {
    width: 100%;
  }

  .privacy-container h1,
  .privacy-container h2,
  .privacy-container h3,
  .privacy-container h4,
  .privacy-container h5,
  .privacy-container h6 {
    margin-top: 20px;
  }

  .privacy-container p {
    margin-top: 10px;
  }

  .privacy-container .disc-style {
    margin-top: 10px;
    padding-left: 40px;
  }

  .privacy-container .disc-style li {
    margin-bottom: 5px;
  }

  .privacy-container .contact-policy {
    margin-top: 10px;
  }

  .privacy-container .contact-policy li {
    margin-bottom: 5px;
  }

  .notice {
    padding: 12px 15px;
  }

  .notice-icon {
    font-size: 16px;
    margin-right: 10px;
  }
}

@media (max-width: 500px) {
        .icon-module {
        border: 1px solid #cccccc;
    }
  .icon-wrap {
    grid-template-columns: 1fr 1fr;
  }

  .icon-wrap .icon-module {
    text-align: center;
  }

  /*.icon-wrap .icon-module:nth-child(2) {*/
  /*  border-bottom: 1px solid #b0b0b0;*/
  /*}*/

  .icon-wrap .icon-module:nth-child(2),
  .icon-wrap .icon-module:nth-child(4) {
    /*border-left: none;*/
    /*border-top: 1px solid #b0b0b0;*/
    /*margin: 20px 0px;*/
    /*padding: 20px 0px;*/
  }

  .icon-wrap .icon-module img {
    margin: 0 auto;
  }

  .error-wrap {
    width: 90%;
  }
}

@media (max-width: 450px) {
        .icon-module {
        border: 1px solid #cccccc;
    }
  .m-30 {
    margin: 0px !important;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .slidein-menu,
  .cart-dropdown {
    width: 100%;
  }

  .left-title-txt,
  .centered-txt p {
    width: 100%;
  }

  .left-faq-module {
    padding: 25px;
  }

  .left-faq-module .left-faq-img {
    width: 50%;
  }

  .mySwiper2 .swiper-button-prev {
    right: 50px;
  }

  .mySwiper2 .swiper-button-next,
  .mySwiper2 .swiper-button-prev {
    top: -20px;
  }

  .left-arrow svg,
  .right-arrow svg {
    width: 10px !important;
    padding: 6px 10px;
  }

  .grey-bg-section .quality-trust-module {
    width: 90%;
  }

  .grey-bg-section img {
    right: -80px;
    top: 0px;
  }

  .commitments-module .commitments-module-img {
    height: 50px;
    width: 50px;
  }

  .commitments-module .commitments-module-img img {
    width: 20px;
  }

  .login-form .form-title img {
    width: 25px;
  }

  .register-module h4 {
    padding-bottom: 15px;
  }

  .contact-form .flex {
    flex-direction: column;
    gap: 0;
  }

  .contact-module p {
    padding: 25px 0px 10px 0px;
  }

  .contact-module .contact-module-link a {
    height: 30px;
    width: 30px;
  }

  .page-links {
    margin-top: 40px;
  }

  .page-links li a {
    height: 25px;
    width: 25px;
  }

  .apply-box p {
    padding-top: 0px !important;
  }

  .single-page-left-module p,
  .single-page-left-module img,
  .single-page-left-module h5 {
    padding-top: 20px;
  }

  .grid-17-1 .login-form .flex {
    flex-direction: column;
    gap: 0;
  }

  .forget-password {
    width: 100%;
  }
}

@media (max-width: 400px) {
        .icon-module {
        border: 1px solid #cccccc;
    }

  .fb-wrap,
  .google-wrap {
    padding: 5px 35px 5px 5px;
  }

  .error-wrap {
    width: 100%;
  }
}

/*# sourceMappingURL=style.css.map */
/* Custom Pagination */
.custom-pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.custom-pagination {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
}

.custom-pagination li {
  display: inline-block;
}

.custom-pagination li a,
.custom-pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  color: #3d3d3d;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.custom-pagination li a:hover {
  background-color: #4777c9;
  color: #fff;
  border-color: #4777c9;
}

.custom-pagination li.active span {
  background-color: #4777c9;
  color: #fff;
  border-color: #4777c9;
}

.custom-pagination li.disabled span {
  color: #ccc;
  cursor: not-allowed;
  background-color: #f9f9f9;
}


/* Improved Product Card */
.bestin-store-module {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bestin-store-module:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  /*border-color: #4777c9;*/
    border-color: #447b2a;
}

.bestin-store-module .category-module-img {
  display: block;
  margin-bottom: 15px;
  border-radius: 6px;
  overflow: hidden;
}

.bestin-store-module h6 {
  font-size: 20px;
  font-weight: 600;
  /*margin: 10px 0 5px;*/
  color: #3d3d3d;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bestin-store-module p {
  font-size: 17px;
  /*color: #4777c9;*/
  color: #00bf63;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Small Add to Cart Button */
.btn-sm {
  padding: 8px 15px;
  font-size: 14px;
  width: auto !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* Sidebar Overlay */
.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  /* Below sidebar (z-index 2) */
  cursor: pointer;
}

.sidebar-overlay.active {
  display: block;
}


/* Updated Product Card for Full Width Image */
.bestin-store-module {
  padding: 0;
  /* Remove padding from main container */
  overflow: hidden;
  /* Ensure image doesn't overflow rounded corners */
}

.bestin-store-module .category-module-img {
  margin-bottom: 0;
  /* Remove bottom margin */
  border-radius: 0;
  /* Remove inner border radius if any */
  width: 100%;
  height: 200px;
  /* Fixed height for consistency */
  display: block;
}

.bestin-store-module .category-module-img img {
  width: 100%;
  height: 100%;
  /*object-fit: cover;*/
   object-fit: contain; /* Changed from cover to contain */
  /*background: #f6f6f6;*/
  /* Fill the box */
}

.bestin-store-module .product-content {
  padding: 15px;
  /* Add padding to content */
}

.bestin-store-module .hover-module {
  top: 10px;
  right: 10px;
}


/* Custom Filter Sidebar Styling */
.all-category-sidebar {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.all-category-sidebar h6 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.all-category-sidebar h6::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #4777c9;
}

.category-checkbox-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-checkbox-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.category-checkbox-list li:last-child {
  margin-bottom: 0;
}

/* Custom Checkbox */
.category-filter,
.brand-filter {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 4px;
  margin-right: 10px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.category-filter:checked,
.brand-filter:checked {
  background-color: #4777c9;
  border-color: #4777c9;
}

.category-filter:checked::after,
.brand-filter:checked::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: white;
  font-size: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.category-checkbox-list label {
  font-size: 15px;
  color: #555;
  cursor: pointer;
  transition: color 0.2s ease;
}

.category-checkbox-list li:hover label {
  color: #4777c9;
}

/* Price Slider Refinements */
.range-slider {
  margin-top: 10px;
}

.range-value input {
  border: none;
  background: transparent;
  font-weight: 600;
  color: #4777c9;
  font-size: 15px;
  width: 100%;
  margin-top: 10px;
}


/* Fix Overlay Z-Index */
.sidebar-overlay {
  z-index: 998;
  /* Below sidebar but above content */
}

.cart-dropdown {
  z-index: 999;
  /* Above overlay */
}


/* Fix Overlay Z-Index (Ensure sidebar is on top) */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998 !important;
  /* High z-index */
  display: none;
}

.sidebar-overlay.active {
  display: block;
}

.cart-dropdown {
  z-index: 9999 !important;
  /* Higher than overlay */
}


/* User Dropdown */
.user-menu-group {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.user-dropdown-menu {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  margin-top: 0;
  width: 160px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 100;
  border: 1px solid #f0f0f0;
  overflow: hidden;
}

.user-menu-group:hover .user-dropdown-menu {
  display: block;
}

.user-dropdown-menu a,
.user-dropdown-menu button {
  display: block;
  width: 100%;
  padding: 10px 15px;
  text-align: left;
  font-size: 14px;
  color: #333;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.user-dropdown-menu a:hover,
.user-dropdown-menu button:hover {
  background-color: #f5f5f5;
 
  /*color: #4777c9;*/
  color: #00bf63;
}


/* Custom Dropdown CSS */
.nav-contentsdiff {
  position: relative;
}

.nav-contentsdiff:hover .dropdownmenu {
  margin-top: 0px;
  /* Removed gap */
  opacity: 1;
  z-index: 99;
  visibility: visible;
}

.nav-contentsdiff .dropdownmenu {
  position: absolute;
  left: 50%;
  /* Center relative to parent */
  transform: translateX(-50%);
  /* Center relative to parent */
  top: 100%;
  padding: 15px;
  background: #fff;
  box-shadow: 0px 4px 32px 0px rgba(0, 0, 0, 0.2);
  min-width: 250px !important;
  /* Force width */
  width: 250px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
  list-style: none;
  z-index: 100;
}

.nav-contentsdiff .dropdownmenu li {
  position: relative;
  padding-bottom: 0;
  /* Reset padding */
  margin-bottom: 10px;
}

.nav-contentsdiff .dropdownmenu li:last-child {
  margin-bottom: 0;
}

.nav-contentsdiff .dropdownmenu li a {
  font-size: 14px;
  color: #3d3d3d;
  transition: all 0.3s ease-in-out;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
  /* Add padding to links */
  border-radius: 4px;
}

.nav-contentsdiff .dropdownmenu li a:hover {
  /*color: #4777c9;*/
  color:#00bf63 !important;
  background-color: #f9f9f9;
}

.nav-contentsdiff .dropdownmenu li .submenu {
  position: absolute;
  left: 100%;
  /* To the right */
  top: 0;
  margin-left: 0px;
  /* Removed gap */
  padding: 15px;
  background: #fff;
  box-shadow: 0px 4px 32px 0px rgba(0, 0, 0, 0.2);
  min-width: 250px !important;
  /* Force width */
  width: 250px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
  list-style: none;
  z-index: 101;
}

.nav-contentsdiff .dropdownmenu li:hover .submenu {
  opacity: 1;
  visibility: visible;
  top: 0;
}

.nav-contentsdiff .dropdownmenu li .submenu li {
  margin-bottom: 10px;
}

.nav-contentsdiff .dropdownmenu li .submenu li:last-child {
  margin-bottom: 0;
}

.nav-contentsdiff .dropdownmenu li .submenu li a {
  font-size: 14px;
  color: #3d3d3d;
  transition: all 0.3s ease-in-out;
  display: block;
  padding: 5px 10px;
}

.nav-contentsdiff .dropdownmenu li .submenu li a:hover {
  color: #4777c9;
  background-color: #f9f9f9;
}

/* FAQ Section Base Styles */
.left-faq-module {
  background-color: #FBF9D5;
  border-radius: 20px;
  padding: 60px 50px 0px 50px;
  position: relative;
  /* overflow: hidden; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 600px;
}

.left-faq-module h4 {
  font-size: 42px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 30px;
  line-height: 1.2;
  max-width: 100%;
}

.left-faq-module p {
  font-size: 18px;
  color: #4A4A4A;
  margin-bottom: 15px;
  font-weight: 500;
}

.left-faq-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-top: 20px;
  display: block;
  vertical-align: bottom;
}

/* Sticky Sidebar */
/* Sticky Sidebar - Desktop Only */
@media (min-width: 992px) {
  .all-category-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
  }
}

/* Processing Overlay */
.processing-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.processing-overlay .spinner {
  border: 5px solid rgba(255, 255, 255, 0.1);
  border-top: 5px solid #4777c9;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.processing-overlay p {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.5px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.form-error {
  color: #ea181e;
  /* Red color */
  font-size: 13px;
  /* Small font */
  margin-top: 5px;
  display: block;
  font-weight: 500;
}


/* Portfolio Split Layout Start (Investor Inspired) */
.pfolio_split-section {
  background-color: #f8faff;
}
.pfolio_intro {
  max-width: 700px;
  margin: 15px auto 0;
  color: #666;
}
.pfolio_split-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.pfolio_split-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.05);
  display: flex;
  overflow: hidden;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}
.pfolio_split-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border-color: #4777c9;
}
.pfolio_split-sidebar {
  width: 250px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid #f2f2f2;
  flex-shrink: 0;
}
.pfolio_split-sidebar:only-child {
  width: 100%;
  border-right: none;
}
.pfolio_logo-wrapper {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #f9f9f9;
}
.pfolio_logo-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.pfolio_no-logo {
  font-size: 40px;
  font-weight: 800;
  color: #4777c9;
  opacity: 0.2;
}
.pfolio_split-name {
  font-size: 19px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.2;
}
.pfolio_split-action {
  width: 100%;
  margin-top: auto;
}
.pfolio_action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 10px;
  background: #111;
  color: #fff !important;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.pfolio_action-btn:hover {
  background: #4777c9;
}
.pfolio_split-content {
  flex: 1;
  padding: 30px;
  background: #fbfbfc;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center content vertically */
}
.pfolio_split-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}
.pfolio_split-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pfolio_has-desc .pfolio_split-contacts {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px dashed #ddd; /* Only show border if description exists */
}
.pfolio_contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  color: #000; /* Set text color to black */
}
.pfolio_contact-item i {
  color: #4777c9;
  margin-top: 3px;
  font-size: 18px; /* Increased icon size */
  width: 20px;
  text-align: center;
}
.pfolio_contact-item a {
  color: #000; /* Set link color to black */
  font-weight: 500;
}
.pfolio_contact-item a:hover {
  text-decoration: underline;
}

@media (max-width: 1200px) {
  .pfolio_split-sidebar {
    width: 200px;
  }
}
@media (max-width: 991px) {
  .pfolio_split-grid {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: 40px auto 0;
  }
}
@media (max-width: 600px) {
  .pfolio_split-card {
    flex-direction: column;
  }
  .pfolio_split-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #f2f2f2;
    padding: 35px 20px;
  }
  .pfolio_split-content {
    padding: 30px 20px;
  }
}
/* Portfolio Split Layout End */

