﻿
.modal-body {
    display: flex;
    justify-content: space-between;
    padding: 0px;
}

html, body {
    font-family: "Montserrat" !important;
    font-weight: normal !important;
    font-size: 16px !important;
}

* {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: normal !important;
}



@media (min-width: 1400px) {
    .col-md-9 {
        flex: 0 0 auto;
        width: 50%;
    }
}


/* Image Container Styling */
.logimage-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the left side */
    border-radius: 8px; /* Rounded corners for the image */
    padding: 0px;
}

.formr {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}
/* Form Container Styling */
.form-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    /* Professional Form Fields Styling */
    .form-container input,
    .form-container button {
        border-radius: 5px;
        padding: 12px;
        font-size: 1rem;
    }

        /* Large Buttons and Inputs */
        .form-container input.form-control-lg,
        .form-container button.btn-lg {
            font-size: 1.1rem;
        }

    /* Button Full-Width Styling */
    .form-container .btn {
        width: 100%;
        padding: 12px;
    }

/* Title Styling */
.modal-body h3 {
    font-size: 3.5rem;
    font-weight: 600;
}

/* Add a subtle shadow to the modal content */
.modal-content {
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Sign-up Link Styling */
#signUpLink {
    font-weight: 500;
    font-size: 0.9rem;
    color: #007bff;
}

    #signUpLink:hover {
        text-decoration: underline;
    }

/* Adjust modal size */
.modal-dialog {
    max-width: 850px; /* Increase width */
}

/* Make the form elements look clean and professional */
.mb-3 input, .mb-3 button {
    margin-bottom: 15px;
}

/* Close button position */
.btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10; /* Ensures it appears above the modal */
}
/* OTP Fields Styling */
.otp-container {
    display: flex;
    justify-content: center;
    gap: 10px; /* Space between each OTP box */
}

.otp-input {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    text-align: center;
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 10px;
}

    .otp-input:focus {
        border-color: #007bff;
        outline: none;
    }

/* Button Styling */
.otp-container button {
    margin-top: 15px;
    font-size: 1rem;
}

/* Hide OTP Section initially */
#otpForm {
    display: none;
}

/* Adjust modal size */
.menu-box {
    background: #ffffff; /* Increase width */
}

    .menu-box.fixed {
        background: #ffffff;
    }

.custom-form-control {
    padding: 0px;
    height: 55px;
    min-width: 500px;
}

.newsletter-input-group.greennews {
    padding-left: 0px;
    background: #ffffff;
}

.pa-2 {
    padding-bottom: 2.5rem !important;
}

.navbar-nav {
    width: 100%;
    height: 33px;
}

    .navbar-nav.smallMargin .nav-item .nav-link {
        margin: 3px 15px;
        padding: 0px;
    }
/* CSS Styling */
.gold-rates-dropdown {
    position: relative;
}

.gold-rates-toggle {
    /*background: linear-gradient(45deg, #FFD700, #FFA500);*/
    /*padding: 3px 40px;*/ /* Increased padding for a larger button */
    /*border-radius: 20px;*/
    /*transition: all 0.3s ease;*/
}


.gold-rates-menu {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 15px; /* Increased padding for more internal space */
    border: 1px solid #FFD700;
    max-width: 350px; /* Slightly wider for breathing room */
    width: auto;
    overflow-y: auto;
}

.rate-item {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Vertically align items */
    padding: 12px; /* More padding for each item */
    margin: 8px 0; /* Increased vertical spacing between items */
    border-radius: 8px;
    background: linear-gradient(135deg, #FFF8E1, #FFECB3);
    transition: transform 0.2s ease;
}

    .rate-item:hover {
        transform: scale(1.02);
        box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
    }

.purity-name, .rate-value, .rate-difference, .eight-gram-tag {
    font-size: 15px; /* Slightly larger font for readability */
    text-align: left;
    display: inline-block;
    min-width: 100px; /* Changed to min-width to allow flexibility */
    padding: 0 5px; /* Added padding for better spacing */
}

.purity-name {
    color: #8B4513;
    font-weight: 400; /* Slightly bolder for emphasis */
}

.rate-value {
    color: #563329;
    font-weight: bold;
}

.rate-difference {
    padding: 18px;
    border-radius: 12px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 4px;
}

    .rate-difference.positive {
        background: #34c38f;
        color: white;
    }

    .rate-difference.negative {
        background: #f46a6a;
        color: white;
    }

.eight-gram-tag {
    background: #2196F3;
    color: white;
    padding: 4px 8px; /* Increased padding */
    border-radius: 6px;
    font-size: 11px;
}

.arrow-up {
    color: white;
}

.arrow-down {
    color: white;
}

.dropdown-header {
    font-size: 20px; /* Larger font for the heading */
    font-weight: bold;
    color: #5b3471; /* Gold color to match theme */
    text-align: center;
    padding: 10px 0; /* Vertical padding */
    border-bottom: 1px solid #FFD700; /* Separator line */
    margin-bottom: 10px; /* Space below the heading */
}

/* Your existing global styles (assumed from your input) */
form input:focus,
form textarea:focus,
form select:focus {
    -moz-box-shadow: 0px 1px 3px 0px #b7b7b7 !important;
    -webkit-box-shadow: 0px 1px 3px 0px #b7b7b7 !important;
    box-shadow: 0px 1px 3px 0px #b7b7b7 !important;
}

/* Custom search styles */
.custom-search-form {
    width: 100%; /* Full width of the col-4 */
    margin: 0; /* Remove default margins */
    padding: 0; /* Remove default padding */
}

.custom-search-wrapper {
    width: 100%; /* Ensure wrapper fills the form */
    position: relative; /* For absolute positioning of the button */
}

.custom-search-input {
    width: 100%; /* Full width of the wrapper */
    background-color: #800020 !important; /* Black background */
    border: none; /* No borders */
    border-bottom: 2px solid #ffffff; /* White bottom border */
    border-radius: 0px; /* White bottom border */
    color: #ffffff !important; /* White text */
    padding: 12px 45px 12px 15px; /* Space for icon on right */
    font-size: 16px; /* Readable text size */
    outline: none; /* Remove focus outline */
    box-sizing: border-box; /* Include padding in width calculation */
    -webkit-appearance: none; /* Remove default browser styling */
    appearance: none; /* Remove default styling for other browsers */
}

    .custom-search-input::placeholder {
        color: #ffffff; /* White placeholder */
        opacity: 1; /* Full visibility */
    }

    /* Override autofill styles */
    .custom-search-input:-webkit-autofill,
    .custom-search-input:-webkit-autofill:hover,
    .custom-search-input:-webkit-autofill:focus,
    .custom-search-input:-webkit-autofill:active {
        background-color: #800020 !important; /* Force black background */
        -webkit-box-shadow: 0 0 0 1000px #563329 inset !important; /* Force black fill */
        box-shadow: 0 0 0 1000px #563329 inset !important; /* Fallback */
        -webkit-text-fill-color: #ffffff !important; /* Force white text */
        color: #ffffff !important; /* Fallback */
        border-bottom: 2px solid #ffffff !important; /* Maintain border */
        transition: background-color 5000s ease-in-out 0s; /* Prevent fade */
    }

    /* Remove shadow on focus for this specific input */
    .custom-search-input:focus {
        background-color: #800020 !important; /* Keep black background */
        color: #ffffff !important; /* Keep white text */
        -moz-box-shadow: none !important; /* Remove Mozilla shadow */
        -webkit-box-shadow: none !important; /* Remove WebKit shadow */
        box-shadow: none !important; /* Remove standard shadow */
    }

.custom-search-button {
    position: absolute;
    right: 15px; /* Icon position inside input */
    top: 50%; /* Vertically center */
    transform: translateY(-50%);
    background: transparent; /* No background */
    border: none; /* No border */
    padding: 0; /* Minimal padding */
    cursor: pointer;
}

    .custom-search-button .flaticon-loupe {
        color: #ffffff; /* White icon */
        font-size: 18px; /* Icon size */
    }

.country-mobile {
    width: 18px;
    padding-bottom: 5px;
}

/* Ensure mobile header is positioned relatively for absolute children */
.mobile-header {
    position: relative;
    z-index: 1;
}

/* Style the search wrapper to overlay the logo */
.mobile-search-wrapper {
    position: absolute;
    top: 0; /* Aligns with the top of the header */
    left: 0;
    background: #800020; /* Match your header background or make it semi-transparent */
    padding: 10px;
    z-index: 2; /* Ensure it appears above the header content */
}

/* Style the input and button */
.custom-search-input-wrapper {
    position: relative;
}

.custom-search-input {
    padding: 8px 40px 8px 10px; /* Space for the button */
}

.custom-search-button {
    background: transparent;
    border: none;
    padding: 0 10px;
    height: 100%;
}

/* Hide search wrapper by default on mobile */
@media (max-width: 767px) {
    .mobile-search-wrapper {
        display: none;
    }
    /* Ensure logo stays below search when active */
    .logo {
        position: relative;
        z-index: 0;
    }
}

.selected-country-mob {
    width: 30%;
    margin-left: 10px;
}

/* CSS */
.dropdownapp-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1060;
    padding: 2px;
    top: 66%;
    right: 64px;
    width: max-content;
    max-width: 200px;
}

.dropdownapp-item {
    display: flex;
    align-items: center;
    padding: 8px 8px;
    text-decoration: none;
    color: #333;
    white-space: nowrap; /* Prevent text wrapping */
}

    .dropdownapp-item img {
        margin-right: 8px;
    }

    .dropdownapp-item:hover {
        background-color: #f1f1f1;
    }

/* Show dropdownapp on hover */
.dropdownapp-toggle:hover + .dropdownapp-menu,
.dropdownapp-menu:hover {
    display: block;
}

.position-relative {
    position: relative;
}

/* Prevent clipping by parent */
.ps-2.pe-2 {
    overflow: visible;
}

/* Adjust position to avoid overflow */
@media screen and (max-width: 768px) {
    .dropdownapp-menu {
        left: auto;
        right: 0; /* Shift to right on smaller screens if near left edge */
    }

    .mobilenopadding {
        padding: 0px !important;
    }
}

/* Flip above if near bottom of screen */
@media screen and (max-height: 400px) {
    .dropdownapp-menu {
        top: auto;
        bottom: 100%; /* Move above the trigger */
    }
}

/* Fine-tune for edge cases */
.dropdownapp-menu {
    /* Ensure it stays within viewport */
    transform: translateX(0); /* Default */
}

