@import url('https://fonts.googleapis.com/css2?family=Lateef:wght@200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primarycolor: #1f6306;
    --primaryopacitycolor: #1F630688;
    --secondary-color: #1D4121;
    --light-green: #BCECAB;
    --red: #EE012B;
    --dark-gray: #eaeaea;
    --jost: "Jost", serif;
    --lateef: "Lateef", serif;
    --ss: sans-serif;
    --ns: "Noto Serif", serif;
    --white: #fff;
    --default-transition: 350ms;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: var(--ns);
}
.bg-light-green{
    background: var(--light-green);
}
.text-shadow-white {
    text-shadow: 1px 1px var(--white);
}

.text-shadow-black {
    text-shadow: 1px 1px #000;
}

.bg-red {
    background: var(--red);
}

.text-secondary {
    color: var(--secondary-color) !important;
}

p {
    margin-bottom: 0;
}

body {
    overflow-x: hidden;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

input:is(:focus,:user-valid):not(input[type=checkbox]),
textarea:is(:focus,:user-valid) {
    box-shadow: -5px 5px 0px 0px var(--primaryopacitycolor) !important;
    border-color: var(--primarycolor) !important;
}

input:user-invalid,
textarea:user-invalid {
    box-shadow: -5px 5px 0px 0px #f005 !important;
    border-color: #f00 !important;
}

.sans-serif,
.sans-serif * {
    font-family: var(--ss);
}

.jost,
.jost * {
    font-family: var(--jost);
}

.lateef,
.lateef * {
    font-family: var(--lateef);
}

.ns,
.ns * {
    font-family: var(--ns);
}

strong {
    font-family: inherit;
}

.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);
    border: 1px solid #fff;
    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;
}

.grid-5 {
    gap: 0.5rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

@media(max-width:540px) {
    .grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

a {
    color: var(--primarycolor);
    text-decoration: none !important;
}

a:hover {
    color: var(--primarycolor);
    text-decoration: none !important;
}

.btn {
    text-transform: uppercase;
    border: 1px solid var(--secondary-color);
    border-radius: 4rem;
    font-weight: 500;
    background: var(--primarycolor);
    color: var(--white);
    padding: 8px 20px;
    transition: var(--default-transition);
}

.btn:has(i) i {
    transition: 0.75s;
}

.btn:is(:hover, :active, :focus) i {
    transform: translateX(10px);
}

.btn:is(:hover, :active, :focus) {
    border-color: var(--white);
    box-shadow: -5px 5px 0 rgba(0, 0, 0, 1);
    background: var(--primarycolor);
    color: var(--white);
}

.btn-alt {
    background: var(--light-green) !important;
    color: var(--primarycolor) !important;
}
.btn-red{
    background: var(--red);
}
/* Header Style */
header {
    position: relative;
}

header .header_links>a {
    position: relative;
    width: 40px;
    min-width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--red);
    border-radius: 40px;
}

nav {
    position: relative;
    z-index: 2;
    /* border-bottom: 1px solid #e6e6e6; */
}

nav.bg-primary::before {
    content: '';
    position: absolute;
    right: 0;
    width: 189px;
    bottom: -24px;
    aspect-ratio: 189/48;
    background: url(../img/navbg.png);
    z-index: -1;
}

@media(max-width:992px) {
    nav::before {
        display: none;
    }
}

/* Nav Styles */
nav .nav-list-wrapper {
    --gap: 1rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--gap);
    padding: 0;
}

nav .nav-list-wrapper .nav-list {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    gap: 1rem;
    flex-wrap: wrap;
    /* justify-content: e; */
}

nav .nav-list-wrapper .nav-list li {
    position: relative;
}

nav .nav-list-wrapper .nav-list a {
    position: relative;
    display: inline-block;
    padding: 0.25rem 0.5rem;
    color: #fff;
    width: 100%;
    /* transition: 1s; */
}

nav .nav-list-wrapper .nav-list a:is(:hover, .active, :active, :focus)::after {
    transform: scaleX(1);
}

