:root {
  --color-primary:#F8E362;  
  --color-dark: #000; 
  --color-white: #ffffff;
  --color-secondary:#D13E48;
}
/* Reset & base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style-type: none;
}

body {
  margin: 0;
  padding: 0;
  color: var(--color-dark);
 font-family: "Plus Jakarta Sans", sans-serif;
  background-color:#EFEFEF;
}

a, a:hover, a:focus {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.container{
	padding-left:21px;
	padding-right:21px;
}
.banner-text-mobile {
    padding-top: 40px;
	padding-bottom:20px;
}
.banner-text-mobile h1{
	font-weight:800;
	font-size:24px;
}
.banner-text-mobile p{
	font-weight:400;
	font-size:18px;
}
.bg-transparent{
	background:transparent;
}
.connection-innner {
    background: #fff;
    padding: 14px 20px;
    border-radius: 10px;
}
.connection-innner {
    font-size: 12px;
    font-weight: 700;
}
.active-connection{
	color:#919191;
}
.connection-banner {
    margin-bottom: 20px;
}
.carousel-control-prev ,.carousel-control-next{
    display:none;
}

.custom-indicators {
  bottom: -40px;
}

.custom-indicators button {
  width: 7px!important;
  height: 7px!important;
  border-radius: 50%;
  background-color: #D9D9D9!important;
  border: none;
  margin: 0 5px;
  opacity: 1;
  transition: background-color 0.3s, opacity 0.3s;
}

.custom-indicators button.active,
.custom-indicators button:hover {
  background-color: #000!important;
  opacity: 1;
}

.tabs-lpg-cstm .nav-link {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    display: flex;
    width: 100%;
    justify-content: center;
}
.tabs-lpg-cstm .nav-tabs .nav-link.active {
    background:var(--color-primary);
    color: #000;
}
.tabs-lpg-cstm .nav-tabs .nav-link {
    border: 2px solid var(--color-primary);
    padding-left: 12px;
    padding-right: 12px;
}
.tabs-lpg-cstm {
    padding-top: 30px;
}
.tabs-lpg-cstm .nav-tabs li:first-child .nav-link{
	border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
	 border-top-right-radius: 0px;
    border-bottom-right-radius:0px;
}
.tabs-lpg-cstm .nav-tabs li:last-child .nav-link{
	border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
	border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/** product section css start **/

.product-card {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 31px 17px;
	margin-bottom:14px;
}
.product-desc h4 a {
    color: var(--color-dark);
    font-size: 18px;
}
.product-desc h4 {
    line-height: 1.4;
    font-size: 18px;
}
.bottom-info .price {
    color: var(--color-dark);
    line-height: 1.4;
    font-weight: 700;
}
.add-cart {
    border: 2px solid var(--color-secondary);
    font-size: 12px;
    font-weight: 700;
    color: var(--color-secondary);
	display:inline-flex;
	padding:7px 14px;
	border-radius:10px;
}
.add-cart:hover {
    border: 2px solid var(--color-secondary);
    background:var(--color-secondary);
    color: var(--color-white);
}
.product_type_simple{
    border: 2px solid var(--color-secondary);
    font-size: 12px;
    font-weight: 700;
    color: var(--color-secondary);
	display:inline-flex;
	padding:7px 14px;
	border-radius:10px;
}
.product_type_simple:hover {
    border: 2px solid var(--color-secondary);
    background:var(--color-secondary);
    color: var(--color-white);
}
.product-image {
    justify-content: center;
    display: flex;
    margin-bottom: 16px;
    min-height: 110px;
    align-items: center;
}
.row>* {
    --bs-gutter-x:14px;
}
.nav-tabs {
    border-bottom: 0;
}
.heading-with-line-left {
  display: flex;
  align-items: center;
  margin:21px 0 16px;
}

.heading-with-line-left h2 {
    margin: 0;
    padding-right: 20px;
    font-size:18px;
    white-space: nowrap;
    font-weight: 400;
}

.heading-with-line-left::after {
  content: "";
  flex: 1;
  height: 2px;
  background-color: #D9D9D9;
}
.list-with-icon {
    padding: 0;
    margin-bottom: 0;
}
.list-with-icon li {
    display:flex;
    gap: 8px;
	 align-items: center;
}
.list-with-icon li:not(:last-child) {
    margin-bottom: 14px;   
}
.list-with-icon li img {
    width: 30px;
}
.list-with-icon span {
    font-size: 16px;
}
.main-footer h2 {
    font-weight: 400;
	font-size:18px;
}
.main-footer {
    padding-top: 20px;
	padding-bottom: 20px;
}
section.tabs-lpg-cstm ul {
    justify-content: center;
}
.tabs-lpg-cstm .nav-tabs li .nav-link{
	min-width:280px;
}
    .bottom-nav {
       display:none!important;
    }
