/*==================================================
    GOOGLE FONT
==================================================*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');


/*==================================================
    VARIABLES
==================================================*/

:root {

    --primary: #5c2f8c;
    --primary-light: #7b52a6;
    --primary-dark: #432169;

    --secondary: #5c2f8c;

    --black: #111111;
    --white: #ffffff;

    --text: #555555;
    --text-light: #888888;

    --border: #ececec;
    --bg: #fafafa;

    --shadow: 0 10px 35px rgba(0, 0, 0, .08);

    --transition: .35s ease;

}


/*==================================================
    RESET
==================================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    /* font-family:'Montserrat',sans-serif; */

    color: var(--text);

    background: var(--white);

}

img {

    max-width: 100%;

    display: block;

}

a {

    text-decoration: none;

    color: var(--black);

    transition: var(--transition);

}

ul {

    list-style: none;

    margin: 0;

    padding: 0;

}


/*==================================================
    TOPBAR
==================================================*/

.topbar {

    background: #8f05fc2e;

    color: var(--primary);

    padding: 10px 30px;

    font-size: 12px;

    letter-spacing: 1px;

    font-weight: 600;
}

.social_icons {

    display: flex;

    gap: 18px;

}

.social_icons i {
    color: var(--primary);
}

.social_icons a {

    color: var(--white);

    font-size: 14px;

}

.social_icons a:hover {

    color: var(--secondary);

}


/*==================================================
    HEADER
==================================================*/

header {

    background: #fff;

    position: sticky;

    top: 0;

    z-index: 999;
    margin-bottom: 64.5px;


    /* border-bottom:1px solid var(--border); */

}

.header_wrapper {

    display: flex;

    align-items: center;

    justify-content: space-between;

    height: 70px;

    padding: 0px 20px;

}

.logo img {

    height: 45px;

}

.search_btn {

    display: flex;

    align-items: center;

    gap: 12px;

    background: none;

    border: none;

    color: var(--black);

    font-size: 15px;

}

.search_btn i {

    font-size: 18px;

}

.search_btn:hover {

    color: var(--primary);

}

.header_right {

    display: flex;

    align-items: center;

    gap: 25px;

}

.header_right button {

    border: none;

    background: none;

    font-size: 20px;

    color: var(--black);

}

.header_right button:hover {

    color: var(--primary);

}

.header_right a {

    font-size: 14px;

    font-weight: 500;

}

.header_right .cart_btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-cart-count {
    position: absolute;
    top: 13px;
    right: -3px;
    background-color: var(--primary);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.25s ease, color 0.25s ease;
}

/* .header_right .cart_btn:hover .header-cart-count {
    background-color: var(--secondary);
    color: var(--black);
    transform: scale(1.15);
} */

ul#menu-main-menu li a {
    text-transform: uppercase;
}


/*==================================================
    NAVBAR
==================================================*/

.navbar {

    border-top: 1px solid var(--border);

    padding: 0;

}

.navbar-nav {

    gap: 35px;

}

.nav-link {

    padding: 22px 0 !important;

    color: var(--black);

    font-size: 13px;

    font-weight: 500;

    letter-spacing: 1px;

    position: relative;

}

.nav-link::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 12px;

    width: 0;

    height: 2px;

    background: var(--primary);

    transition: .35s;

}

.nav-link:hover {

    color: var(--primary);

}

.nav-link:hover::after {

    width: 100%;

}


/*==================================================
    MOBILE
==================================================*/

.mobile_menu {

    background: none;

    border: none;

    font-size: 24px;

    color: var(--black);

}

.search_mobile {

    background: none;

    border: none;

    font-size: 20px;

}


/*==================================================
    SEARCH MODAL
==================================================*/

.modal-content {

    border: none;

    border-radius: 0;

}

.modal-header {

    border-bottom: 1px solid var(--border);

}

.modal-header h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0px;
}

.modal-body {

    padding: 15px;

}



.form-control:focus {

    border-color: var(--primary);

    box-shadow: none;

}


/*==================================================
    OFFCANVAS
==================================================*/

.offcanvas {

    width: 360px;

}

.offcanvas-header {

    border-bottom: 1px solid var(--border);

    padding: 20px;

}

.offcanvas-body {

    padding: 10px;

}



.mobile_links li {

    border-bottom: 1px solid var(--border);

}

.mobile_links li a {

    display: block;

    padding: 14px 0;

    font-size: 15px;

    color: var(--black);

}

.mobile_links li a:hover {

    color: var(--primary);

}

.accordion {

    border: none;

}

.accordion-item {

    border: none;

    border-bottom: 1px solid var(--border);

}

.accordion-button {

    padding: 16px 0;

    box-shadow: none;

    background: none;

    font-weight: 500;

}

.accordion-button:not(.collapsed) {

    background: none;

    color: var(--primary);

}

.accordion-button:focus {

    box-shadow: none;

}


/*==================================================
    CART
==================================================*/

#cartCanvas {

    width: 420px;

}


/*==================================================
    RESPONSIVE
==================================================*/

@media(max-width:991px) {

    .footer_bottom {
        margin-top: 0px !important;
    }

    .about_image {
        margin-bottom: 15px;
    }

    .slide_counter {
        display: none !important;
    }


    .hero-height {
        min-height: 65vh !important;
    }

    .topbar {

        padding: 8px 10px;

        font-size: 11px;

    }

    .header_wrapper {

        height: 70px;
        padding: 0px;

    }

    .logo img {

        height: 40px;

    }

    .header_right {

        gap: 15px;

    }

    .offcanvas {

        width: 100%;

    }

    #cartCanvas {

        width: 100%;

    }

    .modal-dialog {

        margin: 0;

    }

    .modal-content {

        border-radius: 0;

        min-height: 100vh;

    }

}


@media(max-width:576px) {

    .header_wrapper {

        height: 65px;

    }

    .logo img {

        height: 28px;

    }

    .mobile_menu {

        font-size: 22px;

    }

    .header_right button {

        font-size: 18px;

    }

    .search_mobile {

        font-size: 18px;

    }

}







/*=====================================================
HERO
======================================================*/

.hero_slider {

    position: relative;

}

.heroSwiper {

    height: 75vh;

}

.swiper-slide {

    overflow: hidden;
    position: relative;

}


.hero-height {

    min-height: 75vh;
}


/*=====================================================
BACKGROUND
======================================================*/

.slide_bg {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    z-index: -2;

    overflow: hidden;

}

.slide_bg img {

    width: 100%;
    height: 100%;

    object-fit: cover;

}


/*=====================================================
OVERLAY
======================================================*/

.overlay {

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, .35);

    z-index: -1;

}


/*=====================================================
CONTENT
======================================================*/

.hero_content {

    max-width: 560px;

}

.subtitle {

    display: inline-block;

    font-size: 14px;

    letter-spacing: 4px;

    text-transform: uppercase;

    color: #fff;

    margin-bottom: 20px;

    font-weight: 600;

}

.hero_content h1 {

    font-size: 42px;

    line-height: 1.05;

    /* font-family:'Cormorant Garamond',serif; */

    color: #fff;

    font-weight: 600;


}

.hero_content p {

    font-size: 18px;

    line-height: 1.9;

    color: #f5f5f5;

    margin-bottom: 15px;

    max-width: 520px;

}


/*=====================================================
BUTTON
======================================================*/

.theme_btn {

    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 30px;
    font-size: 14px;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    border-radius: 0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;

}

.theme_btn:hover {

    background: #45206f;

    color: #fff;

    transform: translateY(-5px);

}


/*=====================================================
IMAGE
======================================================*/

.hero_image {

    position: relative;

    text-align: center;

}

.hero_image img {

    max-width: 520px;

    margin: auto;

    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .3));

}


/*=====================================================
NAVIGATION
======================================================*/

.swiper-button-next,
.swiper-button-prev {

    width: 35px;
    height: 35px;

    border: 1px solid rgba(255, 255, 255, .25);

    background: rgba(255, 255, 255, .08);

    backdrop-filter: blur(10px);

    border-radius: 50%;

    color: #fff;

    transition: .35s;

}

.swiper-button-next:hover,
.swiper-button-prev:hover {

    background: var(--primary);

}

.swiper-button-next::after,
.swiper-button-prev::after {

    font-size: 14px;

    font-weight: bold;

}


/*=====================================================
PAGINATION
======================================================*/

.swiper-pagination {

    bottom: 50px !important;

}

.swiper-pagination-bullet {

    width: 12px;
    height: 12px;

    background: #fff;

    opacity: .4;

}

.swiper-pagination-bullet-active {

    opacity: 1;

    background: var(--primary);

}


/*=====================================================
PROGRESS BAR
======================================================*/

.slider_progress {

    position: absolute;

    left: 50%;

    bottom: 30px;

    transform: translateX(-50%);

    width: 220px;

    height: 2px;

    background: rgba(255, 255, 255, .2);

    z-index: 5;

}

.slider_progress span {

    display: block;

    height: 100%;

    width: 0;

    background: #fff;

}


/*=====================================================
SCROLL
======================================================*/

.scroll_down {

    position: absolute;

    left: 40px;

    bottom: 40px;

    writing-mode: vertical-rl;

    transform: rotate(180deg);

    letter-spacing: 3px;

    color: #fff;

    font-size: 13px;

    z-index: 5;

}


/*=====================================================
CONTAINER
======================================================*/

/* .container{

max-width:1320px;

} */


/*=====================================================
Z INDEX
======================================================*/

.hero_content,
.hero_image {

    position: relative;

    z-index: 2;

}



/*==================================================
    SHOPIFY ANIMATIONS
==================================================*/

/* Background Ken Burns */
.slide_bg img {
    transform: scale(1.15);
    transition: transform 8s ease;
}

.swiper-slide-active .slide_bg img {
    transform: scale(1);
}

/* Overlay */
.overlay {
    opacity: 0;
    transition: 1.2s;
}

.swiper-slide-active .overlay {
    opacity: 1;
}

/*==============================
TEXT ANIMATION
==============================*/

.hero_content .subtitle,
.hero_content h1,
.hero_content p,
.hero_content .theme_btn {

    opacity: 0;

    transform: translateY(70px);

    transition: all .8s ease;

}

/* Subtitle */

.swiper-slide-active .subtitle {

    opacity: 1;

    transform: translateY(0);

    transition-delay: .3s;

}

/* Heading */

.swiper-slide-active h1 {

    opacity: 1;

    transform: translateY(0);

    transition-delay: .6s;


}

/* Paragraph */

.swiper-slide-active p {

    opacity: 1;

    transform: translateY(0);

    transition-delay: .9s;

}

/* Button */

.swiper-slide-active .theme_btn {

    opacity: 1;

    transform: translateY(0);

    transition-delay: 1.2s;

}

/*==============================
PRODUCT IMAGE
==============================*/

.hero_image img {

    opacity: 0;

    transform: translateX(120px) scale(.9);

    transition: 1.2s ease;

}

.swiper-slide-active .hero_image img {

    opacity: 1;

    transform: translateX(0) scale(1);

}

/* Floating Animation */

@keyframes floating {

    0% {

        transform: translateY(0px);

    }

    50% {

        transform: translateY(-18px);

    }

    100% {

        transform: translateY(0);

    }

}

.swiper-slide-active .hero_image img {

    animation: floating 4s ease-in-out infinite;

}

/*==============================
BUTTON EFFECT
==============================*/

.theme_btn {

    position: relative;

    overflow: hidden;

}

.theme_btn::before {

    content: "";

    position: absolute;

    top: 0;

    left: -120%;

    width: 100%;

    height: 100%;

    background: rgba(255, 255, 255, .25);

    transform: skewX(-30deg);

    transition: .7s;

}

.theme_btn:hover::before {

    left: 120%;

}

/*==============================
ARROWS
==============================*/

/* .swiper-button-next,
.swiper-button-prev {

    opacity: 0;

    transition: .4s;

} */

.hero_slider:hover .swiper-button-next {

    right: 35px;

    opacity: 1;

}

.hero_slider:hover .swiper-button-prev {

    left: 35px;

    opacity: 1;

}

/*==============================
PROGRESS BAR
==============================*/

.slider_progress span {

    animation: progress 6s linear infinite;

}

@keyframes progress {

    0% {

        width: 0;

    }

    100% {

        width: 100%;

    }

}

/*==============================
SCROLL TEXT
==============================*/

.scroll_down {

    animation: scrollMove 2s infinite;

}

@keyframes scrollMove {

    0% {

        transform: translateY(0) rotate(180deg);

    }

    50% {

        transform: translateY(12px) rotate(180deg);

    }

    100% {

        transform: translateY(0) rotate(180deg);

    }

}

/*==============================
MOUSE PARALLAX
==============================*/

.hero_image {

    transition: .5s;

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:1400px) {

    /* .hero_content h1{

font-size:62px;

} */

    .hero_image img {

        max-width: 460px;

    }

}

@media(max-width:1200px) {

    .hero_content h1 {

        font-size: 54px;

    }

    .hero_content p {

        font-size: 17px;

    }

    .hero_image img {

        max-width: 420px;

    }

}

@media(max-width:991px) {


    .cart_product_action {
        margin-top: 0px !important;
    }

    .topbar {

        padding: 8px 0px;
    }

    header {


        padding: 0px 0px;
    }

    .heroSwiper {

        height: auto;

    }

    /* .swiper-slide{

padding:120px 0 80px;

} */

    .hero_content {

        text-align: center;

        margin: auto;

    }

    .hero_content h1 {

        font-size: 46px;

    }

    .hero_content p {

        font-size: 16px;

        margin: auto;

        margin-bottom: 35px;

    }

    .hero_image {

        margin-top: 60px;

    }

    .hero_image img {

        max-width: 340px;

    }

    .swiper-button-next,
    .swiper-button-prev {

        display: none;

    }

    .scroll_down {

        display: none;

    }

    .slider_progress {

        display: none;

    }

}

@media(max-width:767px) {

    .hero_content h1 {

        font-size: 38px;

        line-height: 1.15;

    }

    .subtitle {

        font-size: 12px;

        letter-spacing: 3px;

    }

    .hero_content p {

        font-size: 15px;

        line-height: 1.8;

    }

    .theme_btn {



        font-size: 14px;

    }

    .hero_image img {

        max-width: 280px;

    }

}

@media(max-width:480px) {

    .hero_content h1 {

        font-size: 32px;

    }

    .hero_image img {

        max-width: 240px;

    }

    .hero_content {

        padding: 0 15px;

    }

}



/*==============================
PREMIUM COUNTER
==============================*/

.slide_counter {

    position: absolute;

    left: 70px;

    bottom: 60px;

    display: flex;

    align-items: center;

    gap: 15px;

    z-index: 20;

    color: #fff;

    font-size: 15px;

    letter-spacing: 2px;

    font-weight: 600;

}

.slide_counter .line {

    width: 80px;

    height: 1px;

    background: rgba(255, 255, 255, .4);

}


/*==============================
GLASS ARROWS
==============================*/

.swiper-button-next,
.swiper-button-prev {

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    background: rgba(255, 255, 255, .08);

    border: 1px solid rgba(255, 255, 255, .15);

    box-shadow: 0 10px 40px rgba(0, 0, 0, .15);

}

.swiper-button-next:hover,
.swiper-button-prev:hover {

    background: var(--primary);

    transform: scale(1.08);

}


/*==============================
IMAGE MASK
==============================*/

.hero_image {

    overflow: hidden;

}

.hero_image img {

    clip-path: polygon(0 100%, 0 100%, 0 100%, 0 100%);

    transition: 1.2s ease;

}

.swiper-slide-active .hero_image img {

    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);

}


/*==============================
HEADING REVEAL
==============================*/

.split {

    overflow: hidden;

}

.split span {

    display: block;

    transform: translateY(120%);

    opacity: 0;

    transition: .9s ease;

}

.swiper-slide-active .split span {

    transform: translateY(0);

    opacity: 1;

}


/*==============================
TEXT BLUR
==============================*/

.hero_content p {

    filter: blur(12px);

}

.swiper-slide-active p {

    filter: blur(0);

}


/*==============================
BUTTON GLOW
==============================*/




/*==============================
IMAGE SHADOW
==============================*/

.hero_image img {

    filter:

        drop-shadow(0 20px 60px rgba(0, 0, 0, .25)) drop-shadow(0 40px 80px rgba(0, 0, 0, .18));

}


/*==============================
PREMIUM OVERLAY
==============================*/

.overlay {

    background:

        linear-gradient(90deg,

            rgba(0, 0, 0, .65),

            rgba(0, 0, 0, .15));

}


.split div {

    overflow: hidden;

}

.split span {

    display: inline-block;

    transform: translateY(120%);

    opacity: 0;

}

.swiper-slide-active .split span {

    transform: translateY(0);

    opacity: 1;

}

.swiper-slide-active .split span:nth-child(1) {
    transition: .35s;
}

.swiper-slide-active .split span:nth-child(2) {
    transition: .38s;
}

.swiper-slide-active .split span:nth-child(3) {
    transition: .41s;
}

.swiper-slide-active .split span:nth-child(4) {
    transition: .44s;
}

.swiper-slide-active .split span:nth-child(5) {
    transition: .47s;
}

.swiper-slide-active .split span:nth-child(6) {
    transition: .50s;
}

.swiper-slide-active .split span:nth-child(7) {
    transition: .53s;
}

.swiper-slide-active .split span:nth-child(8) {
    transition: .56s;
}

.swiper-slide-active .split span:nth-child(9) {
    transition: .59s;
}

.swiper-slide-active .split span:nth-child(10) {
    transition: .62s;
}



#searchModal .modal-dialog {
    margin-top: 10%;
}

.modal_search {

    font-size: 16px;
    padding: 0px;
    border: none;
    height: unset !important;

}


#filterCanvas .offcanvas-header {
    padding: 10px 15px !important;
    position: relative;
}

#filterCanvas .offcanvas-header h4 {
    font-size: 14px;
    margin: 0px;
    font-weight: 600;
}

#filterCanvas .offcanvas-header .Close_btn {
    position: absolute;
    left: 15px;

    top: 50%;
    left: 15px;
    transform: translate(-50%, -50%);
    background-color: transparent;
    border: none;
}




#cartCanvas .offcanvas-header {
    padding: 10px 15px !important;
    position: relative;
}

#cartCanvas .offcanvas-header h5 {
    font-size: 14px;
    margin: 0px;
    font-weight: 600;
}

#cartCanvas .offcanvas-header .Close_btn {
    position: absolute;
    left: 15px;

    top: 50%;
    left: 15px;
    transform: translate(-50%, -50%);
    background-color: transparent;
    border: none;
}



/*==================================================
COLLECTION SECTION
==================================================*/

.collection_section {

    padding: 140px 0;

    overflow: hidden;

    background: #fff;

}

.collection_content {

    padding-right: 40px;

}

.section_subtitle {

    display: inline-block;

    color: var(--primary);

    font-size: 20px;

    font-family: 'Cormorant Garamond', serif;

    font-weight: 600;

    margin-bottom: 20px;

}

.collection_content h2 {

    font-size: 42px;

    line-height: 1.15;

    color: var(--black);

    font-family: 'Cormorant Garamond', serif;

    margin-bottom: 25px;

}

.collection_content p {

    color: #666;

    font-size: 17px;

    line-height: 1.9;

    margin-bottom: 35px;

}


/*==================================================
SLIDER
==================================================*/