nav .nav-list-wrapper .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    transition: var(--default-transition);
    background: var(--white);
}

nav .nav-list-wrapper .nav-list li.has-children ul {
    position: absolute;
    visibility: hidden;
    width: 220px;
    top: 32px;
    background: #fff;
    box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.25);
    z-index: 1000;
}

nav .nav-list-wrapper .nav-list li.has-children ul {
    position: absolute;
    visibility: hidden;
    width: 220px;
    top: 32px;
    background: #fff;
    box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.25);
    z-index: 1000;
}

nav .nav-list-wrapper .nav-list li.has-children:hover>ul {
    visibility: visible;
    opacity: 1;
    animation: menuanime var(--default-transition) ease;
}

nav .nav-list-wrapper .nav-list li.has-children>ul>li:has(ul)::before {
    position: absolute;
    content: '\f107';
    right: .50rem;
    font-family: 'fontAwesome';
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: var(--default-transition);
}

nav .nav-list-wrapper .nav-list li.has-children>ul>li:has(ul):hover::before {
    transform: translateY(-50%) rotate(-90deg);
}

nav .nav-list-wrapper .nav-list li.has-children>ul>li:hover>ul {
    visibility: visible;
    top: 0;
    left: calc(100% - 0.25rem);
    opacity: 1;
    animation: menuanime var(--default-transition) ease;
}

@keyframes menuanime {
    0% {
        opacity: 0;
        transform: translateY(-1.5rem);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

nav .nav-list-wrapper .nav-list li.has-children ul li {
    padding: 0.25rem;
}

.search-form {
    position: relative;
}

.search-form input {
    position: relative;
    width: 160px;
    border-radius: 30px;
    height: 55px;
    border: 1px solid var(--primarycolor);
    padding: 0 112px 0 22px;
}

.search-form input:focus {
    border: 1px solid var(--primarycolor) !important;
    box-shadow: none !important;
    outline: none;
}

.search-form button {
    position: absolute;
    right: 0;
    top: 0;
    background: var(--primarycolor);
    color: var(--white);
    border: none;
    height: 100%;
    border-radius: 0 30px 30px 0;
    width: 100px;
}

.icon {
    min-width: 45px;
    width: 45px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primarycolor);
    border: none;
    outline: none;
    color: #fff;
    border-radius: 50%;
    font-size: 1.5rem;
}

#sidebarmenu .offcanvas-header {
    background: #000;
}

#sidebarmenu .offcanvas-body .top {
    flex-grow: 1;
}

#sidebarmenu .offcanvas-body .bottom {
    justify-self: end;
}

#sidemenu .nav-list a {
    color: #000;
    display: block;
    font-size: 20px;
}

#sidemenu .nav-list li {
    position: relative;
    padding: 0.25rem;
    border-bottom: 1px solid #aaa;

}

#sidemenu .nav-list li::before {
    position: absolute;
    content: '';
    width: 7px;
    height: 14px;
    left: -8px;
    top: 50%;
    background: var(--primarycolor);
    transform: translateY(-50%);
    border-radius: 3px;
    transition: var(--default-transition);
    opacity: 0;
}

#sidemenu ul li:last-child {
    border-bottom: none;
}

#sidemenu .nav-list li:has(a.active, a:hover, a:focus)::before {
    opacity: 1;
}

#sidemenu .nav-list li ul {
    position: absolute;
    width: 100%;
    overflow: hidden;
    height: 0;
    transition: var(--default-transition);
}

#sidemenu .nav-list>li:is(.show)>ul,
#sidemenu .nav-list>li>ul>li:is(.show)>ul {
    position: relative;
    height: auto;
    z-index: 2;
}

#sidemenu .nav-list>li>ul>li:has(ul)::before,
#sidemenu .nav-list>li:has(ul)::before {
    position: absolute;
    content: '\f107';
    right: .50rem;
    font-family: 'fontAwesome';
    top: 3px;
    transform: rotate(0deg);
    transition: var(--default-transition);
}

#sidemenu .nav-list>li>ul>li:has(ul).show::before {
    transform: rotate(-90deg);
}

