/* Font Link */
@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');

/* Root Var */
:root {

  /* Root Theme Color */
  --theme-color: #afdbf4;
  --theme-color-second: #e6f7ff;
  --theme-color-third: #7fd3ff;

  /* Root Font */
  --heading-font: "Poppins", sans-serif;
  --paragraph-font: "Poppins", sans-serif;
  /* --span-font: 'spanist'; */

  /* Root Shadow Css */
  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 10px 20px rgba(0, 0, 0, 0.2);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  outline: none;
  font-size: 16px;
  color: #1e1e1e;
  background-color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  font-family: var(--paragraph-font);
}

/* Font Face */
@font-face {
  font-family: "";
  src: url();
}

@font-face {
  font-family: "";
  src: url();
}

a {
  color: #0055f1;
  text-decoration: none;
  transition: all 0.5s;
}

a:hover {
  text-decoration: none;
  transition: all .6s;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 12px;
  color: inherit;
  font-family: var(--heading-font);
}

p {
  margin: 0;
  line-height: 27px;
  margin-bottom: 21px;
  font-size: 16px;
  font-family: var(--paragraph-font);
}

ul li {
  margin-bottom: 0px;
}

.img-fluid {
  display: block;
  width: 100%;
  max-width: 100%;
}

.li {
  display: inline-block;
  padding: 0px 5px;
}

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