.collectionSwiper {

    overflow: hidden;

    padding: 20px 0;

}

.collectionSwiper .swiper-slide {

    height: auto;

}


/*==================================================
CARD
==================================================*/

.collection_card {

    position: relative;

    display: block;

    overflow: hidden;

    border-radius: 8px;

    color: #fff;

    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);

}


/*==================================================
IMAGE
==================================================*/

.collection_image {

    width: 100%;

    height: 100%;

    overflow: hidden;

}

.collection_image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: 1.2s ease;

}


/*==================================================
OVERLAY
==================================================*/

.collection_overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(to top,

            rgba(50, 0, 70, .75),

            rgba(0, 0, 0, .15),

            rgba(0, 0, 0, .05));

}


/*==================================================
BORDER
==================================================*/

.collection_border {

    position: absolute;

    left: 28px;

    right: 28px;

    top: 28px;

    bottom: 28px;

    border: 1px solid rgba(255, 255, 255, .8);

    transition: .45s;

}


/*==================================================
CONTENT
==================================================*/

.collection_info {

    position: absolute;

    left: 0;

    width: 100%;

    bottom: 55px;

    text-align: center;

    z-index: 5;

}

.collection_info h3 {

    font-size: 28px;

    font-family: 'Cormorant Garamond', serif;

    color: #fff;

    margin-bottom: 25px;

}

.collection_info span {

    display: inline-flex;

    justify-content: center;

    align-items: center;

    width: 141px;
    height: 42px;

    border: 1px solid rgba(255, 255, 255, .7);

    letter-spacing: 1px;

    font-size: 15px;

    transition: .35s;

}


/*==================================================
HOVER
==================================================*/

.collection_card:hover img {

    transform: scale(1.12);

}

.collection_card:hover .collection_border {

    left: 18px;

    right: 18px;

    top: 18px;

    bottom: 18px;

}

.collection_card:hover span {

    background: #fff;

    color: #111;

}

.collection_card:hover {

    transform: translateY(-12px);

    transition: .45s;

}


/*==================================================
ARROWS
==================================================*/

.collection-prev,

.collection-next {

    position: absolute;

    top: 50%;

    width: 58px;

    height: 58px;

    border-radius: 50%;

    background: #fff;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);

    display: flex;

    justify-content: center;

    align-items: center;

    cursor: pointer;

    z-index: 10;

    transition: .35s;

}

.collection-prev {

    left: -30px;

}

.collection-next {

    right: -30px;

}

.collection-prev:hover,

.collection-next:hover {

    background: var(--primary);

    color: #fff;

}


/*==================================================
ANIMATION
==================================================*/

.collection_card {

    transition: .45s;

}

.collection_info {

    transition: .45s;

}

.collection_card:hover .collection_info {

    bottom: 70px;

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px) {

    .collection_card {

        height: 540px;

    }

    .collection_info h3 {

        font-size: 40px;

    }

}

@media(max-width:991px) {

    .collection_content {

        padding-right: 0;

        text-align: center;

        margin-bottom: 50px;

    }

    .collection_card {

        height: 520px;

    }

    .collection-prev,

    .collection-next {

        display: none;

    }

}

@media(max-width:767px) {

    .collection_section {

        padding: 70px 0;

    }

    .collection_content h2 {

        font-size: 38px;

    }

    .collection_card {

        height: 470px;

    }

    .collection_info h3 {

        font-size: 34px;

    }

    .collection_info span {

        width: 160px;

        height: 45px;

        font-size: 14px;

    }

}

@media(max-width:576px) {

    .collection_card {

        height: 420px;

    }

    .collection_border {

        left: 18px;

        right: 18px;

        top: 18px;

        bottom: 18px;

    }

}



.collection_card::before {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(135deg,

            rgba(255, 255, 255, .18),

            transparent 45%);

    opacity: 0;

    transition: .5s;

    z-index: 2;

}

.collection_card:hover::before {

    opacity: 1;

}

.collection_card:hover .collection_info h3 {

    transform: translateY(-8px);

    transition: .4s;

}

.collection_info h3 {

    transition: .4s;

}

.collection_card:hover img {

    transform: scale(1.08) rotate(1deg);

}





/*=========================================
ABOUT SHOWCASE
=========================================*/

.about_showcase {
    padding: 60px 0 0px;
    background: #F4F4F4;
    overflow: hidden;
}

.aboutSwiper {
    overflow: hidden;
}

.aboutSwiper .swiper-slide {
    height: auto;
}

/*=========================================
CONTENT
=========================================*/

.about_content {
    max-width: 470px;
}

.global_subtittle {

    display: inline-block;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 700;

}

.gloabal_heading {

    font-family: "Cormorant Garamond", serif;

    font-size: 42px;

    line-height: 1.05;

    color: #222;

    margin-bottom: 15px;

}

.about_content p {

    color: #555;

    font-size: 16px;

    line-height: 1.9;

    margin-bottom: 15px;

}





/*=========================================
IMAGE
=========================================*/

.about_image {

    position: relative;

    overflow: hidden;

    border-radius: 8px;

}

.about_image img {

    width: 100%;

    height: 480px;

    object-fit: cover;

    display: block;

}

/*=========================================
PAGINATION
=========================================*/

.about-pagination {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 18px;

    margin-top: 50px;

}

.about-pagination .swiper-pagination-bullet {

    width: 48px;

    height: 48px;

    border-radius: 50%;

    border: 2px solid #d5d5d5;

    background: #fff;

    opacity: 1;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 14px;

    color: #555;

    transition: .35s;

}

.about-pagination .swiper-pagination-bullet-active {

    border-color: #111;

    color: #111;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1200px) {

    .about_content h2 {

        font-size: 52px;

    }

    .about_image img {

        height: 600px;

    }

}

@media(max-width:991px) {


    .products_section {

        padding: 0px 0px 0px !important;

    }

    .about_showcase {

        padding: 80px 0;

    }

    .about_content {


        max-width: 100%;

        text-align: center;

    }

    .about_content h2 {

        font-size: 46px;

    }

    .about_image img {

        height: 500px;

    }

}

@media(max-width:767px) {

    .about_content h2 {

        font-size: 36px;

    }

    .about_content p {

        font-size: 16px;

    }

    .about_image img {

        height: 400px;

    }

}

@media(max-width:576px) {

    .about_showcase {

        padding: 60px 0;

    }

    .about_content h2 {

        font-size: 32px;

    }

    .about_image img {

        height: 320px;

    }

    .about_content .theme_btn {}

}



/*====================================
    IMAGE REVEAL
====================================*/

.about_image {
    position: relative;
}

.about_image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #f4f1e7;
    transform: translateX(0);
    transition: transform 1.2s cubic-bezier(.77, 0, .18, 1);
    z-index: 2;
}

.swiper-slide-active .about_image::after {
    transform: translateX(100%);
}

/*====================================
    IMAGE ZOOM
====================================*/

.about_image img {
    transform: scale(1.15);
    transition: transform 7s ease;
}

.swiper-slide-active .about_image img {
    transform: scale(1);
}

/*====================================
    CONTENT ANIMATION
====================================*/

.about_content span,
.about_content h2,
.about_content p,
.about_content .theme_btn {

    opacity: 0;

    transform: translateY(60px);

}

.swiper-slide-active .about_content span {

    opacity: 1;

    transform: translateY(0);

    transition: .6s;

}

.swiper-slide-active .about_content h2 {

    opacity: 1;

    transform: translateY(0);

    transition: .8s .2s;

}

.swiper-slide-active .about_content p {

    opacity: 1;

    transform: translateY(0);

    transition: .8s .45s;

}

.swiper-slide-active .theme_btn {

    opacity: 1;

    transform: translateY(0);

    transition: .8s .7s;

}

/*====================================
    IMAGE SHADOW
====================================*/

.about_image img {

    box-shadow: 0 35px 80px rgba(0, 0, 0, .18);

}

/*====================================
    PAGINATION
====================================*/

.about-pagination {

    margin-top: 45px;

}

.about-pagination .swiper-pagination-bullet {

    transition: .35s;

}

.about-pagination .swiper-pagination-bullet-active {

    transform: scale(1.15);

}




/*=========================================
CATEGORY SHOWCASE
=========================================*/

.category_showcase {
    padding: 60px 0;
    background: #f4f4f4;
}



.category_showcase .row {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

/*=========================================
LEFT
=========================================*/

.category_left {
    padding: 40px 80px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.top_title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.top_title span {
    font-size: 12px;
    letter-spacing: 2px;
    color: #777;
    font-weight: 600;
}

.top_title .line {
    width: 70px;
    height: 1px;
    background: #999;
}

/*=========================================
CATEGORY LIST
=========================================*/

.category_list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.category_list li {

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 15px 0;

    border-bottom: 1px solid #ececec;

    cursor: pointer;

    transition: .35s;

}

.category_list li:last-child {
    border-bottom: none;
}

.category_list li h3 {

    font-size: 32px;

    font-family: "Cormorant Garamond", serif;

    color: #222;

    transition: .35s;


    margin: 0px;

}

.category_list li:hover span,
.category_list li.active span {

    color: var(--primary);

    transform: translateX(15px);

}

.mobile_manage {


    display: flex;
    width: 98%;
    justify-content: space-between;
}



/*=====================================
MOBILE CATEGORY IMAGE
======================================*/

.mobile_category_image {

    display: none;

}

@media(max-width:991px) {

    .category_list li {
        gap: 15px;
    }

    .category_list li:hover span,
    .category_list li.active span {
        transform: unset !important;
    }

    .category_image {

        display: none;

    }

    .category_left {

        padding: 0;

    }

    .category_list {

        display: block;

    }

    .category_list li {

        padding: 12px;

        margin-bottom: 18px;

        border: 1px solid #ececec;

        border-radius: 18px;

        background: #fff;

    }

    .mobile_category_image {

        display: block;



        overflow: hidden;

        border-radius: 14px;

    }

    .mobile_category_image img {

        width: 80px;

        height: 80px;

        object-fit: cover;

        display: block;

        transition: .6s;

    }

    .category_content {

        display: flex;

        justify-content: space-between;

        align-items: center;

    }

    .category_list li.active {

        border-color: var(--primary);

    }

    .category_list li.active .mobile_category_image img {

        transform: scale(1.05);

    }

}

.mobile_category_image {

    position: relative;

    overflow: hidden;

}

.mobile_category_image img {

    transition: .5s;

}

.category_list li.active .mobile_category_image img {

    transform: scale(1.08);

}

.category_list li.active {

    border-color: var(--primary);

    background: #faf7fd;

}

.category_list li.active span {

    color: var(--primary);

}

/*=========================================
ARROW
=========================================*/

.arrow {

    width: 56px;
    height: 56px;

    border: 1px solid #bbb;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: .35s;

}

.arrow i {

    transition: .35s;

}

.category_list li:hover .arrow,
.category_list li.active .arrow {

    background: #111;
    border-color: #111;
    color: #fff;

}

.category_list li:hover i {

    transform: rotate(45deg);

}

/*=========================================
IMAGE
=========================================*/

.category_image {

    position: relative;

    overflow: hidden;

    height: 100%;

    /* min-height:760px; */

}

.category_image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: 1s ease;

}

/*=========================================
IMAGE ANIMATION
=========================================*/

.category_image.change img {

    opacity: 0;

    transform: scale(1.08);

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1400px) {



    .category_list li h3 {

        font-size: 28px;

    }

}

@media(max-width:1200px) {

    .category_list li h3 {

        font-size: 40px;

    }

}

@media(max-width:991px) {

    .mobile_manage {

        width: calc(100% - 95px);
    }

    .category_list li.active::before {
        content: unset;
    }

    .category_left {
        padding: 35px 10px 35px !important;

    }

    .category_left {

        padding: 40px;

    }

    .category_image {

        min-height: 500px;

    }

    .category_list li h3 {

        font-size: 34px;

    }

}

@media(max-width:767px) {



    .category_left {

        padding: 30px;

    }

    .top_title {

        margin-bottom: 35px;

    }



    .category_list li h3 {

        font-size: 28px;

    }

    .arrow {

        width: 45px;
        height: 45px;

    }

    .category_image {

        min-height: 250px;

    }

}



/*=========================
IMAGE TRANSITION
=========================*/

.category_image img {

    opacity: 1;

    transform: scale(1);

    transition:

        opacity .45s ease,

        transform .8s ease;

}

.category_image.change img {

    opacity: 0;

    transform: scale(1.08);

}

/*=========================
ACTIVE LINE
=========================*/

.category_list li {

    position: relative;

}

.category_list li::before {

    content: "";

    position: absolute;

    left: 0;

    bottom: -1px;

    width: 0;

    height: 2px;

    background: var(--primary);

    transition: .45s;

}

.category_list li.active::before {

    width: 100%;

}

/*=========================
HOVER IMAGE
=========================*/

.category_image {

    overflow: hidden;

}

.category_image img:hover {

    transform: scale(1.03);

}




/*=========================================
PRODUCT SECTION
=========================================*/

.products_section {

    padding: 10px 0px 80px;

    background: #f4f4f4;

}

.section_header {

    display: flex;

    justify-content: space-between;

    align-items: end;

    margin-bottom: 60px;


}

.section_heading {

    max-width: 520px;

}

.section_subtitle {

    display: inline-block;

    color: var(--primary);

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 3px;

    margin-bottom: 15px;

    text-transform: uppercase;

}

.section_title {

    font-family: "Cormorant Garamond", serif;

    font-size: 42px;

    line-height: 1.1;

    color: #111;

    margin-bottom: 0px;

}

.section_heading p {

    color: #777;

    line-height: 1.8;

}


/*=========================================
NAVIGATION
=========================================*/

.product_navigation {

    display: flex;

    align-items: center;

    gap: 20px;

}

.divider {

    width: 70px;

    height: 1px;

    background: #ddd;

}

.product_prev,
.product_next {

    width: 55px;

    height: 55px;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;
    color: #fff;
    border: 1px solid var(--primary);
    background-color: var(--primary);

    cursor: pointer;

    transition: .35s;

}

.product_prev:hover,
.product_next:hover {

    background: var(--primary);

    color: #fff;

    border-color: var(--primary);

}


/*=========================================
CARD
=========================================*/

.product_card {

    position: relative;

    background: #fff;

    border-radius: 5px;

    overflow: hidden;

    transition: .4s;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);

}



/*=========================================
BADGE
=========================================*/

.discount_badge {

    position: absolute;

    top: 18px;

    left: 18px;

    background: var(--primary);

    color: #fff;

    padding: 7px 16px;

    border-radius: 30px;

    font-size: 12px;

    z-index: 5;

}


/*=========================================
WISHLIST
=========================================*/

.wishlist_btn {

    position: absolute;

    right: 18px;

    top: 18px;

    width: 45px;

    height: 45px;

    border: none;

    border-radius: 50%;

    background: #fff;

    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);

    z-index: 5;

    transition: .35s;

}

.wishlist_btn:hover {

    background: var(--primary);

    color: #fff;

}


/*=========================================
IMAGE
=========================================*/

.product_image {

    position: relative;

    background: #f7f7f7;

    overflow: hidden;


    display: flex;

    justify-content: center;

    align-items: center;

}

.product_image img {

    max-width: 100%;

    transition: 1s;

}

.product_card:hover img {

    transform: scale(1.08) rotate(3deg);

}

.product_card a {
    z-index: 10;
        position: relative;
}


/*=========================================
OVERLAY
=========================================*/

.product_overlay {

    position: absolute;

    inset: 0;

    display: flex;

    justify-content: center;

    align-items: center;

    background: rgba(92, 47, 140, .15);

    opacity: 0;

    transition: .35s;

}

.product_card:hover .product_overlay {

    opacity: 1;

}

.quick_view {

    background: #fff;

    color: #111;

    padding: 12px 25px;

    border-radius: 40px;

    font-weight: 600;

    transform: translateY(30px);

    transition: .35s;

}

.product_card:hover .quick_view {

    transform: translateY(0);

}


/*=========================================
CONTENT
=========================================*/

.product_content {

    padding: 12px;

}

.product_content h4 {

     font-size: 18px;
    color: #111;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;


}

.product_rating {

    color: #f6b400;

    margin-bottom: 15px;

    letter-spacing: 3px;

}

.product_price {

    display: flex;

    gap: 12px;

    align-items: center;

    margin-bottom: 0px;

}

.product_price del {

    color: #999;

}

.product_price span {

    color: var(--primary);

    font-size: 14px;

    font-weight: 700;

}


/*=========================================
BUTTON
=========================================*/

.cart_btn {

    width: 100%;

    height: 52px;

    border: none;

    background: #111;

    color: #fff;

    border-radius: 40px;

    transition: .35s;

}



/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px) {

    .category_list li:last-child {
        border: 1px solid #ececec !important;
    }

    .category_list li.active {
        border: 1px solid #ececec;
        background-color: transparent;
    }

    .category_showcase {

        padding-top: 0px;

    }

    .section_header {

        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
        margin-bottom: 30px;

    }

    .section_title {

        font-size: 44px;

    }

}

@media(max-width:767px) {



    .section_title {

        font-size: 36px;

    }

    .product_image {

        height: 260px;

    }

}


/*=========================================
CARD HOVER
=========================================*/

.product_card::before {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(180deg,

            transparent,

            rgba(92, 47, 140, .06));

    opacity: 0;

    transition: .4s;

    z-index: 1;

}

.product_card:hover::before {

    opacity: 1;

}

/*=========================================
IMAGE
=========================================*/

.product_image img {

    transition: transform .8s cubic-bezier(.22, .61, .36, 1);

}

.product_card:hover .product_image img {

    transform: scale(1.08) rotate(3deg);

}

/*=========================================
WISHLIST
=========================================*/

.wishlist_btn {

    transform: translateY(-15px);

    opacity: 0;

}

.product_card:hover .wishlist_btn {

    transform: translateY(0);

    opacity: 1;

}

/*=========================================
ADD TO CART
=========================================*/



.product_card:hover .cart_btn {

    transform: translateY(0);

    opacity: 1;

}

/*=========================================
QUICK VIEW
=========================================*/

.quick_view {

    transform: translateY(25px);

    opacity: 0;

}

.product_card:hover .quick_view {

    transform: translateY(0);

    opacity: 1;

}

/*=========================================
CONTENT
=========================================*/

.product_content {

    position: relative;

    z-index: 2;

}

.category_name {
    color: #888;
    font-size: 12px;
    font-weight: 500;
}

.product_content h4 {

    transition: .35s;

}

.product_card:hover h4 {

    color: var(--primary);

}



.collection-section {
    min-height: 100vh;
    overflow: hidden;
}

.collection-image {
    height: 100vh;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection-content {
    background: var(--primary);
    color: #fff;
    height: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.content-inner {
    max-width: 520px;
    margin: auto;
}

.sub-title {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: .9;
}

.main-title {
    font-size: 42px;
    line-height: 1.15;
    font-weight: 300;
    margin-bottom: 10px;
    font-family: "Cormorant Garamond", serif;
}

.description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 15px;
}

.discover-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 70px;
    border: 2px solid rgba(255, 255, 255, .8);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    transition: .4s;
}

.discover-btn:hover {
    background: #fff;
    color: #0d5a54;
}

@media(max-width:991px) {

    .collection-image,
    .collection-content {
        min-height: auto;
    }

    .collection-image {
        height: 500px;
    }

    .collection-content {
        padding: 80px 30px;
    }

    .main-title {
        font-size: 42px;
    }

    .description {
        font-size: 18px;
    }
}