/* Section CSS */
.section .section-heading {
    text-transform: uppercase;
}


.hero_sec {
    position: relative;
    background: url(../img/hero.png);
    background-size: cover;
    background-position: center top;
    min-height: 70dvh;
    z-index: 1;
}

.hero_sec::before {
    content: '';
    position: absolute;
    opacity: 0;
    top: 0;
    right: 0;
    width: 250px;
    aspect-ratio: 1;
    background: url(../img/hero-ele-1.png);
    background-size: 100%;
    z-index: -1;
}
@media(max-width:700px){
    .hero_sec::before{
        opacity: 1;
    }
}
.hero_sec::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 250px;
    aspect-ratio: 1;
    background: url(../img/hero-ele-2.png);
    background-size: 100%;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero_sec h2 {
    font-size: 3rem;
    text-transform: uppercase;

}

.hero_sec h4 {
    font-size: 2rem;
}

.hero_sec p {
    max-width: 800px;
    width: 96%;
    margin: auto;
    margin-bottom: 1rem;
}

@media(max-width:768px) {
    .hero_sec .content {
        margin: 50px 0;
    }

    .hero_sec h2 {
        font-size: 2rem;
    }

    .hero_sec h4 {
        font-size: 1rem;
    }

    .hero_sec::after,
    .hero_sec::before {
        width: 150px;
    }

    .hero_sec::after {
        bottom: -25px;
    }
}


/* RANGE SECTION */
.range_box {
    position: relative;
    display: block;
    text-align: center;
}

.range_box .imgBx img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
    transition: calc(var(--default-transition) * 2);
}

.range_box .imgBx {
    position: relative;
    margin-bottom: 1rem;
    border-radius: 50%;
    overflow: hidden;
    transition: var(--default-transition);
}

.range_box:hover .imgBx {
    box-shadow: 0 0 10px 5px var(--secondary-color);
}

.range_box:hover .imgBx img {
    transform: scale(1.05);
}


/* TEXT CARD */
.text-card {
    position: relative;
    background: url(../img/mobile_home_2.png);
    width: 100%;
    height: 100%;
    /* aspect-ratio: 330/248; */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
    border-radius: 1rem;
}