h1 {
  font-size: 84px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

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

h3 {}

h4 {}

h5 {}

h6 {
  font-size: 19px;
}

.bg-cover {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.gap {
  margin-bottom: 30px;
}

section {
  padding: 80px 0px;
}

/* Back To Top */

@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


.m-backtotop {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: -50px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--theme-color);
/*   background: #56b77f; */
  border-radius: 25px;
  text-align: center;
  border: 2px solid var(--theme-color);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
}

.m-backtotop.active {
  bottom: 15px;
  opacity: 1;
}

.m-backtotop>div {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.m-backtotop>div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

.m-backtotop>div.text {
  font-size: 5px;
  font-size: 0.5rem;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Open Sans", sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}

.m-backtotop:hover {
  transform: scale(1.1);
  bottom: 20px;
  cursor: pointer;
  background: black;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover>div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}

.m-backtotop:hover>div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

/* Padding Top And Bottom */
.py-5 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.py-6 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.py-7 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.py-8 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.py-9 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.py-10 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.gap-p p {
  margin-bottom: 0px;
}

/* Form Css */

.form-control:focus {
  border-color: #ced4da;
  outline: 0;
  box-shadow: none;
}

input {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

textarea {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

select {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
  color: #c1c0bd;
}

/* Site Button */
.hd_info {
  display: flex;
  align-items: center;
  color: #fff;
}

a.comon-btn {
  background: var(--theme-color);
  color: #fff;
  display: inline-block;
  font-size: 16px;
  padding: 15px 0;
  border-radius: 7px;
  border: none;
  text-transform: capitalize;
  font-weight: 400;
  width: 240px;
  text-align: center;
}

a.comon-btn:hover {
  background: #121212;
  color: var(--theme-color-second);
}

a.comon-btn2 {
  background: var(--theme-color-third);
  color: #fff;
  display: inline-block;
  font-size: 16px;
  padding: 15px 0;
  border-radius: 7px;
  border: none;
  text-transform: capitalize;
  font-weight: 400;
  width: 240px;
  text-align: center;
}

a.comon-btn2:hover {
  background: #121212;
  color: var(--theme-color-second);
}

/* Sticky Top */
.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%
}

.sticky-top-1.sticky {
  background: #fff !important;
  z-index: 9999999999999;
}

/* Small Header */

.small {
  display: none;
}

.header_menu {
  background: #fff;
}

a.navbar-brand img {
  width: 200px;
}

.header_menu li a {
  color: #000;
  font-size: 15px;
  text-transform: capitalize;
  padding: 22px 23px;
  display: inline-block;
  padding-right: 0;
}

.header_menu li a:hover {
  color: var(--theme-color-second);
}

.navbar li:hover a {
  color: var(--theme-color-second);
}

.navbar li:hover .dropdown-menu {
  transition: .3s;
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: rotateX(0deg);
}

@media all and (min-width: 992px) {
  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar li .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
  }

  .navbar li:hover a {
    color: #56b77f;
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 180%;
  }

  .navbar li:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
}

ul.dropdown-menu.fade-up li a:hover {
  color: #fff !important;
  background: var(--theme-color-second);
}

#main_header ul.dropdown-menu.fade-up li:last-child {
  border-bottom: 0px;
}

#main_header ul.dropdown-menu.fade-up li {
  border-bottom: 1px solid #c1c0bd;
  margin: 0 0 0 0;
}

ul.dropdown-menu.fade-up li a {
  color: #000 !important;
  font-size: 14px;
  display: block;
  width: 100%;
  padding: 11px 12px;
}

ul.dropdown-menu.fade-up {
  border: none;
  background: #fff;
  padding: 0 0;
  min-width: inherit;
  width: 280px;
  border-radius: 0px;
}

.link-sm-2 i {
  top: -9px !important;
}

.link-sm-2 {
  position: relative;
}

.top_header .heading h4 {
  margin-bottom: 0;
  font-size: 15px;
  text-align: center;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.top_header {
  background-color: var(--theme-color);
  padding: 12px 0;
  color: #fff;
}

/* Banner section */
.banner_sec {
  padding: 180px 0;
  color: #000;
}

.banner_sec .hd_info {
  gap: 8px;
}

.banner_sec .text-content {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 11px;
}

.banner_sec .comon-btn {
  width: 215px !important;
}

.banner_sec {
  padding: 140px 0 160px;
  color: #000;
}



/* HOme SEction 1 */
.home_sec1 .content {
  box-shadow: #55b67e6f 3px 3px 15px;
  padding: 28px 20px;
  border-radius: 16px;
  height: 100%;
}

.home_sec1 .content p {
  font-size: 16px;
  color: #686868;
}

.home_sec1 h6 {
  font-size: 19px;
  margin: 12px 0 !important;
}


/* .home_sec1 .content2 {
  background: #f5f2ff !important;
} */

.home_sec1 .content img {
  width: 82px;
  margin-bottom: 12px;
}

/* Home SEction 2 */
.home_sec2 .content {
  position: relative;
}

.home_sec2 .content h6 {
  color: #fff;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 26px;
  border-bottom: 1px solid #fff;
  margin: 0 24px;
  padding-bottom: 7px;
  font-size: 19px;
}

.home_sec2 h5 {
  font-size: 21px;
}

/* ************ */

.home_sec3 a.comon-btn {
  width: 310px;
}

.home_sec3 {
  padding-bottom: 350px;
}

/* Footer */
footer {
  padding: 50px 0 30px;
}

footer h5 {
  font-size: 32px;
  margin-bottom: 12px;
  line-height: 1.3;
  font-weight: 600;
}

footer .btom_content .left_menu ul li {
  margin-bottom: 12px;
}

footer .right_menu h6 {
  margin-bottom: 14px;
  font-size: 22px;
}

footer .right_menu a {
  color: #000;
}

footer .right_menu ul li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

footer .right_menu ul li i {
  font-size: 18px;
  color: #56b77f;
}

footer .btom_content {
  margin-bottom: 96px;
}

footer .ft_content a img {
  width: 265px;
}

/* ************* */

.our-product .accordion-button:not(.collapsed) {
  color: var(--theme-color-third);
  background-color: var(--theme-color);

}

.our-product select {
  /* width: 18px; */
  padding: 14px;
  margin-top: 14px;
  outline: none;
  box-shadow: none;
}

.our-product .content-box {
  padding: 0 0;
  /* text-align: center; */
  margin-top: 14px;
}

.our-product .price h6 {
  font-size: 18px;
}

.our-product .product-name p {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.4;
}

.our-product .price {
  color: #ad3551;
}


.our-product.home-product.product-page.best-deal input {
  width: 16px;
}

.our-product.home-product.product-page.best-deal select {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
  color: #000;
}

.our-product .card {
  height: 100%;
  border: none !important;
  padding: 0 !important;
}

.our-product .card img {
/*   height: 260px; */               /*Resposible for product img in search/ category product pages*/
  object-fit: cover;
}

.our-product .in_stock {
  border: 1px solid var(--theme-color);
  color: var(--theme-color);
  display: inline-block;
  padding: 0px 10px;
  border-radius: 40px;
  font-weight: 500;
}

.our-product .in_stock.out-stock {
    border: 1px solid #ff4d4f;
    color: #ff4d4f;
}

/* ************* */
/* Search */
.header-search {
  position: relative;
  width: 270px;
  padding: 14px 12px;
  border-radius: 6px;
  border: none;
  background: #e9e9e9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-expand-lg .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
  gap: 18px;
}

.header-search input {
  width: 100%;
  outline: none;
  border: none;
  background: no-repeat;
}

.header-search button i {
  color: #555;
  font-size: 17px;
}

.header-search button {
  background: none;
  border: 0;
}

/* Right Buttons */
.header-right {
  display: flex;
  gap: 15px;
}

.login-btn i, .cart-btn i {
  text-decoration: none;
  background: #e9e9e9;
  border-radius: 6px;
  color: #555;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
}

.login-btn i,
.cart-btn i {
  font-size: 19px;
}

.login-btn, .cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #000;
}

/* *********** */

/* contact-info */
.contact_page .contact_shadoW {
  box-shadow: 1px 2px 15px 2px #9b9b9b91;
}

.contact_page .contact_details {
  background-color: #fff;
  padding: 30px;
  padding-top: 50px;
}

.contact_page .contact_details h3 {
  margin-bottom: 30px;
  font-size: 30px;
}

.contact_page .contact_details h4 {
  margin-bottom: 30px;
  font-size: 23px;
}

.contact_page .contact_details h5 i {
  margin-right: 9px;
  color: #fff;
  font-size: 22px;
  width: 45px !important;
  height: 45px !important;
  background: var(--theme-color-third);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
}

.contact_page .contact_details p a, .contact_page .contact_details p, .contact_page .contact_details li {
  color: #747474;
  font-size: 17px;
}

.contact_page .contact_details li {
  list-style: none;
  line-height: 27px;
}

.contact_page .contact_form {
  background-color: var(--theme-color);
  padding: 50px 25px;
  color: #fff;
  height: 100%;
}

.contact_page .contact_form h2 {
  text-align: center;
  margin-bottom: 35px;
}

.contact_page .contact_form input,
.contact_page .contact_form textarea {
  padding: 16px 18px;
  width: 100%;
  border-radius: 5px;
  border: none;
  outline: none;
}

.contact_page .contact_form button.comon-btn {
  background: var(--theme-color-third);
  color: #fff;
  display: inline-block;
  font-size: 16px;
  padding: 14px 0px;
  border-radius: 50px;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  border: none;
  transition: all .5s;
}

.contact_page .contact_form button.comon-btn:hover {
  background: #000;
  color: #fff;
}

.contact_page .contact_details h5 {
  margin-bottom: 22px;
  margin-top: 20px;
  font-size: 16px;
  color: #505050;
  display: flex;
  align-items: center;
}

.contact_page .contact_details h5 span {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1.4;
}

.contact_page .contact_details h5 a {
  color: var(--theme-color);
}

.inner_banner_sec h1 {
  font-size: 68px;
}

#our-product2 .card img {
  height: 375px;
  object-fit: cover;
}