.collection-section .theme_btn {

    background-color: #45206f;

}



/*=========================================
FEATURED COLLECTION
=========================================*/

.featured_collection_section {

    padding: 60px 0;

    background: #fff;

}

.featured_collection_section .container-fluid {

    max-width: 1800px;

}

/*=========================================
LEFT
=========================================*/

.featured_left {

    background: #7318bc24;

    height: 100%;

    padding: 60px;

    border-radius: 10px;

    display: flex;

    flex-direction: column;

    justify-content: center;

}

.featured_tag {

    font-size: 13px;

    text-transform: uppercase;

    letter-spacing: 3px;

    color: #666;

    display: block;

    margin-bottom: 25px;

}

.featured_left h2 {

    font-size: 42px;

    line-height: 1.05;

    font-family: "Cormorant Garamond", serif;

    color: #222;

    margin-bottom: 30px;

}

/*=========================================
MINI CARD
=========================================*/

.mini_product {

    background: #fff;

    border-radius: 12px;

    padding: 10px;

    display: flex;

    align-items: center;

    gap: 25px;

    transition: .4s;

}

.mini_product:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);

}

.mini_img {



    flex: none;

}

.mini_img img {

    width: 100px;
    height: 100px;
    border-radius: 15px;

}

.mini_content {

    flex: 1;

}

.mini_content small {

    letter-spacing: 2px;

    color: #777;

}

.mini_content h4 {

    font-size: 22px;

    font-family: "Cormorant Garamond", serif;

    margin: 8px 0;

}

.mini_content span {

    color: var(--primary);

    font-weight: 600;

}

.mini_product a {

    width: 60px;

    height: 60px;

    border: 1px solid #ddd;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #222;

    transition: .35s;

}

.mini_product:hover a {

    background: var(--primary);

    color: #fff;

    border-color: var(--primary);

}

/*=========================================
IMAGE
=========================================*/

.featured_big_img {

    display: block;

    height: 100%;

    border-radius: 10px;

    overflow: hidden;

    position: relative;

}

.featured_big_img img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: 1s;

}

.featured_big_img:hover img {

    transform: scale(1.08);

}

/*=========================================
IMAGE OVERLAY
=========================================*/

.featured_big_img::before {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(180deg,

            transparent,

            rgba(0, 0, 0, .15));

    opacity: 0;

    transition: .4s;

    z-index: 2;

}

.featured_big_img:hover::before {

    opacity: 1;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1200px) {

    .featured_left {

        padding: 40px;

    }

    .featured_left h2 {

        font-size: 48px;

        margin-bottom: 50px;

    }

}

@media(max-width:991px) {

    .featured_big_img {

        height: 500px;

    }

}

@media(max-width:767px) {

    .featured_collection_section {

        padding: 70px 0;

    }

    .featured_left {

        padding: 30px;

    }

    .featured_left h2 {

        font-size: 36px;

        margin-bottom: 40px;

    }

    .mini_product {

        padding: 20px;

        gap: 15px;

    }

    .mini_content h4 {

        font-size: 24px;

    }

    .featured_big_img {

        height: 320px;

    }

}


/*=========================================
IMAGE ANIMATION
=========================================*/

.featured_big_img {

    position: relative;

}

.featured_big_img img {

    transform: scale(1);

    transition:

        transform 7s ease,

        filter .6s;

}

.featured_big_img:hover img {

    transform: scale(1.08);

    filter: brightness(.95);

}

/*=========================================
SHINE EFFECT
=========================================*/

.featured_big_img::after {

    content: "";

    position: absolute;

    top: 0;

    left: -120%;

    width: 60%;

    height: 100%;

    background: linear-gradient(120deg,

            transparent,

            rgba(255, 255, 255, .35),

            transparent);

    transform: skewX(-25deg);

    transition: 1s;

    z-index: 3;

}

.featured_big_img:hover::after {

    left: 130%;

}

/*=========================================
LEFT CARD
=========================================*/

.featured_left {

    transition: .5s;

}



/*=========================================
MINI PRODUCT
=========================================*/

.mini_product {

    overflow: hidden;

    position: relative;

}

.mini_product::before {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(135deg,

            rgba(92, 47, 140, .04),

            transparent);

    opacity: 0;

    transition: .4s;

}

.mini_product:hover::before {

    opacity: 1;

}



.mini_img img {

    transition: .5s;

}

/*=========================================
ARROW
=========================================*/

.mini_product a i {

    transition: .35s;

}

.mini_product:hover a i {

    transform: rotate(45deg);

}

/*=========================================
TEXT
=========================================*/

.featured_left h2 {

    transition: .45s;

}



.featured_tag {

    position: relative;

    padding-left: 70px;

}

.featured_tag::before {

    content: "";

    position: absolute;

    left: 0;

    top: 50%;

    width: 55px;

    height: 1px;

    background: var(--primary);

}

/*=========================================
IMAGE FLOAT
=========================================*/

@keyframes floatImage {

    0% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-8px);

    }

    100% {

        transform: translateY(0);

    }

}



/*=========================================
HOVER SHADOW
=========================================*/

.featured_big_img {

    transition: .4s;

}

.featured_big_img:hover {

    box-shadow: 0 25px 60px rgba(92, 47, 140, .15);

}




/*=========================================
TESTIMONIAL SECTION
=========================================*/

.testimonial_section {

    padding: 120px 0;

    background: #faf8fc;

    overflow: hidden;

    position: relative;

}

/*=========================================
BOX
=========================================*/

.testimonial_box {

    max-width: 1000px;

    margin: auto;

    text-align: center;

}

/*=========================================
USER
=========================================*/

.testimonial_user {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 18px;

    margin-bottom: 45px;

}

.testimonial_user img {

    width: 70px;

    height: 70px;

    border-radius: 50%;

    object-fit: cover;

    border: 3px solid #fff;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

}

.testimonial_user h6 {

    margin: 0;

    font-size: 24px;

    font-family: var(--heading-font);

}

.testimonial_user span {

    color: #777;

    font-size: 16px;

}

/*=========================================
QUOTE
=========================================*/

.testimonial_box h2 {

    font-size: 68px;

    line-height: 1.15;

    color: #222;

    font-family: var(--heading-font);

    font-weight: 500;

    margin-bottom: 70px;

}

/*=========================================
PRODUCT CARD
=========================================*/

.testimonial_product {

    background: #fff;

    border-radius: 18px;

    max-width: 700px;

    margin: auto;

    padding: 28px 35px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);

    transition: .4s;

}

.testimonial_product:hover {

    transform: translateY(-8px);

    box-shadow: 0 25px 70px rgba(92, 47, 140, .18);

}

/*=========================================
LEFT
=========================================*/

.product_left {

    display: flex;

    align-items: center;

    gap: 25px;

}

.product_left img {

    width: 75px;

    transition: .4s;

}

.testimonial_product:hover img {

    transform: scale(1.08);

}

.product_left small {

    display: block;

    color: #888;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 8px;

}

.product_left h5 {

    font-size: 34px;

    margin-bottom: 10px;

    font-family: var(--heading-font);

}

.product_left strong {

    color: var(--primary);

    font-size: 20px;

}

/*=========================================
BUTTON
=========================================*/

.testimonial_product a {

    width: 65px;

    height: 65px;

    border-radius: 50%;

    border: 1px solid #d9d9d9;

    display: flex;

    justify-content: center;

    align-items: center;

    color: #222;

    transition: .35s;

}

.testimonial_product:hover a {

    background: var(--primary);

    border-color: var(--primary);

    color: #fff;

}

/*=========================================
NAVIGATION
=========================================*/

.testimonial_prev,
.testimonial_next {

    width: 80px;

    height: 80px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    cursor: pointer;

    font-size: 30px;

    color: #666;

    transition: .35s;

    z-index: 10;

}

.testimonial_prev {

    left: -20px;

}

.testimonial_next {

    right: -20px;

}

.testimonial_prev:hover,
.testimonial_next:hover {

    background: var(--primary);

    color: #fff;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1200px) {

    .testimonial_box h2 {

        font-size: 56px;

    }

}

@media(max-width:991px) {

    .testimonial_section {

        padding: 90px 0;

    }

    .testimonial_box h2 {

        font-size: 44px;

    }

    .testimonial_product {

        flex-direction: column;

        gap: 25px;

    }

    .product_left {

        flex-direction: column;

        text-align: center;

    }

    .testimonial_prev,
    .testimonial_next {

        display: none;

    }

}

@media(max-width:767px) {

    .testimonial_box h2 {

        font-size: 32px;

        line-height: 1.4;

        margin-bottom: 40px;

    }

    .testimonial_product {

        padding: 25px;

    }

    .product_left h5 {

        font-size: 24px;

    }

}





/*=========================================
SCROLL FEATURE SECTION
=========================================*/

.scroll_feature_section {

    position: relative;

    z-index: 2;

    background: #f4f4f4;

}

.scroll_feature_pin {

    min-height: 100vh;

    display: flex;

    align-items: center;

    overflow: hidden;

}

@media(min-width:992px) {
    .scroll_feature_pin {
        position: sticky;
        top: 0;
        height: 100vh;
    }
}

.scroll_feature_section .container-fluid {

    max-width: 1800px;

}

/*=========================================
LEFT CONTENT
=========================================*/

.feature_content {

    max-width: 480px;

    margin: auto;

}

.feature_tag {

    display: inline-block;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 10px;
    font-weight: 600;

}



.feature_title {

    font-size: 42px;

    line-height: 1.05;
    font-family: "Cormorant Garamond", serif;

    margin-bottom: 5px;

    color: #222;



}

.feature_desc {

    font-size: 18px;

    color: #666;

    line-height: 2;

    margin-bottom: 25px;

}


/*=========================================
CENTER PRODUCT
=========================================*/

.floating_product {

    background: #fff;

    border-radius: 18px;


    width: 360px;

    margin: auto;

    position: relative;

    z-index: 5;

    box-shadow: 0 30px 80px rgba(0, 0, 0, .10);

    transition: .5s;

}



.sale_tag {

    position: absolute;

    top: 18px;

    left: 18px;

    background: #5c2f8c;

    color: #fff;

    padding: 6px 14px;

    border-radius: 30px;

    font-size: 12px;

    letter-spacing: 1px;

    z-index: 99;

}

.product_image {

    width: 100%;



    object-fit: contain;

    display: block;


    transition: .6s;

}



.product_info {

    text-align: center;
    padding: 15px;

}

.product_info span {

    display: block;

    color: #777;

    letter-spacing: 2px;

    text-transform: uppercase;

    font-size: 12px;

    margin-bottom: 10px;

}

.product_info h4 {

    font-size: 20px;


    margin-bottom: 10px;

    font-weight: 600;

}

.price {

    font-size: 28px;

    color: var(--primary);

    font-weight: 600;

}

/*=========================================
RIGHT IMAGE
=========================================*/

.feature_image {

    position: relative;

    height: 100vh;

    overflow: hidden;

}

.feature_image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: 1.2s;

}

/* Dark Overlay */

.feature_image::before {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(to left,

            rgba(0, 0, 0, .05),

            transparent);

    z-index: 2;

}

/*=========================================
INDICATOR
=========================================*/

.scroll_indicator {

    position: absolute;

    right: 45px;

    top: 50%;

    transform: translateY(-50%);

    z-index: 20;

}

.scroll_indicator span {

    display: block;

    width: 4px;

    height: 60px;

    background: #ddd;

    margin: 8px 0;

    border-radius: 50px;

    transition: .35s;

}

.scroll_indicator span.active {

    background: var(--primary);

    height: 90px;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1200px) {



    .floating_product {

        width: 320px;

    }

}

@media(max-width:991px) {

    .gloabal_heading {
        font-size: 32px;
    }

    #searchModal .modal-dialog {
        margin: 0px;
    }

    .scroll_feature_pin {

        padding: 85px 0;

        min-height: auto;

    }

    .feature_image {

        height: 550px;

        margin-top: 40px;

    }

    .feature_content {

        text-align: center;

        margin-bottom: 40px;

    }

    .feature_tag {

        padding-left: 0;

    }

    .feature_tag::before {

        display: none;

    }



}

@media(max-width:767px) {



    .feature_desc {

        font-size: 16px;

    }

    .floating_product {

        width: 100%;


    }

    .product_image {

        height: 300px;

    }

    .feature_image {

        height: 380px;

    }

}


.feature_image {

    overflow: hidden;

}

.feature_image img {

    transition: 1s;

}

.feature_image::after {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    background: #fff;

    transform-origin: left;

    transform: scaleX(0);

    pointer-events: none;

}




/*=========================================
TESTIMONIAL STYLE 2
=========================================*/

.testimonial_style_two {

    background: #f4f4f4;

    padding: 60px 0;

}

.pin-spacer {
    width: unset !important;
}

.testimonial_box {

    background: #fff;

    padding: 35px;

    position: relative;

    transition: .4s;

    height: 100%;

    overflow: hidden;

}

.testimonial_box:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 50px rgba(92, 47, 140, .12);

}

.testimonial_rating {

    margin-bottom: 20px;

}

.testimonial_rating i {

    color: #f7b731;

    font-size: 14px;

    margin-right: 2px;

}

.testimonial_box p {

    font-size: 16px;

    line-height: 2;

    color: #555;

    margin-bottom: 60px;

}

.quote_icon {

    position: absolute;

    right: 30px;

    bottom: 95px;

    font-size: 70px;

    color: #efefef;
    z-index: -1;

}

.testimonial_user {

    border-top: 1px solid #ececec;

    padding-top: 20px;

    display: flex;

    align-items: center;

    gap: 15px;

}

.testimonial_user img {

    width: 60px;

    height: 60px;

    border-radius: 50%;

    object-fit: cover;

}

.testimonial_user h5 {

    margin: 0;

    font-size: 20px;

    font-family: var(--heading-font);

}

.testimonial_user span {

    color: #777;

    font-size: 14px;

}

/* Hover */

.testimonial_box:hover .quote_icon {

    color: rgba(92, 47, 140, .12);

    transform: scale(1.1);

}

.testimonial_box:hover img {

    transform: scale(1.08);

}

.testimonial_user img {

    transition: .4s;

}

/* Responsive */

@media(max-width:991px) {


    .feature_title {

        font-size: 32px;

    }


    .testimonial_box {

        margin-bottom: 25px;

    }

}

@media(max-width:767px) {

    .testimonial_style_two {

        padding: 60px 0;

    }

    .testimonial_box {

        padding: 25px;

    }

}



.testimonial_prev,
.testimonial_next {

    width: 55px;

    height: 55px;

    border-radius: 50%;

    background: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    cursor: pointer;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

    transition: .4s;

}

.testimonial_prev:hover,
.testimonial_next:hover {

    background: var(--primary);

    color: #fff;

}




/*=========================================
FOOTER
=========================================*/

.footer_section {

    background: var(--primary);

    color: #d7d0df;

    padding: 100px 0 0;

    position: relative;

    overflow: hidden;

}

.footer_section::before {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    border-radius: 50%;

    background: rgba(92, 47, 140, .15);

    top: -120px;

    right: -120px;

    filter: blur(80px);

}

.footer_section::after {

    content: "";

    position: absolute;

    width: 250px;

    height: 250px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .04);

    left: -100px;

    bottom: -80px;

    filter: blur(60px);

}

/*=========================================
LOGO
=========================================*/

.footer_logo {

    display: inline-block;

    font-size: 42px;

    color: #fff;

    text-decoration: none;

    font-family: var(--heading-font);

    margin-bottom: 20px;

}

.footer_about p {

    color: #b7aec2;

    line-height: 1.9;

    margin-bottom: 30px;

}

/*=========================================
SOCIAL
=========================================*/

.footer_social {

    display: flex;

    gap: 12px;

}

.footer_social a {

    width: 45px;

    height: 45px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, .15);

    display: flex;

    justify-content: center;

    align-items: center;

    color: #fff;

    text-decoration: none;

    transition: .4s;

}

.footer_social a:hover {

    background: #5c2f8c;

    border-color: #5c2f8c;

    transform: translateY(-5px);

}

/*=========================================
LINKS
=========================================*/

.footer_links h4,

.footer_newsletter h4 {

    color: #fff;

    margin-bottom: 28px;

    font-size: 24px;

    font-family: var(--heading-font);

}

.footer_links ul {

    margin: 0;

    padding: 0;

    list-style: none;

}

.footer_links li {

    margin-bottom: 14px;

}

.footer_links a {

    color: #b7aec2;

    text-decoration: none;

    transition: .35s;

    position: relative;

}

.footer_links a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -2px;

    width: 0;

    height: 1px;

    background: #fff;

    transition: .35s;

}

.footer_links a:hover {

    color: #fff;

    padding-left: 8px;

}

.footer_links a:hover::after {

    width: 100%;

}

/*=========================================
NEWSLETTER
=========================================*/

.footer_newsletter p {

    color: #b7aec2;

    margin-bottom: 25px;

    line-height: 1.8;

}

.footer_newsletter form {

    display: flex;

    gap: 12px;

}

.footer_newsletter input {

    flex: 1;

    height: 55px;

    border: none;

    background: #fff;

    color: #fff;

    padding: 0 20px;

    border-radius: 50px;

    outline: none;

}

.footer_newsletter input::placeholder {

    color: #8e839c;

}

.footer_newsletter button {

    background-color: #410185 !important;

}

.footer_newsletter button:hover {

    background: #7640ad;

}

/*=========================================
BOTTOM
=========================================*/

