@import url('https://fonts.googleapis.com/css2?family=Rasa:ital,wght@0,300..700;1,300..700&display=swap');
:root{
    --primary-color:#942B2D;
    --secondary-color:#162936;
    --third-color:#3b5265;
    --fourth-color:#051824;
    --jost:"Rasa", serif;
    --lateef:"Lateef", serif;
    --ss:sans-serif;
    --default-transition:350ms;
    --white:#fff;
    --black:#212121;
}
*{padding: 0;margin: 0;box-sizing: border-box;text-decoration: none;font-family: var(--jost);}
.text-light{
    color: #aaa !important;
}
.text-semiprimary{
    color: #942b2d86 !important;
}
.bg-transparent{
    background: transparent;
}
.text-primary{
    color: var(--primary-color) !important;
}
.bg-primary{
    background: var(--primary-color) !important;
}
.text-secondary{
    color: var(--secondary-color) !important;
}
.bg-secondary{
    background: var(--secondary-color);
}
.text-third{
    color: var(--third-color) !important;
}
.bg-third{
    background: var(--third-color);
}
.text-fourth{
    color: var(--fourth-color) !important;
}
.bg-fourth{
    background: var(--fourth-color);
}
p{margin-bottom: 0;}
body{
    overflow-x: hidden !important;
    background: #fefefe;
}
ul{list-style: none;margin: 0;padding: 0;}
input:focus:not(input[type=checkbox]),
textarea:focus
{
    box-shadow: 3px 3px 0 0 var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}
input:focus:not(input[type=checkbox]):user-invalid,
textarea:user-invalid
{
    box-shadow: 3px 3px 0 0 var(--bs-danger);
    border-color: var(--bs-danger);
}
input:focus:not(input[type=checkbox]):user-valid,
textarea:user-valid
{
    box-shadow: 3px 3px 0 0 var(--bs-success);
    border-color: var(--bs-success) ;
}
table,.table{
    margin-bottom: 0 !important;
}
.sans-serif{
    font-family: var(--ss);
}
.jost{
    font-family: var(--jost);
}
.lateef{
    font-family: var(--lateef);
}
strong{
    font-family: inherit;
}
a{color: var(--secondary-color);text-decoration: none !important;}
a:hover{color: var(--hoversecondary);text-decoration: none !important;}
.min-h-100{
    min-height: 100dvh;
}

.btn
{
    border: 1px dashed var(--primary-color);
    padding: 10px 40px;
    color: var(--primary-color);
}
.btn:is(:hover,:focus,:active){
    background: var(--primary-color);
    color: var(--white);
}

/* HEADER CSS */
header .search_form
{
    position: relative;
    width: 100%;
}
header .search_form input
{
    position: relative;
    width: 100%;
    padding: 15px 50px;
    border-radius: 30px;
    background: transparent;
    outline: none;
    color:var(--white);
    border: 2px solid var(--white);
}
header .search_form input:is(:focus,:valid,:user-valid)
{
    border-color: white !important;
    box-shadow: none !important;
}
header .search_form input::placeholder{
    color: var(--white);
}
header .search_form svg
{
    position: absolute;
    top: 50%;
    left: 15px;
    width: 30px;
    aspect-ratio: 1;
    transform: translate(0,-50%);
}
header .search_form svg.mic{
    left: auto;
    right: 15px;
    cursor: pointer;
}
.header_social_icons
{
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.header_social_icons a{
    display: flex;
    justify-content: center;
    align-items: center;
    /* font-size: ; */
    width: 30px;
    aspect-ratio: 1;
    color: var(--white);
    font-size: 1.5rem;
}
header nav > ul{
    display: flex;
    justify-content: end;
    align-self: center;
    flex-wrap: wrap;
}
header nav > ul li a
{
    position: relative;
    display: block;
    padding: 10px 20px;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--default-transition);
    font-size: 20px;
}
header nav > ul li a:is(:hover,:focus,:active,.active){
    color: var(--primary-color);
    text-decoration: underline !important;
    letter-spacing: 1px;
}
header nav button svg{
    fill: var(--primary-color);
}
#sidebarmenu .top{
    flex: auto;
}
#sidemenu > ul > li > a
{
    position: relative;
    display: block;
    padding: 10px 0;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--default-transition);
    font-size: 20px;
    border-bottom: 1px solid #ffffff20;
}
#sidemenu > ul > li > a.active{
    text-decoration: underline !important;
    letter-spacing: 1px;
}
/* HEADER CSS */