/* mainak css */


.quantity-counter .value {
  border: 1px solid #adadad;
  border-radius: 3px;
  margin: 2px 0;
  padding: 4px;
  width: 50px;
  height: 50px;
  text-align: center;
  -moz-appearance: textfield;
}

.quantity-counter .value::-webkit-outer-spin-button, .quantity-counter .value::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity-counter .increment,
.quantity-counter .decrement {
  border: 1px solid #adadad;
  background: transparent;
  cursor: pointer;
  border-radius: 3px;
  background: var(--theme-color);
  color: #fff;
  height: 50px;
  width: 50px;
}

.quantity-counter .decrement {
  background-color: var(--theme-color-third);
}

.quantity-counter {
  gap: 10px;
}


.product-details .mySwiper2 img {
  height: 455px;
  object-fit: contain;
}

.product-details .mySwiper img {
  height: 105px;
  object-fit: contain;
}



.product-details .swiper-slide {
  border: 1px solid var(--theme-color);
}

.product-details .swiper-button-next::after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
  color: var(--theme-color);
}

.product-details .swiper-button-prev::after {
  color: var(--theme-color);
}

.product-details ul {
  list-style-type: disc;
  list-style-position: inside;
}

.product-details ul li {
  margin-bottom: 5px;
}

.product-details form {
  background-color: var(--theme-color-third);
  padding: 10px;
}

