* {
    font-family: "Poppins", sans-serif !important;
}

.progress-wrap::after{
    bottom: 160px !important;
}
.text-truncate-2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 3em;
    line-height: 1.5em;
}

/* 🔷 HEADER */
.top-header {
    background: black;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    width: 100%;
}

/* 🔷 NAVBAR */
.navbar {
    position: relative; /* Initially, it's relative */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100%;
    transition: all 0.3s ease-in-out; /* Smooth transition */
}

/* Fixed navbar when scrolled */
.navbar.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

/* Responsive Logo */
.responsive-logo {
    width: 140px;
    height: auto;
    max-width: 100%;
}

/* Adjust for mobile screens */
@media (max-width: 768px) {
    .responsive-logo {
        width: 140px;
        /* Smaller logo for mobile */
    }
    .nav-icons {
    display: flex;
    gap: 30px;
    font-size: 18px;
    position: relative;
}
}

@media (max-width: 480px) {
    .responsive-logo {
        width: 120px;
        /* Even smaller for very small screens */
    }
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-size: 14px;
    font-weight: 400px;
    text-transform: uppercase;
}



/*.nav-links {*/
/*    display: flex;*/
/*    gap: 20px;*/
/*    list-style: none;*/
/*    position: relative;*/
/*}*/

/*.nav-links a {*/
/*    text-decoration: none;*/
/*    color: black;*/
/*    font-size: 14px;*/
/*    font-weight: 400;*/
/*    text-transform: uppercase;*/
/*    position: relative;*/
/*}*/

/* Style for nav items */
/*.nav-item {*/
/*    position: relative;*/
/*}*/

/* Hide submenu by default */
/*.submenu {*/
/*    display: none;*/
/*    position: absolute;*/
/*    top: 100%;*/
/*    left: 0;*/
/*    background: white;*/
/*    padding: 10px 0;*/
/*    list-style: none;*/
/*    border: 1px solid #ddd;*/
/*    width: 180px;*/
/*    z-index: 10;*/
/*    opacity: 0;*/
/*    transform: translateY(10px);*/
/*    transition: opacity 0.3s ease, transform 0.3s ease;*/
/*}*/

/* Show submenu smoothly on hover */
/*.nav-item:hover .submenu {*/
/*    display: block;*/
/*    opacity: 1;*/
/*    transform: translateY(0);*/
/*}*/

/* Submenu item styling */
/*.submenu li {*/
/*    padding: 8px 15px;*/
/*}*/

/* Submenu link styling */
/*.submenu a {*/
/*    text-decoration: none;*/
/*    color: black;*/
/*    font-size: 12px;*/
/*    display: block;*/
/*    padding: 5px 0;*/
/*}*/

/* Submenu hover effect */
/*.submenu a:hover {*/
/*    background: #f5f5f5;*/
/*}*/


.nav-icons {
    display: flex;
    gap: 10px;
    font-size: 18px;
    position: relative;
}

.nav-icons i {
    cursor: pointer;
}

/* 🔷 CART BADGE */
.cart {
    position: relative;
}

/* 🔷 MOBILE MENU */
/*.mobile-menu {*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: -100%;*/
/*    width: 250px;*/
/*    height: 100vh;*/
/*    background: white;*/
/*    color: black;*/
/*    padding: 20px;*/
/*    transition: 0.3s ease-in-out;*/
/*    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);*/
/*}*/

/*.mobile-menu.active {*/
/*    left: 0;*/
/*}*/

/*.mobile-menu ul {*/
/*    list-style: none;*/
/*    padding: 0;*/
/*    margin-top: 20px;*/
/*}*/

/*.mobile-menu ul li {*/
/*    padding: 12px;*/
/*    border-bottom: 1px solid black;*/
/*    transition: 0.3s;*/
/*}*/

/*.mobile-menu ul li:hover {*/
/*    background: rgba(255, 255, 255, 0.1);*/
/*    cursor: pointer;*/
/*}*/

/*.close-menu {*/
/*    font-size: 24px;*/
/*    cursor: pointer;*/
/*    color: red;*/
/*    text-align: right;*/
/*}*/







/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 250px;
    height: 100vh;
    background: white;
    color: black;
    padding: 20px;
    transition: 0.3s ease-in-out;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    left: 0;
}

/* Mobile Menu List */
.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

/* Mobile Menu Item Styles */
.mobile-menu ul li {
    padding: 12px;
    border-bottom: 1px solid black;
    transition: 0.3s;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: black;
}