/* PRIMARY HEADING */
.heading-primary-wrapper
{
    position: relative;
    text-align: center;
    overflow: hidden;
}
.heading-primary-wrapper h2{
    
    position: relative;
    display: inline-block;
    /* background: var(--white); */
    color: var(--primary-color);
    font-size: 40px;
    margin: 0;
}
.heading-primary-wrapper h2::before,
.heading-primary-wrapper h2::after
{
    position: absolute;
    top: 50%;
    content: '';
    width: 260px;
    height: 6px;
    background: url(../img/Rectangle\ 39.png);
    background-size: 260px;
    left: 102%;
    transform: translateY(-50%);
}
.heading-primary-wrapper h2::after{
    left: auto;
    right: 102%;
    transform: translateY(-50%) rotate(180deg); 
}
.hero-listing
{
    position: relative;
    font-size: 30px;
    color: var(--primary-color);
}

@media(max-width:576px){
    .heading-primary-wrapper h2
    {
        font-size: 22px;
        margin: 0 100px;
    }
    .heading-primary-wrapper h2 img
    {
        width: 32px;
    }
    .heading-primary-wrapper h2 img.small{
        width: 16px;
    }
    .heading-primary-wrapper h2::before,
    .heading-primary-wrapper h2::after{
        top: 46%;
        width: 130px;
        height: 3px;
        background: url(../img/Rectangle\ 39.png);
        background-size: 130px;
    }
}
/* PRIMARY HEADING */

/* HERO CSS */
.hero-section
{
    position: relative;
    z-index: 0;
}
.hero-section::before,
.featured-section::before
{
    --bg-size:300px;
    position: absolute;
    content: '';
    top: -10px;
    left: -130px;
    background: url(../img/hero-img.png);
    background-size: var(--bg-size);
    width: var(--bg-size);
    aspect-ratio: 1;
    z-index: -1;
}
/* HERO CSS */

/* FEATURED SEC */
.featured-section
{
    position: relative;
}
.featured-section::before
{
    left: auto;
    top: -80px;
    right: 0;
}
.featured-section::after{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: '';
    width: 172px;
    height: 680px;
    background: url(../img/half-bg.png);
    background-size: 172px;
}
.featured-section .row a
{
    position: relative;
    aspect-ratio: 0.8;
    border-top-left-radius: 54px;
    background: var(--bg);
    background-size: cover;
    background-position: center;
    border-right: 10px solid var(--white);
}
.featured-section .row a:nth-child(2){
    border-top-left-radius: 0;
    border-bottom-right-radius:54px;
    border-right: none;
    border-left: 10px solid var(--white);
}
.featured-section .row a img
{
    position: absolute;
    bottom: -40px;
    left: -50px;
}
.featured-section .row a:nth-child(2) img
{
    left: auto;
    bottom: auto;
    top: -50px;
    right: -50px;
}
.featured-section .row a:nth-child(2) img:first-child{
    top: -41px;
    right: 2px;
}
@media(max-width:576px){
    .featured-section::after{
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        content: '';
        width: 172px;
        height: 100%;
        background: url(../img/half-bg.png);
        background-repeat: no-repeat;
        background-size: contain;
    }
    .featured-section .row a
    {
        border-top-left-radius: 60px;
    }
    .featured-section .row a:nth-child(2){
        border-bottom-right-radius:60px;
    }
    .featured-section .row a img{
        position: absolute;
        width: 30px;
        bottom: -30px;
        left: -30px;
    }
    .featured-section .row a:nth-child(2) img
    {
        left: auto;
        bottom: auto;
        top: -27px;
        right: -23px;
    }
    .featured-section .row a:nth-child(2) img:first-child{
        width: 15px;
        top: -15px;
        right: 2px;
    }
    .featured-section::before
    {
        --bg-size:150px;
        left: auto;
        top: 0;
        right: 0;
    }
}
/* FEATURED SEC */