.product-details form select {
  border: none;
  color: #fff;
  padding: 0;
  background: transparent;
}

.product-details form select option {
  background-color: var(--theme-color-third);
}

.nab-info .nav-pills .nav-link.active {
  color: var(--bs-nav-pills-link-active-color);
  background-color: var(--theme-color);
}

.nab-info .nav-link {
  background-color: #000;
  color: #fff;
  width: 220px;
  padding: 15px;
  border-radius: 0;
}

.nab-info #pills-tab {
  gap: 18px;
  /* border-bottom: 1px solid aliceblue; */
  /* background: #000; */
  /* justify-content: center; */
  /* width: 63%; */
}

.nab-info #pills-tabContent {
  background: #1e1e1e;
  padding: 35px;
  color: #fff;
}

.nab-info #pills-tabContent ul {
  list-style: disc;
  padding-left: 15px;
}

.nab-info #pills-tabContent li {
  margin-bottom: 10px;
}

.nab-info table {
  border: 1px solid #ececec;
  border-color: #ececec;
  border-spacing: 0;
  margin-bottom: 1em;
  width: 100%;
}

.nab-info .bb {
  border-bottom: 1px solid #ececec;
  padding: 5px !important;

}

.nab-info th, .nab-info td {
  padding: 10px;
}

.nab-info .pv1 {
  border-right: 1px solid #e1e1e1;
}

/*24.03.2026*/
.wpcf7-form p { 
    margin-bottom: 0px;
margin-top: 0px;
}

.wpcf7-form br {
    display: none;
}

/*Filter and Search-Result*/
/* Hide result count */
p.woocommerce-result-count{
    display:none !important;
}

/* Place sorting below */
form.woocommerce-ordering{
    display:block;
    width:100%;
    margin:15px 0 20px;
}

/* Optional styling for select */
form.woocommerce-ordering select.orderby{
    width:298px !important;
    height:55px;
    padding:0 15px;
    border:1px solid #ccc;
    background:#fff;
}

/*25.03.2026*/
.product-details form.cart {
    background: none !important;
    padding: 0 !important;
}

.product-details form.cart,
.product-details form.cart.custom-cart-form {
    background: none !important;
    padding: 0 !important;
    margin-top: 20px;
}

.product-details .custom-add-to-cart-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: none !important;
    padding: 0;
}

.product-details .custom-qty-box {
    display: flex;
    align-items: center;
	gap: 10px;
}

.product-details .custom-qty-box .quantity {
    margin: 0 !important;
}

/* MINUS */
.product-details .qty-btn.qty-minus {
    background: #000 !important;
    color: #fff !important;
    width: 50px;
    height: 50px;
    border: 1px solid #adadad;
	border-radius: 4px !important; 
}

/* PLUS */
.product-details .qty-btn.qty-plus {
    background: var(--theme-color); !important;
    color: #fff !important;
    width: 50px;
    height: 50px;
    border: 1px solid #adadad;
	border-radius: 4px !important; 
}

.product-details .quantity input.qty {
    height: 50px;
	width: 50px;
	border-radius: 4px !important; 
    text-align: center !important;
    background: #fff;
}

/* RESET Woo default button color */
.product-details form.cart .single_add_to_cart_button.button.alt {
    background: var(--theme-color); !important;
    color: #fff !important;
    border: none !important;
    width: 240px;
    padding: 15px 0 !important;
    border-radius: 7px !important;
    font-weight: 400;
    text-transform: capitalize;
    box-shadow: none !important;
}

/* Hover */
.product-details form.cart .single_add_to_cart_button.button.alt:hover {
    background: #000 !important;
    transition: all 0.5s;
}

.product-details .stock { margin-bottom: 10px; }