/* Mobile Menu Hover */
.mobile-menu ul li:hover {
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

/* Dropdown in Mobile Menu */
.dropdown-mobile {
    position: relative;
}

/* Dropdown Content for Subcategories in Mobile */
.dropdown-content-mobile {
    display: none;
    list-style: none;
    padding-left: 20px;
    margin-top: 10px;
    background: #f9f9f9;
    border-radius: 4px;
}

/* Subcategory Items */
.dropdown-content-mobile li {
    padding: 8px 12px;
    border-bottom: 1px solid #ddd;
}

.dropdown-content-mobile li a {
    text-decoration: none;
    color: black;
}

/* Close Menu Button */
.close-menu {
    font-size: 24px;
    cursor: pointer;
    color: red;
    text-align: right;
    margin-bottom: 20px;
}

/* Ensure the menu is scrollable if it's too long */
.mobile-menu ul,
.dropdown-content-mobile {
    max-height: 80vh;
    overflow-y: auto;
}

/* Mobile Menu Animation */
.mobile-menu.active {
    left: 0;
}

/* Prevent text overlap in mobile dropdown */
.dropdown-content-mobile a {
    word-wrap: break-word; /* Ensure text wraps within columns */
    white-space: normal;  /* Prevent text overflow */
}





/* 🔷 OVERLAY EFFECT */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    display: none;
}

.overlay.active {
    display: block;
}

.menu-icon {
    font-size: 24px;
    cursor: pointer;
    display: none;
    /* Hide by default */
}

a {
    text-decoration: none;
    color: inherit;
    /* Optional: Keeps the default text color */
}

@media (max-width: 768px) {
    .menu-icon {
        display: block;
        font-size: 24px;
        cursor: pointer;
    }

    .nav-links {
        display: none;
    }
}

/* 🔷 SLIDER */
/* Responsive Swiper Container */
.swiper-container {
    width: 100%;
    height: 80vh;
    overflow: hidden;
    z-index: 1;
}

/* Images & Videos */
.swiper-slide img,
.swiper-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
    .swiper-container {
        height: 600px;
    }

    /*.swiper-slide img {*/
    /*    height: auto;*/
    /*    width: 200px;*/
    /*    max-height: 60vh;*/
    /*}*/
    .what-new-section h2{
        margin-top: -20px;
    }
    
}

/* Sidebar Style */
.sidebar {
    display: none;
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: -4px 0px 20px rgba(0, 0, 0, 0.1);
    overflow-x: hidden;
    transition: 0.5s ease-in-out;
    padding-top: 20px;
    z-index: 9999;
    border-radius: 0 10px 10px 0;
    padding-left: 20px;
    color: #444;
    font-family: "Arial", sans-serif;
    max-height: 100vh;
    overflow-y: auto;
}

/* Close Button */
#closeIcon {
    font-size: 15px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: transparent;
    color: #333;
    border: none;
    padding: 10px;
    transition: background-color 0.3s ease;
}

#closeIcon:hover {
    background-color: #f1f1f1;
}

/* Sidebar Content */
.sidebar .search-container {
    padding: 15px;
    color: #444;
}

.sidebar h2 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}

.sidebar input {
    width: 80%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 30px;
    font-size: 16px;
    background-color: #f7f7f7;
    transition: all 0.3s ease;
}

.sidebar input:focus {
    outline: none;
    border-color: #007bff;
    background-color: #fff;
}

/* Quick Search */
.sidebar #searchResults h5 {
    font-size: 16px;
    margin-top: 20px;
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.sidebar li {
    margin: 12px 0;
}

.sidebar li a {
    color: #007bff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.sidebar li a:hover {
    color: #0056b3;
}

/* Inspiration Products */
.sidebar .product {
    display: flex;
    align-items: center;
    margin: 15px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #e1e1e1;
}

.sidebar .product img {
    width: 70px;
    height: 70px;
    margin-right: 15px;
    border-radius: 5px;
    object-fit: cover;
}

.sidebar .product-details {
    display: flex;
    flex-direction: column;
}