.footer_bottom {

    margin-top: 70px;

    border-top: 1px solid rgba(255, 255, 255, .08);

    padding: 25px 0;

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.footer_bottom p {

    margin: 0;

    color: #a89eb7;

}

.payment_icons {

    display: flex;

    gap: 18px;

    font-size: 34px;

    color: #fff;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px) {

    .footer_about,

    .footer_links,

    .footer_newsletter {

        margin-bottom: 40px;

    }

    .footer_bottom {

        flex-direction: column;

        gap: 20px;

        text-align: center;

    }

}

@media(max-width:767px) {

    .footer_section {

        padding: 70px 0 0;

    }

    .footer_logo {

        font-size: 34px;

    }

    .footer_newsletter form {

        flex-direction: column;

    }

    .footer_newsletter button {

        height: 55px;

        width: 100%;

    }

    .payment_icons {

        justify-content: center;

    }

}




.instagram_section {
    padding: 60px 0;
}


.instagramSwiper .swiper-slide {

    height: auto;

}

.instagram_item {

    display: block;

    position: relative;

    overflow: hidden;

    border-radius: 10px;

}

.instagram_item img {

    width: 100%;

    height: 380px;

    object-fit: cover;

    transition: .6s;

}

.instagram_overlay {

    position: absolute;

    inset: 0;

    background: rgba(92, 47, 140, .55);

    display: flex;

    justify-content: center;

    align-items: center;

    opacity: 0;

    transition: .4s;

}

.instagram_overlay i {

    width: 75px;

    height: 75px;

    border-radius: 50%;

    background: #fff;

    color: #5c2f8c;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 30px;

    transform: scale(.5);

    transition: .4s;

}

.instagram_item:hover img {

    transform: scale(1.12);

}

.instagram_item:hover .instagram_overlay {

    opacity: 1;

}

.instagram_item:hover .instagram_overlay i {

    transform: scale(1);

}

.user_login_btn {
    background-color: var(--primary);
    text-align: center;
    color: white;
    padding: 10px;
    margin-top: 30px;
    display: inline-block;
    font-size: 14px;
}


/*==============================
MOBILE BOTTOM BAR
==============================*/

.mobile_bottom_bar {

    position: fixed;

    left: 0;

    bottom: 0;

    width: 100%;

    height: 72px;

    background: #fff;

    display: none;

    justify-content: space-around;

    align-items: center;

    box-shadow: 0 -8px 25px rgba(0, 0, 0, .08);

    z-index: 999;

    border-top: 1px solid #eee;

}

.mobile_bottom_bar a {

    flex: 1;

    text-align: center;

    text-decoration: none;

    color: #777;

    position: relative;

}

.mobile_bottom_bar a i {

    display: block;

    font-size: 21px;

}

.mobile_bottom_bar span {

    display: block;

    margin-top: 4px;

    font-size: 11px;

}

/*==============================
CENTER SEARCH
==============================*/

.search_btn {

    position: relative;

}

.search_circle {

    width: 68px;

    height: 68px;

    border-radius: 50%;

    background: linear-gradient(135deg, #5c2f8c, #8d5cc6);

    position: absolute;

    left: 50%;

    top: -50px;

    transform: translateX(-50%);

    display: flex;

    justify-content: center;

    align-items: center;

    box-shadow: 0 15px 35px rgba(92, 47, 140, .35);

    border: 5px solid #fff;

    transition: .35s;

}

.search_circle i {

    color: #fff;

    font-size: 24px;

}



.search_btn:hover .search_circle {

    transform: translateX(-50%) scale(1.08);

}

/*==============================
ACTIVE
==============================*/

.mobile_bottom_bar a.active {

    color: #5c2f8c;

}

.mobile_bottom_bar a.active i {

    transform: translateY(-2px);

}

/*==============================
CART BADGE
==============================*/

.mobile_bottom_bar b {

    position: absolute;

    right: 28%;

    top: 2px;

    width: 18px;

    height: 18px;

    background: #ff3b30;

    color: #fff;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 10px;

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:991px) {

    .mobile_bottom_bar {

        display: flex;

    }

    body {

        padding-bottom: 65px;

    }

}



.btn-close {
    background-color: var(--primary);
    width: 10px;
    height: 10px;
    border-radius: 100%;
    opacity: 1;
    --bs-btn-close-color: #fff;
    --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293A1 1 0 01.293 14.293L6.586 8 .293 1.707A1 1 0 01.293.293z'/%3e%3c/svg%3e");
    background-size: 10px;
}


.btn-close:focus {

    box-shadow: none;

}


.best_seller {

    padding-top: 60px !important;

}



.Close_btn i {
    color: black;
}


/*==================================
OFFCANVAS CART ITEM
==================================*/

.cart_item {

    display: flex;

    gap: 15px;

    padding: 14px;

    border: 1px solid #ececec;

    border-radius: 16px;

    background: #f4f4f4;

    transition: .35s;

    margin-bottom: 18px;

}



.cart_item_image {

    width: 85px;

    height: 85px;

    border-radius: 12px;

    overflow: hidden;

    flex-shrink: 0;

    background: #f8f8f8;

}

.cart_item_image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .45s;

}

.cart_item:hover img {

    transform: scale(1.08);

}

.cart_item_content {

    flex: 1;

}

.cart_top {

    display: flex;

    justify-content: space-between;

    gap: 15px;

}

.cart_top h5 {

    font-size: 14px;

    line-height: 1.5;

    margin-bottom: 4px;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

    overflow: hidden;

}



.sr-cart-banner-container {
    background-color: var(--primary);
    text-align: center;
    color: white;
    font-weight: 400;
    font-size: 14px;
    padding: 3px 0;
}

.cart_price {

    color: var(--primary);

    font-weight: 700;

    white-space: nowrap;

}

.cart_bottom {

    display: flex;

    justify-content: flex-end;

    margin-top: 15px;

}

/*========================*/

.qty_box {

    display: flex;

    align-items: center;

    border: 1px solid #ddd;

    border-radius: 8px;

    overflow: hidden;

}

.qty_box button {

    width: 34px;

    height: 34px;

    border: none;

    background: #fafafa;

    cursor: pointer;

    transition: .3s;

}

.qty_box button:hover {

    background: var(--primary);

    color: #fff;

}


.qty_box button:hover i {
    color: white;
}

.qty_box input {

    width: 40px;

    border: none;

    text-align: center;

    font-weight: 600;

    outline: none;

}


/*========================*/

.safe_checkout {

    background: #8EF2C7;
    color: #007A3D;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    padding: 10px;
    letter-spacing: .5px;
    animation: glowText 1.4s infinite alternate;

}

@keyframes glowText {

    0% {

        text-shadow: 0 0 4px rgba(0, 180, 90, .4);

    }

    100% {

        text-shadow:

            0 0 10px #00c853,

            0 0 18px #00e676,

            0 0 28px #69f0ae;

    }

}

/*========================*/

.cart_footer_bottom {

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    gap: 15px;

}

/* .cart_total span {

    display: block;

    color: #666;

    font-size: 13px;

    margin-bottom: 3px;

} */

.cart_total h4 {

    margin: 0;

    color: var(--primary);

    font-size: 18px;

    font-weight: 700;

}

/*========================*/

.checkout_btn {

    flex: 1;

    max-width: 220px;

    height: 55px;

    background: #111;

    color: #fff;

    text-decoration: none;

    border-radius: 14px;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

    font-weight: 700;

    transition: .35s;

}

.checkout_btn:hover {

    background: var(--primary);

    color: #fff;

    transform: translateY(-2px);

    box-shadow: 0 12px 30px rgba(92, 47, 140, .25);

}

/*========================*/

@media(max-width:576px) {

    .cart_footer_bottom {

        padding: 12px;

    }

    .cart_total h4 {

        font-size: 20px;

    }

    .checkout_btn {

        height: 50px;

        font-size: 15px;

    }

    .safe_checkout {

        font-size: 14px;

    }

}




/*==================================
SHOP BANNER
===================================*/

.shop_banner {

    position: relative;

    height: 420px;

    overflow: hidden;

    display: flex;

    align-items: center;

}

.shop_banner img {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

}

.shop_banner_overlay {

    position: absolute;

    inset: 0;

    background: rgba(20, 10, 30, .45);

}

.shop_banner_content {

    position: relative;

    z-index: 2;

    text-align: center;

    color: #fff;

}

.banner_subtitle {

    display: inline-block;

    letter-spacing: 4px;

    font-size: 13px;

    text-transform: uppercase;

    margin-bottom: 18px;

    color: #d7c5ef;

}

.shop_banner_content h1 {

    font-size: 72px;

    margin-bottom: 18px;

    font-family: var(--heading-font);

}

.breadcrumb_custom {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 12px;

}

.breadcrumb_custom a {

    color: #fff;

    text-decoration: none;

    transition: .35s;

}

.breadcrumb_custom a:hover {

    color: var(--primary);

}

.breadcrumb_custom span {

    color: #ddd;

}

@media(max-width:991px) {

    .shop_banner {

        height: 320px;

    }

    .shop_banner_content h1 {

        font-size: 46px;

    }

}

@media(max-width:576px) {

    .shop_banner {

        height: 260px;

    }

    .shop_banner_content h1 {

        font-size: 34px;

    }

    .banner_subtitle {

        font-size: 11px;

        letter-spacing: 2px;

    }

}


/*==================================
SHOP TOOLBAR
===================================*/

.shop_toolbar {

    padding: 30px 0;

    border-bottom: 1px solid #eee;

    background: #fff;

}

.shop_toolbar_wrapper {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

}

.toolbar_left {

    display: flex;

    align-items: center;

    gap: 18px;

}

.filter_btn {

    height: 42px;

    padding: 0 24px;

    border: 1px solid #ddd;

    background: #fff;

    color: black;

    display: flex;

    align-items: center;

    gap: 10px;

    transition: .35s;

    font-weight: 600;

}

.filter_btn:hover {

    background: var(--primary);

    color: #fff;

    border-color: var(--primary);

}

.product_count {

    color: #777;

    font-size: 15px;

}

.toolbar_right {

    display: flex;

    align-items: center;

    gap: 18px;

}

.product_view {

    display: flex;

    gap: 10px;

}

.product_view button {

    width: 48px;

    height: 48px;

    border-radius: 50%;

    border: 1px solid #ddd;

    background: #fff;

    transition: .35s;

}

.product_view button.active,

.product_view button:hover {

    background: var(--primary);

    color: #fff;

    border-color: var(--primary);

}

.toolbar_right select {

    height: 42px;

    padding: 0 18px;



    border: 1px solid #ddd;

    min-width: 220px;

    outline: none;

    cursor: pointer;

}

.filter_box input[type="checkbox"] {

    width: 18px;

    height: 18px;

    cursor: pointer;

    accent-color: #5c2f8c;

}

.toolbar_right select:focus {

    border-color: var(--primary);

}


@media(max-width:991px) {

    .shop_toolbar_wrapper {

        /* flex-direction:column; */

        align-items: flex-start;

    }

    .toolbar_left {

        width: 100%;

        justify-content: space-between;

    }

    .toolbar_right {

        width: 100%;

        justify-content: space-between;

    }

    .toolbar_right select {

        flex: 1;

        min-width: auto;

    }

}

@media(max-width:576px) {

    .product_count {

        display: none;

    }

    .filter_btn {

        flex: 1;

        justify-content: center;

    }

    .product_view {

        display: none;

    }

}



.shop_products {

    padding: 70px 0;

    background: #fff;

    overflow: hidden;

}

.shop_products .row {

    --bs-gutter-x: 28px;

    --bs-gutter-y: 38px;

}

.shop_products .product_card {

    height: 100%;

}




/*==================================
FILTER CANVAS
===================================*/

.filter_canvas {

    width: 420px;

}

.filter_canvas .offcanvas-header {

    padding: 25px;

    border-bottom: 1px solid #eee;

}

.filter_canvas h4 {

    margin: 0;

    font-family: var(--heading-font);

}

.filter_box {
    padding: 0px 0 10px;

}

.filter_box h5 {

    font-weight: 600;
    margin-bottom: 18px;
    font-size: 16px;
    color: var(--primary);

}

.filter_box label {

    font-weight: 600;
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    cursor: pointer;
    font-size: 14px;

}

.filter_box input[type=text] {

    height: 50px;

    border-radius: 12px;

}

/* Price Slider styling */
.price_slider_wrapper {
    margin-top: 15px;
    margin-bottom: 25px;
    padding: 0 5px;
}

.price_slider_inputs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 10px;
}

.price_input_group {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 6px 10px;
    background: #fff;
    width: 45%;
}

.price_slider_currency {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    margin-right: 4px;
}

.price_slider_inputs input[type="number"] {
    width: 100%;
    border: none;
    outline: none;
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    margin: 0;
    background: transparent;
    -moz-appearance: textfield;
}

.price_slider_inputs input[type="number"]::-webkit-outer-spin-button,
.price_slider_inputs input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.price_slider_separator {
    font-size: 18px;
    color: #999;
}

.dual_range_slider {
    height: 5px;
    position: relative;
    background: #ddd;
    border-radius: 5px;
}

.dual_range_slider .slider_track {
    height: 100%;
    left: 0%;
    right: 0%;
    position: absolute;
    border-radius: 5px;
    background: var(--primary, #000);
}

.dual_range_slider input[type="range"] {
    position: absolute;
    width: 100%;
    height: 5px;
    top: 0;
    left: 0;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.dual_range_slider input[type="range"]::-webkit-slider-thumb {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: var(--primary, #000);
    pointer-events: auto;
    -webkit-appearance: none;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.dual_range_slider input[type="range"]::-moz-range-thumb {
    height: 16px;
    width: 16px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: var(--primary, #000);
    pointer-events: auto;
    -moz-appearance: none;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.color_filter {

    display: flex;

    gap: 12px;

}

.color_filter span {

    width: 34px;

    height: 34px;

    border-radius: 50%;

    cursor: pointer;

    border: 2px solid #eee;

    transition: .35s;

}

.color_filter span:hover {

    transform: scale(1.15);

}

.price_text {

    margin-top: 12px;

    color: #777;

}

/*==================================
FOOTER
===================================*/

.filter_footer {

    position: sticky;

    bottom: 0;

    background: #fff;

    padding: 10px;

    display: flex;

    gap: 12px;

    border-top: 1px solid #eee;

}

.clear_btn {

    flex: 1;



    border: 1px solid #ddd;

    background: #fff;
    padding: 10px;


}

.apply_btn {

    flex: 1;



    border: none;

    background: var(--primary);

    color: #fff;

    padding: 10px;



}



/*==================================
PAGE BANNER
===================================*/

.page_banner {

    padding: 40px 0 50px;

    background: #f8f8f8;

    border-bottom: 1px solid #ececec;

}

/*==============================*/

.breadcrumb_nav {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 35px;

}

.breadcrumb_nav a {

    color: #7a7a7a;

    text-decoration: none;

    font-size: 15px;

    transition: .35s;

}

.breadcrumb_nav a:hover {

    color: var(--primary);

}

.breadcrumb_nav span {

    color: #9c9c9c;

    font-size: 15px;

}

/* Divider Line */

.breadcrumb_nav span:first-of-type {

    width: 22px;

    height: 1px;

    background: #cfcfcf;

    display: block;

}

/*==============================*/

.page_title {

    font-size: 42px;

    font-family: var(--heading-font);

    color: #1b1b1b;
    font-family: "Cormorant Garamond", serif;

    margin: 0;

    font-weight: 500;

    line-height: 1.1;

}

/*==============================*/

@media(max-width:991px) {

    .shop_products {

        padding: 30px 0;

    }

    .page_banner {

        padding: 55px 0 65px;

    }

    .page_title {

        font-size: 54px;

    }

}

@media(max-width:576px) {

    .page_banner {

        padding: 35px 0 40px;

    }

    .page_title {

        font-size: 32px;

    }

    .breadcrumb_nav {

        margin-bottom: 20px;

    }

    .breadcrumb_nav a,

    .breadcrumb_nav span {

        font-size: 14px;

    }

}




/*=========================================
ACCOUNT
=========================================*/

.account_section {

    padding: 60px 0;

    background: #faf8fc;

}

.account_wrapper {

    background: #fff;

    border-radius: 24px;

    overflow: hidden;

    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);

}

/*=========================================
LEFT IMAGE
=========================================*/

.account_image {

    position: relative;

    height: 100%;


}

.account_image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}

.account_overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(to top,
            rgba(20, 10, 30, .85),
            rgba(20, 10, 30, .25));

    display: flex;

    justify-content: flex-end;

    flex-direction: column;

    padding: 25px;

    color: #fff;

}

.account_overlay h2 {

    color: #fff;

    margin: 18px 0;

}

.account_overlay p {

    color: #ddd;

    max-width: 420px;

    line-height: 1.8;

    margin-bottom: 0px;

}

/*=========================================
FORM
=========================================*/

.account_form {

    padding: 70px;

}

.account_form p {

    color: #777;

    margin-bottom: 40px;

}

/* .form_group{

    margin-bottom:25px;

} */

.form_group label {

    display: block;

    margin-bottom: 10px;

    font-weight: 600;

    color: #222;

}

.form_group input {

    width: 100%;

    padding: 10px 15px;

    border: 1px solid #ddd;

    border-radius: 14px;

    outline: none;

    transition: .35s;

}

.form_group select:focus {

    box-shadow: none;
    border-color: var(--primary);

}


.form_group select {

    width: 100%;

    padding: 10px 15px;

    border: 1px solid #ddd;

    border-radius: 14px;

    outline: none;

    transition: .35s;

}

.form_group input:focus {

    border-color: #5c2f8c;

    box-shadow: none;

}

/*=========================================
PASSWORD
=========================================*/

.password_group {

    position: relative;

}

.toggle_password {

    position: absolute;

    right: 18px;

    top: 48px;

    background: none;

    border: none;

    cursor: pointer;

    color: #777;

}

/*=========================================
OPTIONS
=========================================*/

.account_options {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 30px;

    font-size: 15px;

}

.account_options label {

    display: flex;

    align-items: center;

    gap: 10px;

    cursor: pointer;

}

.account_options input {

    accent-color: #5c2f8c;

}

.account_options a {

    color: #5c2f8c;

    text-decoration: none;

}

/*=========================================
BUTTONS
=========================================*/

.account_form .theme_btn {

    width: 100%;


}

.account_divider {

    position: relative;

    margin: 35px 0;

    text-align: center;

}

.account_divider::before {

    content: "";

    position: absolute;

    left: 0;

    top: 50%;

    width: 100%;

    height: 1px;

    background: #eee;

}

.account_divider span {

    position: relative;

    background: #fff;

    padding: 0 18px;

    color: #888;

}

.social_btn {

    width: 100%;

    height: 56px;

    border: 1px solid #ddd;

    border-radius: 14px;

    background: #fff;

    margin-bottom: 15px;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 12px;

    transition: .35s;

}

.social_btn:hover {

    border-color: #5c2f8c;

    color: #5c2f8c;

}

.account_bottom {

    margin-top: 35px;

    text-align: center;

}

.account_bottom a {

    color: #5c2f8c;

    text-decoration: none;

    font-weight: 600;

}



/*====================================
ACCOUNT RESPONSIVE
====================================*/

.account_wrapper {

    display: flex;

    align-items: stretch;

}



.account_image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}

.account_form {

    display: flex;

    justify-content: center;

    flex-direction: column;

    height: 100%;

    padding: 80px;

}

/*====================*/

@media(max-width:1199px) {

    .account_form {

        padding: 60px;

    }

}

/*====================*/

@media(max-width:991px) {


    header {

        margin-bottom: 0px;

    }

    .account_section {

        padding: 60px 0;

    }

    .account_wrapper {

        display: block;

        min-height: auto;

    }

    .account_image {

        display: none;

    }

    .account_form {

        padding: 40px 30px;

    }

}

/*====================*/

@media(max-width:767px) {

    .account_form {

        padding: 30px 20px;

    }

    .account_form h2 {

        font-size: 34px;

    }

    .account_options {

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;

    }

    .social_btn {

        font-size: 15px;

    }

}

/*====================*/

@media(max-width:575px) {


    .order_bottom {
        margin-top: 15px;
    }

    .account_section {

        padding: 40px 0;

    }

    .account_wrapper {

        border-radius: 15px;

    }

    .account_form {

        padding: 25px 18px;

    }

    .account_form h2 {

        font-size: 28px;

    }

    .form_group input {

        height: 52px;

        font-size: 15px;

    }



    .social_btn {

        height: 52px;

    }

}




/*==================================
FORGOT PASSWORD
==================================*/

.forgot_section {

    background: #faf8fc;

    padding: 60px 0;

}

.forgot_card {

    background: #fff;

    padding: 55px;

    border-radius: 24px;

    text-align: center;

    box-shadow: 0 25px 70px rgba(0, 0, 0, .08);

}

.forgot_icon {

    width: 90px;

    height: 90px;

    margin: auto;

    margin-bottom: 25px;

    border-radius: 50%;

    background: rgba(92, 47, 140, .08);

    display: flex;

    justify-content: center;

    align-items: center;

    color: var(--primary);

    font-size: 34px;

}

.forgot_card p {

    color: #777;

    margin: 20px 0 35px;

}

.back_login {

    margin-top: 30px;

}

.back_login a {

    color: var(--primary);

    text-decoration: none;

    font-weight: 600;

}

/* Responsive */

@media(max-width:768px) {

    .forgot_card {

        padding: 35px 25px;

    }

}

@media(max-width:576px) {

    .forgot_card {

        padding: 25px 18px;

        border-radius: 18px;

    }

    .forgot_icon {

        width: 70px;

        height: 70px;

        font-size: 28px;

    }

}




/*==================================
DASHBOARD BOX
===================================*/

.dashboard_box {

    background: #fff;

    border-radius: 20px;

    padding: 20px;

    box-shadow: 0 15px 45px rgba(0, 0, 0, .05);

    /* height: 100%; */

}

.dashboard_box_header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 15px;

}

.dashboard_box_header h3 {

    margin: 0;

    font-size: 20px;

    font-family: var(--heading-font);

}

.dashboard_box_header a {

    color: var(--primary);

    font-weight: 600;

    text-decoration: none;

}

/*==================================
TABLE
===================================*/

.order_table {

    width: 100%;

}

.order_table th {

    padding: 18px;

    border-bottom: 1px solid #eee;

    color: #888;

    font-weight: 600;

}

.order_table td {

    padding: 20px 18px;

    border-bottom: 1px solid #f5f5f5;

}

/*==================================
STATUS
===================================*/

.status {

    display: inline-flex;

    align-items: center;

    padding: 8px 16px;

    border-radius: 30px;

    font-size: 13px;

    font-weight: 600;

}

.delivered {

    background: #eafaf1;

    color: #27ae60;

}

.shipped {

    background: #eef5ff;

    color: #0066ff;

}

.pending {

    background: #fff6df;

    color: #d48806;

}

/*==================================
BUTTON
===================================*/


.table_btn:hover {

    background: var(--primary);

    color: #fff;

}

/*==================================
RESPONSIVE
===================================*/

@media(max-width:991px) {

    .dashboard_box {

        padding: 20px;

    }

    .order_table {

        min-width: 750px;

    }

}




/*=========================================
ACCOUNT DASHBOARD
=========================================*/

.account_dashboard {

    background: #f8f8fb;

    padding: 80px 0;

}

/*=========================================
SIDEBAR
=========================================*/

.account_sidebar {

    background: #fff;

    border-radius: 22px;

    padding: 30px;

    position: sticky;

    top: 120px;

    box-shadow: 0 15px 45px rgba(0, 0, 0, .05);

}

.account_user {

    display: flex;

    align-items: center;

    gap: 18px;

    padding-bottom: 25px;

    border-bottom: 1px solid #eee;

    margin-bottom: 25px;

}

.account_avatar {

    width: 70px;

    height: 70px;

    border-radius: 50%;

    overflow: hidden;

    border: 3px solid rgba(92, 47, 140, .12);

}

.account_avatar img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}