.product-details .price { 
	color: #000 !important;
    display: flex;
    align-items: center;
    gap: 8px;
}
.product-details .price ins {
    text-decoration: none;
    font-weight: 700;
}
.product-details .price del {
    color: #e00;
    opacity: 1 !important;
}
/*To off the spinner*/
.product-details .custom-qty-box .quantity .qty::-webkit-inner-spin-button,
.product-details .custom-qty-box .quantity .qty::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

.product-details .custom-qty-box .quantity .qty {
    -moz-appearance: textfield !important;
}

/* for tabs */
.woocommerce div.product .woocommerce-tabs {
    padding: 0 !important;
    margin-top: 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    display: inline-flex;
    gap: 15px !important;
    padding: 0;
    margin-bottom: 15px !important;
    border-bottom: none !important;
    width: auto !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
    display: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 16px 40px !important;
    font-weight: 600;
    background: #222 !important;
    color: #fff !important;
    border-radius: 4px 4px 0 0 !important;
    text-align: center;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    background: #3dba6f !important;
}

/* PANEL */
.woocommerce div.product .woocommerce-tabs .woocommerce-Tabs-panel {
    background: #111 !important;
    color: #fff !important;
    padding: 25px !important;
    border-radius: 0 4px 4px 4px !important;
    margin-top: -1px !important; /* 🔥 key */
    border: none !important;
}

.woocommerce div.product .woocommerce-tabs .woocommerce-Tabs-panel h2 {
    display: none !important;
}

/*Related Products*/
.price .custom-loop-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 6px;
    font-size: 19px;
}

.price .custom-loop-price .sale-price {
    order: 1;
    color: #000 !important;
    font-weight: 400;
    text-decoration: none !important;
}

.price .custom-loop-price .sale-price .woocommerce-Price-amount {
    color: #000 !important;
}

.price .custom-loop-price .regular-price {
    order: 2;
    color: #e00 !important;
    opacity: 1 !important;
	font-weight: 400;
}

.price .custom-loop-price .regular-price .woocommerce-Price-amount {
    color: #e00 !important;
}

.price .custom-loop-price ins,
.price .custom-loop-price del {
    margin: 0;
}

/*For in Stock and Out of Stock for Related Products */
.in-stock {
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
    display: inline-block;
    padding: 2px 10px;
    border-radius: 40px;
    font-weight: 400;
	line-height: 1.2;
}

/*Search Bar css*/
.search-form {
    display: flex !important;
    align-items: center !important;
    background: #f5f5f5 !important;
    border-radius: 50px !important;
    padding: 6px 16px !important;
    border: 1px solid #e0e0e0 !important;
    gap: 8px !important;
}

.search-form label {
    width: 100% !important;
    margin: 0 !important;
}

input#search-form-1 {
    border: none !important;
    outline: none !important;
    width: 100% !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.search-form .search-submit {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    cursor: pointer !important;
    color: #555 !important;
    flex-shrink: 0 !important;
    font-size: 16px !important;
}

/* Pagination */

.pagination-box {
    width: 250px;
    margin: auto;
}

.woocommerce .woocommerce-ordering,
.woocommerce-page .woocommerce-ordering {
    float: none;
}

/* Base */
.pagination .page-link {
    font-family: var(--paragraph-font);
    color: var(--theme-color-third);
    border: 1px solid var(--theme-color-third) !important;
    padding: 8px 16px !important;
    margin: 0 3px !important;
    border-radius: 6px !important;
    background-color: #fff !important;
    text-decoration: none;
    display: inline-block;
    min-width: 48px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: none !important;
    outline: none !important;
}

/* Hover */
.pagination .page-link:hover {
    background-color: var(--theme-color-third) !important;
    color: #fff !important;
    border-color: var(--theme-color-third) !important;
}

/* Active */
.pagination .page-item.active .page-link {
    background-color: var(--theme-color) !important;
    border-color: var(--theme-color) !important;
    color: #fff !important;
    pointer-events: none;
}

/* Disabled */
.pagination .page-item.disabled .page-link {
    color: #999 !important;
    background-color: #f8f9fa !important;
    border-color: #dee2e6 !important;
    cursor: not-allowed;
    pointer-events: none;
}