.text-card.alt {
    background: url(../img/mobile_home_1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
}

.text-card ul {
    position: relative;
    list-style: disc;
    padding-left: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 350px;
    gap: 10px;
}

.text-card ul li:last-child {
    grid-column: 1 / span 2;
}

.text-card.alt ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Product CSS */
.product-card {
    position: relative;
}

.product-card .imgBx 
{
    position: relative;
    overflow: hidden;
    border: 1px solid #00000080;
    border-radius: 0.4rem;
}
.product-card .imgBx .addtowishlist,
.product-card .imgBx .wishlist-remove-btn
{
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 50%;
    background: var(--white);
    z-index: 1;
    overflow: hidden;
    transition: calc(var(--default-transition) * 2);
}
.product-card .imgBx .addtowishlist::before,
.product-card .imgBx .wishlist-remove-btn::before
{
    position: absolute;
    content: '';
    z-index: -1;
    width: 200%;
    height: 100%;
    top: 0;
    right: 0;
    background: linear-gradient(90deg,transparent, var(--primarycolor),var(--primarycolor));
    transition: calc(var(--default-transition) * 2);
}
.product-card .imgBx .addtowishlist:hover::before,
.product-card .imgBx .wishlist-remove-btn:hover::before
{
    right: -200%;
}
.product-card .imgBx .addtowishlist svg,
.product-card .imgBx .wishlist-remove-btn svg
{
    fill: var(--white);
    transition: var(--default-transition);
}
.product-card .imgBx .addtowishlist:hover,
.product-card .imgBx .wishlist-remove-btn:hover
{
    background: var(--light-green);
}
.product-card .imgBx .addtowishlist:hover svg,
.product-card .imgBx .wishlist-remove-btn:hover svg
{
    fill: var(--secondary-color);
}

.product-card .imgBx img {
    position: relative;
    aspect-ratio: 1;
    transition: var(--default-transition);
    object-fit: cover;
}

.product-card:hover .imgBx img {
    transform: scale(1.06);
    opacity: 1;
}

.product-card .product-info 
{
    position: relative;
    display: block;
    margin-top: 0.8rem;
    border: 1px solid #00000080;
    border-radius: 0.4rem;
    overflow: hidden;
}
.product-card .product-info .d-flex{
    padding: 0.2rem 6px 0;
}

.product-card .product-info h4 {
    position: relative;
    display: -webkit-box;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 16px;
    margin-bottom: 0;
    overflow: hidden;
}
.product-card .btn
{
    overflow: hidden;
    position: relative;
    border: none !important;
    background: var(--light-green);
    z-index: 1;
    transition: calc(var(--default-transition) * 2);
}
.product-card .btn:hover{
    color: var(--secondary-color);
}
.product-card .btn::before
{
    position: absolute;
    content: '';
    z-index: -1;
    width: 200%;
    height: 100%;
    top: 0;
    right: 0;
    background: linear-gradient(90deg,transparent, var(--primarycolor),var(--primarycolor));
    transition: calc(var(--default-transition) * 2);
}
.product-card .btn:hover::before{
    right: -200%;
}


/* PRODUCT PAGE */
.product_slider_wrapper{
    position: sticky;
    top: 1rem;
}
.product__details__pic__slider .item
{
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid #787878;
}
.product__details__pic__slider .item img
{
    aspect-ratio: 1;
    object-fit: contain;
}
.product-img-thumbnail {
    display: flex;
    gap: 1rem;
}

.product-img-thumbnail .thumbnail {
    cursor: pointer;
    transition: var(--default-transition);
    opacity: 0.25;
}

.product-img-thumbnail .thumbnail.active {
    opacity: 1;
    transform: translateY(-2px);
    pointer-events: none;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.5);
}

.product-img-thumbnail .thumbnail img {
    height: 80px;
}

@media(max-width:768px){
    .product-img-thumbnail .thumbnail img {
        height: 50px;
    }
}
.product_prices .mrp
{
    opacity: 0.7;
    text-decoration: line-through;
}

.product-btns .wishlistBtn {
    min-width: 50px;
    aspect-ratio: 1;
    color: var(--primarycolor);
    background: transparent;
    border-radius: 50%;
    border: 1px solid var(--primaryopacitycolor);
    font-size: 1.2rem;
    transition: .5s;
}

.product-btns .wishlistBtn:hover {
    background: var(--primarycolor);
    color: #fff;
}

.product-btns .addtocard.d-flex {
    gap: 1rem;
}
.icon-header-noti{
    position: absolute;
    top: -14px;
    right: -10px;
    width: 27px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 50%;
    color: #000;
}

.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;
    opacity: 0.5;
}

.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;
}

.varient-wrapper {
    position: relative;
    overflow: auto;
    display: flex;
    padding: 4px 4px 10px 4px;
    gap: 10px;
    font-size: 14px;
}

.varient-wrapper .varient-box {
    position: relative;
    cursor: pointer;
    border: 1px solid var(--brclr);
    padding: 4px;
    text-align: center;
    transition: var(--default-transition);
    width: 85px;
    min-width: 100px;
}

.varient-wrapper .varient-box input {
    appearance: none;
    position: absolute;
}

.varient-wrapper .varient-box input:is(:checked, :focus) {
    border: none;
    box-shadow: none;
}

.varient-wrapper .varient-box.outofstock {
    pointer-events: none;
}

.varient-wrapper .varient-box.outofstock::before {
    position: absolute;
    content: 'Sold out';
    padding: 6px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    inset: 0;
    /* aspect-ratio: 1; */
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0003;
}

.varient-wrapper .varient-box:has(input:checked, input:focus) {
    transform: translateY(-3px);
    box-shadow: 0px 3px 5px 3px rgba(0, 0, 0, 0.3);
}

.varient-wrapper .varient-box.multi {
    background: linear-gradient(-45deg, var(--brclr), var(--brclr-sec));
}

