.navbar-neo {
    /* Deep, dark indigo background color */
    background-color: #131725;
    padding: .50rem 0;
    /* Add vertical padding */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    /* Soft shadow for depth */
}

.logo-text {
    /* Standard text color for the logo */
    color: #ffffff;
    font-weight: 700;
    font-size: 1.5rem;
    margin-left: 0.5rem;
}

.logo {
    width: 100px;
}

/* Search Bar Container */
.search-container {
    flex-grow: 1;
    /* Allows the search bar to take up maximum available width */
    margin: 0 4rem;
    /* Horizontal margin from logo and icons */
}

.search-input-group {
    background-color: #242838;
    /* Darker input background */
    border-radius: 10px;
    /* Highly rounded corners */
    height: 55px;
    /* Fixed height for consistency */
    overflow: hidden;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

.search-icon {
    color: rgba(255, 255, 255, 0.5);
    /* Lighter search icon */
    padding: 0 1rem;
    font-size: 1.2rem;
}

.search-input {
    background-color: #242838;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    /* Input text color */
    height: 100%;
    width: 100%;
    padding: 0;
}


.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    /* Placeholder text color */
}

.search-input:focus {
    box-shadow: none;
    /* Remove default focus outline */
    outline: none;
    background-color: transparent;
    color: white;
}