/* Focus */
.pagination .page-link:focus {
    box-shadow: none !important;
    outline: none !important;
}

/* Prev / Next */
.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    font-weight: 500;
}

/*26.03.2026*/
/* For Search Result Pages */

/* product image */
.our-product .product-card > a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
}

.our-product .product-card img {
    width: 100%;
/*     aspect-ratio: 1 / 1; */
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

/* title */
.our-product .product-card h4 {
    margin: 10px 0 8px;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 400;
}

.our-product .product-card h4 a {
    color: #cd2653;
    text-decoration: none;
}

.our-product .product-card h4 a:hover {
    color: #e61e5c;
}

/* price block */
.our-product .product-price {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 6px;
    font-size: 19px;
    line-height: 1.2;
	color: #ad3551;
}

/* sale/new price */
.our-product .product-price ins {
    order: 1;
    text-decoration: none;
    background: transparent;
}

.our-product .product-price ins .woocommerce-Price-amount,
.our-product .product-price ins .woocommerce-Price-amount bdi {
    color: #000;
    font-weight: 400;
    text-decoration: none;
}

/* old/regular crossed price */
.our-product .product-price del {
    order: 2;
    opacity: 1;
    color: #ff3b30;
    text-decoration: line-through;
}

.our-product .product-price del .woocommerce-Price-amount,
.our-product .product-price del .woocommerce-Price-amount bdi {
    color: #ff3b30;
    font-weight: 400;
}

/* stock badge */
.our-product .in_stock {
    display: inline-block;
    padding: 2px 10px;
    border: 1px solid var(--theme-color);
    border-radius: 30px;
    color: var(--theme-color);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 400;
}

.our-product .outofstock {
    display: inline-block;
    padding: 2px 10px;
    border: 1px solid red;
    border-radius: 30px;
    color: red;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 400;
}

/*31.03.2026*/

a.checkout-button.button.alt.wc-forward {
    background-color: var(--theme-color);
}

a.checkout-button.button.alt.wc-forward:hover {
	background-color: #000;
	transition: all 0.5s;
}


button#place_order {
    background-color: var(--theme-color);
}

/*13.04.2026*/

.coa-hplc-download-btn:hover {
    background: #111;
    color: #fff !important;
}


/* Lab Report tab button */
.woocommerce-tabs ul.tabs li.lab_report_tab a {
    background: #a9d2eb;
    color: #fff !important;
    padding: 12px 32px;
    font-weight: 600;
}

/* Active + hover */
.woocommerce-tabs ul.tabs li.lab_report_tab.active a,
.woocommerce-tabs ul.tabs li.lab_report_tab a:hover {
    background: #111 !important;
    color: #fff !important;
}

/* Main custom tab wrapper */
.coa-hplc-tab-wrap {
    background: transparent !important;
    color: inherit !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Reset headings to browser defaults inside the tab */
.coa-hplc-content h1 {
    font-size: 2em !important;
    font-weight: bold !important;
    margin: 0.67em 0 !important;
    line-height: 1.2 !important;
}
.coa-hplc-content h2 {
    font-size: 1.5em !important;
    font-weight: bold !important;
    margin: 0.83em 0 !important;
    line-height: 1.3 !important;
}
.coa-hplc-content h3 {
    font-size: 1.17em !important;
    font-weight: bold !important;
    margin: 1em 0 !important;
    line-height: 1.4 !important;
}
.coa-hplc-content h4 {
    font-size: 1em !important;
    font-weight: bold !important;
    margin: 1.33em 0 !important;
    line-height: 1.4 !important;
}
.coa-hplc-content h5 {
    font-size: 0.83em !important;
    font-weight: bold !important;
    margin: 1.67em 0 !important;
    line-height: 1.4 !important;
}
.coa-hplc-content h6 {
    font-size: 0.67em !important;
    font-weight: bold !important;
    margin: 2.33em 0 !important;
    line-height: 1.4 !important;
}

/* Paragraph and inline elements */
.coa-hplc-content p {
    font-size: 1em !important;
    line-height: 1.6 !important;
    margin: 0 0 1em 0 !important;
    font-family: inherit !important;
    color: inherit !important;
    background: transparent !important;
}

.coa-hplc-content strong,
.coa-hplc-content b {
    font-weight: bold !important;
    font-size: inherit !important;
    color: inherit !important;
    background: transparent !important;
}

.coa-hplc-content em,
.coa-hplc-content i {
    font-style: italic !important;
    color: inherit !important;
}

.coa-hplc-content li {
    font-size: 1em !important;
    line-height: 1.6 !important;
    color: inherit !important;
    background: transparent !important;
}

.coa-hplc-content ul {
    list-style: disc !important;
    padding-left: 2em !important;
    margin: 0 0 1em 0 !important;
}

.coa-hplc-content ol {
    list-style: decimal !important;
    padding-left: 2em !important;
    margin: 0 0 1em 0 !important;
}

.coa-hplc-content span {
    font-size: inherit !important;
    color: inherit !important;
    background: transparent !important;
    font-family: inherit !important;
    line-height: inherit !important;
}

.coa-hplc-content a {
    color: #a9d2eb !important;
    font-size: inherit !important;
    background: transparent !important;
    text-decoration: underline !important;
}

.coa-hplc-content a:hover {
    color: #111 !important;
}

/* Fix long unbroken text */
.coa-hplc-content,
.coa-hplc-content p,
.coa-hplc-content li,
.coa-hplc-content span {
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
}

/* Image */
.coa-hplc-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 15px 0;
}