/* If near right edge, shift left */
@media screen and (min-width: 769px) {
    .position-relative:hover .dropdownapp-menu {
        left: 0;
    }

        .position-relative:hover .dropdownapp-menu:right-overflow {
            left: auto;
            right: 0;
        }
}

.footer-default {
    background-color: #ededed;
    position: relative;
    overflow: hidden;
    margin-top: 100px;
}

.font-tatooblack {
    color: #282828
}

.footer-logo {
    position: relative; /* make logo container relative for absolute child */
    display: inline-block; /* shrink to logo size */
    padding-bottom: 0px;
    margin-top: -20px;
}

.footer__medio-boxx {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
}

.badge-hidden {
    display: none !important;
}
/*...................................................*/
#profileDropdown {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
    padding: 0;
    z-index: 1000;
}

#profileDropdown li {
    list-style: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size:14px;
    transition: background-color 0.2s ease-in-out;
}

    #profileDropdown li:hover,
    #profileDropdown li:focus {
        background-color: #f6f8fa;
    }

/* Style for the header when not logged in */
#profileDropdown .not-logged-in {
    font-weight: bold;
    text-align: center;
    color: #333;
    cursor: default;
    padding-top: 10px;
    padding-bottom: 5px;
}

/* Button container styling */
#profileDropdown .login-button-wrapper {
    text-align: center;
    padding: 8px;
}

    /* Login button style */
    #profileDropdown .login-button-wrapper button {
        font-size: 0.9rem;
        padding: 6px 12px;
    }

/* Vertical layout for welcome content */
.welcome-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

/* Title styling: larger, bold */
.welcome-title {
    font-weight: bold;
    font-size: 14px; /* effectively larger as it's bold */
    color: #800020;
}

/* Subtitle styling: lighter, normal weight */
.welcome-subtitle {
    font-weight: normal;
    font-size: 14px;
    color: #555;
}

.welcome-login-btn {
    background: linear-gradient(135deg, #5D1143, #D190B9);
    color: white;
    font-weight: 500;
    font-size: 0.98rem;
    padding: 1rem;
    border-radius: 16px;
    border: none;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 10px 30px rgba(93, 17, 67, 0.25);
    transition: all 0.3s ease;
}

    .welcome-login-btn:hover {
        background-color: #9b1f1b;
        border-color: #9b1f1b;
        color: #fff;
    }

    /*.......................................................*/
    .upbar {
    --bs-gutter-x: 0 !important;
    --space: 2rem;
    --gap: 2.5rem;
    --duration: 25s;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
    font-size: 1.5rem;
    line-height: 1.5;
    padding: 7px 0;
    background-color: #5D1143 !important;
    position: relative;
}

.upbarcontent {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gap);
    font-size: small;
    color: black;
    min-width: 100%;
    /*    animation: scroll var(--duration) linear infinite;*/
    white-space: nowrap;
}

    /* Optional: Duplicate content for seamless loop */
    .upbarcontent::before,
    .upbarcontent::after {
        content: "";
        flex-shrink: 0;
        display: flex;
        align-items: center;
        gap: var(--gap);
        padding-right: var(--gap);
    }

/*.upbarcontent::before {
            content: url("~/assets/images/Nebu/upbar.webp") " FREE GOLD COIN " url("~/assets/images/Nebu/upbar.webp");
        }*/

/* Keyframes for smooth scrolling */
/*@@keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-100%);
            }
        }
        */
.allproducts {
    font-size: 14px;
    margin-top: 7px;
}
/*..............................................*/


/* #region =====Wishlist-cartcount ===== */
.wishlist-count-mob {
    position: absolute;
    top: 9px;
    right: 21px;
    left: revert;
    font-size: 10px;
    line-height: 7px;
    width: 0px;
    height: 17px;
    padding-left: 4px;
    padding-right: 14px;
    font-style: normal;
    text-align: center;
    color: #f8f8f8;
    background-color: #dc3545;
    border: 1px solid white;
}

.cart-count-mob {
    position: absolute;
    top: 9px;
    right: -10px;
    left: revert;
    font-size: 10px;
    line-height: 7px;
    width: 0px;
    height: 17px;
    padding-left: 4px;
    padding-right: 14px;
    font-style: normal;
    text-align: center;
    color: #f8f8f8;
    background-color: #dc3545;
    border: 1px solid white;
}




.gold-rates-dropdown {
    position: relative;
}

.gold-rates-toggle {
    /*background: linear-gradient(45deg, #FFD700, #FFA500);*/
    /*padding: 2px 19px;  Increased padding for a larger button */
    /*border-radius: 20px;*/
    /*transition: all 0.3s ease;*/
}


.gold-rates-menu {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 15px; /* Increased padding for more internal space */
    border: 1px solid #FFD700;
    max-width: 350px; /* Slightly wider for breathing room */
    width: auto;
    overflow-y: auto;
}

.rate-item {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Vertically align items */
    padding: 12px; /* More padding for each item */
    margin: 8px 0; /* Increased vertical spacing between items */
    border-radius: 8px;
    background: linear-gradient(135deg, #4b191e, rgb(34 0 0));
    transition: transform 0.2s ease;
}

    .rate-item:hover {
        transform: scale(1.02);
        box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
    }

.purity-name, .rate-value, .rate-difference, .eight-gram-tag {
    font-size: 15px; /* Slightly larger font for readability */
    text-align: left;
    display: inline-block;
    min-width: 100px; /* Changed to min-width to allow flexibility */
    padding: 0 5px; /* Added padding for better spacing */
}

.purity-name {
    color: #ffa201;
    font-weight: 400; /* Slightly bolder for emphasis */
}

.rate-value {
    color: #951c1c;
    font-weight: 400;
    filter: contrast(16.5);
}

.rate-difference {
    padding: 18px;
    border-radius: 12px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 4px;
}

    .rate-difference.positive {
        background: #05511b;
        color: white;
    }

    .rate-difference.negative {
        background: #ac1a1a;
        color: white;
    }

.dropdown-item {
    display: flex; /* enables spacing between purity and rate */
    align-items: center;
    justify-content: space-between;
    --bs-dropdown-item-padding-x: 2rem;
    color: #9b3130;
    background-color: transparent;
    font-weight: 400;
    font-size: small;
    border-bottom: 2px solid currentColor;
    line-height: 20px;
    gap: 23px;
}

.dropdown-menu .dropdown-item:hover {
    color: #ad70ac !important;
    background-color: transparent !important;
    font-weight: 400 !important;
    border-bottom: 2px solid currentColor !important;
}


/* #endregion */

/* #region =====dropdown ===== */

.dropdown-menu {
    min-width: 200px;
    position: absolute;
    inset: 0px auto auto -71px;
    margin: 0px;
    transform: translate(-185px, 22px);
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

.dropdown-toggle::after {
    margin-left: 0.5rem;
}
/* Default styling keeps the arrow on desktop */
.dropdown-toggle::after {
    display: inline-block;
}

/* Hide the arrow on mobile (screen width less than 768px, typical mobile breakpoint) */
@media (max-width: 767px) {
    .dropdown-toggle::after {
        display: none !important;
    }
}

.wishlist-count {
    position: absolute;
    top: 16px;
    right: 88px;
    left: revert;
    font-size: 10px;
    line-height: 7px;
    width: 0px;
    height: 17px;
    padding-left: 4px;
    padding-right: 14px;
    text-align: center;
    font-style: normal;
    color: #f8f8f8;
    background-color: #dc3545;
    border: 1px solid white;
}

.cart-count {
    position: absolute;
    top: 16px;
    right: 60px;
    left: revert;
    font-size: 10px;
    line-height: 7px;
    width: 0px;
    height: 17px;
    padding-left: 4px;
    padding-right: 14px;
    text-align: center;
    font-style: normal;
    color: #f8f8f8;
    background-color: #dc3545;
    border: 1px solid white;
}


/* #endregion */

/* #region =====Loader & OTP ===== */

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #fff; /* or match your site's theme */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader-logo {
    width: 100px;
    animation: pulse 1.2s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}


.otp-input {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    font-size: 1.25rem;
    border: 1px solid #ccc;
    transition: border 0.3s ease;
}

.otp-input:focus {
    border-color: #1c0823;
    outline: none;
    box-shadow: 0 0 5px rgba(169, 116, 95, 0.3);
}

.btn-login-primary {
    background-color: #1c0823;
    color: white;
    border-radius: 50px;
    border: none;
}

    .btn-login-primary:hover {
        background-color: #8e5f4d;
    }

/* #endregion */


/* #region =====new Style1 ===== */
.fa-star, .fa-star-half-stroke {
    color: gold;
    font-size: 20px;
    margin-right: 4px;
}

.pe-8 {
    padding-right: 2.4rem !important;
}

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.dash_input {
    width: 738px;
    font-size: 13px;
    height: 43px;
}

.text-aspiri {
    color: #5D1143 !important;
}

.text-aspiri2 {
    color: #1F3747 !important;
}

.bg-aspiri {
    background-color: #5D1143 !important;
}

.bg-aspiri2 {
    background-color: #1F3747 !important;
}


/* Button */
.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 6px;
    transition: 0.3s;
}

.menu-btn:hover {
    background: rgba(0,0,0,0.07);
}

.menu-icon i {
    font-size: 22px;
    color: #1F3747;
}


