/* cart-section */

body{  font-family: "Roboto", sans-serif; font-size: 15px;}
h1,h2,h3,h4,h5,h6{ font-family: "Marcellus SC", serif; }
/* Existing Styles */
.navbar {
    background-color: #f8f9fa;
    padding: 0.5rem 1rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
}

.navbar-brand img {
    max-height: 50px;
    /* Logo size */
}

.navbar-toggler {
    border: none;
}

.navbar-close {
    border: none;
    background: none;
    font-size: 1.5rem;
    color: #333;
}

.navbar-nav {
    display: flex;
    justify-content: center;
    /* Center the nav items */
    align-items: center;
    text-align: center;
    flex-grow: 1;
    /* Allow it to take up available space */
}

.nav-link {
    color: #000;
    font-weight: 500;
    padding: 10px 15px;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    font-family: "Marcellus SC", serif;
    /* Smooth transitions */
}

.nav-link:hover,
.nav-link.active {
    color: #2c82a2;
    border-bottom: 2px solid #2c82a2;
    /* Bottom border on hover */
    text-decoration: none;
}

.navbar-nav .nav-item {
    position: relative;
    /* Needed for submenu positioning */
}

.navbar-nav .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    border: 1px solid #ddd;
    min-width: 200px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.navbar-nav .dropdown-menu .dropdown-item {
    color: #121212;
    transition: background-color 0.3s ease;
    position: relative;
}

.navbar-nav .dropdown-menu .dropdown-item:hover {
    color: #2c82a2;
    border-bottom: 1px solid #2c82a2;
}

/* Show dropdown menu on hover */
.nav-item:hover>.dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    /* Animate dropdown appearing */
    background: #ffffffbd;
    border: none;  font-family: "Marcellus SC", serif; color:#000;
}

/* Submenu styles */
.navbar-nav .dropdown-menu .dropdown-menu {
    display: none;
    left: 100%;
    top: -8px;
    transform: translateX(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    background: #fff;
    border: none;
        position: absolute;

}

.navbar-nav .dropdown-item:hover>.dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    /* Animate submenu appearing */
}
.dropdown-item a{ color:#000;}

/* Navbar right section */
.nav-icon {
    color: #495057;
    font-size: 1.2rem;
    padding: 0 15px;
    display: inline-block;
    transition: color 0.3s ease;
}

.nav-icon:hover {
    color: #2c82a2;
}

.navbar-nav .nav-icon {
    position: relative;
}

/* Cart icon badge (if needed) */
.nav-icon#cartIcon::after {
    content: attr(data-count);
    /* Example cart item count */
    position: absolute;
    top: -8px;
    right: -1px;
    background-color: #ff0000;
    color: #fff;
    font-size: 12px;
    padding: 1px 7px;
    border-radius: 50%;
}

/* Show badge only when the count is greater than 0 */
.nav-icon#cartIcon[data-count]:not([data-count='0'])::after {
    display: inline-block;
    /* content: '0'; */
}

/* Mobile-specific styles */
@media (max-width: 767px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 250px;
        height: 100%;
        background-color: #ffffff;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        z-index: 1000;
        padding: 1rem;
    }

    .navbar-collapse.show {
        transform: translateX(0);
    }

    .nav-icon#cartIcon::after {
        content: '3';
        /* Example cart item count */
        position: absolute;
        top: 6px;
        background-color: #ff0000;
        color: #fff;
        font-size: 12px;
        padding: 2px 6px;
        border-radius: 50%;
    }

    .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    /* Centering and padding for nav items */
    .navbar-nav .nav-link {
       /* font-size: 1.2rem;*/
      /*  padding: 0.75rem 1.5rem;*/
        width: 100%;
        text-align: left;
        color: #000000;
        /* border-bottom: 1px solid #2c3e50; */
    }

    .navbar-nav .dropdown-menu {
        display: none;
        opacity: 1;
        visibility: visible;
        position: static;
        padding: 0;
    }

    /* Show dropdown on hover */
    .nav-item:hover>.dropdown-menu {
        display: block;
        opacity: 1;
        position: relative;
    }

    /* Styling for icons in navbar */
    .nav-icon {
        font-size: 1.8rem;
        padding: 0.5rem 1rem;
        color: #ecf0f1;
        display: inline-block;
    }

    .nav-icon:hover {
        color: #1abc9c;
    }

    /* Navbar close button */
    .navbar-close {
        display: block;
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 1.5rem;
        color: #fff;
    }

    /* Navbar-toggler button */
    .navbar-toggler-icon {
        width: 30px;
        height: 30px;
    }
}


/* Sidebar hidden by default */
#sidebar {
    position: fixed;
    right: -100%;
    top: 0;
    /* width: 50%; */
    height: 100%;
    background-color: white;
    transition: right 0.4s ease;
    z-index: 1050;
}

#sidebar.open {
    right: 0;
}

#sidebar.show {
    right: 0;
}

.modal {
    display: none;
}

.modal.show {
    display: block;
}

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: #f8f9fa;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 20px;
    z-index: 1000;
}

.sidebar.active {
    transform: translateX(0);
}

.close-btn {
    display: flex;
    font-size: 40px;
    cursor: pointer;
    color: #000;
    top: 20px;
}

.content h1 {
    display: flex;
    flex-direction: row;
    font-size: 20px;
    border-bottom: 1px solid #b5b5b5;
    margin-top: -65px;
}

.Add-Cart img {
    max-width: 120px;
    height: 130px;
    margin-right: 10px;
    border-radius: 5px;
}

.Add-Cart h6 {
    margin: 0;
    font-size: 16px;
    color: #333;
    /* font-family: "Nunito Sans", sans-serif; */
}

.Add-Cart a {
    color: hsl(177.32deg 44.55% 48.81%);
    text-decoration: none;
    font-size: 14px;

}