/* Product Card */
.product-card img
{
    position: relative;
    width: 100%;
    aspect-ratio: 0.7;
    object-fit: cover;
    transition: var(--default-transition);
}
.product-card .imgBx{
    overflow: hidden;
}
.product-card:hover img
{
    transform: scale(1.1);
}
.product-card .info
{
    border: 1px solid rgba(0, 0, 0, .25);
    border-top: none;
    transition: var(--default-transition);
}
.product-card:hover .info
{
    box-shadow: 0 3px 3px 0 #942b2d86;
}
.product-card .info .prices{
    font-size: 18px;
}
.product-card .info h3:first-child{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 1;

}
.product-card .info button
{
    font-family: sans-serif;
    text-transform: uppercase;
    border: none;
    outline: none;
    margin-top: 8px;
    padding: 4px 0;
    transition: var(--default-transition);
}
.product-card:hover .info button
{
    letter-spacing: 2px;
}
@media(max-width:576px){
    .product-card .info h3{
        font-size: 18px;
    }
}
.home-video{
    width: 100%;
    aspect-ratio: 16/9;
    margin-bottom: -6px;
    object-fit: cover;
}
/* Product Card */

/* testimonialsBx */
.testimonialsBx
{
    position: relative;
    background: #eee;
    height: 100%;
    padding: 32px;
    border-radius: 32px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25);
    overflow: hidden;
    z-index: 0;
}
.testimonialsBx::before
{
    position: absolute;
    content: '';
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(45deg, #fff, #942b2d86);
    z-index: -1;
    opacity: 0;
    transition: var(--default-transition);
}
.testimonialsBx:hover::before
{
    opacity: 1;
}
.testimonialsBx .imgBx
{
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.testimonialsBx .imgBx img{
    width: 60px;
    min-width: 60px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
}
/* testimonialsBx */

/* Before Footer */
.before-footer
{
    position: relative;
    color: var(--primary-color);
}
.before-footer::after{
    position: absolute;
    content: '';
    top: -10px;
    left: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(to right, var(--primary-color) 20px, #FFF0 20px);
    background-size: 40px;
    animation: movebg 1s linear infinite;
}
@keyframes movebg{
    0%{
        background-position: 0 0;
    }
    100%{
        background-position: -40px 0;
    }
}
.before-footer .before-footer-grid{
    position: relative;
    display: grid;
    grid-template-columns: repeat(5,1fr);
}
.before-footer svg
{
    fill: var(--primary-color);
    width:45px;
    height:45px;
}

@media (max-width:768px) {
    .before-footer .before-footer-grid {
        grid-template-columns: repeat(3,1fr);
        gap: 1rem;
    }
}
/* Before Footer */


/* FOOTER */
footer a{
    color: var(--white);
    font-size: 20px;
}
footer .grid
{
    position: relative;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4,1fr);
}
footer .payment-accepted img
{
    width: 60px;
    aspect-ratio: 2;
    object-fit: contain;
    background: #fff;
    padding: 6px;
    margin-bottom: 4px;
}
@media(max-width:992px) {
    footer .grid{
        grid-template-columns: repeat(3,1fr);
    }
}
@media(max-width:768px) {
    footer .grid{
        grid-template-columns: repeat(2,1fr);
    }
}
/* FOOTER */


/* CONTACT */
.form
{
    padding: 30px 40px;
    border-radius: 30px;
    border: 1px dashed var(--primary-color);
}
.form label
{
    color: var(--primary-color);
    font-size: 18px;
    cursor: pointer;
}
.form .form-group{
    position: relative;
}
.form .form-control
{
    position: relative;
    border: 1px dashed var(--primary-color);
    height: 60px;
    color: var(--primary-color);
    padding-right: calc(15px + 22px);
    font-size: 20px;
}
.form .form-group .showpassword
{
    position: absolute;
    bottom: 17px;
    right: 12px;
    cursor: pointer;
}
.form textarea.form-control{
    min-height: 240px !important; 
}
.contact-box
{
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #F7E8E8;
    padding: 12px;
    border-radius: 32px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25);
}
.contact-box .iconBx{
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 50px;
    aspect-ratio: 1;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25);
}
@media (max-width:576px){
    .form
    {
        padding: 30px 25px;
    }
}
/* CONTACT */

