@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Questrial&display=swap');

*{padding: 0;margin: 0;box-sizing: border-box;text-decoration: none;}
ul{list-style: none;margin: 0;padding: 0;}
:root{
    --primarycolor:#2E6A47;
    --secondary-color:#0B5028;
    --light-green:#00A143;
    --dark-gray:#eaeaea;
    --playfair:"Playfair Display",serif;
    --ss:sans-serif;
}
.sans-serif{
    font-family: var(--ss);
}
.fixed-btns .fixed-btn
{
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    width: 45px;
    font-size: 1.75rem;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    background: var(--primarycolor);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
}
.fixed-btns .fixed-btn a{
    color: inherit;
}
.fixed-btns .fixed-btn.bottomtotop
{
    left: auto;
    right: 1rem;
    transition: 0.5s;
    opacity: 0;
    pointer-events: none;
}
.fixed-btns .fixed-btn.bottomtotop.active{
    opacity: 1;
    pointer-events: all;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.playfair{
    font-family: var(--playfair);
}
.section-heading
{
    position: relative;
    font-family: "Playfair Display", serif;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}
.section-heading::before{
    position: absolute;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 8px;
    border: 2px solid var(--primarycolor);
    z-index: 0;
}
.section-heading.noline::before{
    display: none;
}
.section-heading.noline :is(h1,h2,h3,h4,h5,h6){
    background: transparent;
}
.section-heading :is(h1,h2,h3,h4,h5,h6){
    font-size: 40px;
    font-weight: 700;
    text-transform: capitalize;
    padding:0 0.5rem;
    background: #fff;
    margin: 0;
    z-index: 2;
}
.button_menu{
    min-width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    background: transparent;
}
.fa-bars{
    font-size: 20px;
    color: var(--secondary-color);
}
.search_bar{
    height: 45px;
    width: 100%;
    border: 1px solid #B0B0B0;
    border-radius: 50px;
    padding: 10px 15px;
    font-family: "Inter", serif; 
    color: #717171;
    font-size: 15px;
    font-weight: 500;
}
.search-form{
    position: relative;
}
.search-form button{
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    right: 15px;
    background-color: transparent;
    border: none;
    outline: none;
}
.social_media_icon a{
    font-size: 23px;
    color: black !important;
    margin-right: 20px;
}
.social_media_icon .cart-count
{
    position: relative;
    display: inline;
    text-decoration: none;
}
.social_media_icon .cart-count .icon-header-noti{
    position: absolute;
    top: -4px;
    right: -4px;
    background: #000;
    color: #fff;
    width: 18px;
    aspect-ratio: 1;
    font-size: 12px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.nevbar{
    border: 2px solid #e1e1e1;
    margin-top: 08px;
}
.navbar_con{
    padding: 10px 15px;
    gap: 20px;
    list-style: none;
    font-family: "Playfair Display", serif;
    text-decoration: none;
    flex-wrap: wrap;
}
.nev_all > a{
    border: 1px solid #767676;
    border-radius: 10px;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    color: #505050 !important;
    font-weight: 500;
    padding: 10px 30px;
    text-decoration: none;
}
.nev_all:hover .drop_con{
    display: block;
    z-index: 3;
    
}
.nev_content a{
    color: #505050;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}
.nev_content{
    position: relative;
}
.nev_content::before{
    position: absolute;
    content: "";
    width: 100%;
    bottom: 0;
    height: 4px;
    background-color: #2E6A47;
    border-radius: 4px 4px 0 0;
    opacity: 0;
    bottom: -5px;
    transition: 0.4s;
}
.nev_content:hover::before,
.nev_content.active:before
{
    opacity: 1;
    bottom: 0;
}
.nev_content:hover > a,
.nev_content.active > a
{
    color: #2E6A47;  
}
.drop_con{
    list-style: none;
    width: 231px;
    background-color: white;
    box-shadow: 0 0 3px 0;
    border-radius: 10px;
    padding: 10px 15px;
    margin-top: 13px;
    overflow: hidden;
    display: none;
    position: absolute;
    }
.drop_content{
    /* margin-bottom: 10px; */
}
.drop_content > a{
    text-decoration: none;
    width: 100%;
    display: inline-block;
    color: black;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 20px;
    padding: 5px 10px;
}
.drop_content > a:hover{
    background-color: #E1FFEE;
}
/* .drop_content > a > i{
    transform: t();
} */
.drop_content > a:hover i{
    transform: translatex(20px);
    transition: 0.4s;
}
.call_number{
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
}
.call_number > a{
    text-decoration: none;   
}
.number{
    color: #505050;
    font-family: "Inter", serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-right: 15px;
}
.call_number > a > i{
    font-size: 20px;
    margin-right: 10px;
    color: black;
    
}
#sidebarmenu
{
    font-family: "Playfair Display", serif;
} 
#sidebarmenu .offcanvas-header
{
    flex-direction: column;
    align-items: start;
}
#sidebarmenu .offcanvas-header button.btn-close{
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0;
    margin: 0;
}
#sidebarmenu .search-form input
{
    background: var(--dark-gray);
    border-radius: 10px;
    border: 1px solid #dadada;
}
#sidebarmenu .offcanvas-body
{
    background: linear-gradient(45deg, #008E47D9, #008E47D9), url(../img/sidebarbg.png);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 3rem;
}
#sidebarmenu .offcanvas-body ul
{
    padding: 0;
    list-style: none;
}
#sidebarmenu .offcanvas-body ul a
{
    color: #fff;
    text-decoration: none;
    padding: 0.15rem 0;
    font-size: 20px;
    display: inline-block;
}
#sidebarmenu .offcanvas-body .social-link
{
    position: relative;
    margin: 0.25rem 0 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
#sidebarmenu .offcanvas-body .social-link a
{
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 50%;
    width: 38px;
    aspect-ratio: 1;
    color: var(--primarycolor);
    background: #fff;
}
#sidebarmenu .offcanvas-body .social-link a:hover
{
    background: var(--primarycolor);
    color: #fff;
}

/* Slider */
.owl-carousel.home-banner .owl-nav button
{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    aspect-ratio: 1;
    background: #fff5;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.owl-carousel.home-banner .owl-nav button.owl-next{right: 1rem;}
.owl-carousel.home-banner .owl-nav button.owl-prev{left: 1rem;}


/* Category Section */
.category-section .category-grid
{
    position: relative;
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    font-family: "Playfair Display", serif;
}
.category-section .category-grid .category-grid-box
{
    position: relative;
    height: 378px;
    border-radius: 50px 50px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 1rem;
    color: #fff;
    background: var(--box-bg);
    background-repeat: no-repeat;
    text-transform: capitalize;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}
.category-section .category-grid .category-grid-box::before
{
    position: absolute;
    content: '';
    inset: 0;
    background: #0005;
    opacity: 0;
    backdrop-filter: blur(5px);
    transition: 0.8s;
}
.category-section .category-grid .category-grid-box:hover::before{opacity: 1;}
.category-section .category-grid .category-grid-box h4
{
    position: absolute;
    font-size: 30px;
    top: 50%;
    font-weight: 600;
    text-shadow: 0 0 #0f0;
    transform: translateY(-50%);
    transition: 0.8s;
}
.category-section .category-grid .category-grid-box:hover h4{
    top: 20%;
}
.category-section .category-grid .category-grid-box p
{
    font-size: 14px;
    font-weight: 7000;
    text-align: center;
    transform: scale(0);
    transition: 0.8s;
}
.category-section .category-grid .category-grid-box:hover p
{
    transform: scale(1);
}
.category-section .category-grid .category-grid-box a
{
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 53px;
    background: #11B966;
    color: #fff;
    font-family: Inter;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
    transition: 0.5s ease-out;
}
.category-section .category-grid .category-grid-box:hover a{bottom: 0;}

/* Product Card */
.product-card .card{position: relative;padding: 0.5rem;font-family: "Playfair Display", serif;overflow: hidden;}

.product-card .card:hover{box-shadow: 0 0 15px #0005;}
.product-card .card .imgBx{overflow: hidden;}
.product-card .card .imgBx img{aspect-ratio: 1;object-fit: contain;transition: 0.8s;width: 100%;}
.product-card .card:hover .imgBx img{transform: scale(1.1);}
.product-card .card .data {text-align: center;}
.product-card .card .data :is(p,h4){margin-bottom: 0;font-family: Playfair Display;font-weight: 600;}
.product-card .card .data p{color: #666666;font-size: 18px;}
.product-card .card .data h4{font-size: 22px;}
.product-card .card .data h4 a{color: #000;text-decoration: none;}
.product-card .card .data .price,.product-details .price{font-family: 'Inter';font-size: 18px;margin: 0.5rem 0;}
.product-card .card .data .price .mrp,.product-details .price .mrp{color: #666666;text-decoration: line-through;}

.product-details .price .mrp{color: #666666;text-decoration: line-through;}
.product-card .card .data .addtocart{background: #fff;width: 100%;border-radius: 50px;border:1px solid var(--secondary-color);font-weight: 700;font-size: 18px;padding: 0.5rem 0;transition: 0.8s;}
.product-card .card:hover .data .addtocart{background: var(--secondary-color);color: #fff;}
.product-card .card .data .fixed-btns{position: absolute;top: 0;right: 0;display: flex;flex-direction: column;gap: 0.25rem;padding: 0.5rem;}
.product-card .card .data .fixed-btns button{width: 35px;aspect-ratio: 1;border: 2px solid var(--secondary-color);background: #fff;color: var(--secondary-color);border-radius: 50%;}
.product-card .card .data .fixed-btns button:hover{-webkit-animation: shake-lr 0.7s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
animation: shake-lr 0.7s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;background: var(--secondary-color);color: #fff;}
.product-card .card .discount{
    position: absolute;
    width: 40px;
    height: 55px;
    left: 0.5rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: sans-serif;
    font-weight: 700;
    background: url(../img/svg-discount.svg);
    background-size: cover;
    background-repeat: no-repeat;
}
/* Product Card Varient */
.product-card.buy-now .card{position: relative;padding:0;font-family: "Playfair Display", serif;}
.product-card.buy-now .card .data .addtocart{background: var(--secondary-color);width: 100%;border-radius: 0;border:1px solid var(--secondary-color);font-weight: 700;font-size: 18px;padding: 0.5rem 0;transition: 0.8s;color: #fff;}

/* Product List Card */
.product-card.list-card .card{flex-direction: row;gap: 0.25rem;}
.product-card.list-card .card .imgBx{min-width: 140px;max-width: 150px;}
.product-card.list-card .card .product-name{padding-right: 37px;}

/* Quick View Card */
#quickview-sidebar .product-card .card{border: none;} 
#quickview-sidebar .product-card .card:hover{box-shadow: none;} 
#quickview-sidebar .product-card .card:hover button{background: #fff;color: #000;} 
#quickview-sidebar .product-card .card button:hover{background: var(--secondary-color);color: #fff;}

/* Prodtc Details */
.product-details .price{font-size: 22px;}
.product-details .price .sp{color: var(--primarycolor);}
.product-details .d-flex{justify-content: space-between;flex-wrap: wrap;}
.product-details .product button{display: block;width: 100%;height: 55px;background: #197A41;font-size: 20px;color: #fff;border-radius: 20px;border: none;margin-bottom: 1rem;}
.product-details .product button.buynowbtn{background: var(--secondary-color);}
.product-details .product-quantity .pd-pro-qty{display: flex;align-items: center;max-width: 320px;width: 100%;margin: 1rem 0;user-select: none;gap: 6px;}
.product-details .product-quantity .pd-pro-qty span{position: relative;min-width: 64px;aspect-ratio: 1;display: flex;justify-content: center;align-items: center;border: 2px solid var(--primarycolor);border-radius: 50%;color: var(--primarycolor);font-size: 1.25rem;cursor: pointer;}
.product-details .product-quantity .pd-pro-qty input{
    height: 64px;
    flex: 1;
    max-width: 70px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primarycolor);
    border: none;
}
.product-slider .owl-dots{display: flex;justify-content: center;gap: 0.25rem;padding: 1rem 0;}
.product-slider .owl-dots button{width: 15px;aspect-ratio: 1;border-radius: 50%;opacity: 0.7;border: 1px solid var(--light-green);}
.product-slider .owl-dots button.active{opacity: 1;transform: scale(1.09);background: var(--light-green);}
.pd-list li{margin-bottom: 1rem;border: 1px solid var(--primarycolor);border-left: 6px solid var(--primarycolor);padding:1rem 1.25rem;}
.pd-list .list-item{display: flex;align-items: center;flex-wrap: wrap;gap: 1rem;}

.owl-carousel.product-slider .item img{
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
}
@media (max-width:540px) {
    .product-card .card .data h4
    {font-size: 18px;display: -webkit-box;overflow: hidden;-webkit-line-clamp: 1;-webkit-box-orient: vertical;}

    .product-card .card .data p,
    .product-card .strars
    {font-size: 10px;}

    .product-card .card .data .price,
    .product-card .card .data .addtocart
    {font-size: 12px;}
    
    .product-card .card .data .fixed-btns button{width: 26px;aspect-ratio: 1;border: 1px solid var(--secondary-color);}
    .section-heading :is(h1,h2,h3,h4,h5,h6) {
        font-size: 29px;
        padding: 0 0.25rem;
    }
    .product-card.list-card .card{align-items: end;}
}


    @-webkit-keyframes shake-lr {
0%,
100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
}
10% {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
}
20%,
40%,
60% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
}
30%,
50%,
70% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
}
80% {
    -webkit-transform: rotate(-8deg);
            transform: rotate(-8deg);
}
90% {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
}
}
@keyframes shake-lr {
0%,
100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
}
10% {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
}
20%,
40%,
60% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
}
30%,
50%,
70% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
}
80% {
    -webkit-transform: rotate(-8deg);
            transform: rotate(-8deg);
}
90% {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
}
}
.feture-section .curated-slider{position: relative;}
.feture-section .curated-slider .owl-nav{display: flex;justify-content: center;align-items: center;gap: 0.5rem;padding: 0.5rem;}
.feture-section .curated-slider .owl-nav button{width: 30px;aspect-ratio: 1;color: var(--secondary-color);border: 3px solid var(--secondary-color);border-radius: 50%;}

/* Shop by Category */
.shop-by-category h3{font-family: "Playfair Display", serif;font-size: 40px;font-weight: 500;}
.shop-by-category-btns{display: flex;gap: 0.5rem;justify-content: center;flex-wrap: wrap;}
.shop-by-category-btns a{color: var(--secondary-color);font-weight: 600;font-size: 20px;font-family: "Playfair Display", serif;text-decoration: none;padding: 0 2rem;border: 1px solid var(--secondary-color);border-radius: 20px;height: 72px;display: flex;justify-content: center;align-items: center;transition: 0.8s;flex-grow: 1;}
.shop-by-category-btns a:is(:hover,:active,:focus){background: var(--secondary-color);color: #fff;}

@media (max-width:540px) {
    .shop-by-category-btns a{font-size: 12px;padding: 0 12px;height: 35px;}
    .shop-by-category h3{font-size: 25px;}
}

/* Testimonial Section */
.testimonial-section{position: relative;background: url(../img/testimonial.png);font-family: "Playfair Display", serif;background-repeat: no-repeat;background-size: cover;}
.testimonial-section h2{font-size: 52px;font-weight: 700;margin-top: 1rem;color: var(--secondary-color);}
.testimonial-section h2 span{color: #0f0;}
.testimonial-section .testmonial{padding-top: 25px;}
.testimonial-section .testmonial .card{position: relative;}
.testimonial-section .testmonial .card h4{font-size: 30px;font-weight: 500;color: var(--secondary-color);}
.testimonial-section .testmonial .card .quotes img{position: absolute;top: 0;right: 1.75rem;width: 50px;transform: translateY(-50%);}
.testimonial-section .testmonials .owl-dots{display: flex;justify-content: center;gap: 0.25rem;padding: 1rem 0;}
.testimonial-section .testmonials .owl-dots button{width: 20px;aspect-ratio: 1;background: var(--secondary-color);border-radius: 50%;opacity: 0.7;}
.testimonial-section .testmonials .owl-dots button.active{opacity: 1;transform: scale(1.09);}
.tech-section .card{display: flex;justify-content: center;align-items: center;}
.tech-section img{aspect-ratio: 1;}

@media (max-width:540px) {
    .testimonial-section h2{font-size: 35px;}
    .tech-section h2,.testimonial-section .testmonial .card h4{font-size: 18px;}
    .testimonial-section .strars{font-size: 10px;}
    .testimonial-section .card p{font-size: 14px;}
}

/* Certificate Section */
.certificate-section{background: url(../img/svg-certificate-bg.svg);background-size: 100%;}


/* FAQs */
.faq-section .faq-list{list-style: none;margin: 0;padding: 0;font-family: "Playfair Display",serif;}
.faq-section .faq-list li{margin-bottom: 1rem;}
.faq-section .faq-list li .question-box{background: var(--light-green);color: #fff;padding: 1rem;cursor: pointer;position: relative;padding-right: calc(2rem + 14px);width: 100%;user-select: none;}
.faq-section .faq-list li .question-box::before{content: '';position: absolute;width: 14px;height: 2px;background: #fff;right: 1rem;top: 50%;transform: translateX(-50%);}
.faq-section .faq-list li .question-box::after{content: '';position: absolute;width: 14px;height: 2px;background: #fff;right: 1rem;top: 50%;transform: translateX(-50%)rotate(90deg);transition: 0.6s;}
.faq-section .faq-list li:has(input:checked) .question-box::after{content: '';position: absolute;width: 14px;height: 2px;background: #fff;right: 1rem;top: 50%;transform: translateX(-50%)rotate(0deg);}
.faq-section .faq-list li .question-box h6{margin: 0;}
.faq-section .faq-list li .answer-box{padding: 1rem;border: 1px solid var(--light-green);transition: 0.6s;height: 0;overflow: hidden;padding: 0;}
.faq-section .faq-list li input{appearance: none;display: none;}
.faq-section .faq-list li:has(input:checked) .answer-box{height: auto;padding: 1rem;}


/* Most Viewd Section */
.most-view-section{background: url(../img/svg-most-viewed.svg);background-size: cover;background-repeat: no-repeat;}

/* Footer Style */
footer{font-family: "Playfair Display",serif;border-top: 1px solid var(--dark-gray);}
.footer-paragraph{font-size: 15px;font-weight: 400;padding: 0.5rem 0;}
.footer-social-link{gap: 1rem;}
.footer-social-link a{position: relative;width: 38px;aspect-ratio: 1;display: flex;justify-content: center;align-items: center;border: 1px solid var(--light-green);border-radius: 50%;color: var(--light-green);text-decoration: none;transition: 0.8s;}
.footer-social-link a:hover{background: var(--primarycolor);color: #fff;}

.footer-links h6{position: relative;font-size: 20px;font-weight: 600;padding: 0.25rem 0;}
.footer-links h6::before{position: absolute;bottom: 0;left: 0;width: 0;height: 5px;background: var(--secondary-color);content: '';border-radius: 3px;opacity: 0;transition: 0.5s;}
.footer-links h6:hover:before{width: 70px;opacity: 1;}
.footer-links ul li{margin-bottom: 0.25rem;}
.footer-links ul li a{font-size: 20px;font-weight: 400;color: #000;text-decoration: none;transition: 0.4s;}
.footer-links ul li a .fa-arrow-up-right-from-square{font-size: 12px;color: var(--secondary-color);position: relative;top: -2px;right: 1rem;opacity: 0;transition: 0.4s;}
.footer-links ul li a:hover:not(:has(.text-primary)){padding-left: 0.25rem;}
.footer-links ul li a:hover .fa-arrow-up-right-from-square{opacity: 1;right: 0;}

.upi-icn {
    position: relative;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}.upi-icn img, .upi-icn button, .upi-icn span, .upi-icn a {
    width: 100px;
    aspect-ratio: 2 / 1;
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid #6666;
    padding: 5px;
    background: #fff;
}
@media (max-width:540px) {
    .footer-links ul li a{font-size: 12px;}
    .footer-links ul li a .fa-arrow-up-right-from-square {top: 0;}
}


/* About Page */

/* About Banner */
.about-banner{position: relative;color: #fff;font-family: var(--playfair);}
.about-banner::before{position: absolute;inset: 0;background: #0007;content: '';}
.about-banner > div{position: absolute;top: 50%;transform: translateY(-50%);left: 3rem;}
.about-banner > div h2{font-size: 50px;font-weight: 700;}
.about-banner > div .about-link{font-size: 22px;display: flex;gap: 0.5rem;font-weight: 600;}
.about-banner > div a{color: #fff;}


@media(max-width:540px){
    .about-banner > div h2{font-size: 28px;}
    .about-banner > div{transform: translate(-50%,-50%);left: 50%;}
    .about-banner > div .about-link{font-size: 12px;}
}

/* About Progress */
.progress-bars .bar .bar-body
{
    position: relative;
    background: var(--dark-gray);
    width: 100%;
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
}
.progress-bars .bar .bar-body::before{
    position: absolute;
    content: attr(progress);
    text-align: center;
    color: #fff;
    height: 100%;
    background: var(--secondary-color);
    width: var(--progress);
    font-family: sans-serif;
    border-radius: 0 10px 10px 0;
}
.progress-bars .bar .bar-body.animated::before{
    animation: progress 1s ease-out forwards;
}
@keyframes progress{
    0%{width: 0;}
    100%{width: var(--progress);}
}

.breadcrumb{margin: 0;padding: 1rem 0;font-size: 20px;font-weight: 600;}
.breadcrumb a{text-decoration: none;color: #000;}
.breadcrumb .crumb{display: flex;flex-wrap: wrap;gap: 0.25rem;align-items: center;}

.gallery{position: relative;margin-bottom: 1rem;}
.gallery .gallery-box {position: relative;display: grid;gap: 1rem;grid-template-columns: repeat(3,1fr);}
.gallery .gallery-box img{aspect-ratio: 1;object-fit: contain;background: #008E4766;border-radius: 50px;padding: 1.5rem;}


/* FORM */
form .form-group
{
    position: relative;
    width: 100%;
    margin-bottom: 1.75rem;
}
form .form-group label
{
    position: absolute;
    top: -12px;
    text-transform: capitalize;
    left: 1rem;
    font-size: 15px;
    font-weight: 600;
    background: #fff;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}
form .form-group .showpassword{position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    width: 34px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
    cursor: pointer;}
form .form-group :is(input,textarea){position: relative;width: 100%;background: transparent;border: 1px solid var(--dark-gray);resize: none;padding: 1rem;border-radius: 10px;}
form .form-group :is(input:focus,textarea:focus,input:user-valid,textarea:user-valid){outline: none;box-shadow: 0px 2px 3px 0px #02743C;}
form .form-group :is(input:user-invalid,textarea:user-invalid){box-shadow: 0px 2px 3px 0px #740202;}
form .form-group :is(input){height: 55px;}
form .form-group label.paymentmodecheck {position: relative;top: 0;width: 100%;margin-bottom: 1rem;width: 100%;height: 100%;border: 1px solid var(--dark-gray);left: 0;height: 55px;cursor: pointer;border-radius: 10px;background: #000;color: #fff;}
form .form-group label.paymentmodecheck input{box-shadow: none;appearance: none;position: absolute;width: 0;border: none;}
form .form-group label.paymentmodecheck:has(input:checked) {background: var(--primarycolor);}

/* Filter CSS */
.filter button,.filter button:hover{
    border-color: var(--primarycolor);
}

.filter .category-dropbox label{padding: 0 00.5rem;font-size: 1.2rem;} 
.filter .category-dropbox label input{margin-right: 0.25rem;} 

.dropdown-menu.price-range input{padding: 0 0.4rem;
    border-radius: 15px;
    border: 1px solid #666;}


/* Cart Page */
.cart-table img{
    aspect-ratio: 1;
    object-fit: contain;
}
.cart-table .product-details .product-quantity .pd-pro-qty{margin: 0;}
.cart-table .product-details .product-quantity .pd-pro-qty span{min-width: 34px;}
.cart-table td.text-end span{width: 34px;aspect-ratio: 1;display: inline-flex;justify-content: center;align-items: center;border: 2px solid var(--primarycolor);border-radius: 50%;color: var(--primarycolor);font-size: 1.25rem;cursor: pointer;}
.cart-table .product-details .product-quantity .pd-pro-qty input{
    height: 34px;
    max-width: 45px;
}