.account_user span {

    display: block;

    color: #777;

    font-size: 14px;

}

.account_user h4 {

    margin: 4px 0 0;

    font-size: 22px;

}

/*=========================================
MENU
=========================================*/

.account_sidebar ul {

    margin: 0;

    padding: 0;

    list-style: none;

}

.account_sidebar li {

    margin-bottom: 10px;

}

.account_sidebar li:last-child {

    margin-bottom: 0;

}

.account_sidebar li a {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 15px 18px;

    border-radius: 14px;

    text-decoration: none;

    color: #444;

    font-weight: 500;

    transition: .35s;

}

.account_sidebar li a i {

    width: 22px;

    text-align: center;

    font-size: 18px;

}

.account_sidebar li:hover a,

.account_sidebar li.active a {

    background: rgba(92, 47, 140, .08);

    color: var(--primary);

}

/*=========================================
CONTENT
=========================================*/

.dashboard_content {

    /* padding-left:35px; */

    height: 100%;

}

.dashboard_heading {

    margin-bottom: 40px;

}



/*=========================================
DASHBOARD CARDS
=========================================*/

.dashboard_card {

    background: #fff;

    border-radius: 20px;

    padding: 30px;

    text-align: center;

    transition: .35s;

    box-shadow: 0 10px 35px rgba(0, 0, 0, .05);

    height: 100%;

}

.dashboard_card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 50px rgba(92, 47, 140, .12);

}

.dashboard_card i {

    width: 70px;

    height: 70px;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    margin: auto;

    margin-bottom: 20px;

    font-size: 26px;

    color: var(--primary);

    background: rgba(92, 47, 140, .08);

}

.dashboard_card h3 {

    font-size: 36px;

    margin-bottom: 8px;

    font-family: var(--heading-font);

}

.dashboard_card span {

    color: #777;

    display: block;

}


/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1199px) {

    .dashboard_content {

        padding-left: 20px;

    }

}

@media(max-width:991px) {

    .account_sidebar {

        position: relative;

        top: auto;

        margin-bottom: 30px;

    }

    .dashboard_content {

        padding-left: 0;

    }

}

@media(max-width:767px) {

    .account_dashboard {

        padding: 60px 0;

    }

    .account_sidebar {

        padding: 20px;

    }

    .account_user {

        gap: 15px;

    }

    .account_avatar {

        width: 60px;

        height: 60px;

    }

    .dashboard_card {

        padding: 25px;

    }

    .dashboard_card h3 {

        font-size: 28px;

    }

}


/*=========================================
DASHBOARD BOX
=========================================*/

.dashboard_box {

    background: #fff;

    border-radius: 22px;

    padding: 20px;


    box-shadow: 0 15px 45px rgba(0, 0, 0, .05);

}

.dashboard_box+.dashboard_box {


    margin-top: 30px;

}

/*=========================================
HEADER
=========================================*/

.dashboard_box_header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 15px;

}

.dashboard_box_header h3 {

    margin: 0;

    font-size: 20px;

    font-family: var(--heading-font);

    font-weight: 600;



}

.dashboard_box_header a {

    color: var(--primary);

    font-weight: 600;

    text-decoration: none;

    position: relative;

}

.dashboard_box_header a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -2px;

    width: 0;

    height: 1px;

    background: var(--primary);

    transition: .35s;

}

.dashboard_box_header a:hover::after {

    width: 100%;

}

/*=========================================
ORDER TABLE
=========================================*/

.order_table {

    width: 100%;

    border-collapse: collapse;

}

.order_table thead {

    background: #faf8fc;

}

.order_table th {

    padding: 18px 20px;

    font-size: 14px;

    color: #666;

    font-weight: 600;

    border: none;

    white-space: nowrap;

}

.order_table td {

    padding: 22px 20px;

    border-top: 1px solid #f1f1f1;

    vertical-align: middle;

    white-space: nowrap;

}

.order_table tbody tr {

    transition: .35s;

}

.order_table tbody tr:hover {

    background: #fcfbfe;

}


/*=========================================
STATUS
=========================================*/

.status {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 110px;

    height: 36px;

    padding: 0 18px;

    border-radius: 50px;

    font-size: 13px;

    font-weight: 600;

}

.status.delivered {

    background: #e9f9ef;

    color: #17a34a;

    display: flex;

}

.status.shipped {

    background: #eef5ff;

    color: #2563eb;

}

.status.pending {

    background: #fff8e5;

    color: #d97706;

}

.status.cancelled {

    background: #fdecec;

    color: #dc2626;

}


/*=========================================
TABLE BUTTON
=========================================*/

.table_btn {

    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 2px 11px;
    background: #f6f2fb;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: .35s;
    border: none;
    gap: 5px;

    padding: 9px 30px;

}

.table_btn:hover {

    background: var(--primary);

    color: #fff;

    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(92, 47, 140, .18);

}


/*=========================================
EMPTY
=========================================*/

.empty_state {

    text-align: center;

    padding: 70px 20px;

}

.empty_state img {

    width: 140px;

    margin-bottom: 20px;

}

.empty_state h4 {

    margin-bottom: 12px;

}

.empty_state p {

    color: #777;

    margin-bottom: 25px;

}



/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px) {

    .dashboard_box {

        padding: 25px;

    }

    .order_table {

        min-width: 760px;

    }

}

@media(max-width:576px) {

    .dashboard_box {

        padding: 20px;

        border-radius: 18px;

    }

    .dashboard_box_header {

        margin-bottom: 20px;

    }

    .dashboard_box_header h3 {

        font-size: 22px;

    }

}


/*==================================
MOBILE ACCOUNT MENU
==================================*/

.account_mobile_menu {

    margin-bottom: 25px;

}

.account_menu_btn {

    width: 100%;

    height: 56px;

    border: none;

    border-radius: 14px;

    background: var(--primary);

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    font-weight: 600;

}

.account_canvas {

    width: 320px;

}

.canvas_user {

    display: flex;

    align-items: center;

    gap: 15px;

    padding-bottom: 25px;

    margin-bottom: 25px;

    border-bottom: 1px solid #eee;

}

.canvas_user img {

    width: 60px;

    height: 60px;

    border-radius: 50%;

    object-fit: cover;

}

.account_canvas ul {

    margin: 0;

    padding: 0;

    list-style: none;

}

.account_canvas li {

    margin-bottom: 10px;

}

.account_canvas a {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 14px 18px;

    border-radius: 12px;

    color: #444;

    text-decoration: none;

}

.account_canvas li.active a {

    background: rgba(92, 47, 140, .08);

    color: var(--primary);

}

.account_canvas a:hover {

    background: rgba(92, 47, 140, .08);

}




/*==================================
ORDER CARD
==================================*/

.order_card {

    display: flex;

    gap: 25px;

    padding: 10px;

    border: 1px solid #eee;

    border-radius: 18px;

    margin-bottom: 25px;

    transition: .35s;

}

.order_card:hover {

    border-color: var(--primary);

    box-shadow: 0 20px 50px rgba(92, 47, 140, .08);

}

.order_image {

    width: 120px;

    height: 120px;

    border-radius: 15px;

    overflow: hidden;

    flex-shrink: 0;

    background: #fafafa;

}

.order_image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}

.order_content {

    flex: 1;

}

.order_content h4 {
    font-size: 20px;
    color: black;
}

.order_top {

    display: flex;

    justify-content: space-between;



}

.order_top span {

    color: #888;

    font-size: 13px;

}

.order_top h4 {

    margin-top: 8px;

}

.order_content ul {

    display: flex;

    gap: 40px;

    padding: 0;

    margin: 0 0 0px;

    list-style: none;

}

.order_content li {

    color: #777;

}

.order_content strong {

    display: block;

    margin-top: 5px;

    color: #111;

}

.order_bottom {

    display: flex;

    gap: 15px;

}

.order_actions {

    display: flex;

    gap: 15px;

}

.order_actions input,

.order_actions select {

    height: 42px;

    padding: 0 18px;

    border: 1px solid #ddd;



}



@media(max-width:991px) {

    .order_card {

        flex-direction: column;
        gap: 5px;

    }

    .order_image {

        width: 120px;

        height: 120px;

    }

    .order_content ul {

        flex-wrap: wrap;

        gap: 20px;

    }

}

@media(max-width:576px) {

    .order_actions {

        flex-direction: column;

        width: 100%;

    }

    .order_bottom {

        flex-direction: column;

    }

    .order_bottom a {

        width: 100%;

    }

}



/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px) {

    .order_info {

        grid-template-columns: 1fr;

    }

    .order_timeline {

        overflow-x: auto;

        gap: 40px;

        justify-content: flex-start;

    }

    .order_timeline::before {

        display: none;

    }

    .timeline_item {

        min-width: 180px;

    }

    .order_product_card {

        flex-wrap: wrap;

    }

    .order_product_img {

        width: 100px;

        height: 100px;

    }

    .order_product_price {

        width: 100%;



    }

}

@media(max-width:576px) {

    .order_details_top,

    .order_products {

        padding: 20px;

    }

    .order_title {

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;

    }

    .order_title h2 {

        font-size: 20px;

    }

    .timeline_icon {

        width: 60px;

        height: 60px;

        font-size: 18px;

    }

    .order_meta {

        flex-direction: column;

        gap: 10px;

    }

}



/*=========================================
ORDER SUMMARY
=========================================*/

.summary_list {

    display: flex;

    flex-direction: column;

    gap: 18px;

}

.summary_item {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-bottom: 18px;

    border-bottom: 1px dashed #e8e8e8;

}

.summary_item:last-child {

    border-bottom: none;

    padding-top: 15px;

    margin-top: 10px;

}

.summary_item span {

    color: #777;

    font-size: 15px;

}

.summary_item strong {

    color: #222;

    font-size: 16px;

}

.summary_item.total {

    border: 1px solid rgba(92, 47, 140, .15);

    background: rgba(92, 47, 140, .05);

    padding: 22px;

    border-radius: 16px;

}

.summary_item.total span {

    color: #222;

    font-weight: 600;

}

.summary_item.total strong {

    color: var(--primary);

    font-size: 24px;

}

/*=========================================
ADDRESS
=========================================*/

.address_box {

    border: 1px solid #ededed;

    border-radius: 18px;

    padding: 25px;

    transition: .35s;

}

.address_box:hover {

    border-color: var(--primary);

    box-shadow: 0 15px 35px rgba(92, 47, 140, .08);

}

.address_box h5 {

    margin-bottom: 15px;

}

.address_box p {

    color: #777;

    line-height: 1.8;

    margin-bottom: 15px;

}

.address_box a {

    color: var(--primary);

    text-decoration: none;

    font-weight: 600;

}

/*=========================================
PAYMENT
=========================================*/

.payment_card {

    padding: 25px;

    border-radius: 18px;

    border: 1px solid #ededed;

    background: #fafafa;

}

.payment_card span {

    display: block;

    color: #888;

    margin-bottom: 8px;

}

.payment_card h5 {

    margin-bottom: 8px;

}

.payment_card p {

    color: #666;

    margin-bottom: 18px;

}

.payment_status {

    display: inline-flex;

    align-items: center;

    padding: 10px 18px;

    border-radius: 40px;

    background: #e9f9ef;

    color: #17a34a;

    font-size: 14px;

    font-weight: 600;

}

/*=========================================
ACTION BUTTONS
=========================================*/

.order_action_btns {

    display: flex;

    flex-direction: column;

    gap: 15px;

}

.order_action_btns .theme_btn {

    width: 100%;

    justify-content: center;

    gap: 12px;

}

.order_action_btns .theme_btn.outline {

    background: #fff;

    border: 1px solid #ddd;

    color: #444;

}

.order_action_btns .theme_btn.outline:hover {

    background: var(--primary);

    color: #fff;

    border-color: var(--primary);

}



/*=========================================
ORDER DETAILS TOP
=========================================*/

.order_details_top {

    background: #fff;

    padding: 20px;

    border-radius: 22px;


    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);

}

.back_order {

    margin-bottom: 25px;

}

.back_order a {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    text-decoration: none;

    color: #666;

    transition: .35s;

}

.back_order a:hover {

    color: var(--primary);

}

.order_title {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 30px;

}

.order_title span {

    display: block;

    color: #777;

    font-size: 14px;

}

.order_title h2 {

    margin-top: 8px;

    font-size: 22px;

}

.order_info {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

}

.order_info div {

    padding: 18px;

    border-radius: 16px;

    background: #f4f4f4;

}

.order_info small {

    display: block;

    color: #888;

    margin-bottom: 8px;

}

.order_info strong {

    font-size: 18px;

}

/*=========================================
TIMELINE
=========================================*/

.order_timeline {

    background: #fff;

    padding: 40px;

    border-radius: 22px;

    margin-bottom: 35px;

    display: flex;

    justify-content: space-between;

    position: relative;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);

}

.order_timeline::before {

    content: "";

    position: absolute;

    left: 8%;

    right: 8%;

    top: 70px;

    height: 3px;

    background: #ececec;

}

.timeline_item {

    position: relative;

    z-index: 2;

    text-align: center;

    width: 25%;

}

.timeline_icon {

    width: 72px;

    height: 72px;

    border-radius: 50%;

    margin: auto;

    margin-bottom: 18px;

    background: #ececec;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 22px;

    transition: .35s;

}

.timeline_item.active .timeline_icon {

    background: var(--primary);

    color: #fff;

    box-shadow: 0 10px 25px rgba(92, 47, 140, .25);

}

.timeline_item h6 {

    margin-bottom: 5px;

}

.timeline_item span {

    font-size: 13px;

    color: #777;

}



/*=========================================
ORDER PRODUCTS
=========================================*/

.order_products {

    background: #fff;

    padding: 35px;

    border-radius: 22px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);

}

.order_product_card {

    display: flex;

    align-items: center;

    gap: 25px;

    padding: 25px 0;

    border-bottom: 1px solid #eee;
    margin-bottom: 20px;

}

.order_product_card:last-child {

    border: none;

}

.order_product_img {

    width: 120px;

    height: 120px;

    border-radius: 18px;

    overflow: hidden;

    background: #fafafa;

    flex-shrink: 0;

}

.order_product_img img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .4s;

}

.order_product_card:hover img {

    transform: scale(1.08);

}

.order_product_content {

    flex: 1;

}

.order_product_content h4 {

    margin-bottom: 8px;

}

.order_product_content p {

    color: #777;

    margin-bottom: 5px;

}

.order_meta {

    /* display:flex; */

    gap: 30px;

}

.order_meta span {

    color: #777;

}

.order_meta strong {

    color: #111;

}

.order_product_price {

    font-size: 24px;

    font-weight: 700;

    color: var(--primary);

}


.order_details_section {
    padding: 60px 0;
}


/*=========================================
WISHLIST CARD
=========================================*/

.wishlist_card {

    position: relative;

    background: #fff;
    border-radius: 5px;

    overflow: hidden;

    transition: .4s;

    height: 100%;

    border: 1px solid #ededed;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .04);

}



/*=========================================
REMOVE BUTTON
=========================================*/

.remove_wishlist:hover i {
    color: white;
}

.remove_wishlist i {
    color: black;
}

.remove_wishlist {

    position: absolute;

    top: 15px;

    right: 15px;

    width: 42px;

    height: 42px;

    border: none;

    border-radius: 50%;

    background: #fff;

    box-shadow: 0 10px 20px rgba(0, 0, 0, .08);

    z-index: 2;

    transition: .35s;

}

.remove_wishlist:hover {

    background: #e53935;

    color: #fff;

}

/*=========================================
IMAGE
=========================================*/

.wishlist_image {

    background: #fafafa;

    overflow: hidden;

    aspect-ratio: 1/1;

}

.wishlist_image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s;

}

.wishlist_card:hover .wishlist_image img {

    transform: scale(1.08);

}

/*=========================================
CONTENT
=========================================*/

.wishlist_content {

    padding: 12px;

}

.wishlist_content>span {

    color: #888;

    font-size: 13px;

    letter-spacing: 1px;

    text-transform: uppercase;

}

.wishlist_content h4 {

    margin: 0px 0 10px;

    font-size: 22px;

    line-height: 1.4;

}

.wishlist_price {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 18px;

}

.wishlist_price del {

    color: #999;

}

.wishlist_price strong {

    color: var(--primary);

    font-size: 22px;

}

/*=========================================
STOCK
=========================================*/

.stock_status {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #18a558;

    font-weight: 600;

    margin-bottom: 25px;

}

.stock_status i {

    font-size: 14px;

}

/*=========================================
BUTTONS
=========================================*/

.wishlist_btns {

    display: flex;

    gap: 12px;

}

.wishlist_btn i {
    color: black;
}