span.cart-icon {
    display: inline-flex;
    width: 35px;
    height: 35px;
    background: #D9D9D9;
    border-radius: 50px;
    justify-content: center;
    align-items: center;
}
span.cart-icon img {
    width: 18px;
}
span.cart-count {
    display: inline-flex;
    background: #D13E48;
    color: #fff;
    width: 18px;
    height: 18px;
    justify-content: center;
    border-radius: 50px;
    margin-right: 8px;
    top: -5px;
    position: relative;
	font-size:12px;
}
.footer-right-col {
    padding-left: 30px;
}
.main-header .navbar-brand img {
    max-width: 250px;
}
.home-banner .carousel-item img {
    border-radius: 10px;
}
.main-header .navbar-nav .nav-link path {
    stroke:var(--color-dark);
}
.main-header .navbar-nav .nav-link.active path ,.main-header .navbar-nav .nav-link:hover path{
    stroke: var(--color-secondary);
}
.main-header .navbar-nav .nav-link svg {
    margin-right: 5px;
}
.main-header .navbar-nav .nav-link {
    padding-left: 20px;
    padding-right: 20px;
    display: inline-flex;
    align-items: center;
}
.main-header .navbar-nav .nav-link:hover{
	color:var(--color-secondary);
}
.tabs-lpg-cstm .nav-tabs .nav-link:hover {
    background: var(--color-primary);
}
.footer-bottom {    background-color: #fff;    padding: 1rem;   margin-top: 2rem;     border-block: 1px solid #ccc;}
.footer-bottom ul li {   list-style: none;     transition: all 0.5s;     padding-right: 10px;}
.footer-bottom ul {    display: flex;    flex-wrap: wrap;   justify-content: space-between;     margin-bottom: 0.5rem;}
.footer-bottom ul li a {   color: #000;}
.footer-bottom ul li:hover {   padding-left: 10px;}

.footer-bottom ul li:hover {    padding-left: 10px;   padding-right: 0;}
.footer-bottom ul li:hover a {   color: #d13e48;}

header.main-header li.nav-item {   list-style: none;}

@media (max-width:991px){
	.footer-right-col {
		padding-left:20px;
	}
	.tabs-lpg-cstm li {
	   width:50%;
	}
	body{
		font-size:16px;
	}
	.product-desc h4 a, .product-desc h4{
		font-size: 16px;
		min-height: 30px;
	}
	.tabs-lpg-cstm .nav-link ,.heading-with-line-left h2{
		font-size: 16px;
	}
	.tabs-lpg-cstm .nav-tabs li .nav-link{
		min-width:auto;
	}
	
	 body {
      padding-bottom: 80px; /* Space for nav */
    }

    .bottom-nav {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color:#EFEFEF;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
      z-index: 1030;
	  display:flex!important;
	  padding:25px 21px!important;
	  gap: 10px;
    }

    .bottom-nav .nav-item {
      text-align: center;
      flex: 1;
    }

    .bottom-nav .nav-link.active ,.bottom-nav .nav-link:hover{
		color:var(--color-secondary);
		background: #D9D9D9;
		border-radius: 10px;
		font-weight: 700;
	}

    .bottom-nav svg {
      margin-right:6px;
    }
	.bottom-nav .nav-link.active svg path{
		stroke:#d9534f;
	}
	.main-header .navbar-brand img {
		max-width:220px;
	}
	.main-footer {
		padding-bottom: 50px;
	}
	.bottom-nav .nav-link {
		color: #000;
		font-size: 12px;
		padding-left: 10px;
		padding-right: 10px;
	}
}

@media (max-width:767px){
	.tabs-lpg-cstm li {
	   width:50%;
	}
	.list-with-icon span ,body{
		font-size:14px;
	}
	.product-desc h4 a, .product-desc h4{
		font-size: 14px;
		min-height: 30px;
	}
	.tabs-lpg-cstm .nav-link ,.heading-with-line-left h2{
		font-size: 14px;
	}
	.main-header .navbar-brand img {
		max-width: 190px;
	}
}

@media (max-width:575px){
	.list-with-icon span ,body{
		font-size:12px;
	}
	.product-desc h4 a, .product-desc h4{
		font-size: 12px;
		min-height: 30px;
	}
	.tabs-lpg-cstm .nav-link ,.heading-with-line-left h2{
		font-size: 12px;
	}
	.tabs-lpg-cstm .nav-tabs li .nav-link{
		min-width:auto;
	}
	.main-header .navbar-brand img {
		max-width: 170px;
	}
	.footer-right-col {
		padding-left: 10px;
		padding-top: 15px;
	}
}
@media (max-width:370px){
	.tabs-lpg-cstm li {
		width: max-content;
	}
   .tabs-lpg-cstm .nav-tabs .nav-link {
		padding-left: 12px;
		padding-right: 12px;
	}
	.tabs-lpg-cstm .nav-link, .heading-with-line-left h2 {
		font-size: 11px;
	}
	.container , .bottom-nav{
		padding-left: 15px!important;
		padding-right: 15px!important;
	}
	.bottom-nav {
		gap: 6px;
	}
	
}
@media (max-width:350px){
	.bottom-nav .nav-link {
		font-size: 11px;
		padding-left: 7px;
		padding-right: 7px;
	}
}
ul, ol{
	padding-left:0;
	
}

.wc-block-cart__submit-button{
border:1px solid #FFFF00!important;
background:#FFFF00!important;
color:#000!important;
font-weight:bold!important;
}

.woocommerce-product-gallery {
display:none!important;

}
.product .entry-summary{


}