/* Offcanvas Custom Look */
.custom-menu {
    background: linear-gradient(135deg, #111, #222);
    width: 260px !important;
    padding: 0 10px;
    color: #fff;
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.custom-menu .offcanvas-header {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.custom-menu .menu-links {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

    .custom-menu .menu-links li {
        margin: 18px 0;
    }

    .custom-menu .menu-links a {
        text-decoration: none;
        font-size: 17px;
        color: #fff;
        padding: 10px 0;
        display: block;
        position: relative;
        transition: 0.3s;
    }

        /* Hover underline animation */
        .custom-menu .menu-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 2px;
            width: 0%;
            height: 2px;
            background: #ffb400;
            transition: width 0.3s;
        }

        .custom-menu .menu-links a:hover {
            color: #ffb400;
        }

            .custom-menu .menu-links a:hover::after {
                width: 100%;
            }

.header .logo {
    display: inline-block;
    min-width: 120px !important;
}
/* Shared Floating Button Style */
.floating-btn {
    position: fixed;
    right: 25px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #1e1e1e;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    transition: transform .3s ease, opacity .3s ease;
}

/* Scroll-to-top button */
.top-btn {
    bottom: 25px;
    font-size: 22px;
    font-weight: bold;
    opacity: 0;
    visibility: hidden;
}

    .top-btn.show {
        opacity: 1;
        visibility: visible;
    }

/* WhatsApp Button */
.whatsapp-btn {
    bottom: 95px; /* stacked above the top button */
    background-color: #25D366;
}

    .whatsapp-btn img {
        width: 32px;
        height: 32px;
    }
/* Premium Floating Action Buttons - Matching Your Brand */
.fab-btn {
    position: fixed;
    right: 5%;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 12px 35px rgba(93, 17, 67, 0.28);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* WhatsApp Button - Premium Green + Gold Touch */
.whatsapp-fab {
    bottom: 12px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    transform: scale(1);
}

    .whatsapp-fab:hover {
        transform: scale(1.12) translateY(-4px);
        box-shadow: 0 20px 45px rgba(37, 211, 102, 0.45);
    }

/* Back to Top - Your Brand Purple + Gold */
.top-fab {
    bottom: 85px;
    background: linear-gradient(135deg, #5D1143, #902167);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

    .top-fab.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .top-fab:hover {
        transform: scale(1.12) translateY(-6px);
        box-shadow: 0 22px 50px rgba(93, 17, 67, 0.5);
        background: linear-gradient(135deg, #902167, #D190B9);
    }

/* Pulse animation on load */
@keyframes wsppulse {
    0% {
        box-shadow: 0 0 0 0 rgba(93, 17, 67, 0.4);
    }

    70% {
        box-shadow: 0 0 0 16px rgba(93, 17, 67, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(93, 17, 67, 0);
    }
}

.whatsapp-fab {
    animation: wsppulse 3s infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .fab-btn {
        width: 46px;
        height: 46px;
        right: 10%;
    }

    .whatsapp-fab {
        bottom: 90px;
    }

    .top-fab {
        bottom: 20px;
    }

    .fab-btn svg {
        width: 26px;
        height: 26px;
    }
}

#butterfly-container {
    position: relative;
    overflow: hidden;
}

.canvallax--fullscreen {
    z-index: 1040 !important;
}

#canvallax-canvas {
    position: fixed !important;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none !important;
    z-index: 9999999 !important;
    background: transparent !important; /* important */
}

canvas {
    pointer-events: none !important;
}
/* Hidden by default */
.mobile-overlay {
    display: none;
}

/* Mobile view only */
          @media (max-width: 768px) {
                    .mobile-overlay {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        position: fixed;
                        top: 0;
                        left: 0;
                        width: 100vw;
                        height: 100vh;
                        background-color: rgba(0, 0, 0, 0.8);
                        z-index: 9999;
                        text-align: center;
                    }

                    .mobile-overlay-content {
                        background: #ffffff;
                        color: #ff6600;
                        padding: 30px 20px;
                        font-size: 24px;
                        font-weight: bold;
                        border-radius: 10px;
                        box-shadow: 0 0 20px rgba(0,0,0,0.5);
                    }
                }
        
.font-10 {
    font-size: 10px;
}

.pincode-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    z-index: 1050;
    display: none;
}

.pincode-modal.show {
    display: block;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.pincode-modal .pincode-dropdown-mob {
    position: relative; /* Override absolute positioning for modal */
    start-50: none; /* Reset */
    translate-middle-x: none; /* Reset */
    mt-2: none; /* Reset */
    top: none; /* Reset */
    width: 100%; /* Full width in modal */
    background: white;
    border-radius: 2rem 2rem 0 0; /* rounded-4 equivalent */
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1); /* shadow-lg equivalent */
    border: none; /* Override the border here, use on modal */
    padding: 0;
}

    .pincode-modal .pincode-dropdown-mob > div {
        background: linear-gradient( 357deg, #fdf4ff 0%, #5D1143 100%);
        border-radius: inherit;
    }
/* Backdrop */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    display: none;
}

    .modal-backdrop.show {
        display: block;
    }
/* Close button (optional, add if needed) */
.pincode-modal .close-btn {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6c757d;
    cursor: pointer;
    z-index: 1051;
}
/* Responsive: Ensure full width on small screens */
@media (max-width: 480px) {
    .pincode-modal {
        max-width: 100%;
    }
}
/* Preserve original font and color classes (assume defined elsewhere) */
.font-10 {
    font-size: 0.625rem;
}

.text-pink {
    color: #e91e63;
}
/* Example pink */
.text-aspiri {
    color: #982464;
}
/* Example aspiri color */
.text-aspiri2 {
    color: #7b1fa2;
}
/* Example */
.btn-purple {
    background: #9c27b0;
    border-color: #9c27b0;
}

.dash_input {
    font-weight: 500;
}

.pincode-wrapper {
    position: relative;
}

.pincode-icon {
    position: absolute;
    left: 35px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    pointer-events: none;
}

.pincode-change {
    position: absolute;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
}

@media (max-width: 980px) {
    .smallviewpadding {
        padding: 0px !important;
    }
}


/* Chrome / Edge */
input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    display: none;
}

/* Modal animation from right to left - positioned below header */
.search-modal {
    position: fixed;
    top: 99px; /* Below the header height */
    right: -100%;
    width: 100%;
    max-width: 50vw;
    height: calc(100vh - 95px); /* Full height minus header */
    background: white;
    z-index: 1040; /* Below header z-index (1030) */
    transition: right 0.3s ease-in-out;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    display: none;
}

    .search-modal.show {
        right: 0;
        display: block;
    }

.search-modal-overlay {
    position: fixed;
    top: 99px; /* Start below header */
    left: 0;
    width: 100%;
    height: calc(100vh - 95px);
    background: rgba(0,0,0,0.5);
    z-index: 1039; /* Just below modal */
    display: none;
}

    .search-modal-overlay.show {
        display: block;
    }

.search-modal-body {
    padding: 20px;
}

.suggestion-item {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background 0.2s;
}

    .suggestion-item:hover {
        background: #f8f9fa;
    }

    .suggestion-item:last-child {
        border-bottom: none;
    }

.suggestion-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 15px;
}

.suggestion-content {
    flex: 1;
}

.suggestion-name {
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
}

.suggestion-price {
    color: #666;
    font-size: 0.9em;
}

.suggestion-rating {
    color: #ffc107;
    font-size: 0.9em;
}

.suggestion-wishlist {
    color: #ff6b6b;
    font-size: 0.9em;
}

.loading-spinner {
    text-align: center;
    padding: 20px;
    color: #666;
}

.section-title {
    font-size: 14px !important;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.no-results {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

/* When modal is open, ensure search bar stays on top */
.modal-open .premium-search-wrapper {
    position: relative;
    z-index: 1050;
}
/* 4 items per row */
.tag-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* One-line layout inside item */
.tag-row-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    background: #fdf9ff9c;
    color: #222;
}

    .tag-row-item:hover {
        background: #f0f0f0;
    }

/* Search icon */
.tag-search-icon {
    font-size: 16px;
    color: #888;
}

/* Image */
.tag-img {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
}

.tag-fallback {
    background: #e9e9e9;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Name */
.tag-name {
    font-size: 14px;
    white-space: nowrap;
}

.clear-btn {
    position: absolute;
    right: 45px; /* adjust based on your submit button width */
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #555;
    display: none; /* hidden by default */
    padding: 0;
    line-height: 1;
}

/* Show only when input has text */
.premium-search-input:not(:placeholder-shown) + .clear-btn {
    display: block;
}

<!-- Optional Clear Button Styles -->
<style >

.EzfyHeaderSearch {
    /*            max-width: 600px;*/
    margin: 0 auto;
    background-color: #fff;
    border-radius: 8px;
    padding-bottom: 6px;
}

.EzfyHeaderSearch .search {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.EzfyHeaderSearch .field__input {
    width: 100%;
    padding: 1.5% 10%; /* Extra padding on the left for the icon */
    background-color: #F6F3F9;
    border: 1px solid #e56eeb;
    border-radius: 12px;
    font-size: 14px;
    outline: none;
    transition: padding 0.3s ease;
}

    .EzfyHeaderSearch .field__input:focus {
        border-color: #982464;
    }

.EzfyHeaderSearch .search__button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; /* Ensures icon doesn't interfere with typing */
}

.EzfyHeaderSearch .search-input-container {
    position: relative;
    width: 100%;
}

.EzfyHeaderSearch .search__input::placeholder {
    color: #0000005c; /* Change placeholder text color to red */
    font-size: 16px;
    animation: typingAnimation 3s steps(30) 1; /* Animates letter-by-letter */
}

/* Animation to simulate typing effect */
@keyframes typingAnimation {
    0% {
        width: 0; /* Starts with no text */
    }

    100% {
        width: 100%; /* Ends with full placeholder text shown */
    }
}

.EzfyHeaderSearch .search__input:focus::placeholder {
    color: transparent;
    font-size: 12px;
    top: -10px;
    left: 10px;
}

.EzfyHeaderSearch .search__input:valid + .field__label,
.EzfyHeaderSearch .search__input:focus + .field__label {
    color: #982464;
    font-weight: bold;
}

/* Floating label */
.EzfyHeaderSearch .field__label {
    position: absolute;
    left: 45px; /* Adjust to align with icon */
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #aaa;
    pointer-events: none;
    transition: all 0.3s ease;
}

.EzfyHeaderSearch .search__input:focus + .field__label,
.EzfyHeaderSearch .search__input:not(:placeholder-shown) + .field__label {
    font-size: 12px;
    top: -10px;
    color: #982464;
}

/* Hide the label when there is a valid input */
.EzfyHeaderSearch .field__input:focus::placeholder {
    color: transparent;
}

/* Responsive Design */
@media (max-width: 768px) {
    .EzfyHeaderSearch {
        padding-left: 0px;
        padding-right: 0px;
        padding-bottom: 20px;
    }

        .EzfyHeaderSearch .field__input {
            padding: 0.8rem 2.8rem;
            background-color: #F6F3F9;
            border: 1px solid #e56eeb;
            color: #5D1143;
            font-size: 13px;
        }

    .field {
        display: flex;
        align-items: center;
        justify-content: space-around;
        width: 100%;
    }
}


.custom-suggestions-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 999;
    margin-top: 4px;
    max-height: 220px;
    overflow-y: auto;
}

    .custom-suggestions-dropdown .suggestion-item {
        padding: 10px 15px;
        cursor: pointer;
        transition: background 0.2s ease;
        font-size: 15px;
        color: #333;
    }

        .custom-suggestions-dropdown .suggestion-item:hover {
            background-color: #f5f5f5;
        }


@media (max-width: 991px) {
    /* Mobile Search Modal */
    .search-modal

{
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 95vh;
    border-radius:12px;
    max-height: 100vh;
    background: white;
    z-index: 1095;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
    max-width: 100vw !important;
}

.search-modal.show {
    transform: translateY(0) !important;
}

.search-modal-overlay {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 1090;
}
/* Mobile search header */
.search-modal-header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
    display: flex;
    align-items: center;
    padding: 12px 16px;
}

.modal-search-input {
    flex: 1;
    height: 40px;
    border: 1px solid #e56eeb;
    border-radius: 8px;
    padding: 0 35px 0 15px;
    font-size: 16px;
    outline: none;
    background: #F6F3F9;
    color: #5d1143;
}

    .modal-search-input::placeholder {
        color: #999;
        font-size: 15px;
    }

    .modal-search-input:focus {
        border-color: #e56eeb;
        background: #F6F3F9;
    }

.close-search-modal {
    background: none;
    border: none;
    font-size: 15px;
    color: #666;
    padding: 8px 12px;
    margin-left: 10px;
    white-space: nowrap;
    font-weight: 500;
}

.clear-mobile-search {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 22px;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

    .clear-mobile-search.active {
        display: flex;
    }
/* Modal body */
.search-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    padding-top: 15px;
    -webkit-overflow-scrolling: touch;
    background: #fdf9ff9c;
}
/* Recent searches for mobile */
.recent-searches {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.recent-search-tag {
    padding: 10px 16px !important;
    font-size: 14px;
    background: #f5f5f5 !important;
    border-radius: 20px !important;
    border: 1px solid #eee !important;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .recent-search-tag:hover {
        background: #e9e9e9 !important;
    }
/* Tag grid for mobile */
.tag-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}

.tag-row-item {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    padding: 12px 8px;
    border-radius: 12px;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
}

    .tag-row-item:hover {
        background: #fdf9ff9c;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

.tag-img {
    width: 54px;
    height: 54px;
    border-radius: 10px;
    margin-bottom: 8px;
    object-fit: cover;
    background: white;
}

.tag-fallback {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FCBA8C, #a20c03);
    color: white;
    font-size: 10px;
    text-align: center;
    padding: 5px;
    font-weight: 600;
}

.tag-search-icon {
    position: relative;
    /* top: 8px; */
    padding-left: 1.8rem;
    padding-right: 1.8rem;
    /* right: 8px; */
    font-size: 24px;
    color: #a20c03;
    opacity: 0.7;
}

.tag-name {
    font-size: 0.8rem;
    color: #333;
    text-align: center;
    line-height: 1.3;
    font-weight: 500;
    margin-top: 2px;
}
/* Section titles */
.searchsection-title {
    font-size: 17px;
    font-weight: 600;
    margin: 20px 0 15px 0;
    color: #5D1143;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.clear-recent {
    font-size: 13px;
    color: #666;
    text-decoration: underline;
    cursor: pointer;
}
/* Suggestions items */
.suggestion-item {
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
}

    .suggestion-item:active {
        background: #f9f9f9;
    }

.suggestion-name {
    font-size: 15px;
    color: #5D1143;
    font-weight: 600 !important;
}
/* Loading spinner */
.loading-spinner {
    text-align: center;
    padding: 50px 20px;
}

    .loading-spinner .spinner-border {
        width: 30px;
        height: 30px;
        border-width: 3px;
    }

    .loading-spinner p {
        margin-top: 15px;
        color: #666;
        font-size: 15px;
    }
/* No results */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

    .no-results p {
        margin: 0;
    }

        .no-results p:first-child {
            font-size: 16px;
            color: #333;
            margin-bottom: 8px;
        }

        .no-results p:last-child {
            font-size: 14px;
        }
/* Hide scrollbar for better mobile experience */
.search-modal-body::-webkit-scrollbar {
    width: 5px;
}

.search-modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.search-modal-body::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}
/* Prevent body scroll when modal is open on mobile */
body.search-modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

}


/* #endregion */


/* #region =====style-2 ===== */

.m-custom {
    margin: .20rem !important
}

.home-width {
    max-width: 98vw !important;
}

.css-1ddpys3 > li {
    list-style: none;
    cursor: pointer;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 20px;
}

.treasure {
    border: 1px solid #DE57E5;
    background: #F8EBFB;
    border-radius: 12px;
    padding: 0px 8px;
    cursor: pointer;
    position: relative;
}

.css-1fs27mr .badge {
    background: #EB4F5C;
    color: #FFFFFF;
    font-size: 0.8rem;
    font-family: 'InterBold', 'NotoSansDevanagariBold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    border-radius: 22px;
    margin-left: 18px;
    margin-top: -6px;
    position: absolute;
    bottom: 21px;
    right: 5px !important;
    width: 40px;
    height: 12px;
    font-size: 0.8rem;
    padding: 0px 10px;
}

.css-ewk3he {
    border: 1px solid transparent;
    background: linear-gradient(white, white) padding-box, linear-gradient(90deg, #FD8B64 0%, #FF5B6C 100%) border-box;
    border-radius: 12px;
    padding: 10px;
    cursor: pointer;
    position: relative;
}

.css-ewk3he {
    border: 1px solid transparent;
    background: linear-gradient(white,white) padding-box,linear-gradient(90deg,#FD8B64 0%,#FF5B6C 100%) border-box;
    border-radius: 12px;
    padding: 5px 8px !important;
    cursor: pointer;
    position: relative;
}

    .css-ewk3he > a {
        display: -webkit-inline-box;
        display: -webkit-inline-flex;
        display: -ms-inline-flexbox;
        display: inline-flex;
        position: relative;
    }

        .css-ewk3he > a > img {
            height: 18px;
            width: auto;
            vertical-align: top;
        }

        .css-ewk3he > a > p {
            margin-left: 5px;
            font-family: 'InterSemiBold','NotoSansDevanagariSemiBold','Helvetica Neue',Helvetica,Arial,sans-serif;
            font-size: 1.2rem;
            line-height: 18.52px;
            text-align: left;
            color: #4F3267;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
        }


.css-1dz3q8v {
    border: 1px solid #B08700;
    background: #FFF6D8;
    border-radius: 12px;
    padding: 5px 8px !important;
    cursor: pointer;
    position: relative;
}

    .css-1dz3q8v > a > img {
        height: 18px;
        width: auto;
        vertical-align: top;
    }

body {
    padding-top: 95px;
}

.logowidth {
    min-width: 120px;
}
/* Adjust based on your header height */
@media (max-width: 991px) {
    body {
        padding-top: 60px;
    }

    .css-ewk3he {
        border: 1px solid #D190B9 !important;
        background: #e3c0d6e3 !important;
        border-radius: 12px !important;
        padding: 4px 6px !important;
        cursor: pointer;
        /* color: #b5adb2; */
        font-size: 13px !important;
        /* margin-top: -2px; */
        position: relative;
    }
}

@media (max-width: 491px) {
    body {
        padding-top: 60px;
    }

    .fixed-top {
        position: fixed;
        top: 0;
        /*                    right: 46px;
                             left: -14px;*/
        /* z-index: 1030; */
    }

    .logowidth {
        min-width: 20px !important;
    }

    .home-width {
        max-width: 108vw !important;
    }
}
/* =========================
            NEBU -  Premium Search
            ========================= */

.premium-search-wrapper {
    font-family: 'Poppins', sans-serif;
}

/* Search container */
.premium-search-input-group {
    position: relative;
    height: 39px;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #902167;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .premium-search-input-group:focus-within {
        border-color: #982464;
        box-shadow: 0 10px 35px rgba(152, 36, 100, 0.15);
        transform: translateY(-1px);
    }

/* Input */
.premium-search-input {
    width: 100%;
    height: 100%;
    padding: 15px 89px 15px 28px;
    border: none;
    outline: none;
    background: transparent;
    font-size: 11px;
    color: #333;
}

    .premium-search-input::placeholder {
        color: transparent;
    }

/* Floating label */
.floating-label {
    position: absolute;
    top: 50%;
    left: 28px;
    transform: translateY(-50%);
    font-size: 11px;
    color: #999;
    font-weight: 500;
    pointer-events: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 120px);
}

/* Highlight inside label */
.highlight {
    color: #982464;
    font-weight: 600;
}




/* Search button */
.search-submit-btn {
    position: absolute;
    right: 0;
    top: -6px;
    width: 45px;
    height: 48px;
    background: #902167;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    border-right: 1px solid #902167;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(152, 36, 100, 0.3);
}

    .search-submit-btn:hover {
        background: #7d1d52;
        transform: scale(1.05);
    }

    .search-submit-btn:active {
        transform: scale(0.95);
    }

/* =========================
            Search Suggestions
            ========================= */

.suggestions-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 10px;
    background: #ffffff;
    border-radius: 16px;
    max-height: 380px;
    overflow-y: auto;
    z-index: 999;
    border: 1px solid #f0e6ec;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

    .suggestions-dropdown.active {
        display: block;
    }

    .suggestions-dropdown div {
        padding: 14px 20px;
        cursor: pointer;
        font-size: 15px;
        border-bottom: 1px solid #f5f0f3;
        transition: all 0.2s ease;
    }

        .suggestions-dropdown div:hover {
            background: #fdf4f9;
            color: #982464;
            padding-left: 25px;
        }

        .suggestions-dropdown div:last-child {
            border-bottom: none;
        }
/* Hide label when user types or focuses */
.premium-search-input:focus .floating-label,
.premium-search-input:not(:placeholder-shown) .floating-label {
    opacity: 0 !important;
    visibility: hidden;
}
/* Container */
#products-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 items per row */
    gap: 20px;
    padding: 0;
    margin: 0;
    list-style: none;
}

    /* Each item */
    #products-menu li {
        text-align: center;
    }

        /* Link styling */
        #products-menu li a {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #2b2b2b;
            font-size: 13px;
            transition: 0.3s ease;
        }

        /* Icons */
        #products-menu li img {
            width: 55px;
            height: 55px;
            object-fit: contain;
            margin-bottom: 6px;
            transition: transform 0.3s ease;
        }

        /* Hover effect  */
        #products-menu li:hover img {
            transform: scale(1.08);
        }

        #products-menu li:hover a p {
            color: #ff5b6c;
        }

        /* Text */
        #products-menu li p {
            margin: 0;
            font-size: 14px;
            font-weight: 500;
        }

        /* NEW badge */
        #products-menu li .badge {
            background: #ff5b6c;
            color: #fff;
            font-size: 10px;
            padding: 2px 6px;
            border-radius: 6px;
            margin-top: 4px;
            display: inline-block;
        }