/* Navigation Icons (Heart, Person, Cart) */
.nav-icon {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    margin-left: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.nav-icon:hover {
    color: #4285f4;
    /* Subtle blue hover effect */
}

/* Toggler Button Styling for Dark BG */
.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler-icon {
    /* Bootstrap default toggler is white on dark background */
    filter: invert(1);
}

/* ----------------------------------------------------------- */
/* Mobile View Adjustments */
/* ----------------------------------------------------------- */
@media (max-width: 992px) {
    .search-container {
        /* On small screens, move the search bar inside the collapsible content */
        margin: 1rem 0;
        width: 100%;
    }

    .navbar-icons {
        /* Stack icons vertically within the collapsible menu */
        flex-direction: column;
        align-items: flex-start !important;
        margin-top: 1rem;
    }

    .nav-icon {
        margin-left: 0;
        margin-bottom: 0.75rem;
    }
}




















.hero-section {
    background-color: #161a29;
    /* Deep indigo background */
    /* Subtle radial gradient for depth */
    background-image: radial-gradient(at 0% 50%, #202a46 0%, transparent 70%);
    /* min-height: 85vh; */
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Custom class for the vibrant gradient title text */
.gradient-text-title {
    background-image: linear-gradient(to right, #6d28d9, #9c43fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}

/* Custom button for the 'Shop Now' CTA with gradient */
.btn-gradient {
    background-image: linear-gradient(to right, #4c51bf, #805ad5);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    /* Highly rounded */
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(128, 90, 213, 0.4);
}

.btn-gradient:hover {
    opacity: 0.95;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(128, 90, 213, 0.6);
}

/* Secondary button style */
.btn-outline-dark-custom {
    color: #ccc;
    border: 1px solid #444;
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    transition: all 0.3s;
}

.btn-outline-dark-custom:hover {
    border-color: #fff;
    color: #fff;
    background-color: #242838;
}

/* Trust Badge Icons */
.icon-free {
    color: #3b82f6;
    font-size: 1.25rem;
}

.icon-secure {
    color: #f59e0b;
    font-size: 1.25rem;
}

.icon-return {
    color: #ef4444;
    font-size: 1.25rem;
}

/* Product Visual Card */
.product-card {
    background-color: rgba(255, 255, 255, 0.05);
    /* Semi-transparent white */
    backdrop-filter: blur(15px);
    /* Frosted glass effect */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 1.5rem;
    /* Large rounded corners */
    position: relative;
    z-index: 10;
}

/* Placeholder Image */
.product-image-placeholder {
    /* Using a placeholder URL to mimic the white background of the product */
    background-image: url('/image/watch\ ecommerc.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.95;
    min-height: 400px;
    border-radius: 1rem;
}

/* Rating Overlay */
.rating-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    color: #fcd34d;
    /* Yellow star color */
    font-size: 0.9rem;
    font-weight: 500;
}

/* Toggle Switch (ON/OFF) */
.toggle-switch {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    padding: 0.25rem;
    border-radius: 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.toggle-switch .btn {
    padding: 0.3rem 0.8rem;
    border-radius: 1.5rem;
    line-height: 1;
}

.toggle-switch .btn-on {
    background-color: #4c51bf;
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.toggle-switch .btn-off {
    background-color: transparent;
    color: #aaa;
}

/* Category Buttons */
.category-btn {
    background-color: #242838;
    color: #ccc;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.6rem;
    font-size: 0.9rem;
    transition: background-color 0.2s, color 0.2s;
}

.category-btn:hover {
    background-color: #383d54;
    color: #fff;
}











/* Section Centering */
#sale-features-bar {
    background-color: #11152a;
}

/* Custom Text Colors */
.text-light-alt {
    color: #e0e7ff;
    /* Slightly blue-ish white */
}

.text-secondary-alt {
    color: #aeb4c6;
    /* Lighter secondary text color */
    font-size: 0.75rem;
    /* Smaller font for descriptions */
}

/* Main Bar Container */
.main-sale-bar {
    background: linear-gradient(90deg, #1b203a 0%, #11152a 100%);
    /* Subtle dark gradient */
    /* border-radius: 20px; */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    padding-top: 30px !important;
    padding-bottom: 30px !important;
    margin: 30px 0px;
    border-radius: 10px;
}

/* Gradient Icon Boxes */
.bar-icon-gradient {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Specific Gradient Colors for Icons */
.bar-icon-gradient.fa-clock {
    /* Default clock icon */
    background: linear-gradient(45deg, #4c77e6, #7d44c9);
    /* Blue-purple */
}

.icon-coupon {
    background: linear-gradient(45deg, #e33088, #b630e3);
    /* Pink-purple */
}

.icon-shipping {
    background: linear-gradient(45deg, #28a745, #20c997);
    /* Green */
}

.icon-secure {
    background: linear-gradient(45deg, #6610f2, #0d6efd);
    /* Dark blue-purple */
}

/* Timer Box Styling */
.timer-box {
    background-color: #2a3048;
    border-radius: 8px;
    padding: 0.4rem 0.6rem;
    text-align: center;
    min-width: 55px;
}

.timer-box span {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
    line-height: 1;
}

.timer-box small {
    color: #aeb4c6;
}

.colon-sep {
    color: #e0e7ff;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 8px;
}

.timer-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Coupon Code Styling */
.text-coupon-code {
    background-color: #4a1f6a;
    /* Dark background for coupon code */
    padding: 0.2rem 0.6rem;
    border-radius: 5px;
    display: inline-block;
    /* Adjusts width to content */
    font-size: 0.9rem;
    color: #e3a8ff;
    /* Lighter, contrasting text */
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .main-sale-bar {
        padding: 2rem !important;
        /* More padding on small screens */
    }

    .col-12.col-md-auto.d-flex.align-items-center.flex-grow-1 {
        justify-content: flex-start;
        /* Align left */
        margin-bottom: 1rem;
        /* Space between stacked items */
    }

    .col-12.col-md-auto.d-flex.align-items-center.justify-content-center.order-md-first.order-lg-0 {
        justify-content: flex-start !important;
        /* Align timer left */
        margin-bottom: 1rem;
    }

    .main-sale-bar .row>div:last-child {
        margin-bottom: 0 !important;
        /* No bottom margin for the last item */
    }
}


















.Featured-Products-head {
    display: flex;
    justify-content: space-between;
}

.product-img1 {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    /* responsive square */
    overflow: hidden;
}

.product-img1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-size: cover;
    background-position: center;
    inset: 0;
}




.featured-products:hover .overlay {
    opacity: 1;
}

.text {
    color: white;
    font-size: 18px;
    position: absolute;
    bottom: 0px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    background-image: linear-gradient(to left, rgba(128, 0, 128, 0.521), rgba(0, 0, 255, 0.514));
    border-radius: 10px;
    border: none;
    padding: 5px 15px;

    &:hover {
        background-image: linear-gradient(to left, rgba(128, 0, 128, 0.74), rgba(0, 0, 255, 0.616));
        box-shadow: 0px 0px 20px 5px rgb(150, 150, 150) !important;
    }
}

.ls-icon {
    display: flex;
    flex-direction: column;
    color: white;
    gap: 5px;
    font-size: 18px;
    position: absolute;
    right: -10px;
    top: 45px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.ls-icon {
    right: 10px;
    top: 20px;
    transform: none;
}


.ls-icon button:nth-child(1),
.ls-icon button:nth-child(2) {
    &:hover {
        color: rgb(0, 0, 255);
    }

    &:active {
        color: purple;
    }
}

.ls-icon button {
    height: 35px;
    width: 35px;
}

.featured-products {
    border: 1px solid rgb(187, 187, 187);
    border-radius: 5px;
    transition: 0.5s;
}

.featured-products:hover {
    transform: translateY(-10px);
}

.featured-products-footer {
    background-color: transparent;
}

.featured-products-footer p:nth-child(1) {
    color: rgb(20, 93, 177);
    font-weight: 700;
    font-size: 13px;
    margin-top: -10px !important;
}

.featured-products-footer p:nth-child(2) {
    color: white;
    margin-top: -10px !important;
    font-size: 20px;
    font-weight: 700;
}

.featured-products-footer p:nth-child(3) {
    font-size: 13px;
}

.featured-products-footer p:nth-child(3) span {
    color: rgb(177, 177, 177);
}

.featured-products-footer p:nth-child(4) {
    color: rgb(255, 255, 255);
    font-weight: 700;
    font-size: 23px;
}

.featured-products-footer p:nth-child(4) span {
    color: rgb(170, 170, 170);
    font-weight: 600;
    font-size: 15px;
}


/* Custom CSS for the Testimonials Section */



/* Testimonial Section Styling */
#testimonials {
    background-color: #0d1222;
    /* Ensure the section matches the body background */
}

/* Card Styling */
.testimonial-card {
    background-color: #191e32;
    /* Slightly lighter dark background for the card */
    color: #f1f1f1;
    /* Light text color */
    border-radius: 15px;
    /* Rounded corners */
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    /* Needed for the background quote */
    overflow: hidden;
    /* Ensures the quote stays within the card bounds */
}

/* Background Quote Mark ("99") */
.testimonial-card::after {
    content: ";;";
    /* The quote mark */
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 150px;
    /* Large size */
    color: rgba(255, 255, 255, 0.05);
    /* Very faint white/light color */
    font-weight: 700;
    z-index: 0;
    /* Place behind the content */
    line-height: 1;
}

/* Content Z-index to be above the quote mark */
.testimonial-card>* {
    position: relative;
    z-index: 1;
}

/* Avatar Image Styling */
.avatar-img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border: 2px solid #3c445c;
    /* Slight border around the avatar */
}

/* Override Bootstrap text color for small text in card */
.testimonial-card .text-muted {
    color: #9fa6b2 !important;
    /* Lighter color for job title */
}

/* Heading style */
#testimonials h2 {
    color: #fff;
}






.newsletter-container {
    /* Limit the max width for better appearance on large screens */
    max-width: 800px;
    width: 90%;
}

.newsletter-card {
    /* Match the background to the image */
    background: rgba(30, 30, 50, 0.9);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

/* Primary Envelope Icon Styling */
.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #007bff, #6f42c1);
    /* Blue/Purple Gradient */
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Feature Boxes (Exclusive Deals, New Arrivals, etc.) */
.feature-box {
    background-color: #2c2c4d;
    /* Slightly lighter dark background for contrast */
    border-radius: 10px;
    display: flex;
    align-items: center;
    /* Center the features horizontally on small screens */
    justify-content: center;
}

/* Adjust feature box alignment for medium/large screens */
@media (min-width: 768px) {
    .feature-box {
        justify-content: flex-start;
    }
}

.feature-icon {
    /* Use colors similar to the image for the icons */
    font-size: 1.25rem;
    margin-right: 10px;
}

.fa-gift {
    color: #ff9933;
}

/* Orange/Yellow for Gift */
.fa-star {
    color: #ff6699;
}

/* Pink/Gold for Star */
.fa-coins {
    color: #ffd700;
}

/* Gold for Coins */


/* Form Input and Button Styling */
.dark-input-group-text {
    background-color: #333355;
    border: 1px solid #444466;
    color: #aaaaaa;
    border-right: none;
    border-radius: 0.375rem 0 0 0.375rem;
    /* Match input border-radius */
}

.dark-input {
    background-color: #333355;
    border: 1px solid #444466;
    color: white;
    box-shadow: none;
    /* Remove default focus glow */
}

.dark-input::placeholder {
    color: #8888aa;
}

.dark-input:focus {
    background-color: #333355;
    color: white;
    border-color: #6f42c1;
    /* Purple border on focus */
    box-shadow: 0 0 0 0.25rem rgba(111, 66, 193, 0.25);
    /* Custom focus glow */
}

.subscribe-btn {
    background: linear-gradient(90deg, #007bff, #8a2be2);
    /* Blue to Purple Gradient */
    border: none;
    color: white;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border-radius: 0 0.375rem 0.375rem 0;
}

.subscribe-btn:hover {
    background: linear-gradient(90deg, #0056b3, #6a1aae);
    /* Darker gradient on hover */
    color: white;
}







.site-footer {
    /* Background color from the image (deep navy/dark blue) */
    background-color: #0b0b23;
    color: #ffffff;
    /* Default text color */
}

/* Logo/Brand Styling */
.logo-placeholder {
    /* Simulate the colorful square logo icon */
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #007bff, #8a2be2);
    /* Blue to Purple gradient */
    border-radius: 6px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
}

.footer-description {
    /* A slightly muted white for body text */
    color: #9299b8 !important;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Column Headings */
.footer-heading {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    /* Optional: Add a subtle underline/border effect */
    /* border-bottom: 2px solid #333355; 
    padding-bottom: 5px; */
}

/* Footer Links */
.footer-links li a {
    color: #9299b8;
    /* Muted white for links */
    text-decoration: none;
    line-height: 2.2;
    /* Spacing between links */
    font-size: 0.95rem;
    transition: color 0.2s ease-in-out;
}

.footer-links li a:hover {
    color: #ffffff;
    /* Bright white on hover */
}

/* Social Media Icons */
.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #17173b;
    /* Darker background for the button/circle */
    color: #9299b8;
    border-radius: 8px;
    /* Slightly rounded corners */
    font-size: 1rem;
    transition: background-color 0.3s, color 0.3s;
}

.social-icon-link:hover {
    background-color: #2e2e50;
    color: #ffffff;
}

/* Divider Line */
.footer-divider {
    border-top: 1px solid #333355;
    /* Subtle dark line */
    opacity: 1;
    /* Ensure line is visible */
}

/* Responsive Grid Adjustments */
/* Adjust spacing for small screens where columns might stack */
@media (max-width: 991.98px) {
    .site-footer {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .footer-heading {
        margin-bottom: 0.75rem;
    }
}










.utility-bar {
    /* Background color from the image (deep navy/dark blue) */
    background-color: #0b0b23;
    color: #9299b8;
    /* Muted white text color for copyright and labels */
    /* Use a top border to visually separate it from content above */
    border-top: 1px solid #333355;
}

/* Copyright Text */
.copyright-text {
    font-size: 0.9rem;
    color: #9299b8;
}

/* "We Accept" Label */
.we-accept-text {
    font-size: 0.9rem;
}

/* Payment Icons Placeholder Styling */
.icon-placeholder {
    width: 32px;
    height: 24px;
    border-radius: 4px;
    /* Common styling for the icon background */
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Specific Placeholder Colors to mimic the image */
.icon-blue {
    background-color: #3f68a3;
}

.icon-purple {
    background-color: #6a5acd;
}

.icon-gold {
    background-color: #daa520;
}

.icon-orange {
    background-color: #ff8c00;
}


/* Globe Icon */
.globe-icon {
    font-size: 1.2rem;
    color: #007bff;
    /* Optional: Give the globe a subtle color */
}

/* Custom Select Dropdown Styling */
.dark-select {
    /* Dimensions */
    width: 140px;
    height: 40px;
    padding-left: 0.75rem;

    /* Dark Theme Appearance */
    background-color: #17173b;
    /* Darker background */
    color: #ffffff;
    border: 1px solid #333355;
    /* Subtle border */
    border-radius: 8px;

    /* Customizing the dropdown arrow color/style */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%239299b8' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

/* Ensure font color remains white on focus */
.dark-select:focus {
    background-color: #17173b;
    color: #ffffff;
    border-color: #6a5acd;
    box-shadow: 0 0 0 0.25rem rgba(106, 90, 205, 0.25);
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .utility-bar .container {
        /* Stack items vertically on small screens */
        flex-direction: column;
        text-align: center;
    }

    .payment-icons {
        justify-content: center;
    }
}



.whatsapp-btn {
    position: fixed;
    bottom: 70px;
    left: 20px;
    font-size: 30px;
    border-radius: 10px;
    z-index: +1;
    padding: 0px 10px;
    border: none;
    background-color: green;
    transition: 1s;
    &:hover{
        transform: translateY(-10px);
    }
}

.fa-whatsapp {
    color: white !important;
}

@media (max-width: 600px) {
    .topBtn {
        z-index: +1;
    }

    .whatsapp-btn {
        z-index: +1;
    }
}