.varient-wrapper .varient-box .varient-img img {
    aspect-ratio: 0.8;
    object-fit: cover;
}

.varient-wrapper .varient-box div:last-child {
    border-top: 1px solid #212121;
}

.size-box .size-wrapper,
.color-box .color-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.size-box .size-wrapper label,
.color-box .color-wrapper label {
    height: 40px;
    padding: 0 10px;
    border: 2px solid #999999;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.color-box .color-wrapper label {
    width: 30px;
    height: auto;
    border-radius: 50%;
    aspect-ratio: 1;
}

.size-box .size-wrapper label:has(input:checked),
.color-box .color-wrapper label:has(input:checked) {
    border: 2px solid var(--white);
    box-shadow: 0 0 0px 2px var(--secondary-color);
}

.size-box .size-wrapper label input,
.color-box .color-wrapper label input {
    appearance: none;
    opacity: 0;
}

.product-data .accordion .accordion-button,
.product-data .accordion,
.product-data .accordion-item {
    border-radius: 0 !important;
}

.product-data .accordion-item {
    border: none;
    border-bottom: 1px solid var(--secondary-color);
}

.product-data .accordion-button:not(.collapsed),
.product-data .accordion-button:is(:focus, :active) {
    box-shadow: none;
    background: transparent;
    color: var(--secondary-color);
    border-bottom: 1px solid var(--secondary-color);
}

.product-data .accordion .accordion-body,
.product-data .accordion .accordion-button {
    padding-inline: 0;
}

.product-data .accordion .accordion-button {
    font-size: 20px;
    font-weight: 600;
}

.product-page .product-card .imgBx.single-product,
.product__details__pic__slider {
    overflow: hidden;
}

/* Slider CSS */
.curated-slider {
    position: relative;
}

.owl-nav button {
    position: absolute;
    width: 50px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    transform: translateY(-50%);
    background: #fff !important;
    border-radius: 50%;
    left: 0.5rem;
    z-index: 2;
}

.owl-nav button.owl-next {
    left: auto;
    right: 0.5rem;
}

@media(max-width:540px) {
    .owl-nav button {
        width: 30px;
    }
}

/* HERO SECTION */
.hero-section {
    position: relative;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.3), rgba(255, 255, 255, 0.3)), url(../img/hero-bg.png);
    /* min-height: 700px; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-section .row {
    min-height: 700px;
}

.hero-section h1 {
    font-size: 60px;
}

.hero-section form h4 {
    border-bottom: 4px solid var(--primarycolor);
    padding-bottom: 0.45rem;
}

.hero-section form input:not([type=checkbox]) {
    height: 50px;
}

.hero-section form button {
    border-radius: 50px;
}

.hero-section form .checkbox-feild p label {
    position: relative;
    float: inline-end;
    width: 40px;
    height: 20px;
    border: 1px solid var(--primarycolor);
    border-radius: 20px;
    cursor: pointer;
}

.hero-section form .checkbox-feild p label::after {
    position: absolute;
    content: '';
    width: 16px;
    aspect-ratio: 1;
    background: var(--primarycolor);
    top: 1px;
    border-radius: 50%;
    left: 1px;
}

.hero-section form .checkbox-feild p label:has(input:checked):after {
    left: auto;
    right: 1px;
    background: #fff;
}

.hero-section form .checkbox-feild p label:has(input:checked) {
    background: var(--primarycolor);
}

.hero-section form .checkbox-feild p label input {
    appearance: none;
}

@media(max-width:540px) {
    .hero-section form {
        background: #fff9;
    }

    .hero-section h1 {
        font-size: 32px;
    }
}

.button_menu {
    min-width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    background: transparent;
}

/* Category Card */
.category-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.category-card::after {
    content: attr(data-name);
    display: flex;
    justify-content: center;
    align-items: end;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    color: #fff;
    font-size: 2rem;
    padding-bottom: 15%;
    text-align: center;
    visibility: hidden;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.664), transparent);
    transition: all ease .3s;
}

.category-card:hover:after {
    opacity: 1;
    visibility: visible;
}