.wishlist_btns .theme_btn {

    flex: 1;

    justify-content: center;

}

.wishlist_btns .table_btn {

    min-width: 90px;

    justify-content: center;

}



/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px) {


    .order_product_card {

        gap: 8px;
    }

    .order_info strong {
        font-size: 14px;
    }


    .order_info div {
        padding: 12px;
    }

    .order_info {

        gap: 5px;
    }

    .order_title {

        align-items: start;

    }

    .wishlist_content {

        padding: 22px;

    }

    .wishlist_content h4 {

        font-size: 20px;

    }

}

@media(max-width:767px) {

    .dashboard_box_header {
        flex-direction: column;
        gap: 10px;
        align-items: start;
    }

    .wishlist_btns {

        flex-direction: column;

    }

    .wishlist_btns .theme_btn,

    .wishlist_btns .table_btn {

        width: 100%;

    }

}

@media(max-width:576px) {

    .wishlist_content {

        padding: 18px;

    }

    .remove_wishlist {

        width: 38px;

        height: 38px;

        top: 12px;

        right: 12px;

    }

    .wishlist_content h4 {

        font-size: 18px;

    }

    .wishlist_price strong {

        font-size: 20px;

    }

}




/*==================================
ADDRESS
==================================*/

.address_card {

    position: relative;

    background: #fff;

    border: 1px solid #ececec;

    border-radius: 20px;

    padding: 30px;

    transition: .35s;

    height: 100%;

}

.address_card:hover {

    border-color: var(--primary);

    box-shadow: 0 20px 50px rgba(92, 47, 140, .08);

    transform: translateY(-5px);

}

.default_badge {

    position: absolute;

    top: 20px;

    right: 20px;

    background: var(--primary);

    color: #fff;

    padding: 6px 16px;

    border-radius: 30px;

    font-size: 12px;

}

.address_card h4 {

    margin-bottom: 18px;

}

.address_card h5 {

    margin-bottom: 10px;

}

.address_card p {

    color: #777;

    line-height: 1.8;

    margin-bottom: 18px;

}

.address_card>a {

    color: var(--primary);

    text-decoration: none;

    font-weight: 600;

}

.address_action {

    display: flex;

    gap: 12px;

    margin-top: 30px;

}

.delete_btn:hover {

    background: #dc3545;

    color: #fff;

}



@media(max-width:767px) {

    .address_card {

        padding: 22px;

    }

    .address_action {

        flex-direction: column;

    }

    .address_action button {

        width: 100%;

    }

    .default_badge {

        position: static;

        display: inline-block;

        margin-bottom: 18px;

    }

    .modal-footer {

        flex-direction: column;

    }

    .modal-footer .theme_btn,

    .modal-footer .table_btn {

        width: 100%;

    }

}



/*==================================
PROFILE
==================================*/

.profile_wrapper {

    display: grid;

    grid-template-columns: 320px 1fr;

    gap: 40px;

}

.profile_left {

    text-align: center;

    padding-right: 20px;

    border-right: 1px solid #eee;

}

.profile_image {

    position: relative;

    width: 180px;

    height: 180px;

    margin: auto;

    margin-bottom: 25px;

}

.profile_image img {

    width: 100%;

    height: 100%;

    border-radius: 50%;

    object-fit: cover;

    border: 6px solid rgba(92, 47, 140, .08);

}

.profile_image label {

    position: absolute;

    right: 10px;

    bottom: 10px;

    width: 48px;

    height: 48px;

    border-radius: 50%;

    background: var(--primary);

    color: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    cursor: pointer;

}

.profile_left span {

    color: #777;

}






@media(max-width:991px) {

    .profile_wrapper {

        grid-template-columns: 1fr;

    }

    .profile_left {

        border: none;

        padding: 0;

        margin-bottom: 0px;

    }

}

@media(max-width:576px) {

    .profile_image {

        width: 140px;

        height: 140px;

    }

    .profile_right .theme_btn {

        width: 100%;

    }

}



/*=========================================
CART PAGE
=========================================*/

.cart_page {



    padding: 60px 0;

}

.cart_page_header {

    margin-bottom: 40px;

}

.cart_page_header p {

    color: #777;

    margin-top: 10px;

}

/*=========================================
CART PRODUCT
=========================================*/

.cart_product {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 12px;

    margin-bottom: 25px;

    background: #fff;

    border-radius: 22px;

    border: 1px solid #ececec;

    transition: .35s;

}



/*=========================================
IMAGE
=========================================*/

.cart_product_image {

    width: 120px;

    height: 120px;

    border-radius: 18px;

    overflow: hidden;

    background: #f8f8f8;

    flex-shrink: 0;

}

.cart_product_image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s;

}

.cart_product:hover img {

    transform: scale(1.08);

}

/*=========================================
CONTENT
=========================================*/

.cart_product_content {

    flex: 1;

}

.cart_product_content>span {

    display: block;

    color: #888;

    font-size: 13px;

    letter-spacing: 1px;

    text-transform: uppercase;

}

.cart_product_content h4 {

    margin: 5px 0;

    font-size: 20px;

}

.cart_product_content p {

    color: #777;

    margin-bottom: 5px;

}

.cart_price {

    display: flex;

    align-items: center;

    gap: 15px;

}

.cart_price del {

    color: #999;

}

.cart_price strong {

    color: var(--primary);

    font-size: 24px;

}

/*=========================================
ACTION
=========================================*/

.cart_product_action {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 20px;

}

.remove_cart {

    width: 38px;

    height: 38px;

    border: none;

    border-radius: 50%;

    background: #fff2f2;

    color: #d62828;

    transition: .35s;

    margin-left: auto;

}

.remove_cart:hover {

    background: #d62828;

    color: #fff;

    transform: rotate(10deg);

}



/*=========================================
SUMMARY
=========================================*/

.cart_summary {

    position: sticky;

    top: 120px;

    background: #fff;

    border-radius: 22px;

    padding: 20px;

    border: 1px solid #ececec;

    box-shadow: 0 20px 45px rgba(0, 0, 0, .05);

}

.cart_summary h3 {

    margin-bottom: 30px;

}

/*=========================================
FREE SHIPPING
=========================================*/

.shipping_progress {

    margin-bottom: 30px;

}

.progress_text {

    font-size: 15px;

    color: #666;

    margin-bottom: 12px;

}

.progress {

    height: 8px;

    border-radius: 50px;

    overflow: hidden;

    background: #ececec;

}

.progress-bar {

    background: linear-gradient(90deg, #5c2f8c, #8b5cf6);

}

/*=========================================
SUMMARY ROW
=========================================*/

.summary_row {

    display: flex;

    justify-content: space-between;

    margin-bottom: 18px;

    color: #666;

}

.summary_total {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-top: 10px;

    margin-top: 25px;

    border-top: 1px solid #eee;

}

.summary_total strong {

    font-size: 20px;

    color: var(--primary);

}

.continue_btn {

    display: block;

    margin-top: 18px;

    text-align: center;

    color: var(--primary);

    text-decoration: none;

    font-weight: 600;

}


/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px) {

    .cart_page {
        padding: 40px 0;
    }

    .cart_summary {

        position: relative;

        top: auto;



    }

    .cart_product {

        flex-wrap: wrap;

    }

    .cart_product_image {

        width: 140px;

        height: 140px;

    }

    .cart_product_action {

        width: 100%;

        flex-direction: row;

        justify-content: space-between;

        margin-top: 15px;

    }

}

@media(max-width:767px) {

    .cart_product {

        padding: 20px;

        gap: 20px;

    }

    .cart_product_image {

        width: 110px;

        height: 110px;

    }

    .cart_product_content h4 {

        font-size: 22px;

    }

    .cart_price strong {

        font-size: 20px;

    }

}

@media(max-width:576px) {

    .cart_product {

        align-items: start;

    }

    .cart_product_image {

        width: 120px;

        height: 120px;

    }





    .cart_summary {

        padding: 25px;

    }

    .summary_total strong {

        font-size: 22px;

    }

}




/*=========================================
CONTACT PAGE
=========================================*/

.contact_page {



    position: relative;


    padding: 60px 0;

}

.section_desc {

    max-width: 650px;

    margin: 20px auto 0;

    color: #777;

    line-height: 1.9;

}

/*=========================================
CONTACT CARD
=========================================*/

.contact_card {

    background: #fff;

    border-radius: 22px;

    padding: 35px 25px;

    text-align: center;

    height: 100%;

    border: 1px solid #ececec;

    transition: .4s;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .04);

}

.contact_card:hover {

    transform: translateY(-8px);

    border-color: var(--primary);

    box-shadow: 0 25px 60px rgba(92, 47, 140, .12);

}

.contact_icon {

    width: 80px;

    height: 80px;

    margin: auto;

    margin-bottom: 25px;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    background: rgba(92, 47, 140, .08);

    color: var(--primary);

    font-size: 28px;

    transition: .4s;

}

.contact_card:hover .contact_icon {

    background: var(--primary);

    color: #fff;

    transform: rotateY(180deg);

}

.contact_card h4 {

    margin-bottom: 15px;

}

.contact_card p,

.contact_card a {

    color: #777;

    text-decoration: none;

    line-height: 1.8;

    transition: .3s;

}

.contact_card a:hover {

    color: var(--primary);

}



/*=========================================
CONTACT FORM
=========================================*/

.contact_left {

    padding-right: 40px;

}

.contact_left p {

    margin-top: 20px;

    color: #777;

    line-height: 1.9;

}

.contact_form {

    background: #fff;

    padding: 20px;

    border-radius: 24px;

    border: 1px solid #ececec;

    box-shadow: 0 20px 45px rgba(0, 0, 0, .05);

}

.contact_form .form-control {

    height: 58px;

    border-radius: 14px;

    border: 1px solid #ddd;

    padding: 0 20px;

    box-shadow: none;

    transition: .35s;

}

.contact_form textarea.form-control {

    height: auto;

    padding: 18px 20px;

    resize: none;

}

.contact_form .form-control:focus {

    border-color: var(--primary);

    box-shadow: 0 0 0 4px rgba(92, 47, 140, .08);

}

.contact_form .theme_btn {

    min-width: 220px;

    justify-content: center;

}


/*=========================================
ANIMATION
=========================================*/

.contact_card::before {

    content: "";

    position: absolute;

    inset: 0;

    border-radius: 22px;

    border: 2px solid transparent;

    transition: .35s;

    pointer-events: none;

}

.contact_card {

    position: relative;

    overflow: hidden;

}

.contact_card:hover::before {

    border-color: rgba(92, 47, 140, .15);

}

.contact_form {

    position: relative;

    overflow: hidden;

}

.contact_form::after {

    content: "";

    position: absolute;

    width: 220px;

    height: 220px;

    background: rgba(92, 47, 140, .04);

    border-radius: 50%;

    top: -100px;

    right: -100px;

}


/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1199px) {

    .contact_left {

        padding-right: 0;

    }

}

@media(max-width:991px) {

    .contact_form {

        padding: 35px;

    }

    .contact_left {

        text-align: center;

        margin-bottom: 20px;

    }

}

@media(max-width:767px) {

    .contact_card {

        padding: 30px 20px;

    }

    .contact_icon {

        width: 65px;

        height: 65px;

        font-size: 22px;

    }

    .contact_form {

        padding: 25px;

    }

    .contact_form .theme_btn {

        width: 100%;

    }

}

@media(max-width:576px) {

    .contact_page {

        padding: 60px 0;

    }

    .contact_form {

        padding: 20px;

        border-radius: 18px;

    }

    .contact_form .form-control {

        height: 52px;

        font-size: 15px;

    }

    .contact_form textarea.form-control {

        min-height: 140px;

    }

    .contact_card h4 {

        font-size: 20px;

    }

}



/*==================================
MAP
===================================*/

.map_wrapper {


    background: #fff;


}



.map_content p {

    max-width: 650px;

    margin: 20px auto 0;

    color: #777;

}

.map_wrapper iframe {

    width: 100%;

    height: 500px;

    border: 0;

    display: block;

}

/*==================================
FAQ
===================================*/

.contact_faq .accordion-item {

    border: none;

    margin-bottom: 20px;

    border-radius: 18px !important;

    overflow: hidden;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .05);

}

.contact_faq .accordion-button {

    height: 75px;

    font-size: 18px;

    font-weight: 600;

    background: #fff;

    box-shadow: none;

}

.contact_faq .accordion-button:not(.collapsed) {

    background: var(--primary);

    color: #fff;

}

.contact_faq .accordion-button:focus {

    box-shadow: none;

}

.contact_faq .accordion-body {

    padding: 25px;

    line-height: 1.8;

    color: #666;

}

/*==================================
INSTAGRAM
===================================*/

.instagram_strip {

    overflow: hidden;

}

.instagram_strip img {

    width: 100%;

    aspect-ratio: 1;

    object-fit: cover;

    transition: .5s;

}

.instagram_strip .col {

    overflow: hidden;

}

.instagram_strip img:hover {

    transform: scale(1.1);

}



@media(max-width:991px) {

    .map_content {

        padding: 40px 25px;

    }

    .map_wrapper iframe {

        height: 400px;

    }

}

@media(max-width:767px) {

    .contact_faq .accordion-button {

        height: auto;

        padding: 20px;

        font-size: 16px;

    }

    .instagram_strip .col {

        flex: 0 0 50%;

    }

}

@media(max-width:576px) {

    .map_wrapper iframe {

        height: 300px;

    }

    .instagram_strip .col {

        flex: 0 0 100%;

    }

}



/*=========================================
ABOUT HERO
=========================================*/

.about_page {

    position: relative;

    overflow: hidden;

    background: #faf8fc;

}

.about_page::before {

    content: "";

    position: absolute;

    width: 550px;

    height: 550px;

    border-radius: 50%;

    background: rgba(92, 47, 140, .04);

    right: -180px;

    top: -180px;

}

.about_image_wrapper {

    position: relative;

}

.about_image_wrapper img {

    width: 100%;

    border-radius: 30px;

    object-fit: cover;

}

.experience_box {

    position: absolute;

    left: -30px;

    bottom: 40px;

    background: #fff;

    padding: 28px;

    border-radius: 22px;

    width: 220px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, .08);

}

.experience_box h2 {

    color: var(--primary);

    font-size: 52px;

    margin-bottom: 8px;

}

.experience_box span {

    color: #666;

    line-height: 1.7;

}



/*=========================================
OUR STORY
=========================================*/

.story_image {

    overflow: hidden;

    border-radius: 30px;

}

.story_image img {

    width: 100%;

    transition: .6s;

}

.story_image:hover img {

    transform: scale(1.08);

}

.story_counter {

    background: #fff;

    text-align: center;

    padding: 30px;

    border-radius: 22px;

    border: 1px solid #eee;

    transition: .35s;

    height: 100%;

}

.story_counter:hover {

    transform: translateY(-8px);

    border-color: var(--primary);

    box-shadow: 0 20px 45px rgba(92, 47, 140, .08);

}

.story_counter h3 {

    font-size: 42px;

    color: var(--primary);

    margin-bottom: 10px;

}

.story_counter span {

    color: #777;

}


/*=========================================
WHY US
=========================================*/

.about_card {

    background: #fff;

    border-radius: 24px;

    padding: 40px 30px;

    text-align: center;

    transition: .4s;

    height: 100%;

    border: 1px solid #ececec;

}

.about_card:hover {

    transform: translateY(-10px);

    box-shadow: 0 25px 60px rgba(92, 47, 140, .10);

    border-color: var(--primary);

}

.about_card i {

    width: 85px;

    height: 85px;

    margin: auto;

    margin-bottom: 25px;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 30px;

    color: var(--primary);

    background: rgba(92, 47, 140, .08);

    transition: .4s;

}

.about_card:hover i {

    background: var(--primary);

    color: #fff;

    transform: rotateY(180deg);

}

.about_card h4 {

    margin-bottom: 15px;

}

.about_card p {

    color: #777;

    line-height: 1.8;

}


/*=========================================
PROCESS
=========================================*/

.process_card {

    position: relative;

    background: #fff;

    padding: 40px 30px;

    border-radius: 24px;

    text-align: center;

    transition: .4s;

    border: 1px solid #ececec;

    height: 100%;

}

.process_card:hover {

    transform: translateY(-8px);

    border-color: var(--primary);

}

.process_card span {

    display: inline-flex;

    justify-content: center;

    align-items: center;

    width: 70px;

    height: 70px;

    border-radius: 50%;

    background: rgba(92, 47, 140, .08);

    color: var(--primary);

    font-size: 26px;

    font-weight: 700;

    margin-bottom: 25px;

}

.process_card h4 {

    margin-bottom: 15px;

}

.process_card p {

    color: #777;

}


/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px) {

    .experience_box {

        left: 20px;

        bottom: 20px;

    }

    .story_counter {

        margin-bottom: 20px;

    }

}

@media(max-width:767px) {

    .about_page {

        text-align: center;

    }

    .about_btns {

        justify-content: center;

        display: flex;

    }

    .experience_box {

        position: relative;

        left: auto;

        bottom: auto;

        margin: 20px auto 0;

        width: 100%;

        max-width: 260px;

    }

    .about_card {

        padding: 30px 20px;

    }

    .process_card {

        padding: 30px 20px;

    }

}

@media(max-width:576px) {

    .experience_box h2 {

        font-size: 40px;

    }

    .story_counter h3 {

        font-size: 34px;

    }

    .about_card i {

        width: 70px;

        height: 70px;

        font-size: 24px;

    }

    .process_card span {

        width: 60px;

        height: 60px;

        font-size: 22px;

    }

}




.about_page,
.our_story {

    padding: 60px 0;

}





.about_process {

    padding: 60px 0;

}


.navbar {
    position: fixed;
    top: 111px;
    left: 0;
    width: 100%;
    z-index: 9;
    transition: transform .35s ease;
    background-color: white;
}

.navbar.nav-hide {
    transform: translateY(-200%);
}

.navbar.nav-show {
    transform: translateY(0);
}


/*=========================================
QUICK VIEW MODAL
=========================================*/

.quick_view_modal .modal-dialog {

    max-width: 1200px;

}

.quick_view_modal .modal-content {

    border: none;

    border-radius: 24px;

    overflow: hidden;

    box-shadow: 0 30px 80px rgba(0, 0, 0, .15);

}

.quick_view_modal .modal-body {

    padding: 40px;

}

.quick_view_modal .btn-close {

    position: absolute;

    right: 20px;

    top: 20px;

    z-index: 20;

    opacity: 1;

}

/*=========================================
GALLERY
=========================================*/

.quick_gallery {

    position: relative;

}

.quickMainSwiper {

    border-radius: 20px;

    overflow: hidden;

    background: #f8f8f8;

}

.quickMainSwiper img {

    width: 100%;

    aspect-ratio: 1;

    object-fit: cover;

    transition: .4s;

}

.quickMainSwiper img:hover {

    transform: scale(1.08);

}

.quickThumbSwiper {

    margin-top: 15px;

}

.quickThumbSwiper .swiper-slide {

    border: 2px solid transparent;

    border-radius: 12px;

    overflow: hidden;

    cursor: pointer;

    opacity: .5;

}

.quickThumbSwiper .swiper-slide-thumb-active {

    border-color: var(--primary);

    opacity: 1;

}

.quickThumbSwiper img {

    width: 100%;

    aspect-ratio: 1;

    object-fit: cover;

}

/*=========================================
CONTENT
=========================================*/