.pincode-dropdown {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

    .pincode-dropdown.show {
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
    }

.pincode-trigger-btn:hover {
    background: #fdf4ff !important;
    /*                box-shadow: 0 8px 25px rgba(152, 36, 100, 0.15);*/
    transform: translateY(-1px);
}

    .pincode-trigger-btn:hover .pincode-arrow svg {
        transform: rotate(180deg);
    }

.pincode-arrow svg {
    transition: transform 0.3s ease;
}

.text-pink {
    color: #c73b8f;
    font-size: 10px;
}

.btn-purple:hover {
    background: linear-gradient(135deg, #7d1d52, #b02a78) !important;
    transform: scale(1.05);
}

.welcome-login-btn {
    background: linear-gradient(135deg, #5D1143, #D190B9);
    color: white;
    font-weight: 500;
    font-size: 0.98rem;
    padding: 1rem;
    border-radius: 16px;
    border: none;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 10px 30px rgba(93, 17, 67, 0.25);
    transition: all 0.3s ease;
}

.hide-label {
    opacity: 0 !important;
    visibility: hidden !important;
}

@media (max-width: 991px) {
    .hide-on-scroll {
        transition: transform 0.3s ease, opacity 0.3s ease, height 0.3s ease;
    }

        .hide-on-scroll.is-hidden {
            transform: translateY(-8px);
            opacity: 0;
            height: 0;
            overflow: hidden;
            pointer-events: none;
        }
}

.zero-padding {
    padding-right: 0px !important;
    padding-left: 0px !important;
}

/* #endregion */


/* #region =====style3 ===== */

@media (max-width: 768px) {
    .footer-logo

{
    display: flex;
    flex-direction: column;
    align-items: center; /* center both horizontally */
    text-align: center;
    margin-bottom: 20px
}

.footer-logo img {
    margin: 0 auto;
    display: block;
    max-width: 200px; /* optional: prevent it from being too large */
}

.footer__medio-boxx {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

    .footer__medio-boxx ul {
        justify-content: center;
    }

}
/* Responsive adjustments for desktop footer */
.app-section-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    background-color: #532f5b4a;
    border-radius: 30px;
}

.mobile-app-image {
    max-width: 100%;
    height: auto;
}

.app-buttons img {
    max-height: 35px;
}
/* XXL screens (≥1400px) */
@media (min-width: 1400px) {
    .col-xxl-8 {
        width: 66.666667%;
    }

    .col-xxl-4 {
        width: 33.333333%;
    }

    .app-section {
        padding: 25px;
    }
}

/* XL screens (1200px-1399px) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .col-xl-8 {
        width: 66.666667%;
    }

    .col-xl-4 {
        width: 33.333333%;
    }

    .app-section {
        padding: 20px;
    }

    .mobile-app-image {
        max-height: 250px;
    }
}

/* LG screens (992px-1199px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .col-lg-8 {
        width: 66.666667%;
    }

    .col-lg-4 {
        width: 33.333333%;
    }

    .app-section {
        padding: 15px;
    }

    .mobile-app-image {
        max-height: 220px;
    }

    .footer-links li {
        margin-bottom: 6px;
    }

    .social-links {
        gap: 8px;
    }
}

/* Adjust spacing for medium screens */
@media (min-width: 992px) and (max-width: 1300px) {
    .footer-links li a {
        font-size: 12px;
    }

    .contact-info p {
        font-size: 12px;
    }

    .footer-title {
        font-size: 13px;
    }
}

/* Ensure proper column stacking on smaller desktop */
@media (max-width: 1199.98px) {
    .row.g-4 {
        /*                    gap: 20px !important;*/
    }
}

/* Footer top image positioning */
@media (min-width: 1400px) {
    .footer-top-image {
        top: -90px;
        right: -70px;
        width: 16%;
    }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .footer-top-image {
        top: -80px;
        right: -50px;
        width: 15%;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .footer-top-image {
        top: -70px;
        right: -30px;
        width: 14%;
    }
}

/* Responsive adjustments for the 2-column right section */
.app-section-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.mobile-app-image {
    max-width: 100%;
    height: auto;
}

/* XXL screens (≥1400px) */
@media (min-width: 1400px) {
    .col-xxl-4 .col-xl-7 {
        width: 58.333333%;
    }

    .col-xxl-4 .col-xl-5 {
        width: 41.666667%;
    }

    .app-section {
        padding: 25px;
    }

    .mobile-app-image {
        max-height: 280px;
    }
}

/* XL screens (1200px-1399px) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .col-xl-4 .col-xl-7 {
        width: 58.333333%;
    }

    .col-xl-4 .col-xl-5 {
        width: 41.666667%;
    }

    .app-section {
        padding: 20px;
    }

    .mobile-app-image {
        max-height: 250px;
    }
}

/* LG screens (992px-1199px) - Stack vertically */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .col-lg-4 .col-lg-12 {
        width: 100% !important;
    }

    .app-section {
        padding: 15px;
        margin-bottom: 20px;
    }

    .mobile-app-image {
        max-height: 220px;
    }
    /* Stack columns vertically on medium screens */
    .col-lg-4 .row {
        flex-direction: column;
    }
}

/* Adjust for medium desktop screens */
@media (min-width: 992px) and (max-width: 1300px) {
    .app-buttons img {
        height: 30px !important;
    }

    .footer-title {
        font-size: 13px;
    }

    .app-section p {
        font-size: 13px;
    }
}

/* Ensure proper alignment */
.col-xxl-4 .row {
    height: 100%;
    margin: 0;
}

.col-xxl-4 .col-md-7,
.col-xxl-4 .col-md-5 {
    display: flex;
    flex-direction: column;
}

/* Footer top image positioning adjustments */
@media (min-width: 1400px) {
    .footer-top-image {
        top: -90px;
        right: -70px;
        width: 16%;
    }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .footer-top-image {
        top: -80px;
        right: -50px;
        width: 15%;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .footer-top-image {
        top: -70px;
        right: -30px;
        width: 14%;
    }
    /* Stack the right section columns on medium screens */
    .col-lg-4 .col-md-7,
    .col-lg-4 .col-md-5 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
}

/* #endregion */

/* #region =====style4 ===== */

.footer-watermark {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-watermark img {
    max-width: 40%; /* perfect watermark size */
    /*                max-height:20%;*/
    opacity: 0.5; /* watermark effect */
    object-fit: contain;
    filter: grayscale(100%);
}

.social-links .social-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto !important;
    height: max-content;
    padding: 6px;
    background-color: #5D1143;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .social-links .social-circle i {
        color: #fff; /* white icon */
        font-size: 18px; /* icon size */
        transition: all 0.3s ease;
    }

    /* Hover effect: slight scale + lighter black */
    .social-links .social-circle:hover {
        background-color: #5D1143; /* lighter black on hover */
        transform: scale(1.1); /* enlarge slightly */
    }

.aspiri-footer {
    position: relative; /* ensure absolute child positions relative to footer */
}



@media (max-width:1500px) {
    .footer-top-image {
        position: absolute;
        top: 1%;
        right: 0%;
        /* height: 84%; */
        width: 17%;
        z-index: 10;
        object-fit: contain;
    }
}

.aspiri-footer {
    background-color: #ebe7ebd6;
    font-family: 'Josefin Sans', sans-serif;
    color: #444;
    font-size: 14.5px;
}

.footer-main {
    padding: 70px 0 0px;
}

.contact-titile {
    color: #0C0C0C;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.8px;
    /*color: #440727;*/
    color: #0C0C0C;
    margin-bottom: 20px;
    position: relative;
}

    .footer-title::after {
        content: '';
        width: 38px;
        height: 2px;
        background: #c9a96e;
        display: block;
        margin-top: 8px;
    }

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links a {
        color: #1F3747;
        text-decoration: none;
        font-size: 13px;
        transition: color 0.3s;
    }

        .footer-links a:hover {
            color: #c9a96e;
        }

.social-links a {
    color: #777;
    font-size: 18px;
    transition: color 0.3s;
}

    .social-links a:hover {
        color: #c9a96e;
    }

.app-buttons img {
    transition: transform 0.3s;
}

    .app-buttons img:hover {
        transform: translateY(-2px);
    }

.newsletter-mini .form-control {
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
}

.newsletter-mini .btn {
    font-size: 13px;
    border-radius: 4px;
}

.footer-bottom {
    background: #efebee;
    padding: 22px 0;
    border-top: 1px solid #562f59;
    font-size: 13.5px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .footer-main {
        padding: 50px 0 30px;
    }

    .app-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .footer-links {
        list-style: none;
        padding: 0px;
        margin: 0px 30px;
    }

    .app-buttons a {
        margin: 0 6px;
    }

    .footer-top-image {
        position: absolute;
        top: -90px;
        right: 0%;
        /*            height: 84%;*/
        width: 16%;
        z-index: 10;
        object-fit: contain;
    }
}
/* ─────────────────────────────────────
     Reusable Background Card / Effect
     Use by adding class:  bg-card-effect
     ───────────────────────────────────── */
.bg-card-effect {
    position: relative;
    z-index: -1;
    right: 103px;
    position: absolute;
    top: 77px;
    /* right: 305px; */
    height: 75%;
    /* left: 3px; */
    width: 386px;
    height: 200px;
}

    .bg-card-effect::before {
        content: '';
        position: absolute;
        top: -20px;
        left: -20px;
        right: -20px;
        bottom: -20px;
        background: #562f59;
        border-radius: 24px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(201, 169, 110, 0.12);
        z-index: -1;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.4);
    }

    /* Optional subtle lift on hover */
    .bg-card-effect:hover::before {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.09), 0 0 0 1px rgba(201, 169, 110, 0.18);
        transform: translateY(-4px);
        transition: all 0.4s ease;
    }

@media (max-width:1500px) {
    .bg-card-effect::before {
        content: '';
        position: absolute;
        top: -3%;
        left: 15%;
        right: -9%;
        bottom: -13%;
        background: #562f59;
        border-radius: 24px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(201, 169, 110, 0.12);
        z-index: -1;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.4);
    }
}

.newsletter-section {
    background: #efebee;
    backdrop-filter: blur(8px);
    border-top: 1px solid rgb(89 48 87);
    border-bottom: 1px solid rgb(89 48 87);
    padding: 48px 0;
    margin: 50px 0 0;
}

    .newsletter-section h5 {
        color: #0C0C0C;
        font-weight: 700;
        font-size: 18px;
        letter-spacing: 0.5px;
    }

    .newsletter-section p {
        font-size: 14px;
        color: #666;
    }

.newsletter-form .input-group {
    max-width: 420px;
    margin-left: auto;
}

.newsletter-input {
    border: 1.5px solid #562f59;
    border-right: none;
    border-radius: 50px 0 0 50px;
    padding: 14px 20px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.03);
}

    .newsletter-input:focus {
        border: 1px solid #562f59;
        border-right: none;
        border-radius: 50px 0 0 50px;
        padding: 14px 20px;
        font-size: 14px;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.03);
        webkit-box-shadow: none !important;
    }