/* SIDEBAR FILTER */
.accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: #942b2d;
    box-shadow: none;
}
.accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-active-icon);
    transform: var(--bs-accordion-btn-icon-transform);
    filter: invert(1);
}
.sidebar-filter
{
    position: sticky;
    top: 20px;
    user-select: none;
}
.sidebar-filter .filter-head,
.sidebar-filter .filter-body,
.sidebar-filter .filter-reset
{
    position: relative;    
    color: var(--primary-color);
}
.noUi-connect {
    background: #02020220;
}
.noUi-horizontal {
    height: 8px;
}
.noUi-horizontal .noUi-handle
{
    width: 15px;
    height: 15px;
    background: var(--primary-color);
    right: -7px;
    top: -4px;
    border-radius: 50%;
    box-shadow: none;
}
.noUi-horizontal .noUi-handle::before,
.noUi-horizontal .noUi-handle::after
{
    display: none;
}
.filter-body label
{
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 0.75rem;
    margin-bottom: 0.8rem;
    color: #BD8945;
    font-size: 20px;
}
.filter-body label:hover,
.filter-body label:has(input:checked)
{
    color: var(--primary-color);
}
.filter-body label span
{
    position: relative;
    border: 1px solid #BD8945;
    min-width: 18px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
}
.filter-body label span:has(input:checked){
    border-color: var(--primary-color);
}
.filter-body label span::before
{
    position: absolute;
    content: '';
    inset: 12px;
    border-radius: 50%;
    opacity: 0;
    transition: var(--default-transition);
}
.filter-body label span:has(input:checked)::before{
    opacity: 1;
    inset: 2px;
    background: var(--primary-color);
}
.filter-body label input
{
    appearance: none;
}
@media(max-width:992px){
    
}

/* SIDEBAR FILTER */


/* PRODUCT PAGE */
.product-image-slider-thumbnail
{
    max-height:100%;
    overflow: auto;
    padding:6px 0;
}
.product-image-slider-thumbnail .product_thumb
{
    margin-bottom: 12px;
    padding:0 6px;
}
.product-image-slider-thumbnail .product_thumb img
{
    cursor: pointer;
    transition: var(--default-transition);
}
.product-image-slider-thumbnail .product_thumb.active img
{
    box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.75);
}
.product_page .product-image-slider .item img,
.product_page .product-image-slider-thumbnail img
{
    width: 100%;
    aspect-ratio: 0.7;
    object-fit: cover;
    border-radius: 24px;
}
.product_page .size-wrapper
{
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.product_page .size-wrapper label
{
    position: relative;
    border: 1px solid #020202;
    width: 30px;
    aspect-ratio: 1;
    border-radius: 50%;
    cursor: pointer;
    color: #020202;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    transition: var(--default-transition);
}
.product_page .size-wrapper label input{
    appearance: none;
}
.product_page .size-wrapper label:has(input:checked),
.product_page .size-wrapper label:hover
{
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}
.product_page .size-wrapper label:has(input:checked)
{
    box-shadow:  0 0px 0 2px rgba(255, 255, 255, 1), 0 0 0 4px var(--primary-color);
}
.featured-cards
{
    position: relative;
    color: var(--primary-color);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.featured-cards .featured-card
{
    flex: 1 1 calc(25% - 1rem);
    /* min-width: 200px; */
    text-align: center;
}
.featured-cards .featured-card .iconBx
{
    position: relative;
    width: 80px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 0.1rem;
    border: 1px solid gray;
}
.featured-cards .featured-card .iconBx svg{
    fill: var(--primary-color);
    width: 40px;
    height: 40px;
}
.user-action-btn
{
    border: 1px dashed #D9D9D9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    margin-bottom: 1rem;
    cursor: pointer;
    user-select: none;
}
.user-action-btn svg{
    width: 48px;
    height: 48px;
    fill: var(--black);
}
.user-action-btn p{
    font-family: sans-serif !important;
    font-size: 18px;
}
.addtocart.btn
{
    margin-bottom: 1rem;
    background: #BD8945;
    color: var(--white);
    border: none;
    padding: 4px 40px;
}
.addtocart.btn:hover{
    background: var(--primary-color);
    color: var(--white);
}

.product-details-tabs
{
    position: relative;
    border-radius: 1rem;
    border: 1px solid rgb(221 221 221);
    overflow: hidden;
}
.product-details-tabs .product-details-tabs-header
{
    position: relative;
    background: rgb(253 244 244);
    padding: 1rem 0;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.product-details-tabs .product-details-tabs-header button
{
    border: 1px solid rgb(221 221 221);
    border-radius: 3rem;
    outline: none;
    padding: 0.75rem 2.25rem;
    background: transparent;
    transition: var(--default-transition);
    font-family: var(--ss);
    font-size: large;
}
.product-details-tabs .product-details-tabs-header button:is(:hover,.active,:focus,:active)
{
    background: #fde4e3;
    color: #d71c2d;
    border-color: #d71c2d;
}
.product-details-tabs .product-details-tabs-body{
    padding: 1rem 0;
}
@media(max-width:567px){
    .product-details-tabs .product-details-tabs-header button
    {
        padding: 0.25rem 0.75rem;
        font-size: 12px;
    }
}
/* PRODUCT PAGE */


/* CART */
.quantitiy-box .pd-pro-qty
{
    border: 1px solid #999999;
    border-radius: 4px;
    user-select: none;
    height: 45px;
    display: inline-flex;
    align-items: center;
    /* display: inline-block; */
    padding: 2px 10px;
}
.quantitiy-box .pd-pro-qty input
{
    border: none;
    text-align: center;
    border: none;
    outline: none;
    pointer-events: none;
    background: transparent;
    max-width: 60px;
}
.quantitiy-box .pd-pro-qty span{cursor: pointer;}
.removeproductbtn{
    cursor: pointer;
    color: var(--bs-danger);
}

#checkoutform label.paymentmodecheck {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 1rem;
    width: 100%;
    height: 100%;
    border: 1px solid var(--dark-gray);
    left: 0;
    height: 55px;
    cursor: pointer;
    background: #000;
    color: #fff;
}
#checkoutform label.paymentmodecheck input{box-shadow: none;appearance: none;position: absolute;width: 0;border: none;}
#checkoutform label.paymentmodecheck:has(input:checked) {background: var(--primary-color);}
/* CART */


/* CONTACT PAGE */
.contact-page
{
    position: relative;
}
.contact-page::after{
    position: absolute;
    content: '';
    width: 300px;
    aspect-ratio: 1;
    top: 40%;
    left: -100px;
    background: url(../img/hero-img.png);
    background-size: cover;
    background-position: center;
    /* opacity: 0.1; */
    z-index: -1;
}


.instagram-section
{
    position: relative;
}

.instagram-section .insta-box
{
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: 24px;
    overflow: hidden;
    transition: var(--default-transition);
    cursor: pointer;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .25);
}
.instagram-section .insta-box:hover{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .5);
}
.instagram-section .insta-box video{
    aspect-ratio: 9/16;
    transition: var(--default-transition);
    object-fit: cover;
}
.instagram-section .insta-box:hover video{
    transform: scale(1.02);
}