.Add-Cart a:hover {
    text-decoration: underline;
}

.sidebar-bottem {
    /* position: absolute; */
    bottom: 10px;
}

.sidebar .close-btn {
    font-size: 1.5rem;
    cursor: pointer;
    color: #000;
}

.btn-2:hover {
    background-color: hsl(177.32deg 44.55% 48.81%);
}

.top-banner {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 12px;
    font-weight: bold;
    max-width: 100%;
    /* font-family:"Nunito Sans", sans-serif; */
}

/* Ensure the right-side icons (login, search, cart) remain aligned on the right */
.d-flex.align-items-center.ms-auto {
    margin-left: auto;
}

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 300px;
    background: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1050;
    padding: 1rem;
    overflow-y: auto;
}

.sidebar.open {
    transform: translateX(0);
}

.sidebar .close-btn {
    font-size: 2rem;
    cursor: pointer;
    color: #000;
    justify-content: end;
}

.sidebar .content {
    margin-top: 2rem;
}

.Add-Cart {
    display: flex;
    margin-top: 25px;
}

/* increse and decrese */
/* Basic styles for the counter */
.counter {
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid black;
    margin-right: 42px;
    padding: -10px;
    /* height: 20px; */
}

button {
    /* background-color: #f6f2f2; */
    color: rgb(19, 18, 18);
    border: none;
    /* border-radius: 5px; */
    /* padding: 5px; */
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* button:hover {
    background-color: #0056b3;
} */

button:disabled {
    /* background-color: #c0c0c0; */
    cursor: not-allowed;
}

#number {
    font-size: 22px;
    width: 40px;
    text-align: center;
}

/* SEARCH-MODEL */
.modal {
    display: none;
    /* Initially hidden */
    position: fixed;
    z-index: 1050;
    left: 0;
    top: -135px;
    max-width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-dialog {
    width: 100%;
    max-width: 100%;
}

.modal-content {
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.modal-body {
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-body input {
    flex-grow: 1;
}

.btn-close,
.btn-primary {
    padding: 10px 15px;
    border-radius: 0;
    cursor: pointer;
}

.btn-1 {
    /* background-color: rgb(180, 176, 176); */
    color: white;
    border: none;
    margin: -18px;
    margin-top: 15px;
}

.btn-primary {
    background-color: hsl(177.32deg 44.55% 48.81%);
    color: white;
    border: none;
    border-radius: 5px;
}

.btn-close:hover {
    background-color: #3f3f3f;
    color: white;
    border-radius: 20px;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* Responsive behavior */
@media (max-width: 576px) {
    .modal-dialog {
        max-width: 90%;
        margin-top: 132px;
    }

    .modal-body {
        flex-direction: column;
    }

    .btn-primary {
        background-color: hsl(177.32deg 44.55% 48.81%);
        color: white;
        border: none;
        width: 100%;
    }
}

/*  SIDEBAR */
.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 300px;
    background: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1050;
    padding: 1rem;
    overflow-y: auto;
}

.sidebar.open {
    transform: translateX(0);
}

.sidebar .close-btn {
    font-size: 2rem;
    cursor: pointer;
    color: #000;
    justify-content: end;
}

.sidebar .content {
    margin-top: 2rem;
}

.form-c {
    width: 20px;
    border: none;
    font-size: 10px;
}

.Add-Cart {
    display: flex;
    margin-top: 25px;
}

/* Media Query for mobile screens (up to 767px) */

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 100%;

}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    /* font-family: "Roboto Condensed", sans-serif; */
}

.hero-button {
    background-color: #fff;
    color: #000;
    padding: 10px 30px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    transition: all 0.3s;
}

.hero-button:hover {
    background-color: #000;
    color: #fff;
}

/* banner  */
/* General Carousel Styles */
/* General Carousel Styles */
.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    /* Adjust size for large screens */
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-button {
    background-color: hsl(177.32deg 66.81% 14.92%);
    /* background-image: url("https://m.media-amazon.com/images/I/81vj4m-6y-L.jpg"); */
    color: #fff;
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    border-radius: 0.25rem;
    font-size: 1rem;
}

.hero-button:hover {
    background-color: #f9fafb;
    color: black;
}

/* Media Query for Mobile Screens */
@media (max-width: 767.98px) {
    .carousel-item img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .hero-title {
        font-size: 2.5rem;
        /* Smaller font size for mobile */
    }

    .hero-button {
        padding: 0.1rem 0.2rem;
        /* Adjust padding for mobile */
        font-size: 1rem;
    }

    .carousel-indicators {
        bottom: 10px;
        /* Move indicators up from the bottom */
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        /* Adjust control button size */
        height: 40px;
        top: 50%;
        transform: translateY(-50%);
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        background-size: 50%, 50%;
        /* Ensure icons fit within buttons */
        background-color: rgba(0, 0, 0, 0.5);
        /* Background color for visibility */
    }
}

/* Hide the original carousel on mobile */
@media (max-width: 767px) {
    #carouselExampleCaptions {
        display: none;
        /* Hide original carousel on mobile */
    }
}

/* Button styling */
/* Custom button styling */
/* Custom button styling */
.btn-2 {
    background-color: #fff;
    color: #000;
    padding: 10px 30px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;

    margin: 20px auto;
    display: block;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Button hover effect */
.btn-2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: hsl(177.32deg 66.81% 14.92%);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
    z-index: -1;
}

.btn-2:hover::before {
    transform: translateX(0);
}

.btn-2:hover {
    color: #fff;
}

/* Ensure the container and row are centered */
.add-to-cart-section .container {
    text-align: center;
}

.add-to-cart-section .row {
    justify-content: center;
}

.btn-2:hover {
    background-color: hsl(177.32deg 44.55% 48.81%);
    color: #fff;
}