.category-card img {
    position: relative;
    aspect-ratio: 775/1077;
    transition: var(--default-transition);
    object-fit: cover;
}

/* .category-card:hover img{transform: scale(1.1);} */
.category-card .icon {
    position: absolute;
    width: 50px;
    height: 2px;
    background: transparent;
    opacity: 0;
    transition: var(--default-transition);
    z-index: 2;
}

.category-card .icon::after {
    content: '';
    width: 50px;
    height: 2px;
    background: #fff;
    position: absolute;
}

.category-card .icon::before {
    content: '';
    width: 50px;
    height: 2px;
    background: #fff;
    position: absolute;
    transform: rotate(90deg);
}

.category-card:hover .icon {
    opacity: 1;
    transform: translateY(-10px);
}

@media(max-width:540px) {
    .category-card::after {
        line-height: 30px;
        font-size: 1rem;
    }
}


/* best-seller-section-img */
.best-seller-section-img {
    overflow: hidden;
}

.best-seller-section-img img {
    transition: var(--default-transition);
}

.best-seller-section-img:hover img {
    transform: scale(1.1);
}

/* Aboutus Section CSS */
.section.about-section p {
    font-size: 22px;
}

.about-section .section-heading {
    text-transform: capitalize;
    text-decoration: underline;
}

.readmore .readmoreBtn {
    box-shadow: 1px 1px 5px #000;
    display: inline-block;
    padding: 6px 8px;
    line-height: 8px;
    cursor: pointer;
    user-select: none;
}

.readmore .readmoreBtn span:nth-child(2),
.readmore .readmoreBtn.active span:nth-child(1) {
    display: none;
}

.readmore .readmoreBtn.active span:nth-child(2) {
    display: inline;
}

/* Gellary */
.gellary {
    position: relative;
    display: grid;
    grid-template-columns: repeat(var(--col), 1fr);
    gap: 0.75rem;
    padding-top: 1rem;
}

.gellary .imgBx {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gellary .imgBx h4 {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #fff;
    transform: translate(-50%, -50%)scale(0);
    z-index: 2;
    text-align: center;
    text-shadow: 0 0 5px #000;
    transition: 0.5s;
}

.gellary .imgBx:hover h4 {
    transform: translate(-50%, -50%)scale(1);
}

.gellary .imgBx::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--secondary-color);
    opacity: 0;
    z-index: 2;
    transition: 0.5s;
}