.product_category {

    display: inline-block;

    color: var(--primary);

    font-size: 13px;

    text-transform: uppercase;

    letter-spacing: 1px;

}

.quick_content h2 {

    margin: 15px 0;

    font-size: 38px;

}

.quick_rating {

    color: #f4b400;

    margin-bottom: 18px;

}

.quick_rating span {

    color: #777;

    margin-left: 10px;

}

.quick_price {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 20px;

}

.quick_price del {

    color: #999;

    font-size: 18px;

}

.quick_price strong {

    color: var(--primary);

    font-size: 32px;

}

.quick_desc {

    color: #777;

    line-height: 1.9;

}

.stock {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #1fa64b;

    margin: 25px 0;

    font-weight: 600;

}


/*=========================================
SIZE
=========================================*/

.quick_option {

    margin-bottom: 30px;

}

.quick_option label {

    display: block;

    margin-bottom: 12px;

    font-weight: 600;

}

.size_list {

    display: flex;

    gap: 12px;

}

.size_list button {

    width: 48px;

    height: 48px;

    border-radius: 50%;

    border: 1px solid #ddd;

    background: #fff;

    transition: .35s;

}

.size_list button:hover,

.size_list button.active {

    background: var(--primary);

    border-color: var(--primary);

    color: #fff;

}

/*=========================================
QTY
=========================================*/

.qty_box i {
    color: var(--primary);
}

.quick_qty {

    margin-bottom: 30px;

}

.quick_qty label {

    display: block;

    margin-bottom: 12px;

    font-weight: 600;

}

.qty_box {

    display: inline-flex;

    border: 1px solid #ddd;

    border-radius: 50px;

    overflow: hidden;

}

.qty_box button {

    width: 50px;

    border: none;

    background: #fff;

}

.qty_box input {

    width: 70px;

    border: none;

    text-align: center;

    outline: none;

    padding: 5px 0;

}


/*=========================================
BUTTONS
=========================================*/

.quick_btns {

    display: flex;

    gap: 15px;

    margin: 35px 0;

}

.quick_btns .theme_btn {

    flex: 1;

    justify-content: center;

}

.quick_btns .table_btn {

    flex: 1;

    justify-content: center;

}

.quick_meta {

    display: flex;

    gap: 35px;

    padding-top: 25px;

    border-top: 1px solid #eee;

}

.quick_meta strong {

    display: block;

    margin-bottom: 8px;

}

.quick_feature {

    display: flex;

    gap: 20px;

    margin-top: 30px;

    padding-top: 25px;

    border-top: 1px solid #eee;

}

.quick_feature div {

    display: flex;

    gap: 10px;

    align-items: center;

    color: #666;

}

.quick_feature i {

    color: var(--primary);

}


@media(max-width:991px) {

    .quick_view_modal .modal-body {

        padding: 25px;

    }

    .quick_content {

        margin-top: 25px;

    }

}

@media(max-width:767px) {

    .quick_content h2 {

        font-size: 30px;

    }

    .quick_btns {

        flex-direction: column;

    }

    .quick_meta {

        flex-direction: column;

        gap: 15px;

    }

    .quick_feature {

        flex-direction: column;

    }

}

@media(max-width:576px) {

    .quick_view_modal .modal-body {

        padding: 18px;

    }

    .quickThumbSwiper {

        display: none;

    }

    .quick_price strong {

        font-size: 26px;

    }

    .quick_content h2 {

        font-size: 26px;

    }

}


.mobile_input {

    display: flex;

    align-items: center;

    border: 1px solid #ddd;

    border-radius: 14px;

    overflow: hidden;

}

.mobile_input span {

    padding: 0 20px;

    background: #f7f7f7;

    font-weight: 600;

    height: 46px;

    display: flex;

    align-items: center;

}

.mobile_input input {

    border: none !important;

    box-shadow: none !important;

}

.otp_inputs {

    display: flex;

    gap: 10px;

}

.otp_inputs input {

    width: 55px;

    height: 58px;

    border: 1px solid #ddd;

    border-radius: 12px;

    text-align: center;

    font-size: 22px;

    font-weight: 600;

}

.otp_inputs input:focus {

    border-color: var(--primary);

}

@media(max-width:576px) {

    .otp_inputs {

        justify-content: space-between;

    }

    .otp_inputs input {

        width: 45px;

        height: 50px;

    }

}

/*==================================
PROFILE
==================================*/
.profile_wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
}

.profile_left {
    text-align: center;
    padding-right: 20px;
    border-right: 1px solid #eee;
}

.profile_image {
    position: relative;
    width: 180px;
    height: 180px;
    margin: auto;
    margin-bottom: 25px;
}

.profile_image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid rgba(92, 47, 140, .08);
    transition: opacity 0.3s ease;
}

.profile_image.uploading img {
    opacity: 0.5;
}

.profile_image label {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.profile_image label:hover {
    transform: scale(1.1);
    background: #4a2175;
}

.profile_image .upload_spinner {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: var(--primary);
    z-index: 3;
}

.profile_image.uploading .upload_spinner {
    display: block;
}

.profile_left span {
    color: #777;
}

@media(max-width:991px) {
    .profile_wrapper {
        grid-template-columns: 1fr;
    }

    .profile_left {
        border: none;
        padding: 0;
        margin-bottom: 0px;
    }
}

@media(max-width:576px) {
    .profile_image {
        width: 140px;
        height: 140px;
    }

    .profile_right .theme_btn {
        width: 100%;
    }
}

/*=========================================
SEARCH MODAL WISHLIST BUTTON STYLE OVERRIDES
=========================================*/
#searchModal .tinv-wraper {
    position: absolute;
    right: 18px;
    top: 18px;
    z-index: 5;
    margin: 0;
    padding: 0;
    display: inline-block;
    width: auto;
    height: auto;
}

#searchModal .tinv-wraper a.tinvwl_add_to_wishlist_button {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    transition: .35s;
    text-indent: -9999px !important;
    white-space: nowrap;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

#searchModal .tinv-wraper a.tinvwl_add_to_wishlist_button::before {
    content: "\f004" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 400 !important;
    text-indent: 0 !important;
    font-size: 16px !important;
    color: #333 !important;
    display: inline-block !important;
    margin: 0 !important;
}

#searchModal .tinv-wraper a.tinvwl_add_to_wishlist_button:hover {
    background: var(--primary) !important;
}

#searchModal .tinv-wraper a.tinvwl_add_to_wishlist_button:hover::before {
    color: #fff !important;
}

#searchModal .tinv-wraper .tinvwl-tooltip {
    display: none !important;
}

/*=========================================
GENERAL PRODUCT CARD WISHLIST BUTTON STYLE OVERRIDES
=========================================*/
.product_card .tinv-wraper {
    position: absolute;
    right: 18px;
    top: 18px;
    z-index: 15;
    margin: 0;
    padding: 0;
    display: inline-block;
    width: auto;
    height: auto;
    transform: translateY(-15px);
    opacity: 0;
    transition: .35s;
}

.product_card:hover .tinv-wraper {
    transform: translateY(0);
    opacity: 1;
}

.product_card .tinv-wraper a.tinvwl_add_to_wishlist_button {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    transition: .35s;
    text-indent: -9999px !important;
    white-space: nowrap;
    overflow: hidden;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.product_card .tinv-wraper a.tinvwl_add_to_wishlist_button::before {
    content: "\f004" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 400 !important;
    /* outline heart */
    text-indent: 0 !important;
    font-size: 16px !important;
    color: black !important;
    display: inline-block !important;
    margin: 0 !important;
}

.product_card .tinv-wraper a.tinvwl_add_to_wishlist_button:hover {
    background: var(--primary) !important;
}

.product_card .tinv-wraper a.tinvwl_add_to_wishlist_button:hover::before {
    color: #fff !important;
}

.product_card .tinv-wraper a.tinvwl_add_to_wishlist_button.tinvwl-product-in-list::before {
    font-weight: 900 !important;
    /* solid heart when added */
    color: var(--primary) !important;
}

.product_card .tinv-wraper a.tinvwl_add_to_wishlist_button.tinvwl-product-in-list:hover::before {
    color: #fff !important;
}

.product_card .tinv-wraper .tinvwl-tooltip {
    display: none !important;
}


/*=========================================
CHECKOUT PAGE
=========================================*/

/* ---- Page Wrapper ---- */
.siyora_checkout_page {
    padding: 60px 0 80px;
    background: var(--bg);
}

/* ---- Page Header ---- */
.checkout_page_header {
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
}

.checkout_heading {
    font-size: 34px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
    line-height: 1.15;
}

.checkout_breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
}

.checkout_breadcrumb a {
    color: var(--text-light);
    transition: var(--transition);
}

.checkout_breadcrumb a:hover {
    color: var(--primary);
}

.checkout_breadcrumb span {
    color: var(--text-light);
}

.checkout_breadcrumb span:last-child {
    color: var(--primary);
    font-weight: 600;
}

/* ---- Coupon Toggle ---- */
.checkout_coupon_wrap {
    margin-bottom: 24px;
}

.checkout_coupon_toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.checkout_coupon_toggle:hover {
    background: #f9f4ff;
    border-color: var(--primary);
}

.checkout_coupon_toggle .checkout_coupon_arrow {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.checkout_coupon_toggle[aria-expanded="true"] .checkout_coupon_arrow {
    transform: rotate(180deg);
}

.checkout_coupon_form {
    margin-top: 12px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
}

/* WC coupon form overrides */
.siyora_checkout_page .checkout_coupon {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    flex-wrap: wrap;
}

/*
 * WooCommerce hardcodes style="display:none" directly on the coupon <form>
 * itself (normally revealed by WC's own "Click here to enter your code"
 * link/JS — which this theme intentionally hides via
 * .woocommerce-form-coupon-toggle above). Our custom accordion only shows/
 * hides the #checkout_coupon_form wrapper, not that inline style, so once
 * the wrapper is open the form was still invisible. Force it visible only
 * inside our wrapper (the other, default-hidden coupon-form instance
 * elsewhere on the page is untouched and stays hidden as intended).
 */
#checkout_coupon_form .checkout_coupon {
    display: flex !important;
}

.siyora_checkout_page .checkout_coupon p {
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.siyora_checkout_page .checkout_coupon .input-text {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    color: var(--black);
    transition: var(--transition);
    outline: none;
}

.siyora_checkout_page .checkout_coupon .input-text:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(92, 47, 140, 0.08);
}

.siyora_checkout_page .checkout_coupon .button {
    padding: 10px 24px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.siyora_checkout_page .checkout_coupon .button:hover {
    background: var(--primary-dark);
}

/* ---- Section Cards (Billing / Shipping) ---- */
.checkout_section_card {
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 16px;
    padding: 12px;
    margin-bottom: 24px;

}

.woocommerce-checkout #payment{


    background: rgb(255 255 255);
    border-radius: 5px;
    padding: 0px;
}

.wc_payment_methods { 

    padding: 0px!important;
}

.checkout_section_card:last-child {
    margin-bottom: 0;
}

.checkout_section_card:empty,
.checkout_section_card:has(.woocommerce-shipping-fields:empty) {
    display: none !important;
}

/* ---- WooCommerce Form Field Labels ---- */
.siyora_checkout_page .woocommerce-billing-fields h3,
.siyora_checkout_page .woocommerce-shipping-fields h3,
.siyora_checkout_page .woocommerce-additional-fields h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid #edf2f7;
    /* font-family: "Cormorant Garamond", serif; */
    letter-spacing: 0.3px;
}

/* ---- WooCommerce Field Layout (Flexbox 2 per row) ---- */
.siyora_checkout_page .woocommerce-billing-fields__field-wrapper,
.siyora_checkout_page .woocommerce-shipping-fields__field-wrapper,
.siyora_checkout_page .woocommerce-additional-fields__field-wrapper {
    display: flex;
    flex-wrap: wrap;
    row-gap: 18px;
    column-gap: 16px;
    margin: 0;
}

.siyora_checkout_page .form-row {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    box-sizing: border-box;
    float: none !important;
    clear: none !important;
}

/* Force 100% full width on specific fields */
.siyora_checkout_page #billing_country_field,
.siyora_checkout_page #billing_address_1_field,
.siyora_checkout_page #billing_address_2_field,
.siyora_checkout_page #billing_email_field,
.siyora_checkout_page #shipping_country_field,
.siyora_checkout_page #shipping_address_1_field,
.siyora_checkout_page #shipping_address_2_field,
.siyora_checkout_page .form-row-wide {
    width: 100% !important;
    flex: 0 0 100% !important;
}

/* Force 50% half width (2 per row) on paired fields */
.siyora_checkout_page #billing_first_name_field,
.siyora_checkout_page #billing_last_name_field,
.siyora_checkout_page #billing_city_field,
.siyora_checkout_page #billing_state_field,
.siyora_checkout_page #billing_postcode_field,
.siyora_checkout_page #billing_phone_field,
.siyora_checkout_page #shipping_first_name_field,
.siyora_checkout_page #shipping_last_name_field,
.siyora_checkout_page #shipping_city_field,
.siyora_checkout_page #shipping_state_field,
.siyora_checkout_page #shipping_postcode_field,
.siyora_checkout_page .form-row-first,
.siyora_checkout_page .form-row-last {
    width: calc(50% - 8px) !important;
    flex: 0 0 calc(50% - 8px) !important;
}

.siyora_checkout_page .form-row label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 6px;
    letter-spacing: 0.2px;
}

.siyora_checkout_page .form-row .required {
    color: #e11d48;
    margin-left: 3px;
}

.siyora_checkout_page .form-row .input-text,
.siyora_checkout_page .form-row input[type="text"],
.siyora_checkout_page .form-row input[type="email"],
.siyora_checkout_page .form-row input[type="tel"],
.siyora_checkout_page .form-row input[type="number"],
.siyora_checkout_page .form-row input[type="password"],
.siyora_checkout_page .form-row select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 14px;
    outline: none;
    transition: .35s;
}

.select2-selection{

     border: 1px solid #ddd!important; 
         padding: 2px!important;
             border-radius: 14px;
}

.siyora_checkout_page .form-row textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    color: #1e293b;
    background-color: #fcfcfd;
    transition: all 0.25s ease;
    outline: none;
    font-family: inherit;
    resize: vertical;
    min-height: 96px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.015);
}

.siyora_checkout_page .form-row .input-text:focus,
.siyora_checkout_page .form-row input[type="text"]:focus,
.siyora_checkout_page .form-row input[type="email"]:focus,
.siyora_checkout_page .form-row input[type="tel"]:focus,
.siyora_checkout_page .form-row input[type="number"]:focus,
.siyora_checkout_page .form-row input[type="password"]:focus,
.siyora_checkout_page .form-row textarea:focus,
.siyora_checkout_page .form-row select:focus {
    background-color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(92, 47, 140, 0.12);
}

.siyora_checkout_page .form-row.woocommerce-invalid .input-text,
.siyora_checkout_page .form-row.woocommerce-invalid input,
.siyora_checkout_page .form-row.woocommerce-invalid select {
    border-color: #e11d48;
    background-color: #fffafb;
}

.siyora_checkout_page .form-row.woocommerce-validated .input-text,
.siyora_checkout_page .form-row.woocommerce-validated input,
.siyora_checkout_page .form-row.woocommerce-validated select {
    border-color: #10b981;
}

/* Select arrow */
.siyora_checkout_page .form-row select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%2364748b' d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px;
    padding-right: 38px;
}

/* Ship to different address checkbox */
.siyora_checkout_page #ship-to-different-address label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
}

.siyora_checkout_page #ship-to-different-address input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
}

/* Order notes field */
.siyora_checkout_page .woocommerce-additional-fields {
    margin-top: 0;
}

/* ---- Right Sidebar ---- */
.checkout_order_sidebar {
    position: sticky;
    top: 90px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 12px;
}

.checkout_order_review_heading {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

/* ---- Order Review Table ---- */
.siyora_checkout_page .woocommerce-checkout-review-order-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.siyora_checkout_page .woocommerce-checkout-review-order-table thead th {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.siyora_checkout_page .woocommerce-checkout-review-order-table tbody .cart_item td {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    vertical-align: middle;
}

.siyora_checkout_page .woocommerce-checkout-review-order-table .product-name {
    color: var(--black);
    font-weight: 500;
}

.siyora_checkout_page .woocommerce-checkout-review-order-table .product-name .product-quantity {
    color: var(--text-light);
    font-weight: 400;
    font-size: 13px;
}

.siyora_checkout_page .woocommerce-checkout-review-order-table .product-total {
    text-align: right;
    color: var(--primary);
    font-weight: 600;
}

/* ---- Order Totals ---- */
.siyora_checkout_page .woocommerce-checkout-review-order-table tfoot tr td,
.siyora_checkout_page .woocommerce-checkout-review-order-table tfoot tr th {
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}

.siyora_checkout_page .woocommerce-checkout-review-order-table tfoot .order-total td,
.siyora_checkout_page .woocommerce-checkout-review-order-table tfoot .order-total th {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    border-bottom: none;
    padding-top: 16px;
}

.siyora_checkout_page .woocommerce-checkout-review-order-table tfoot .order-total .amount {
    color: var(--primary);
    font-size: 18px;
}

/* ---- Payment Methods ---- */
.siyora_checkout_page #payment {
    margin-top: 20px;
}

.siyora_checkout_page #payment .wc_payment_methods {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.siyora_checkout_page #payment .wc_payment_method {
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.siyora_checkout_page #payment .wc_payment_method:hover {
    border-color: var(--primary-light);
}

.siyora_checkout_page #payment .wc_payment_method input[type="radio"] {
    accent-color: var(--primary);
}

.siyora_checkout_page #payment .wc_payment_method>label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0px 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    margin: 0;
}


.woocommerce-checkout #payment div.payment_box{

        padding: 3px 7px!important;

}

.siyora_checkout_page #payment .wc_payment_method>label img {
    max-height: 24px;
    width: auto;
    display: inline-block;
}

.siyora_checkout_page #payment .payment_box {
    background: #f9f4ff;
    border-top: 1px solid var(--border);
    padding: 14px 16px;
    font-size: 13px;
    color: var(--text);
    line-height: 1.7;
}

.siyora_checkout_page #payment .payment_box p {
    margin: 0;
}

/* ---- Place Order Button ---- */
.siyora_checkout_page #payment #place_order {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0px;
}


.woocommerce-privacy-policy-text p{
    font-size: 12px;
    margin-top: 7px;

}

.siyora_checkout_page #payment #place_order:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(92, 47, 140, 0.25);
}

/* ---- WC Notices ---- */
.siyora_checkout_page .woocommerce-error,
.siyora_checkout_page .woocommerce-message,
.siyora_checkout_page .woocommerce-info {
    list-style: none;
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.siyora_checkout_page .woocommerce-error {
    background: #fff5f5;
    border-left: 4px solid #e74c3c;
    color: #c0392b;
}

.siyora_checkout_page .woocommerce-message {
    background: #f0fbf4;
    border-left: 4px solid #27ae60;
    color: #1e8449;
}

.siyora_checkout_page .woocommerce-info {
    background: #f0f4ff;
    border-left: 4px solid var(--primary);
    color: var(--primary-dark);
}

/* ---- Inline form-row validation text ---- */
.siyora_checkout_page .form-row .validate-required label .required {
    color: #e74c3c;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .siyora_checkout_page {
        padding: 40px 0 60px;
    }

    .checkout_heading {
        font-size: 28px;
    }

    .checkout_order_sidebar {
        position: static;
    }
}