.sidebar .product-details p {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.sidebar .product-details span {
    font-size: 14px;
    color: #888;
}

/* Animation for the sidebar */
.sidebar-open {
    width: 350px;
}

.sidebar-close {
    width: 0;
}

.what-new-section {
    text-align: center;
    margin: 50px 0;
}

/* Heading for "What's New" */
.what-new-section h2 {
    margin-bottom: 20px ;
}



/* Slider Container */
.slider {
    position: relative;
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
    cursor: grab;
}

/* Slider Items Container */
.slider-container {
    display: flex;
    justify-content: center;
    transition: transform 0.3s ease-in-out;
}

/* Individual Slider Item */
.slider-item {
    flex: 0 0 auto;
    width: 20%;
    margin: 0 -2px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

/* Circular Image Styling */
.slider-item img {
    width: 120px;
    /* Fixed width */
    height: 120px;
    /* Fixed height */
    border-radius: 20%;
    /* Make images circular */
    object-fit: cover;
    /* Ensures the image covers the entire circle without distortion */
    margin-bottom: 10px;
}

/* Text under the images */
.slider-item p {
    font-size: 16px;
    font-weight: bold;
    color: #444;
    text-align: center;
}

/* Make the entire slider draggable */
.slider:active {
    cursor: grabbing;
}

/* Responsiveness for Mobile */
@media (max-width: 1024px) {
    .slider-item {
        width: 30%;
        /* Adjust width for tablets */
    }

    .slider-item img {
        width: 100px;
        /* Adjust image size for tablets */
        height: 100px;
        /* Adjust image size for tablets */
    }
}

@media (max-width: 768px) {
    .slider-item {
        width: 5%;
        /* More width on medium screens */
    }

    .slider-item img {
        width: 90px;
        /* Adjust image size for medium screens */
        height: 90px;
        /* Adjust image size for medium screens */
    }
}

@media (max-width: 480px) {
    .slider-item {
        width: 30%;
        /* Increase the item width on smaller screens */
    }

    .slider-item img {
        width: 80px;
        /* Adjust image size for mobile */
        height: 80px;
        /* Adjust image size for mobile */
    }

    .slider-prev,
    .slider-next {
        font-size: 20px;
        /* Smaller arrow size for mobile */
    }

    .slider-container {
        gap: 10px;
        /* Add some space between items */
    }
}

.testimonial-container {
    min-width: 90% !important;
    padding: 20px 30px;
    margin-bottom: 20px;
    border-radius: 15px;
    border: 1px solid #DFDFDF;
    /*box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);*/
    /*border:1px solid #DFDFDF !important;*/
    /*transition: transform 0.3s ease, box-shadow 0.3s ease;*/
}

.tag {
    text-align: center;
    font-size: 1.3rem;
    color: #555;
    font-weight: 600;
    margin-bottom: 15px;
}

.heartIcon {
    color: rgba(255, 69, 100, 0.8);
    font-size: 40px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.reviewCard {
    padding: 20px;
    border: none;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--main-two-600);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    margin-top: 15px;
    margin-bottom: 10px;
    background: #fff;
    display: flex;
    width: 90%;
    flex-direction: column;
    text-align: center;
    justify-content: space-between;
    height: auto;
    /* Reduced height for a better fit */
}

.reviewCard:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial {
    font-size: 1rem;
    line-height: 1.6rem;
    font-weight: 400;
    color: #666;
    margin: 10px 0;
}

.ph-star {
    color: #fbc02d !important;
    margin-bottom: 8px;
}

.ph-star-filled {
    color: #fbc02d !important;
}

.ph-star-half-alt {
    color: #fbc02d !important;
}

/* Style for the product images */
.product-images img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 0;
    border-radius: 6%;
    /* Remove border-radius to make images square */
    cursor: pointer;
    transition: transform 0.3s ease;
}

.product-images img:hover {
    transform: scale(1.1);
}

/* Full-screen image view with blur effect */
.full-screen-view {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.full-screen-view img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 0;
    /* Make sure the image is square */
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 1.5rem;
    color: #000;

    transition: background 0.3s;
}

.close-btn:hover {
    /* background: rgba(255, 0, 0, 0.7); */
    color: #fff;
}

.product-images {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.product-images img:hover {
    transform: scale(1.1);
}

.name {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 5px;
    color: #333;
}

.country-flag {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    margin-top: 5px;
}

.country-flag img {
    margin-left: 5px;
}

.owl-carousel {
    margin-bottom: 15px;
}

.owl-carousel .owl-stage-outer {
    padding: 0px 10px;
    height: auto;
}

.owl-carousel .owl-item img {
    width: 45px !important;
    height: 45px;
    border-radius: 6%;
    object-fit: cover;
}

.owl-theme .owl-nav [class*="owl-"] {
    border-radius: 50% !important;
    background: inherit !important;
    border: 3px solid #bbb;
    color: #bbb !important;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
    border: 3px solid #1010ca;
    color: #1010ca !important;
}

@media (max-width: 575.5px) {
    .container {
        margin: 0px;
        padding: 20px;
    }

    .owl-carousel .owl-item {
        padding: 0 10px;
    }
}


.currency-dropdown {
    align-items: center;
    font-size: 14px;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    background: #fff;
}

.currency-dropdown:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Currency flag */
.currency-dropdown img.currency-flag {
    width: 24px;
    height: 16px;
    border-radius: 4px;
    margin-right: 6px;
    transition: transform 0.3s ease-in-out;
}

.currency-dropdown span.currency {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-right: 6px;
}

/* Dropdown icon */
.currency-dropdown i {
    font-size: 16px;
    color: #444;
    margin-left: 6px;
    transition: transform 0.3s ease-in-out;
}

.currency-dropdown:hover i {
    transform: rotate(180deg);
}

/* Currency List (Dropdown Menu) */
.currency-list {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    list-style: none;
    padding: 10px 0;
    min-width: 140px;
    z-index: 1100;
    display: none;
    overflow: hidden;
    transition: opacity 0.3s ease-in-out, transform 0.2s ease-in-out;
}

/* Show the dropdown on hover */
.currency-dropdown:hover .currency-list {
    display: block;
    opacity: 1;
    transform: translateY(5px);
}

/* Currency list items */
.currency-list li {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    transition: background 0.3s ease-in-out;
    border-radius: 6px;
}

/* Hover effect */
.currency-list li:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* Currency flags inside dropdown */
.currency-list img {
    width: 20px;
    height: 14px;
    border-radius: 4px;
    margin-right: 10px;
}

/* Subtle glow effect on hover */
.currency-list li:hover img {
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
    transition: all 0.2s ease-in-out;
}