/* Additional styles for container to ensure centering */
.add-to-cart-section .container {
    text-align: center;
    /* Center the content within the container */
}

.add-to-cart-section .row {
    justify-content: center;
    /* Center the content in the row */
}

.btn-2:hover {
    background-color: hsl(177.32deg 66.81% 14.92%);
    color: #fff;
}

/* Mobile view - Carousel layout */
@media screen and (max-width: 900px) {
    .carousel {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .carousel-wrapper {
        overflow-x: auto;
        white-space: nowrap;
    }

    .carousel {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
    }

    .carousel .card {
        flex: 0 0 auto;
        width: 80%;
        /* Adjust width for mobile view */
        margin-right: 16px;
    }

    .carousel::-webkit-scrollbar {
        display: none;
    }

    .card h2 {
        font-weight: 500;
        font-size: 11px;
        margin: 15px 0 5px;
        color: rgb(7, 7, 7);
    }
}

/* custom slider */
.custom-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.custom-slider-track {
    display: flex;
    gap: 15px;
    transition: transform 0.3s ease-in-out;
}

.custom-slide {
    position: relative;
    width: 200px;
    overflow: hidden;
}

.custom-slide img {
    width: 100%;
    display: block;
    transition: opacity 0.3s ease;
}

.custom-slide img.secondary-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-slide:hover img.secondary-image {
    opacity: 1;
}

.custom-slide:hover img.primary-image {
    opacity: 0;
}

.custom-slide-content {
    text-align: center;
    margin-top: 10px;
}

.custom-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 24px;
}

.custom-nav.prev {
    left: 10px;
}

.custom-nav.next {
    right: 10px;
}

.custom-nav:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


/* Container for the slider */
/* Main container for the slider */
.image-slider {
    position: relative;
    overflow: hidden;
}

.image-slider1 {
    position: relative;
    overflow: hidden;
}

.slider-container {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.slider-container1 {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-track1 {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    position: relative;
    flex: 0 0 20%;
    /* Adjust as needed for the number of slides visible */
    box-sizing: border-box;
    padding: 10px;
    text-align: center;
    overflow: hidden;
}

.slide1 {
    position: relative;
    flex: 0 0 20%;
    /* Adjust as needed for the number of slides visible */
    box-sizing: border-box;
    padding: 10px;
    text-align: center;
    overflow: hidden;
}

.image-link {
    display: block;
    position: relative;
}

.main-image {
    max-width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.hover-image {
    max-width: 100%;
    height: auto;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-link:hover .hover-image {
    opacity: 1;
}

.image-link:hover .main-image {
    opacity: 0;
}

.new-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: hsl(0, 0%, 100%);
    color: hsl(177.32deg 66.81% 14.92%);
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 5px;
    z-index: 5;
    font-weight: bold;
}

.product-info {
    margin-top: 10px;
    text-align: center;
}

.product-info h5 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

.product-info p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #333;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.prev-btn,
.next-btn {
    background: #333;
    color: #fff;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    border: none;
}

.view-all-card .btn-2 {
    margin-top: 10px;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    background-color: hsl(177.32deg 66.81% 14.92%);
    /* Light red background */
    color: hsl(180, 17%, 98%);
    /* Dark red text color */
    padding: 10px 0;
    position: relative;
}

.marquee {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    animation: marquee 15s linear infinite;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.marquee span {
    margin-right: 50px;
    /* Space between repeated items */
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Styling for the strong text */
.marquee strong {
    color: #155724;
    /* Dark green for emphasis */
    background-color: #d4edda;
    /* Light green background for emphasis */
    padding: 2px 5px;
    border-radius: 3px;
}

/* update  */
.icon-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    background-color: hsl(177.32deg 66.81% 14.92%);
    color: white;
    margin-bottom: 20px;
    margin-top: 50px;
}

.icon-box {
    text-align: center;
    flex: 1;
    color: wheat;
}

.icon-box i {
    font-size: 40px;
    /* Adjust the icon size */
    color: wheat;
    /* Icon color (same as in your image) */
    margin-bottom: 10px;
}

.icon-box p {
    font-size: 14px;
    font-weight: bold;
    color: #fbf8f8;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .icon-section {
        flex-wrap: wrap;
    }

    .icon-box {
        width: 50%;
        margin-bottom: 20px;
    }

    .icon-box i {
        font-size: 30px;
    }

    .icon-box p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .icon-box {
        width: 100%;
    }

    .icon-box i {
        font-size: 25px;
    }

    .icon-box p {
        font-size: 10px;
    }
}

.handcrafted-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    background-color: hsl(177.32deg 66.81% 14.92%);

    margin-bottom: 20px;
    color: wheat;
}

.handcrafted-content {
    flex: 1;
    padding-right: 20px;
}

.handcrafted-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.A-icon {
    /* width: 100px; */
    height: 100px;
    margin-right: 20px;
}

.text h3 {
    font-size: 20px;
    margin: 0 0 10px;
}

.text p {
    font-size: 14px;
    color: #f9f6f6;
}

.learn-more-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    /* background-color: black; */
    color: white;
    text-decoration: none;
    font-size: 14px;
    border-radius: 5px;
}

.handcrafted-image {
    flex: 1;
    text-align: right;
}

.handcrafted-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .handcrafted-section {
        flex-direction: column;
        text-align: center;
    }

    .handcrafted-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .handcrafted-image {
        text-align: center;
    }
}

/* mail */
.subscription-container {
    max-width: 600px;
    margin: auto;
    padding: 10px;

    border-radius: 8px;
    /* Rounded corners */
}

.subscription-title {
    font-size: 1.8em;
    color: #333;
    /* Dark text color */
}