/* NEWS LETTER */
.newslatter-section h2{
    font-family: sans-serif;
    text-transform: uppercase;
}
.newslatter-section form
{
    border: none;
}
.newslatter-section #newslatterform input{
    padding-right: 57px;
    border: none;
}
.newslatter-section form input:is(:focus,:user-invalid)
{
    box-shadow: none !important;
}
.newslatter-section #newslatterform .mx-auto
{
    position: relative;
}
.newslatter-section #newslatterform .mx-auto button
{
    position: absolute;
    top: 50%;
    right: 18px;
    width: 47px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-color);
    border: none;
    border-radius: 5px;
    transform: translateY(-50%);
    transition: var(--default-transition);
    overflow: hidden;
}
.newslatter-section #newslatterform .mx-auto button:hover{background: #020202;}
.newslatter-section #newslatterform .mx-auto button svg{transition: var(--default-transition);position: relative;}
.newslatter-section #newslatterform .mx-auto button svg:nth-child(2)
{
    position: absolute;
    transform:translateX(-150%);
}
.newslatter-section #newslatterform .mx-auto button:hover svg:nth-child(2){transform:translateX(0)}
.newslatter-section #newslatterform .mx-auto button:hover svg:nth-child(1){transform:translateX(150%);}
/* NEWS LETTER */


.fixed-btns .fixed-btn
{
    position: fixed;
    top: 1rem;
    right: 1rem;
    width: 45px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    cursor: pointer;
}
.fixed-btns .fixed-btn.bottomtotop
{
    transition: 0.5s;
    border: 1px solid #fff;
    pointer-events: none;
}
.fixed-btns .fixed-btn.bottomtotop.active{
    top: calc(100% - 6rem);
    opacity: 1;
    pointer-events: all;
}