.newsletter-btn:hover {
    background-color: #562f59;
    color: #fff;
    border: none;
    border-radius: 0 50px 50px 0;
}

.newsletter-btn:focus {
    background-color: #562f59;
    color: #fff;
    border: none;
    border-radius: 0 50px 50px 0;
}

.newsletter-btn {
    background-color: #562f59;
    color: #fff;
    border: none;
    border-radius: 0 50px 50px 0;
    padding: 0 28px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}



/* Mobile adjustment */
@media (max-width: 768px) {
    .newsletter-section {
        padding: 40px 0;
        text-align: center;
    }

    .newsletter-form .input-group {
        margin: 20px auto 0;
        max-width: 100%;
    }

    .newsletter-input {
        border-radius: 50px !important;
        border-right: 1.5px solid #c9a96e !important;
        margin-bottom: 12px;
    }

    .newsletter-btn {
        border-radius: 50px !important;
        width: 100%;
        max-width: 280px;
    }
}

.btn-black {
    border: 1px solid #5D1143 !important; /* Black background */
    color: #5D1143; /* White text */
    border: none;
    padding: 10px 22px;
    background-color: transparent;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

    .btn-black:hover {
        border: 1px solid #5D1143; /* Black background */
        background-color: #5D1143; /* Slightly lighter black on hover */
        color: white;
        transform: translateY(-2px); /* subtle lift effect */
    }

    .btn-black:active {
        transform: scale(0.98);
    }


.footer-tag-block {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.footer-parent {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.footer-child-row {
    display: flex;
    flex-wrap: wrap; /* child tags wrap on small screens */
    gap: 6px;
    align-items: center;
}

.footer-child-link {
    color: #555;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s;
}

    .footer-child-link:hover {
        color: #c9a96e; /* gold */
    }

.footer-separator {
    color: #999;
    font-size: 13px;
    margin: 0 2px;
}
/* Force full width on small screens */
@media (max-width: 1024px) {
    html, body {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden;
    }
    /*            * {
             max-width: 100% !important;
             box-sizing: border-box;
         }*/

    .container,
    .wrapper,
    main,
    .content,
    [class*="container"] {
        width: 100% !important;
        max-width: none !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}

/* ==========================================================================
     FOOTER – MOBILE ACCORDION (only active on tablets & phones)
     ========================================================================== */
@media (max-width: 992px) {
    .footer-app-section {
        padding: 20px 0 10px;
    }

    .contact-info {
        margin: 0px 30px;
    }
    /* Hide all columns by default on mobile */
    .footer-main .row > div[class^="col-"] {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
    /* Turn each column into an accordion item */
    .footer-accordion-item {
        border-bottom: 1px solid rgba(201,169,110,0.2);
        margin-bottom: 12px;
    }

    .footer-accordion-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 30px;
        cursor: pointer;
        font-weight: 700;
        font-size: 14px;
        letter-spacing: 0.8px;
        user-select: none;
    }

        .footer-accordion-header::after {
            content: '+';
            font-size: 24px;
            color: var(--gold, #c9a96e);
            transition: transform 0.3s ease;
        }

        .footer-accordion-header.active::after {
            content: '−'; /* minus sign */
            transform: rotate(0deg);
        }

    .footer-accordion-body {
        display: none;
        padding-bottom: 20px;
        animation: fadeSlide 0.4s ease;
    }

        .footer-accordion-body.active {
            display: block;
        }
    /* Keep these sections always visible (no accordion) */
    .footer-always-visible {
        margin-top: 30px;
    }
    /* Newsletter – full width & centered */
    .newsletter-section .row {
        text-align: center;
    }

    .newsletter-section {
        background: #efebee;
        backdrop-filter: blur(8px);
        border-top: none !important;
        border-bottom: 1px solid rgb(89 48 87);
        padding: 10px 0;
        margin: 0px 0 0;
    }

    .newsletter-form .input-group {
        margin: 20px auto 0;
        max-width: 100%;
    }

    .newsletter-input {
        border-radius: 50px !important;
        border-right: 1.5px solid #c9a96e !important;
        margin-bottom: 12px;
    }

    .newsletter-btn {
        background-color: #562f59;
        color: #fff;
        border: none;
        border-radius: 0 50px 50px 0;
        padding: 14px 33px;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
    }
    /* Small tweaks */
    .footer-top-image {
        display: none;
    }
    /* too big on mobile */
    .footer-main {
        padding: 50px 0 20px !important;
    }

    .app-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 12px;
    }

        .app-buttons img {
            height: 35px;
            width: auto;
        }
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .footer-always-visible .social-circle {
        width: 44px !important;
        height: 44px;
        font-size: 20px;
    }

    .footer-always-visible .btn-black {
        min-width: 200px;
    }

    .EzfyHeaderSearch .search-input-container {
        top: -20px;
    }

    .EzfyHeaderSearch {
        padding-bottom: 0px;
    }
}

/* #endregion */

/* #region =====style5 ===== */

.custom-close {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    border-radius: 50%;
    background-color: #f1f1f1; /* circle bg */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    opacity: 1;
    top: 21px;
}

/* Remove default bootstrap close icon */
.custom-close::before,
.custom-close::after {
    display: none;
}

/* X lines */
.custom-close .animationLine {
    position: absolute;
    width: 12px;
    height: 2px;
    background-color: #333;
    border-radius: 2px;
}

/* Rotate to form X */
.custom-close .span1 {
    transform: rotate(45deg);
}

.custom-close .span2 {
    transform: rotate(-45deg);
}

/* Optional hover */
.custom-close:hover {
    background-color: #e5e5e5;
}

/* #endregion */


/* #region =====style6 ===== */

.autowidth {
    width: 50% !important;
}
/* Mobile Categories Styles */
.mobile-categories-grid {
    display: flex;
    flex-wrap: wrap;
}

.mobile-category-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 12px;
    background: white;
    border: 1px solid #f0f0f0;
    text-decoration: none;
    transition: all 0.2s ease;
    gap: 27px;
    cursor: pointer;
    justify-content: flex-start;
    flex-wrap: nowrap;
    align-content: center;
}

.offcanvas-body {
    background: rgb(250, 248, 252);
}

.mobile-category-item:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.offcanvas.offcanvas-start {
    max-width: 100vw;
    width: 100vw;
}

.mobile-category-img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: white;
}

.mobile-category-fallback {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FCBA8C, #a20c03);
    color: white;
    font-size: 11px;
    text-align: center;
    padding: 5px;
    font-weight: 600;
}

.mobile-category-name {
    font-size: 12px;
    color: #333;
    text-align: center;
    line-height: 1.3;
    font-weight: 500;
}

.mobile-category-filters {
    background: rgb(250, 248, 252);
    border-radius: 12px;
    padding: 15px;
    overflow-y: auto;
    border: 1px solid #eee;
}

.mobile-filters-content {
    padding: 10px 0;
}

.mobile-filter-group {
    margin-bottom: 20px;
}

.mobile-filter-title {
    font-size: 14px;
    font-weight: 600;
    color: #532f5b;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-filter-options {
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.mobile-filter-option {
    font-size: 13px;
    color: #555;
    padding: 8px 12px;
    border-radius: 8px;
    background: #f9f9f9;
    border: 1px solid #eee;
    transition: all 0.2s ease;
    text-decoration: none;
    display: block;
}

    .mobile-filter-option:hover {
        background: #f0f0f0;
        color: #532f5b;
        transform: translateX(5px);
    }

.mobile-view-all-btn {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    /*            background: linear-gradient(135deg, #532f5b, #8a9577);*/
    color: white;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s ease;
}

    .mobile-view-all-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(83, 47, 91, 0.3);
    }

.back-to-categories {
    font-size: 14px;
    color: #532f5b;
    text-decoration: none;
    display: flex;
    align-items: center;
}

    .back-to-categories:hover {
        color: #8a9577;
    }

.category-loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #532f5b;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Scrollbar styling for mobile filters */
.mobile-category-filters::-webkit-scrollbar {
    width: 4px;
}

.mobile-category-filters::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.mobile-category-filters::-webkit-scrollbar-thumb {
    background: #c49a6c;
    border-radius: 4px;
}


/* Mobile Categories Styles - UPDATED ONLY STYLES */
.mobile-category-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 15px;
    background: white;
    border: 2px solid #f0f0f0;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 15px;
    cursor: pointer;
    justify-content: flex-start;
    padding: 0.3rem;
    box-shadow: 0 2px 8px rgba(109, 26, 26, 0.05);
}

.mobile-category-item:hover {
    border-color: #6D1A1A;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(109, 26, 26, 0.15);
}

.offcanvas-body {
    background: rgb(250, 248, 252);
}

.offcanvas.offcanvas-start {
    max-width: 100vw;
    width: 100vw;
}

.mobile-category-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.mobile-category-fallback {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #b11226 0%, #b89778 100%);
    border: 2px solid #6D1A1A;
}

    .mobile-category-fallback i {
        color: white;
        font-size: 24px;
    }

.mobile-category-name {
    font-size: 12px;
    color: #6D1A1A;
    text-align: left;
    line-height: 1.3;
    font-weight: 600;
    flex: 1;
}

/* ANIMATION FOR FILTERS SECTION */
.mobile-category-filters {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: white;
    padding: 15px;
    overflow-y: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

    .mobile-category-filters.slide-in {
        left: 0;
    }

    .mobile-category-filters.slide-out {
        left: 100%;
    }

/* Rest of existing styles remain but updated colors */
.mobile-filters-header {
    padding: 10px 0;
    border-bottom: 2px solid #f2eee7;
    margin-bottom: 20px;
}

    .mobile-filters-header h6 {
        color: #6D1A1A;
        font-size: 18px;
        font-weight: 700;
    }

.mobile-filters-content {
    padding: 10px 0;
}

.mobile-filter-group {
    margin-bottom: 25px;
    animation: slideInRight 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    transform: translateX(30px);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-filter-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #6D1A1A;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f2eee7;
}

    .mobile-filter-title i {
        font-size: 20px;
        color: #6D1A1A;
    }

.mobile-filter-options {
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
}

.mobile-filter-option {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #5d1143;
    padding: 12px 15px;
    border-radius: 10px;
    background: rgb(245, 241, 255);
    border: 1px solid rgb(220, 210, 254);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-weight: 500;
    min-height: 45px;
}

    .mobile-filter-option:hover {
        background: linear-gradient(135deg, #b11226 0%, #b89778 100%);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(109, 26, 26, 0.2);
        border-color: transparent;
    }

    .mobile-filter-option i {
        font-size: 18px;
    }

/* Price option specific styling - SMALL CARDS */
.price-option {
    background: rgb(245, 241, 255);
    border: 1px solid rgb(220, 210, 254);
    font-weight: 600;
    padding: 10px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

    .price-option i {
        font-size: 20px;
    }

/* Color option specific styling - SMALL CIRCLES */
.color-option {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.color-circle {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #e8e1d7;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.color-option:hover .color-circle {
    transform: scale(1.1);
    box-shadow: 0 0 0 2px #6D1A1A;
}

/* View All button */
.mobile-view-all-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    text-align: center;
    /*            background: linear-gradient(135deg, #6D1A1A 0%, #b11226 100%);*/
    color: white;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    margin-top: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    animation: slideInRight 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.7s;
    opacity: 0;
    transform: translateX(30px);
}

    .mobile-view-all-btn:hover {
        transform: translateY(-3px) translateX(0);
        box-shadow: 0 10px 25px rgba(109, 26, 26, 0.3);
    }

    .mobile-view-all-btn i {
        font-size: 18px;
    }

.back-to-categories {
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
    padding: 5px;
}

    .back-to-categories:hover {
        transform: translateX(-3px);
    }

    .back-to-categories i {
        font-size: 24px;
    }

.category-loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #6D1A1A;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Scrollbar styling */
.mobile-category-filters::-webkit-scrollbar {
    width: 5px;
}

.mobile-category-filters::-webkit-scrollbar-track {
    background: #f8f5f0;
    border-radius: 4px;
}

.mobile-category-filters::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #b11226 0%, #b89778 100%);
    border-radius: 4px;
}

.service-grid-section {
    /*            padding: 16px;*/
}

.service-grid-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 8px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: #000;
}

    .service-card img {
        width: 25px;
        height: 25px;
        object-fit: contain;
    }

    .service-card h3 {
        font-size: 13px;
        font-weight: 600;
        margin: 8px 0 0;
    }

    .service-card p {
        font-size: 11px;
        color: #666;
        margin: 0;
        line-height: 1.4;
    }

    /* Optional hover */
    .service-card:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    }

.design-types-section-footer {
    border-top: 1px solid #eee;
}

.design-img-footer {
    height: 80px;
    object-fit: cover;
}

@media (max-width: 767.98px) {
    .design-types-container-footer {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        padding-bottom: 1rem;
        scrollbar-width: thin;
        scrollbar-color: #ccc transparent;
        -webkit-overflow-scrolling: touch;
    }

        .design-types-container-footer::-webkit-scrollbar {
            height: 6px;
        }

        .design-types-container-footer::-webkit-scrollbar-track {
            background: transparent;
        }

        .design-types-container-footer::-webkit-scrollbar-thumb {
            background-color: #ccc;
            border-radius: 3px;
        }

        .design-types-container-footer .col-6 {
            flex: 0 0 auto !important;
            width: auto !important;
            max-width: 120px; /* Adjusted for mobile offcanvas */
            margin-right: 0.75rem;
        }

            .design-types-container-footer .col-6:last-child {
                margin-right: 0;
            }
}

/* #endregion */


/* #region =====style7 ===== */

.aspiri-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

/* Hide native checkbox */
.aspiri-checkbox input {
    display: none;
}

/* Custom box */
.aspiri-check {
    width: 30px;
    height: 14px;
    border: 2px solid #5D1143;
    border-radius: 4px;
    position: relative;
    margin-top: 4px;
}

.aspirisignup-check {
    width: 13px;
    height: 13px;
    border: 2px solid #5D1143;
    border-radius: 4px;
    position: relative;
    margin-top: 4px;
}
/* Checked state */
.aspiri-checkbox input:checked + .aspiri-check {
    background-color: #5D1143;
}

.aspiri-checkbox input:checked + .aspirisignup-check {
    background-color: #5D1143;
}
/* Tick mark */
.aspiri-checkbox input:checked + .aspiri-check::after {
    content: '';
    position: absolute;
    left: 2px;
    top: 0px;
    width: 5px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.aspiri-checkbox input:checked + .aspirisignup-check::after {
    content: '';
    position: absolute;
    left: 2px;
    top: 0px;
    width: 5px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
/* Links color */
.aspiri-checkbox a {
    color: #5D1143;
    text-decoration: underline;
}

/* #endregion */


/* #region =====style8 ===== */


.modal-content {
    background: linear-gradient(145deg, #ffffff 0%, #fdfdfd 50%, #f9f9f9 100%);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    border-radius: 24px;
    border: none;
    overflow: hidden;
    /*            max-width: 600px;*/
    position: relative;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(ellipse at center top, rgba(208, 144, 185, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.premium-heading {
    font-family: 'Playfair Display', serif;
    color: #5D1143;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 4px rgba(93, 17, 67, 0.05);
}

.accent-gold {
    color: #D4AF37;
    font-weight: 600;
}

.premium-text {
    font-family: 'Inter', sans-serif;
    color: #4A5568;
    line-height: 1.7;
    font-weight: 300;
    font-size: 1.05rem;
}

.form-input {
    background: rgba(255, 255, 255, 0.85);
    border: 2px solid rgba(208, 144, 185, 0.15);
    border-radius: 50px;
    padding: 16px 20px 16px 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #1F3747;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 46px;
    position: relative;
}

    .form-input:focus {
        border-color: #D4AF37;
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.12), 0 0 0 0.25rem rgba(212, 175, 55, 0.08);
        background: rgba(255, 255, 255, 1);
        transform: translateY(-2px);
        outline: none;
    }

    .form-input::placeholder {
        color: #88A1AE;
        font-weight: 300;
        opacity: 0.8;
    }

.subscribe-btn {
    background: linear-gradient(135deg, #902167 0%, #D190B9 50%, #C084B5 100%);
    border: 2px solid rgba(144, 32, 103, 0.2);
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.5px;
    color: white;
    padding: 16px 32px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    height: 56px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .subscribe-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(144, 32, 103, 0.25);
        color: white;
    }

    .subscribe-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        transition: left 0.6s;
    }

    .subscribe-btn:hover::before {
        left: 100%;
    }

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

    .social-icons a {
        color: #902167;
        font-size: 1.4rem;
        transition: all 0.3s ease;
        padding: 12px;
        border-radius: 50%;
        background: rgba(208, 144, 185, 0.1);
        width: 52px;
        height: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .social-icons a:hover {
            color: #D4AF37;
            background: rgba(212, 175, 55, 0.1);
            transform: scale(1.15) translateY(-2px);
        }

.logo:hover {
    transform: scale(1.08) rotate(2deg);
}

.decor-line {
    height: 3px;
    background: linear-gradient(to right, transparent, #5D1143, #1F3747, transparent);
    border-radius: 2px;
    margin: 24px auto;
    width: 120px;
}

.close-btn-custom {
    filter: invert(0.4) sepia(1) saturate(5) hue-rotate(280deg);
    opacity: 0.6;
    transition: opacity 0.3s;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    z-index: 10;
}

    .close-btn-custom:hover {
        opacity: 1;
    }

.form-icon {
    color: #902167;
    z-index: 2;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: opacity 0.3s;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.form-input:focus ~ .form-icon {
    opacity: 1;
    color: #D4AF37;
}

.privacy-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #88A1AE;
    font-weight: 300;
    line-height: 1.4;
    text-align: center;
    margin-top: 24px;
}

.welcome-card {
    position: relative;
    z-index: 2;
    padding: 30px 25px;
    text-align: center;
}

.logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.form-wrapper {
    background: transparent;
    backdrop-filter: blur(20px);
    margin: 40px auto;
    max-width: 410px;
}

@media (max-width: 768px) {
    .modal-dialog {
        margin: 0;
        max-width: 95%;
    }

    .premium-text {
        font-size: 1rem;
    }

    .social-icons {
        gap: 15px;
    }

        .social-icons a {
            width: 48px;
            height: 48px;
            font-size: 1.2rem;
        }

    .welcome-card {
        padding: 40px 20px;
    }

    .form-wrapper {
        margin: 30px 20px;
        padding: 30px;
    }
}

.floating-elements {
    position: absolute;
    top: 20%;
    right: -10%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}


/* Modal - Full screen height, 50vw width, slides from left */
.modal.slide-from-left .modal-dialog {
    position: fixed;
    margin: 0;
    width: 50vw; /* Exactly 50% of viewport width */
    max-width: 50vw;
    height: 100vh; /* Full screen height */
    max-height: 100vh;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modal.slide-from-left.show .modal-dialog {
    transform: translateX(0);
}

.modal.slide-from-left .modal-content {
    height: 100%;
    width: 100%;
    border-radius: 0;
    border: none;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    background: #ffffff;
}

.welcome-row {
    display: flex;
    align-items: stretch;
    height: 100vh;
    width: 100%;
}

.welcome-left {
    flex: 1;
    background: url('../assets/images/Nebu/Untitled-3.png') left/contain no-repeat;
    margin-left: 0px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .welcome-left::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

/* Right Side: Form content */
.welcome-right {
    flex: 1.1;
    background: #ffffff;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Typography */
.premium-heading {
    font-family: 'Playfair Display', serif;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: 0.8px;
}

.form-wrapper h1 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.premium-text {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 50px;
    font-weight: 300;
}

/* Form styling */
.form-icon {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.4rem;
}

.form-input {
    padding-left: 70px !important;
    border-radius: 0;
    border: 1px solid #e0e0e0;
    height: 50px;
    font-size: 0.8rem;
    background: #fafafa;
}

    .form-input:focus {
        border-color: #d4af37;
        box-shadow: none;
    }

.subscribe-btn {
    background: #1a1a1a; /* Or your custom .bg-aspiri color */
    color: #fff;
    border-radius: 0;
    padding: 18px;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    transition: background 0.4s;
}

    .subscribe-btn:hover {
        background: #d4af37;
    }

/* Social icons */
.social-circle {
    width: 56px;
    height: 56px;
    background: transparent;
    border: 1px solid #ccc;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /*      margin: 0 15px;*/
    transition: all 0.3s;
}

    .social-circle:hover {
        background: #d4af37;
        border-color: #d4af37;
    }

    .social-circle i {
        font-size: 1.5rem;
        color: #555;
    }

    .social-circle:hover i {
        color: #fff;
    }

/* Privacy text */
.privacy-text {
    margin-top: 60px;
    font-size: 1rem;
    color: #777;
    text-align: center;
    font-weight: 300;
}

/* Responsive - Stack vertically on smaller screens */
@media (max-width: 992px) {
    .modal.slide-from-left .modal-dialog {
        width: 100vw;
        max-width: 100vw;
    }

    .welcome-row {
        flex-direction: column;
    }

    .welcome-left {
        min-height: 40vh;
    }

    .welcome-right {
        padding: 80px 60px;
    }
}

@media (max-width: 768px) {
    .welcome-right {
        padding: 60px 40px;
    }

    .form-wrapper h1 {
        font-size: 1.9rem;
    }

    .form-input {
        height: 60px;
        font-size: 1.1rem;
    }

    .subscribe-btn {
        padding: 18px;
    }
}

/* #endregion */


/* #region =====style9 ===== */

#cartSidebar.open {
    transform: translateX(0) !important;
}

.aspiri-bg {
    background-color: #992666 !important;
    color: white !important;
}

.btn-outline-aspiri {
    border-color: #1c0823 !important;
    color: #1c0823 !important;
}

    .btn-outline-aspiri:hover {
        border-color: #1c0823 !important;
        color: #1c0823 !important;
        background-color: white !important;
    }

.cart-item-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item {
    border-bottom: 1px solid #eee;
    padding: 12px 0;
}

    .cart-item:last-child {
        border-bottom: none;
    }

.qty-btn {
    width: 28px;
    height: 28px;
    font-size: 14px;
}

.btn-close1 {
    position: absolute;
    top: 20px;
    right: 23px;
    z-index: 10;
}

.wishlist-btn.wishlisted i {
    color: red !important; /* filled heart color */
}

.fillWishlist {
    background-color: red;
}

.wishlist-icon .bx-heart.filled {
    color: #861b2d; /* Red color for filled heart */
}

.wishlist-icon .bx-heart.empty {
    color: #0003; /* Transparent color for empty heart */
}

.btn-wishlist {
    position: relative;
    display: inline-block;
    width: 28px;
    height: 28px;
    text-align: center;
}

.btn-wishlist i {
    font-size: 22px;
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.btn-wishlist:hover .bx-heart {
    color: #b62626 !important;
    transform: scale(1.2);
}

.btn-wishlist .bxs-heart {
    color: #b62626;
    animation: heartbeat 0.7s ease-in-out;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .categories-container {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
}
/* Keyframes for sliding from left */
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Apply animation to modal-dialog when modal shows */
.slide-in-left .modal-dialog {
    animation-name: slideInFromLeft;
    animation-duration: 0.5s;
    animation-timing-function: ease-out;
}

/* Optional: smoother backdrop */
.modal-backdrop.show {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}
/* ===== GLOBAL SCROLLBAR STYLING ===== */

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 10px; /* scrollbar width */
}

::-webkit-scrollbar-track {
    background: #f1f1f1; /* track color */
}

::-webkit-scrollbar-thumb {
    background: #5D1143; /* thumb color */
    border-radius: 10px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #7a1d57; /* hover color */
    }

/* Firefox */
* {
    scrollbar-width: thin; /* auto | thin */
    scrollbar-color: #5D1143 #f1f1f1; /* thumb track */
}


/* Price Breakdown Modal Styles */
#priceBreakdownModal {
    animation: slideUp 0.3s ease-out;
    max-height: 200px;
    overflow-y: auto;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#priceBreakdownModal .btn-close {
    padding: 0.5rem;
    margin: -0.5rem -0.5rem -0.5rem auto;
    background-size: 0.75rem;
}

/* Ensure the price breakdown modal appears above the checkout button */
#cartSidebar .border-top {
    position: relative;
}

/* Adjust cart items container height when breakdown is open */
#cartSidebar.open #cartItemsContainer {
    max-height: 100vh !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #cartSidebar {
        width: 100% !important;
        max-width: 100% !important;
    }

    #priceBreakdownModal {
        left: 10px !important;
        right: 10px !important;
        bottom: calc(100% - 10px) !important;
    }
}

#priceBreakdownModal {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: none;
}

    #priceBreakdownModal.show {
        opacity: 1;
        transform: translateY(0);
    }

#priceBreakdownBackdrop {
    opacity: 0;
    transition: opacity 0.3s ease;
}

    #priceBreakdownBackdrop.show {
        opacity: 1;
    }

.fixed-top {
    padding-right: 0 !important;
}

/* #endregion */

/* Mobile Header Styles */
.header-icon,
.logo-img {
    object-fit: contain;
    display: block;
}

.header-center-content {
    height: 100%;
    display: flex;
    align-items: center;
}

.search-wrapper {
    height: 38px;
    width: 100%;
}

.search-trigger-btn {
    height: 100%;
    background-color: #f8f9fa !important;
    border: 1px solid #e9ecef !important;
    transition: all 0.2s ease;
    padding-left: 0;
    overflow: hidden;
}

    .search-trigger-btn:active {
        background-color: #e9ecef !important;
        transform: scale(0.98);
    }

.search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.search-placeholder {
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.pincode-wrapper {
    height: 38px;
    width: 100%;
}

.pincode-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 36px;
}

.pincode-text {
    flex: 1;
    overflow: hidden;
    line-height: 1.2;
}

.header-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: background-color 0.2s ease;
    position: relative;
}

    .header-action-btn:active {
        background-color: #f8f9fa;
    }

.header-action-icon {
    font-size: 20px;
    color: #5D1143 !important;
}

.header-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 18px;
    height: 18px;
    padding: 2px 4px;
    font-size: 10px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

/* Mobile Responsive Styles */
@media (max-width: 576px) {
    .col-4, .col-5, .col-3 {
        padding: 0 4px;
    }

    .search-wrapper,
    .pincode-wrapper {
        height: 36px;
    }

    .search-placeholder,
    .pincode-text .font-10 {
        font-size: 11px;
    }

    .header-action-btn {
        width: 32px;
        height: 32px;
    }

    .gap-3 {
        gap: 12px !important;
    }
}

@media (max-width: 400px) {
    .col-4, .col-5, .col-3 {
        padding: 0 3px;
    }

    .search-wrapper,
    .pincode-wrapper {
        height: 34px;
    }

    .search-placeholder {
        font-size: 10px;
    }

    .pincode-text .font-10 {
        font-size: 9px;
    }

    .header-action-btn {
        width: 30px;
        height: 30px;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .row.align-items-center {
        min-height: 44px;
    }

    .search-wrapper,
    .pincode-wrapper {
        height: 34px;
    }
}

@media (hover: none) and (pointer: coarse) {
    .search-trigger-btn,
    .pincode-trigger-btn,
    .header-action-btn {
        cursor: pointer;
    }

        .search-trigger-btn:after,
        .pincode-trigger-btn:after,
        .header-action-btn:after {
            content: '';
            position: absolute;
            top: -8px;
            left: -8px;
            right: -8px;
            bottom: -8px;
        }
}

@media (prefers-color-scheme: dark) {
    .search-trigger-btn,
    .pincode-trigger-btn {
        background-color: #2d3748 !important;
        border-color: #4a5568 !important;
        color: #e2e8f0;
    }

        .search-trigger-btn:active,
        .pincode-trigger-btn:active {
            background-color: #4a5568 !important;
        }

    .search-placeholder,
    .pincode-text .text-dark {
        color: #e2e8f0 !important;
    }

    .header-action-btn:active {
        background-color: #4a5568;
    }
}

@media (max-width: 768px) {
    #priceBreakdownModal {
        left: 0px !important;
        right: 0px !important;
        bottom: calc(100% - 10px) !important;
    }
}

/* Toast Styles */
.luxury-toast {
    min-width: 320px;
    border-radius: 14px;
    backdrop-filter: blur(12px);
    background: linear-gradient(135deg, #902167, #5D1143);
    color: #EEE2DA;
    overflow: hidden;
    animation: slideInRight 0.5s ease;
}

    .luxury-toast h6 {
        font-size: 0.9rem;
        font-weight: 500;
    }

    .luxury-toast p {
        opacity: 0.9;
        font-size: 0.75rem;
    }

.toast-icon {
    background: rgba(255,255,255,0.1);
}

#toastProgress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: rgba(255,255,255,0.7);
    animation: progressBar linear forwards;
}

@keyframes progressBar {
    from {
        width: 100%;
    }

    to {
        width: 0%;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast {
    min-height: 80px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(238, 226, 218, 0.2);
    border-radius: 12px;
    overflow: hidden;
    animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast-icon {
    border-right: 1px solid rgba(238, 226, 218, 0.1);
    min-width: 60px;
}

    .toast-icon svg {
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    }

.toast-body h6 {
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.toast-body p {
    max-width: 280px;
}

.btn-close:hover {
    opacity: 1 !important;
    transform: scale(1.1);
    transition: all 0.2s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 576px) {
    .toast-container {
        padding: 1rem;
        width: 100%;
        max-width: 100%;
    }

    .toast {
        width: 100%;
        max-width: 100%;
    }

    .toast-body p {
        max-width: 200px;
    }
}

/* Welcome Section Styles */
.welcome-left {
    flex: 1;
    background: url('../assets/images/Nebu/Untitled-3.png') left/cover no-repeat;
    margin-left: 0px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .welcome-left::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

.single-piece-message {
    background: rgba(184, 151, 120, 0.08);
    padding: 8px 12px;
    border-radius: 6px;
    border-left: 3px solid #b89778;
    font-size: 13px;
}

/* Modal Styles */
.modal.slide-from-left .modal-dialog {
    width: auto !important;
}

.autowidth {
    width: 50% !important;
}

@media (max-width: 990px) {
    .Nopadding {
        padding: 0 !important;
        margin: 0 !important;
    }

    .iconleft {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}