.subscription-description {
    font-size: 1em;
    color: #555;
    /* Slightly lighter text */
}

.subscription-mail {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.email-input {
    border: none;
    border-bottom: 2px solid #080808;
    /* Bottom border only */
    padding: 10px;
    width: 100%;
    /* Adjust width as needed */
    text-align: center;
    outline: none;
    /* Remove outline */
    transition: border-color 0.3s;
    /* Smooth transition */
}

.email-input:focus {
    border-color: #333;
    /* Change border color on focus */
}

.subscribe-button {
    background-color: #b7c6c5;
    /* Button background */
    color: white;
    /* Button text color */
    border: none;
    padding: 10px 20px;
    margin-left: 10px;
    /* Space between input and button */
    cursor: pointer;
    border-radius: 5px;
    /* Rounded button */
    transition: background-color 0.3s;
    /* Smooth transition */
}

.subscribe-button:hover {
    background-color: #a0b1af;
    /* Darker shade on hover */
}

@media (max-width: 600px) {
    .subscription-container {
        padding: 15px;
        /* Adjust padding */
    }

    .subscription-title {
        font-size: 1.5em;
        /* Slightly smaller font size */
    }

    .subscription-description {
        font-size: 0.9em;
        /* Slightly smaller font size */
    }

    .email-input {
        width: 70%;
        /* Make input wider on smaller screens */
        font-size: 0.9em;
        /* Adjust font size */
    }

    .subscribe-button {
        padding: 8px 15px;
        /* Adjust button padding */
        font-size: 0.9em;
        /* Adjust font size */
    }
}

.as-seen-section {
    margin-top: 50px;
    width: 100%;
    overflow: hidden;
    background-color: #f4f4f4;
    padding: 20px 0;
}

.marquee {
    display: flex;
    overflow: hidden;
    box-sizing: border-box;
    white-space: nowrap;
    animation: marquee 15s linear infinite;
}

.marquee-content {
    display: flex;
}

.marquee-content span {
    display: inline-block;
    padding: 0 30px;
}

.text-style-1 {
    font-size: 40px;

    font-weight: bold;
    color: #d9534f;
    /* Bootstrap danger color */
}

.text-style-2 {
    font-size: 20px;

    font-style: italic;
    color: #5bc0de;
    /* Bootstrap info color */
}

.text-style-3 {
    font-size: 40px;

    font-weight: 600;
    color: #f0ad4e;
    /* Bootstrap warning color */
}

.text-style-4 {
    font-size: 40px;

    text-transform: uppercase;
    color: #5cb85c;
    /* Bootstrap success color */
}

.text-style-5 {
    font-size: 30px;

    font-weight: 300;
    color: #0275d8;
    /* Bootstrap primary color */
}

.text-style-6 {
    font-size: 16px;

    color: #292b2c;
    /* Bootstrap dark color */
}

.text-style-7 {
    font-size: 24px;
    font-weight: 700;
    text-decoration: underline;
    color: #f7f7f7;
    /* Light color */
}

.text-style-8 {
    font-size: 20px;

    color: #d9534f;
    /* Bootstrap danger color */
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/*  footer */
/* Footer styles */
.footer {
    position: relative;
    color: #080808;
    padding: 40px 0;
    background-color: hsl(177.32deg 66.81% 14.92%);
    background-size: cover;
}

.footer-background {
    background: #fbfbfb ;
    /* Add a lighter overlay for text readability */
    padding: 20px;
    margin-bottom: -35px;
}

.footer h5 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
    color: hsl(0, 0%, 4%);
}

.footer .social-icons a {
    color: hsl(177.32deg 66.81% 14.92%);
    font-size: 18px;
    margin-right: 15px;
    text-decoration: none;
}

.footer .social-icons a:hover {
    color: #000;
}

.footer ul {
    padding-left: 0;
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #0e0d0d;
    text-decoration: none;
}

.footer ul li a:hover {
    text-decoration:underline;
}

.footer .text-center {
    margin-top: 20px;
    font-size: 14px;
}

.footer-image {
    object-fit: cover;
    position: relative;
    /* width: 100%; */
    overflow: hidden;
}

/* mobile footer */
.mobile-footer {
    display: none;
    /* Hide footer by default */
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #f8f9fa;
    padding: 0px 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-icon {
    text-align: center;
    color: #333;
    text-decoration: none;
}

.nav-icon i {
    font-size: 24px;
}

.nav-icon span {
    display: block;
    font-size: 12px;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .mobile-footer {
        display: flex;
        /* Show footer only on mobile screens */
    }
}

/*   cart-section */
/* body,
h1,
h2,
h3,
h4,
h5,
h6,
a {
  font-family: "Nunito Sans", sans-serif;
}

body p {
  font-family: "Nunito Sans", sans-serif;
} */

.checkout-container {
    display: flex;
    min-height: 100vh;
}

.left-section {
    flex: 1 1 60%;
    padding: 20px;
    /* Removed the overflow-y: auto to allow the entire page to scroll as one */
}

.right-section {
    flex: 1 1 40%;
    max-width: 40%;
    background-color: #f8f9fa;
    padding: 20px;
    position: sticky;
    top: 0;
    height: 100vh;
    /* Fixed height so the right section stays visible */
    overflow-y: auto;
    /* Enable scrolling within the right section */
}

.right-section::-webkit-scrollbar {
    display: none;
    /* Hide the scrollbar in the right section */
}

.right {
    display: flex;
}

.right img {
    height: 88px;
    width: 88px;
    border-radius: 5px;
}

.img-con {
    margin-left: 10px;
    font-size: 14px;
}

.checkout-form {
    border: 1px solid #ddd;
    padding: 10px;
    width: 100%;
    margin-bottom: 10px;
}

.shop-pay {
    background-color: #4b00b9;
    color: white;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
}

.total-section {
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

.payment-container {
    border: 1px solid #ddd;
    padding: 15px;
    margin-top: 20px;
    border-radius: 5px;
    background-color: #fff;
}

.pay-now-btn {
    background-color: black;
    color: white;
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    border: none;
    border-radius: 5px;
}

.pay-now-btn:hover {
    background-color: #333;
}

/* Sticky behavior */
.sticky {
    position: sticky;
    top: 0;
}

.sticky-end {
    position: absolute;
    bottom: 0;
    top: unset;
}

.form-check {
    margin-bottom: 15px;
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
    .checkout-container {
        flex-direction: column;
    }

    .left-section,
    .right-section {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 10px;
        height: auto;
    }

    .right-section {
        position: static;
        /* Remove sticky on mobile */
        margin-top: 20px;
    }

    .shop-pay {
        font-size: 16px;
        padding: 8px;
    }

    .total-section {
        padding-top: 8px;
    }

    .payment-container {
        margin-top: 10px;
    }

    .pay-now-btn {
        padding: 8px;
        font-size: 16px;
    }
}

/* Collection.css */
/* body h1,h2,h3,h4,h5,h6,a{
  font-family:" Cormorant Garamond";
}
body p{
  font-family: "Cormorant Garamond";
} */

/* .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
} */
.heading {
    color: rgb(57, 56, 56);
    text-align: center;
    /* font-weight: bold; */
    font-size: 20px;
    margin: 30px;
}

/* Header row style */
.row-1 {
    border-top: 1px solid rgb(154, 154, 154);
    border-bottom: 1px solid rgb(154, 154, 154);
    display: flex;
    justify-content: end;
    margin-bottom: 20px;
}

/* Filter Button */
.filter-button {
    background-color: #dcdada;
    /*color: rgb(6, 6, 6);
  padding: 5px; */
    border: none;
    /* border-radius: 5px; */
    cursor: pointer;
    display: block;
    /* Hide button on larger screens */
    width: 90px;
    height: 36px;
    /* font-family: Inter, -apple-system, Helvetica, Arial, sans-serif; */
}

/* Filter section styles */
.filter-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    /* Adjust width as needed */
    height: 100%;
    background-color: #f8f9fa;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
    padding: 15px;
    overflow-y: auto;
    /* Ensure scroll if content overflows */
}

.filter-section.show {
    transform: translateX(0);
}

.filter-content {
    padding: 15px;
}

/* Filter Header Styles */
.filter-header {
    background-color: #f8f9fa;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    position: relative;
}

/* Close Icon Styles */
.close-icon {
    font-size: 24px;
    cursor: pointer;
    color: #333;
    transition: color 0.3s ease;
}

.close-icon:hover {
    color: #007bff;
}

/* Accordion Styles */
.accordion {
    border-top: 2px solid #ddd;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
    border: none;
}

.accordion-header {
    background-color: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    margin-bottom: 10px;
}

.accordion-title {
    font-weight: bold;
}

.accordion-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.accordion-body {
    display: none;
    padding: 10px;
    background-color: #f8f9fa;

}

.accordion-body.show {
    display: block;


}

.accordion-header .accordion-icon.rotate {
    transform: rotate(180deg);
}

@media (max-width: 767px) {
    .filter-button {
        display: block;
        /* Show button on smaller screens */
    }

    .filter-section {
        position: fixed;
        transform: translateX(-100%);
        width: 60%;
    }

    .filter-section.show {
        transform: translateX(0);
    }

    .product-list {
        margin-left: 0;
        /* No margin on smaller screens */
    }
}

/* images */
.image-section {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
}

.image-card {
    position: relative;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 2px;
    margin-bottom: 20px;
}

.image-card img {
    width: 100%;
    transition: opacity 0.3s;
}

.image-card img.hover-img {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    transition: opacity 0.3s;
}

.image-card:hover img.main-img {
    opacity: 0;
}

.image-card:hover img.hover-img {
    opacity: 1;
}

/* Icon Overlay Styling */
/* Overlay for image cards */
.overlay {
     position: absolute;
     bottom: 90px;
    left: 0;
    width: 100%;
    height: 20%;
    background: rgba(56, 56, 56, 0.6);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
    /* padding: 15px; */
}

.image-card:hover .overlay {
    opacity: 1;
    /* Show overlay on hover */
}

.overlay .icon {
    color: #fff;
    font-size: 28px;
    margin: 0 15px;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
}

.overlay .icon:hover {
    color: #ffcc00;
    transform: scale(1.1);
}

/* Adjust icon positioning for better layout */
.overlay .icon:nth-child(1) {
    margin-left: 0;
}

.overlay .icon:nth-child(3) {
    margin-right: 0;
}




.card-body {
    padding: 15px;
    text-align: center;
}

.card-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.card-price {
    font-size: 14px;
    color: #f00;
}

/* Mobile responsive design */
@media (max-width: 767px) {
    .image-section {
        padding: 10px;
    }

    .overlay .icon {
        color: #fff;
        font-size: 28px;
        margin: 0 15px;
        cursor: pointer;
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .image-card {
        flex: 1 1 calc(50% - 10px);
        /* Two images per row on mobile */
        /* margin: 5px; */
    }

    .image-card img {
        width: 100%;
    }

    .card-title {
        font-size: 14px;
    }

    .card-price {
        font-size: 12px;
    }
}

/* Base Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.pagination-item {
    margin: 0 5px;
}

.page-link {
    display: block;
    padding: 10px;
    color: #007bff;
    text-decoration: none;
}

.page-link:hover {
    text-decoration: underline;
}

/* Pagination Container Style */
.pagination-container {
    clear: both;
    /* Clear any floated elements */
    margin: 20px;
    /* Space above pagination */
    text-align: center;
    /* Center align pagination */
}

.pagination {
    display: flex;
    justify-content: center;
    /* Center pagination items */
    margin: 0;
    /* Remove extra margin */
}

.dropbtn {
    background-color: #dcdada;
    color: rgb(10, 10, 10);
    padding: 7;
    font-size: 20px;
    border: none;
    /* border-radius: 5px; */
    cursor: pointer;
    width: 90px;
    height: 36px;
    /* font-family: Inter, -apple-system, Helvetica, Arial, sans-serif; */
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 12px;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #080808;
    color: white;
}

/* gallery-section */
/* body h1,
h2,
h3,
h4,
h5,
h6,
a {
  font-family: Cormorant Garamond;
}
body p {
  font-family: "Nunito Sans", sans-serif;
} */

/* Container for the image gallery */
.image-gallery {
    display: flex;
    gap: 10px;
}

/* Thumbnail column styling */
.thumbnail-column {
    position: sticky;
    /* Fix the position relative to the viewport */
    top: 20px;
    /* Adjust based on your layout needs */
    margin: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 110px;
    /* Adjust as needed */
    height: calc(100vh - 20px);
    /* Full viewport height minus top and bottom margin */
    overflow-y: auto;
    /* Allow vertical scrolling if content overflows */
}

/* Thumbnail image styling */
.thumbnail-img {
    width: 100%;
    cursor: pointer;
    border: 1px solid #929292;
    border-radius: 0px;
}

/* Full image column styling */
.full-image-column {
    margin: 20px;
    flex: 1;
    overflow-y: scroll;
    /* Enable vertical scrolling */
    border: 2px solid #aeaeae;
    border-radius: 0px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 1000px;
    /* Adjust height as needed */
}

/* Hide the scrollbar */
.full-image-column::-webkit-scrollbar {
    display: none;
}

.full-image-column {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* Full image styling */
.full-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    cursor: pointer;
}

/* Product Details Container */
.product-details-container {
    display: flex;
    gap: 20px;
    /* Add space between columns if needed */
}

/* Product Details Section Styling */
.product-details {
    /* font-family: "Nunito Sans", sans-serif;; */
    padding: 35px 0;
    position: -webkit-sticky;
    /* For Safari */
    position: sticky;
    top: 20px;
    /* Offset from the top when sticky */
    max-height: calc(100vh - 40px);
    /* Adjust based on available height */
    overflow-y: scroll;
    /* Allow vertical scrolling */
    overflow-x: hidden;
    /* Hide horizontal scrollbar if necessary */
    background: white;
    /* Ensure background is solid for readability */
}

/* Hide scrollbar */
.product-details::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.product-details {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.product-actions btn-2 {
    max-width: 100%;
}

.size-selector {
    display: flex;
    /* gap: 15px; */
    /* justify-content: center; */
    margin-bottom: 10px;
    margin-left: -10px;
}

.size-box {
    border: 2px solid #ddd;
    padding: 10px 15px;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    border-radius: 0;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
    margin-left: 10px;
}

.size-box:hover {
    border-color: #007bff;
    background-color: #f0f8ff;
}

.size-box.active {
    border-color: #007bff;
    background-color: #007bff;
    color: white;
}

.size-box:active {
    transform: scale(0.95);
}

/* Media Query for Mobile Devices */
@media (max-width: 768px) {
    .size-selector {
        gap: 10px;
        justify-content: center;
    }

    .size-box {
        flex: 1 1 30%;
        font-size: 12px;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .size-box {
        flex: 1 1 45%;
        font-size: 10px;
        padding: 6px 10px;
    }
}

/* Responsive adjustments for tablets and smaller screens */
@media (max-width: 768px) {
    .image-gallery {
        flex-direction: column;
    }

    .thumbnail-column {
        flex-direction: row;
        position: relative;
        max-width: 100%;
        overflow-x: auto;
        height: auto;
        margin: 10px 0;
    }

    .thumbnail-img {
        max-width: 80px;
    }

    .full-image-column {
        height: 300px;
        /* Adjust height for smaller screens */
    }

    .product-details-container {
        flex-direction: column;
    }
}

/* Responsive adjustments for mobile screens */
@media (max-width: 480px) {
    .image-gallery {
        flex-direction: column;
        /* Stack vertically on very small screens */
    }

    .thumbnail-column {
        margin: 10px;
        max-width: 100%;
        /* Use full width for small screens */
        overflow-x: auto;
        /* Allow horizontal scrolling if needed */
        display: flex;
        flex-direction: row;
        gap: 5px;
    }

    .thumbnail-img {
        max-width: 60px;
        /* Reduce thumbnail size for small screens */
    }
}

@media (max-width: 480px) {
    .thumbnail-column {
        display: none;
        /* Hide thumbnails on mobile */
    }

    .full-image-column {
        margin: 0;
        overflow: hidden;
        height: auto;
        display: flex;
        gap: 0;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        /* Carousel behavior */
    }

    .full-img {
        flex: 0 0 100%;
        /* Ensure full images take up 100% of the screen width */
        scroll-snap-align: center;
        /* Center align each image */
    }

    .product-details {
        overflow: hidden;
        /* Hide scroll on product details */
    }
}

/* Default styles for product details */
.product-title {
    font-size: 24px;
    color: gray;
}

.product-description {
    /* font-family: "Nunito Sans", sans-serif; */
    font-size: 14px;
    color: gray;
}

.form-control {
    /* margin: 10px; */
    display: inline;
    border: none;
}

/* Media query for mobile screens */
@media (max-width: 767px) {
    .product-details {
        padding: 10px;
    }

    .product-title {
        font-size: 1.5rem;
        line-height: 1.4;
    }

    .product-price {
        font-size: 1.25rem;
    }

    .product-description {
        font-size: 0.9rem;
    }

    .add-to-cart,
    .add-to-cart-1 {
        /* width: 100%;
    margin-top: 10px; */
        display: flex;
    }

    .add-to-cart-1 {
        margin-top: 5px;
    }

    .product-description {
        font-size: 0.8rem;
        /* Smaller font size for detailed description */
        line-height: 1.5;
    }

    .product-description br {
        display: none;
        /* Hide line breaks for better mobile layout */
    }
}

@media (max-width: 320px) {
    .product-details {
        padding: 15px;
        /* Adjust padding for very small screens */
    }

    .product-title {
        font-size: 18px;
        /* Adjust font size for better readability */
    }

    .product-description {
        font-size: 12px;
        /* Reduce font size for very small screens */
    }

    .form-control {
        width: 175px;
        /* Reduce input width */
        margin: 5px;
        /* Reduce margin for small screens */
        border: none;
    }
}

.full-img {
    transition: opacity 0.3s ease;
}

.full-img.active {
    border: 3px solid #bdbdbe;
    /* Highlight color */
    opacity: 1;
    /* Ensure it's fully visible */
}

/* .size-selector {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
} */

/* Modal styles */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    /* Enable scroll if needed */
    background-color: rgba(0,
            0,
            0,
            0.7);
    /* Darker background for better contrast */
    backdrop-filter: blur(5px);
    /* Add a blur effect to the background */
}

/* Image Styling */
/* Modal Styles */

/* search modelContent */
.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
    width: 100%;
    max-width: 100%;
    position: fixed;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease-out;
}

/* Image Styling */
/* Centering elements */
.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;

}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 5;
}

/* Modal content for larger screens */
.modal-content {
    background-color: #fff;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
    width: 100%;
    margin-left: 10%;
    position: fixed;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease-out;
    /* margin-bottom: 250px; */
    top: 0;
    margin: 0;
    border-radius: 0;
    background: #ffffff;
}

/* Full-screen modal for mobile */
@media (max-width: 768px) {
    .modal-content {
        width: 100%;
        height: 100%;
        /* margin-bottom: 250; */
        padding: 20px;
        border-radius: 0;
        border: none;
        box-shadow: none;
        position: relative;
    }

    .modal {
        overflow: hidden;
    }

    .center {
        width: 100%;
        /* Full width on mobile screens */
        margin-top: 25%;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 100%;
        /* Full width */
        height: auto;
        /* Adjust height as needed */
        padding: 15px;
        /* Reduced padding for smaller screens */
        border-radius: 0;
        /* Keep corners square */
        border: none;
        /* No border */
        box-shadow: none;
        /* No shadow */
        position: relative;
        /* Keep relative positioning */
    }

    .modal {
        overflow-y: auto;
        /* Enable vertical scrolling if needed */
    }

    .center {
        width: 100%;
        /* Full width on mobile screens */
        margin-top: 20%;
        /* Adjust margin for better positioning */
    }
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.modal-prev,
.modal-next {
    cursor: pointer;
    font-size: 28px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 15px;
    margin: 0 15px;
    border-radius: 50%;
    transition: background-color 0.3s, transform 0.3s;
}

.modal-prev:hover,
.modal-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.close {
    color: #0a0a0a;
    font-size: 32px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover,
.close:focus {
    color: #ff0000;
    text-decoration: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Media Query for Small Screens (max-width: 320px) */
@media (max-width: 320px) {
    .modal-nav {
        top: 45%;
        /* Adjust top positioning for smaller screens */
    }

    .modal-prev,
    .modal-next {
        font-size: 22px;
        /* Reduced font size */
        padding: 10px;
        /* Reduced padding */
        margin-right: 50%;
    }

    .close {
        font-size: 35px;
        /* Smaller close button for small screens */
        top: 10px;
        /* Adjusted positioning for the close button */
        right: 15px;
        /* Adjusted right positioning for close button */
    }
}

/* Media query for devices with a max width of 320px */
@media (max-width: 320px) {
    .accordion-button {
        font-size: 14px;
        /* Slightly smaller font size for better fit */
        padding: 10px;
        /* Reduce padding to fit content */
    }

    .accordion-body {
        font-size: 12px;
        /* Smaller font size for better readability */
        padding: 10px;
        /* Reduce padding inside accordion body */
    }

    .accordion-header {
        padding: 0;
        /* Remove extra padding around headers */
    }

    .accordion-item {
        margin-bottom: 10px;
        /* Reduce space between accordion items */
    }

    .accordion-body br {
        display: none;
        /* Hide line breaks to avoid excessive spacing */
    }
}

/* login.css */
/* body h1,h2,h3,h4,h5,h6,a{
    font-family: "Nunito Sans", sans-serif;
  }
  body p{
    font-family:"Nunito Sans", sans-serif;
  }
   */
.form-container {
    margin: 20px;
    position: relative;
    background: #f3f1f1;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-content {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.form-content.d-none {
    display: none;
}

.form-content.hide {
    opacity: 0;
    transform: scale(0.95);
}

.form-group {
    margin-bottom: 15px;
}

.form-control-1 {
    border-radius: 4px;
}

.text-center {
    text-align: center;
}

/* Container and slider structure */
.custom-slider {
    width: 95%;
    overflow: hidden;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    /* Center the slider */
}

.custom-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    width: fit-content;
}

.custom-slide {
    min-width: calc(25% - 10px);
    /* 4 images per row with some margin */
    margin-right: 10px;
    position: relative;
    box-sizing: border-box;
}

.custom-slide img {
    width: 100%;
    display: block;
}

.custom-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: center;
    padding: 10px;
}

.btn-check:checked+.btn {
    box-shadow: 0 0 5px 2px rgb(248, 245, 245);
}

.btn-color {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0;
    margin-right: 10px;
    border: 2px solid #f5e6db;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* To ensure the image stays within the circle */
}

.btn-color img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.btn-color.pink {
    background: linear-gradient(135deg, #fff, #fff);
}

.btn-color.green {
    background: linear-gradient(135deg, #fff, #fff);
}

@media (max-width: 600px) {
    .btn-color {
        width: 30px;
        height: 30px;
        margin-right: 8px;
    }

    .btn {
        padding: 8px 12px;
        font-size: 14px;
    }

    .btn-check:checked+.btn {
        box-shadow: 0 0 4px 1px rgba(241, 238, 238, 0.973);
    }
}


/* Navigation buttons */

/* Detail */
.Detail-image-container {
    overflow: hidden;
    /* Prevent overflow */
    border-radius: 10px;
    /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
}

.Detail-full-image {
    width: 100%;
    /* Full width */
    height: 100%;
    /* Maintain aspect ratio */
    display: block;
    /* Remove inline spacing */
    margin: 20px;
}

.detail-content {
    padding: 20px;
    /* Padding for content */
    background-color: #f9f9f9;
    /* Light background */
    border-radius: 10px;
    /* Rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Shadow */
}

.detail-content h2 {
    margin-bottom: 15px;
    /* Space below heading */
}

.description-list {
    list-style-type: disc;
    /* Bullet points */
    padding-left: 20px;
    /* Indentation */
}

.description-list li {
    margin-bottom: 10px;
    /* Space between list items */
}

@media (max-width: 768px) {
    .Detail-image-container {
        border-radius: 5px;
        /* Slightly smaller corners for mobile */
        box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
        /* Reduced shadow */
    }

    .Detail-full-image {
        margin: 10px;
        /* Reduced margin */
    }

    .detail-content {
        padding: 15px;
        /* Less padding */
    }

    .detail-content h2 {
        font-size: 1.5rem;
        /* Slightly smaller heading */
    }

    .description-list {
        padding-left: 15px;
        /* Reduced indentation */
    }

    .description-list li {
        margin-bottom: 8px;
        /* Less space between items */
    }
}

@media (max-width: 480px) {
    .Detail-full-image {
        margin: 5px;
        /* Minimal margin for small screens */
    }

    .detail-content {
        padding: 10px;
        /* Further reduced padding */
    }

    .detail-content h2 {
        font-size: 1.25rem;
        /* Smaller heading */
    }

    .description-list {
        padding-left: 10px;
        /* Further reduced indentation */
    }

    .description-list li {
        margin-bottom: 5px;
        /* Less space between items */
    }
}

.search-results {
    display: flex;
    margin-top: 20px;
    margin: 100px;
    background-color: #fff;
}

/* Container for search results */
.search-results {
    flex: 0 0 calc(33.333% - 30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    border: 1px solid #ddd;
    background-color: #fff;
    margin-bottom: 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    cursor: pointer;
    z-index: 10;  /* Adds spacing between product cards */
}



/* Product result cards */
.product-result {
    flex: 0 0 calc(33.333% - 30px); /* 3 columns layout with spacing */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    border: 1px solid #ddd;
    background-color: #fff;
    margin-bottom: 15px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.product-result:hover {
    transform: scale(1.05); /* Add hover effect */
}

/* Responsive grid adjustments */
@media (max-width: 992px) {
    .product-result {
        flex: 0 0 calc(50% - 30px); /* 2 columns on tablet-sized screens */
    }
}

@media (max-width: 768px) {
    .product-result {
        flex: 0 0 calc(100% - 30px); /* 1 column on mobile-sized screens */
    }
}

.product-result img {
    width: 100%; /* Ensure the image fits within the card */
    height: auto;
    max-height: 150px;
    object-fit: cover;
    border-radius: 5px;
}

.product-title {
    font-size: 1rem;
    font-weight: bold;
    margin: 10px 0;
    text-align: left;
}

.product-price {
    color: red;
    font-size: 1.2rem;
}

.product-sale {
    color: gray;
    text-decoration: line-through;
    margin-right: 10px;
}

.sale-badge {
    background-color: red;
    color: white;
    padding: 2px 5px;
    font-size: 0.8rem;
    position: absolute;
    top: 10px;
    right: 10px;
}

/* View All Results button */
.view-all-button {
    text-align: center;
    width: 100%;
    margin-top: 15px;
}


.custom-modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.custom-modal-content {
    position: relative;
    background-color: #fff;
    margin: 0 auto;
    padding: 20px;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
}

.custom-modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #333;
    font-size: 24px;
    cursor: pointer;
}

.custom-modal-close:hover {
    color: red;
}

.modal-title {
    text-align: center;
    margin-bottom: 20px;
}

.stat-display {
    overflow-x: auto;
    white-space: nowrap;
    padding: 20px 0;
  }

  .stat-display::-webkit-scrollbar {
    display: none;
  }

  .stat-display::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
  }


  @media (min-width: 769px) {
    .stat-display {
      overflow-x: hidden;
    }
  }

  /* Responsive styles */
  .stat-display-slide {
    display: inline-block;
    width: 20%;
    text-align: center;
  }

  .stat-display-slide img {
    width: 100%;
    height: auto;
    padding: 11px;
  }

  @media (max-width: 768px) {
    .stat-display {
      display: flex;
    }

    .stat-display-slide {
      width: 50%;
    }
  }

  @media (max-width: 480px) {
    .stat-display-slide {
      width: 50%;
    }
  }


  .razorpay-button {
    background-color: yellow;
    color: black;
    font-size: 16px;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer !important;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    font-style: italic;
    text-decoration: none;
  }

  /* .razorpay-button:hover {
    background-color: #155ab6;
  } */

  /* .razorpay-button:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(26, 115, 232, 0.5);
  } */