@media (max-width: 767px) {
    .checkout_page_header {
        margin-bottom: 24px;
    }

    .checkout_heading {
        font-size: 24px;
    }

    .checkout_section_card {
        padding: 20px;
    }

    .checkout_order_sidebar {
        padding: 20px;
    }

    .siyora_checkout_page .form-row-first,
    .siyora_checkout_page .form-row-last,
    .siyora_checkout_page .form-row {
        width: 100% !important;
        flex: 0 0 100% !important;
    }
}

@media (max-width: 576px) {
    .checkout_breadcrumb {
        font-size: 12px;
    }

    .siyora_checkout_page #payment #place_order {
        font-size: 14px;
        padding: 13px 20px;
    }
}


/*=========================================
THANK YOU / ORDER RECEIVED PAGE
=========================================*/

.siyora_thankyou_page {
    padding: 60px 0 80px;
    background: var(--bg);
    min-height: 70vh;
}

/* ---- Success Hero Card ---- */
.thankyou_hero_card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid var(--border);
    border-top: 4px solid var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    padding: 12px;
    text-align: center;
    margin-bottom: 32px;
}

.thankyou_success_badge {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(92, 47, 140, 0.25);
    margin-bottom: 24px;
}

.thankyou_icon_wrap.failed {
    width: 72px;
    height: 72px;
    background: #fff5f5;
    color: #e74c3c;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 24px;
}

.thankyou_title {
    font-family: "Cormorant Garamond", serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
    line-height: 1.2;
}

.thankyou_subtitle {
    font-size: 15px;
    color: var(--text-light);
    max-width: 580px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

/* ---- Order Overview Meta Grid ---- */
.thankyou_order_meta_grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    background: #faf5ff;
    border: 1px solid #e8dcfa;
    border-radius: 14px;
    overflow: hidden;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    max-width: 900px;
}

.thankyou_order_meta_grid .woocommerce-order-overview__order,
.thankyou_order_meta_grid .woocommerce-order-overview__date,
.thankyou_order_meta_grid .woocommerce-order-overview__email,
.thankyou_order_meta_grid .woocommerce-order-overview__total,
.thankyou_order_meta_grid .woocommerce-order-overview__payment-method {
    flex: 1 1 170px;
    padding: 18px 20px;
    border-right: 1px solid #e8dcfa;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin: 0;
}

.thankyou_order_meta_grid li:last-child {
    border-right: none;
}

.thankyou_order_meta_grid .meta_label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-light);
    display: block;
}

.thankyou_order_meta_grid .meta_value {
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
}

.thankyou_order_meta_grid .woocommerce-order-overview__total .meta_value {
    color: var(--primary);
    font-size: 16px;
}

/* ---- Payment Method Instructions ---- */
.thankyou_payment_instructions {
    margin-bottom: 32px;
}

.thankyou_payment_instructions p,
.thankyou_payment_instructions .woocommerce-notice {
    background: #ffffff;
    border: 1px solid var(--border);
    border-left: 4px solid var(--secondary);
    border-radius: 12px;
    padding: 10px 24px;
    font-size: 14px;
    color: var(--black);
        margin-top: 25px !important;
    line-height: 1.6;
    margin: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

/* ---- WooCommerce Order Details Table Section ---- */
.siyora_thankyou_page .woocommerce-order-details {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    padding: 15px;
  
}

.siyora_thankyou_page .woocommerce-order-details__title {

    font-size: 18px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
    text-align: left;
}

.woocommerce .woocommerce-customer-details .woocommerce-column__title{

    font-size: 18px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
    text-align: left;

}

.siyora_thankyou_page .woocommerce-table--order-details {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0;
}

.siyora_thankyou_page .woocommerce-table--order-details thead th {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light);
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
    text-align: left;
}

.siyora_thankyou_page .woocommerce-table--order-details thead th.product-total {
    text-align: right;
}

.siyora_thankyou_page .woocommerce-table--order-details tbody td {
       padding: 10px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--black);
    vertical-align: middle;
}

.siyora_thankyou_page .woocommerce-table--order-details .product-name a {
    color: var(--black);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.siyora_thankyou_page .woocommerce-table--order-details .product-name a:hover {
    color: var(--primary);
}

.siyora_thankyou_page .woocommerce-table--order-details .product-name .product-quantity {
    color: var(--text-light);
    font-weight: 500;
    font-size: 13px;
}

.siyora_thankyou_page .woocommerce-table--order-details .product-total {
    text-align: right;
    color: var(--primary);
    font-weight: 600;
}

.siyora_thankyou_page .woocommerce-table--order-details tfoot tr th,
.siyora_thankyou_page .woocommerce-table--order-details tfoot tr td {
    padding: 10px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;

}

.siyora_thankyou_page .woocommerce-table--order-details tfoot tr th {
    color: var(--text);
    font-weight: 500;
    text-align: left;
}

.siyora_thankyou_page .woocommerce-table--order-details tfoot tr td {
    text-align: right;
    color: var(--black);
    font-weight: 600;
}

.siyora_thankyou_page .woocommerce-table--order-details tfoot .order-total th,
.siyora_thankyou_page .woocommerce-table--order-details tfoot .order-total td {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    border-bottom: none;
    padding-top: 20px;
}

.siyora_thankyou_page .woocommerce-table--order-details tfoot .order-total .amount {
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
}

/* ---- Customer Details & Address Section ---- */
.siyora_thankyou_page .woocommerce-customer-details {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    padding: 15px;
    margin-bottom: 32px;
}



.siyora_thankyou_page .woocommerce-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.siyora_thankyou_page address {
    font-style: normal;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px;
    margin: 0;
}

.siyora_thankyou_page address .woocommerce-customer-details--phone,
.siyora_thankyou_page address .woocommerce-customer-details--email {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    color: var(--black);
    font-weight: 500;
}

/* ---- Return / Continue Shopping Action ---- */
.thankyou_footer_actions {
    margin-top: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn_siyora_continue {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 36px;
    background: var(--primary);
    color: #ffffff !important;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(92, 47, 140, 0.25);
}

.btn_siyora_continue:hover {
    background: var(--primary-dark);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(92, 47, 140, 0.4);
}

.btn_siyora_secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 34px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary) !important;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: var(--transition);
    text-decoration: none;
}

.btn_siyora_secondary:hover {
    background: var(--primary);
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* ---- Responsive Styles for Thank You Page ---- */
@media (max-width: 991px) {
    .siyora_thankyou_page {
        padding: 40px 0 60px;
    }

    .thankyou_hero_card {
        padding: 32px 24px;
    }

    .siyora_thankyou_page .woocommerce-order-details,
    .siyora_thankyou_page .woocommerce-customer-details {
        padding: 24px;
    }
}

@media (max-width: 767px) {
    .thankyou_title {
        font-size: 26px;
    }

    .thankyou_order_meta_grid {
        flex-direction: column;
    }

    .thankyou_order_meta_grid .woocommerce-order-overview__order,
    .thankyou_order_meta_grid .woocommerce-order-overview__date,
    .thankyou_order_meta_grid .woocommerce-order-overview__email,
    .thankyou_order_meta_grid .woocommerce-order-overview__total,
    .thankyou_order_meta_grid .woocommerce-order-overview__payment-method {
        border-right: none;
        border-bottom: 1px solid #e8dcfa;
        padding: 14px 16px;
    }

    .thankyou_order_meta_grid li:last-child {
        border-bottom: none;
    }

    .siyora_thankyou_page .woocommerce-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .thankyou_success_badge {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .btn_siyora_continue,
    .btn_siyora_secondary {
        width: 100%;
        padding: 13px 20px;
        font-size: 13px;
    }
}

/*==================================
ACTIVE FILTER CHIPS
===================================*/
.active_filters_container {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #e0e0e0;
}

.active_filters_wrapper {
    display: flex;
    align-items: center;
}

.active_filters_list {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.active_filter_label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-right: 4px;
}

.active_filter_chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    border-radius: 20px;
    background: #f4edf8;
    color: #6b358b;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #e2d1eb;
    cursor: pointer;
    transition: all 0.2s ease;
}

.active_filter_chip:hover {
    background: #6b358b;
    color: #ffffff;
    border-color: #6b358b;
}

.active_filter_chip i {
    font-size: 11px;
}

.clear_all_chips_btn {
    font-size: 13px;
    color: #777;
    text-decoration: underline;
    background: none;
    border: none;
    padding: 0 6px;
    cursor: pointer;
    font-weight: 500;
    transition: color 0.2s ease;
}

.clear_all_chips_btn:hover {
    color: #dc3545;
}

/*==================================================
    ACCESSIBILITY & SCREEN READER TEXT
==================================================*/
.screen-reader-text,
.widget_shopping_cart_live_region {
    border: 0 !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    word-wrap: normal !important;
}



.product-gallery-wrapper{


        top: 116px!important;

}



/* Old / Original Price */
.price-amount-wrapper del .woocommerce-Price-amount {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

/* Sale / Current Price */
.price-amount-wrapper ins .woocommerce-Price-amount {
    font-size: 20px;
    color: #222;
    font-weight: 700;
    text-decoration: none;
}

.woocommerce span.onsale {
    min-height: unset!important;
    min-width: unset!important;
    padding: 1px 8px!important;
    font-size: 1em!important;
    font-weight: 500!important;
    position: absolute!important;
    text-align: center!important;
    line-height: 2.236;
    top: 1.5em!important;
    left: 1.5em!important;
    margin: 0!important;
    border-radius: 0px;
    background-color: #5c2f8c!important;
    color: #fff!important;
    font-size: 14px!important;
    z-index: 9!important;}


    .tinv-wishlist .tinv-modal .tinv-modal-inner{

        padding: 15px!important;

    }


    .woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price{

        color: var(--primary)!important;

    }


    .reset_variations{ 

        display: none!important;
    }


    @media screen and (max-width: 992px) {
.siyora-product-details-container .woocommerce-variation-add-to-cart{

    flex-direction: column!important;

}
}


.siyora-product-details-container .woocommerce-product-gallery__image img{

        width: 100%!important;
    /* aspect-ratio: 16 / 9!important; */
    object-fit: contain!important;
    display: block!important;

    height: 200px!important;

}


.woocommerce form.login ,.woocommerce form.register{ 

    margin: 0px!important;

    border: none!important;
    padding: 0px!important;

}


.woocommerce-account .page_banner{

display: none!important;

}

.woocommerce-checkout .page_banner{

display: none!important;

}

.woocommerce-checkout .woocommerce-form-login-toggle{
display: none!important;

}


.woocommerce-checkout .woocommerce-form-coupon-toggle{
display: none!important;

}


.thankyou_order_details_wrap{

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/*==================================================
    DROPDOWN SUBMENU STYLES
==================================================*/

/* Position relative for parent menu items that contain a submenu */
.navbar-nav .menu-item-has-children {
    position: relative;
}

/* Base style for the submenu dropdown container */
.navbar-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    min-width: 230px;
    padding: 10px 0;
    margin: 0;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    box-shadow: var(--shadow);
    list-style: none;
    
    /* Animation / Visibility */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
}

/* Bridge pseudo-element to prevent losing hover state when moving mouse down */
.navbar-nav .sub-menu::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

/* Ensure sub-menu items align vertically, not horizontally */
.navbar-nav .sub-menu li {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
}

/* Override nav-link style for submenu links */
.navbar-nav .sub-menu .nav-link {
    display: block;
    width: 100%;
    padding: 12px 20px !important; /* Premium vertical padding */
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    color: var(--black);
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color var(--transition), color var(--transition);
}

/* Remove hover line animation from sub-menu links */
.navbar-nav .sub-menu .nav-link::after {
    display: none !important;
}

/* Hover style for submenu links */
.navbar-nav .sub-menu .nav-link:hover {
    background-color: var(--bg);
    color: var(--primary) !important;
}

/* Show the dropdown submenu on hover of parent */
.navbar-nav .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/*==================================================
    MOBILE DROPDOWN SUBMENU STYLES
==================================================*/
.mobile_links .sub-menu {
    list-style: none;
    padding-left: 20px;
    margin: 0;
    background: none;
    border: none;
    box-shadow: none;
}

.mobile_links .sub-menu li {
    border-bottom: 1px solid var(--border);
}

.mobile_links .sub-menu li:last-child {
    border-bottom: none;
}

.mobile_links .sub-menu li a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile_links .sub-menu li a:hover {
    color: var(--primary);
}



/*aff plugin */
.wnaff-application-form-wrapper {
	max-width: 660px !important;
    margin: 100px auto 50px !important;
    
}

.wnaff-form-grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

@media (max-width: 600px) {
	.wnaff-form-grid-2 {
		grid-template-columns: 1fr;
		gap: 0;
	}
}

/* Wallet Checkout Widget in Siyora Checkout */
.wnaff-wallet-checkout-row td {
	border-top: none !important;
	border-bottom: 1px solid var(--border, #eef0f5) !important;
	padding: 10px 0 !important;
}

.wnaff-wallet-widget {
	margin: 8px 0;
	padding: 14px 16px;
	background: linear-gradient(135deg, #fdfbfd 0%, #f9f5fd 100%);
	border: 1px solid #ebdcf5;
	border-left: 3px solid var(--primary, #5c2f8c);
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(92, 47, 140, 0.04);
	font-family: inherit;
	box-sizing: border-box;
}

.wnaff-wallet-widget *,
.wnaff-wallet-widget *::before,
.wnaff-wallet-widget *::after {
	box-sizing: border-box;
}

.wnaff-wallet-widget__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 4px;
}

.wnaff-wallet-widget__title-group {
	display: flex;
	align-items: center;
	gap: 8px;
}

.wnaff-wallet-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	background: rgba(92, 47, 140, 0.09);
	color: var(--primary, #5c2f8c);
	border-radius: 50%;
	flex-shrink: 0;
}

.wnaff-wallet-widget__heading {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.3px;
	color: var(--black, #2d3748);
	text-transform: uppercase;
}

.wnaff-wallet-widget__balance-pill {
	display: inline-block;
	background: rgba(92, 47, 140, 0.1);
	color: var(--primary, #5c2f8c);
	font-size: 12px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 20px;
	white-space: nowrap;
}

.wnaff-wallet-widget__balance-pill .woocommerce-Price-amount {
	color: inherit;
}

.wnaff-wallet-widget__subtext {
	font-size: 12px;
	color: #718096;
	margin: 0 0 10px 0;
	line-height: 1.4;
}

.wnaff-wallet-widget__row {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 6px;
}

.wnaff-wallet-input-wrap {
	display: inline-flex;
	align-items: center;
	background: #ffffff;
	border: 1px solid #d8cde3;
	border-radius: 8px;
	padding: 0 10px;
	height: 38px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	flex: 1;
	max-width: 140px;
}

.wnaff-wallet-input-wrap:focus-within {
	border-color: var(--primary, #5c2f8c);
	box-shadow: 0 0 0 3px rgba(92, 47, 140, 0.12);
}

.wnaff-wallet-currency-symbol {
	font-size: 13px;
	font-weight: 600;
	color: var(--primary, #5c2f8c);
	margin-right: 4px;
	user-select: none;
}

.wnaff-wallet-input-wrap input[type="number"] {
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
	padding: 0 !important;
	margin: 0 !important;
	width: 100% !important;
	height: auto !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	color: #1f2937 !important;
	background: transparent !important;
	-moz-appearance: textfield;
}

.wnaff-wallet-input-wrap input[type="number"]::-webkit-outer-spin-button,
.wnaff-wallet-input-wrap input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.wnaff-wallet-widget button#wnaff-wallet-apply-btn {
	background: var(--primary, #5c2f8c) !important;
	color: #ffffff !important;
	border: none !important;
	border-radius: 8px !important;
	padding: 0 18px !important;
	height: 38px !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	cursor: pointer !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	transition: all 0.2s ease !important;
	white-space: nowrap !important;
	text-transform: none !important;
	letter-spacing: 0.2px !important;
}

.wnaff-wallet-widget button#wnaff-wallet-apply-btn:hover {
	background: var(--primary-dark, #432169) !important;
	transform: translateY(-1px);
	box-shadow: 0 4px 10px rgba(92, 47, 140, 0.25) !important;
}

.wnaff-wallet-widget button#wnaff-wallet-apply-btn:active {
	transform: translateY(0);
}

.wnaff-wallet-widget button#wnaff-wallet-apply-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

/* Applied state */
.wnaff-wallet-widget--applied {
	background: #f0fdf4 !important;
	border-color: #bbf7d0 !important;
	border-left-color: #16a34a !important;
}

.wnaff-wallet-widget__applied-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.wnaff-wallet-widget__applied-info {
	display: flex;
	align-items: center;
	gap: 10px;
}

.wnaff-wallet-check-icon {
	color: #16a34a;
	display: inline-flex;
	flex-shrink: 0;
}

.wnaff-wallet-widget__applied-text {
	display: flex;
	flex-direction: column;
}

.wnaff-wallet-widget__applied-title {
	font-size: 13px;
	font-weight: 700;
	color: #166534;
}

.wnaff-wallet-widget__applied-subtitle {
	font-size: 12px;
	color: #15803d;
}

.wnaff-wallet-widget__applied-subtitle .woocommerce-Price-amount {
	font-weight: 700;
}

.wnaff-wallet-widget button#wnaff-wallet-remove-btn {
	background: #ffffff !important;
	color: #dc2626 !important;
	border: 1px solid #fca5a5 !important;
	border-radius: 6px !important;
	padding: 5px 12px !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	cursor: pointer !important;
	transition: all 0.2s ease !important;
	text-transform: none !important;
	height: auto !important;
}

.wnaff-wallet-widget button#wnaff-wallet-remove-btn:hover {
	background: #fef2f2 !important;
	border-color: #ef4444 !important;
	color: #b91c1c !important;
}

/* Message feedback */
.wnaff-wallet-widget__message {
	margin-top: 8px;
	padding: 8px 12px;
	border-radius: 6px;
	font-size: 12px;
	line-height: 1.4;
	font-weight: 500;
}

.wnaff-wallet-widget__message.wnaff-error {
	background: #fef2f2;
	color: #b91c1c;
	border: 1px solid #fecaca;
}

.wnaff-wallet-widget__message.wnaff-success {
	background: #f0fdf4;
	color: #15803d;
	border: 1px solid #bbf7d0;
}



.wnaff-submit-button{

        background-color: var(--primary)!important;
        width: 100%!important;

}


.wnaff-form-note{ text-align: center!important;}

.wnaff-form-note a{ 


    color: var(--primary)!important;

}

.wnaff-application-form-wrapper input:focus{ 

    box-shadow: none!important;
    outline: none!important;
    border-color: var(--primary)!important;

}



.referedge-dashboard{


    background-color: #fff!important;

}


.referedge-card:hover{ 

    transform: unset!important;

}


.referedge-btn{

    background-color: var(--primary)!important

}

.referedge-btn:hover{

    background-color: #401172!important;

}

.referedge-section h3{

    font-size: 20px;
}


.referedge-tabs .active a {
    color: #5c2f8c!important;
    border-bottom-color: #5c2f8c!important;
    background-color: #fff!important;
}


.referedge-tabs a:hover {
    color: #5c2f8c!important;
    background-color: #ebd2fe!important;
}


.help_section{

    left: 30px!important;
    right: unset!important;

}