/* Download button */
.coa-hplc-download-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #a9d2eb;
    color: #fff !important;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
}

.coa-hplc-download-btn:hover {
    background: #111;
    color: #fff !important;
}

button.button {
    background-color: var(--theme-color) !important;
    color: #fff !important;
}

/*20.04.2026*/
/* Research use checkbox wrapper */
#research_confirm_field {
    width: 100%;
    margin: 18px 0 22px;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    clear: both;
}

/* Remove plugin/theme field wrapper styling */
#research_confirm_field .woocommerce-input-wrapper {
    display: block;
    width: 100%;
}

/* Main label */
#research_confirm_field label.checkbox {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    font-size: 14px;
    line-height: 1.7;
    color: #000;
    cursor: pointer;
}

/* Checkbox input */
#research_confirm_field input.input-checkbox,
#research_confirm_field input[type="checkbox"] {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px;
    margin: 4px 0 0 0 !important;
    position: relative;
    top: 0;
    flex: 0 0 16px;
}

/* Required star */
#research_confirm_field .required {
    color: var(--wc-red);
    margin-left: 4px;
}

/* Optional: if theme adds p field spacing */
.woocommerce form .form-row#research_confirm_field {
    padding: 0 !important;
}

/*25.04.2026*/
.site-disclaimer {
    background: var(--theme-color);
    color: #fff;
    text-align: center;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.pro-cat{
	list-style: disc;
	margin-left: 20px;
}

/*27.04.2026*/
/* ── Quantity Stepper ── */
div.quantity {
    display: inline-flex !important;
    align-items: stretch !important;
    gap: 0 !important;
}

/* Hide all spinners */
div.quantity input.qty::-webkit-outer-spin-button,
div.quantity input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}
div.quantity input.qty {
    -moz-appearance: textfield !important;
    appearance: textfield !important;
}

/* Input box */
div.quantity input.qty {
    width: 48px !important;
    height: 36px !important;
    text-align: center !important;
    border: 1px solid #dcd7ca !important;
    border-left: none !important;
    border-right: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #333 !important;
    background: #ffffff !important;
    box-shadow: none !important;
    outline: none !important;
    vertical-align: middle !important;
}

/* Shared button base — reset ALL theme overrides */
.qty-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    cursor: pointer !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    user-select: none !important;
    flex-shrink: 0 !important;
    text-decoration: none !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    transition: opacity 0.15s !important;
}

.qty-btn:hover  { opacity: 0.82 !important; }
.qty-btn:active { opacity: 0.65 !important; }

/* Minus — black */
.qty-btn.qty-minus {
    background: #1a1a1a !important;
    color: #ffffff !important;
    border-radius: 4px 0 0 4px !important;
}

/* Plus — light blue */
.qty-btn.qty-plus {
    background: var(--theme-color); !important;
    color: #1a1a1a !important;
    border-radius: 0 4px 4px 0 !important;
}