.gellary .imgBx::after {
    content: '';
    position: absolute;
    inset: 0.5rem;
    background: url(../img/svg-border.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    opacity: 0;
    transition: 0.5s;
}

.gellary .imgBx:hover::after,
.gellary .imgBx:hover::before {
    opacity: 1;
}

.gellary .imgBx:hover img {
    transform: scale(1.2);
}

.gellary .imgBx img {
    width: 100%;
    aspect-ratio: 0.77;
    transition: 0.5s;
    object-fit: cover;
    z-index: 1;
}

@media(max-width:540px) {
    .gellary {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Process */
.process-section .row .card {
    position: relative;
}

.process-section .row .card img {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100px;
    transform: translate(-50%, -50%);
    background: #fff;
}

/* Testimonial */
.testimonial-section .testimonial-box {
    background: linear-gradient(var(--primaryopacitycolor), var(--primaryopacitycolor)), url(../img/hero-bg.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial-section .testimonial-box .item {
    position: relative;
    padding-bottom: 25px;
}

.testimonial-section .testimonial-box .item .card {
    border-radius: 20px;
    padding-inline: 1rem !important;
}

.testimonial-section .testimonial-box .item .quotes {
    position: absolute;
    width: 76px;
    bottom: 0;
    right: 3rem;
}

.testimonial-section .testimonial-box .UserBx {
    width: 100px;
    min-width: 90px;
    aspect-ratio: 1;
}

/* Contect Section */
.contect-section .bg-col {
    background: var(--light-green);
}

/* Newslatter */
.newslatter-section {
    background: #ebebeb;
}

.newslatter-section form {
    max-width: 800px;
    margin: auto;
    padding-top: 0.5rem !important;
    padding-bottom: 0.75rem !important;
}

.newslatter-section form input {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid var(--secondary-color);
    outline: none;
    color: var(--secondary-color);
    /* border-radius: 10px; */
    height: 60px;
}

.newslatter-section form input[type=submit] {
    background: var(--secondary-color);
    text-align: center;
    color: #fff;
}

.newslatter-section form input:is(:focus) {
    box-shadow: none !important;

}


/* FAQs */
.faqs-box .card {
    position: relative;
    transition: 0.4s;
}

.faqs-box .card p {
    opacity: 0;
    visibility: hidden;
    height: 0;
    transition: 0.4s;
}

.faqs-box .card.open p {
    opacity: 1;
    visibility: visible;
    height: auto;
}

.faqs-box .card i {
    position: absolute;
    right: 3px;
    top: 3px;
    transform: rotate(45deg);
    transition: 0.4s;
    overflow: hidden;
}

.faqs-box .card.open i {
    transform: rotate(0);
}

@media (max-width:540px) {
    .faqs-box .questionBox {
        font-size: 20px;
    }
}

/* Footer Style */
footer 
{
    position: relative;
    font-family: var(--lato);
}
footer::before{
    position: absolute;
    content: '';
    width: 100%;
    top: 0;
    right: 0;
    border-top: 1px solid var(--primarycolor);
}
footer::after{
    position: absolute;
    content: '';
    width: 140px;
    aspect-ratio: 189/48;
    background: url(../img/navbg.png);
    background-size: cover;
    top: 0;
    right: 0;
}

.footer-links h5 {
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primarycolor);
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    font-size: 18px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    opacity: 0.7;
    transition: 0.4s;
}

.footer-links ul li a .fa-arrow-up-right-from-square {
    font-size: 12px;
    color: var(--primarycolor);
    position: relative;
    top: -2px;
    right: 1rem;
    opacity: 0;
    transition: 0.4s;
}

.footer-links ul li a:hover {
    text-decoration: underline !important;
    color: var(--primarycolor);
}

footer .copy_right
{
    position: relative;
}
footer .copy_right::before{
    position: absolute;
    content: '';
    top: -22px;
    left: 0;
    width: 100px;
    aspect-ratio: 189 / 48;
    background: url(../img/navbg.png);
    transform: rotate(180deg);
}

.upi-icn {
    position: relative;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.upi-icn img,
.upi-icn button,
.upi-icn span,
.upi-icn a {
    width: 70px;
    height: 38px;
    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;
    }
}

/* PAGE HEADER */
.page_heade{
    position: relative;
    width: 100%;
    aspect-ratio: 6;
    background: url(../img/pagehead/about.jpeg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page_heade.contact_us{
    background: url(../img/pagehead/contact.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
@media (max-width:768px) {
    .page_heade{
        aspect-ratio: 4;
    }
}

/* CONTACT PAGE CSS */
.details-box
{
    position: relative;
    aspect-ratio: 1;
    border: 1px solid #00000080;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px;
    text-align: center;
    box-shadow: 0px 4px 4px 0px #00000040;
    overflow: hidden;
    cursor: pointer;
    transition: var(--default-transition);
}
.details-box:hover{
    background: var(--primarycolor);
}
.details-box a
{
    transition: var(--default-transition);
}
.details-box:hover a
{
    color: var(--white);
}
.details-box .iconBx
{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 77px;
    aspect-ratio: 1;
    border-radius: 50%;
    box-shadow: 0px 4px 4px 0px #00000040;
    margin-bottom: 12px;
    transition: var(--default-transition);
    background: var(--white);
}
.details-box:hover .iconBx{
    transform: translateY(-10px);
}
.details-box .iconBx svg{
    fill:var(--primarycolor);
}
@media (max-width:768px) {
    .details-box.contect{
        aspect-ratio: 2;
    }
}
.form_section{
    position: relative;
    background: linear-gradient(#0005,#0005), url(../img/contact_page_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.form_section input
{
    height: 60px;
}

/* BLOG PAGE */
.blog-box .blog-img {
    position: relative;
    overflow: hidden;
    margin-bottom: 26px;
}

.blog-box .blog-img img {
    aspect-ratio: 251/188;
    object-fit: cover;
    transition: var(--default-transition);
}

.blog-box:hover .blog-img img {
    transform: scale(1.1);
}

.blog-box :is(.blog-description, h5) {
    position: relative;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 4;
}

.blog-box :is(h5) {
    -webkit-line-clamp: 2 !important;
}

.blog-sidebar h4 {
    border-bottom: 1px solid var(--secondary-color);
    padding-bottom: .75rem;

}

.blog-sidebar ul {
    margin: 1rem 0;
}

.blog-sidebar ul li {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--dark-gray);
}

.blog-sidebar ul li a:hover {
    text-decoration: underline !important;
}

.blog-sidebar ul li .date {
    color: #787878;
}

/* Bread Crumb */
.bread-crumb {
    color: #000;
}

.bread-crumb :is(a, i) {
    color: #000 !important;
}

.bread-crumb :is(i) {
    font-size: 12px;
}

.zoomContainer {
    z-index: 1;
    pointer-events: none;
}


/* Category Page */
.filter-row select.sort-display-data {
    background: transparent;
    padding: 6px 8px;
    border: 1px solid #999999;
    border-radius: 0 !important;
}

.filter-row select.sort-display-data:focus {
    outline-color: var(--primarycolor);
}

button#loadmore-shop-by-brands {
    border: 1px solid var(--secondary-color);
    background: transparent;
    padding: 8px 20px;
}

/* CART */
.removeproductbtn {
    cursor: pointer;
    color: var(--bs-danger);
}

/* CHECK OUT PAGE */
.form .form-group {
    margin-bottom: 1rem;
    position: relative;
}

.form .form-group .showpassword {
    position: absolute;
    bottom: 7px;
    right: 12px;
    cursor: pointer;
}

.form label {
    display: block;
    font-size: 18px;
    margin-bottom: .25rem;
    font-weight: 600;
}

.form input:is(:focus, :active),
.form textarea:is(:focus, :active) {
    border: 1px solid var(--primarycolor);
    outline: none;
    box-shadow: none;
}

.form input:not([type=radio]),
.form textarea {
    border-radius: 0.375rem;
    border: 1px solid var(--secondary-color);
    padding: 6px 12px;
    padding-right: calc(15px + 22px);
    width: 100%;
}

#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(--primarycolor);
}


.coloraccordion-wrapper,
.sizeaccord-wrapper {
    position: relative;
    padding: .5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.coloraccordion-wrapper input {
    appearance: none;
    width: 34px;
    aspect-ratio: 1;
    cursor: pointer;
    background: var(--base);
    border-radius: 50%;
}

.coloraccordion-wrapper input:checked {
    border: 2px solid var(--white);
    box-shadow: 0 0 0px 2px var(--secondary-color);
}

.sizeaccord-wrapper span {
    position: relative;
    padding: .5rem;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 45px;
}

.sizeaccord-wrapper span input {
    appearance: none;
    position: absolute;
    inset: 0;
    cursor: pointer;
}

.sizeaccord-wrapper span:has(input:checked) {
    /* border-color: var(--secondary-color); */
    background: var(--secondary-color);
    color: var(--white);
}
.about_sec
{
    position: relative;
    z-index: 0;
    background: linear-gradient(22deg,#1f6306 50%,  #1D4121 0%);
    text-shadow: 1px 2px black;
}
.about_sec::before
{
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    background: url(../img/hero-ele-1.png);
    width: 220px;
    aspect-ratio: 1;
    background-size: 100%;
    z-index: -1;
}
.about_sec::after{
    position: absolute;
    content: '';
    bottom: -18px;
    left: 0;
    background: url(../img/hero-ele-2.png);
    background-repeat: no-repeat;
    width: 120px;
    aspect-ratio: 1;
    background-size: 100%;
    z-index: -1;
}