@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.navbar-custom {
    padding: 10px 20px;
    background-color: #fff;
}

.search-bar {
    flex-grow: 1;
    margin: 0 20px;
    position: relative;
    display: flex;
    margin-left: 240px;
}

.search-bar input {
    border-radius: 10px 0 0 10px;
    padding: 10px 20px;
    width: 100%;
    border: 1px solid #ccc;
    border-right: none;
}

.search-bar button {
    border-radius: 0 10px 10px 0;
    padding: 10px 20px;
    border: 1px solid #ccc;
    background-color: #FACC15;
    color: white;
    border-left: none;
    cursor: pointer;
}

.search-bar button .fas {
    font-size: 1.2rem;
}
.user-cart {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 150px;
}

.user-cart a {
    color: #FACC15;
    text-decoration: none;
    font-weight: bold;
}

.user-cart i {
    font-size: 1.5rem;
}

.navbar-brand img {
    width: 60px;
}

.vertical-separator {
    width: 1px;
    height: 24px;
    background-color: #3f3e38;
}

@media (max-width: 992px) {
    .search-bar {
        margin-left: 20px;
        width: calc(100% - 80px);
    }

    .search-bar .menu-icon {
        right: 10px;
        left: auto;
    }
}

@media (max-width: 768px) {
    .navbar-custom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .search-bar {
        margin-top: 10px;
        width: 100%;
        margin-left: 0;
        order: 2;
    }

    .search-bar input {
        width: calc(100% - 80px);
    }

    .search-bar .menu-icon {
        right: 84px;
        left: auto;
    }

    .user-cart {
        margin-right: 10px;
        flex-direction: row;
        margin-left: 0;
        order: 3;
        margin-top: 10px;
    }

    .user-cart a {
        font-size: 0.9rem;
    }

    .user-cart i {
        font-size: 1.2rem;
    }

}

.dropdown-container {
display: flex;
align-items: center;
justify-content: center;
padding: 10px 0;
}

.dropdown-container .btn {
border-radius: 50px;
padding: 10px 20px;
margin: 0 5px;
}

.dropdown-container .btn-primary {
background-color: #ffc107;
border: none;
color: #000;
}

.dropdown-container .btn-secondary {
background-color: #f0f4f7;
border: none;
color: #000;
}

.dropdown-container .btn-secondary:hover,
.dropdown-container .btn-primary:hover {
background-color: #e6b800;
color: #fff;
}

@media (max-width: 768px) {
.dropdown-container {
flex-wrap: wrap;
}

.dropdown-container .btn {
margin-bottom: 10px;
}
}



.bg-image-section {
position: relative;
background-image: url("{% static 'images/product (2).png' %}"); /* Update the path to your image */

background-size: cover;
background-position: center;
height: 70vh; /* Adjust height as needed */
display: flex;
justify-content: center;
align-items: center;

}

.overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5); /* Adjust the opacity as needed */
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

.overlay h1, .overlay h2 {
color: white;
margin: 0;
padding: 0;
}

.overlay h1 {
font-size: 2.5rem;
font-weight: bold;
}

.overlay h2 {
font-size: 2rem;
font-weight: normal;
}

@media (max-width: 768px) {
.overlay h1 {
font-size: 2rem;
}

.overlay h2 {
font-size: 1.5rem;
}
}




.slider-container {
    position: relative;
    
    
    border-radius: 20px;
}
.slider-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}
.slider-text {
    color: #fff;
    max-width: 50%;
}
.slider-text h1 {
    font-size: 2.5rem;
    font-weight: bold;
}
.slider-text p {
    font-size: 1.2rem;
}
.slider-images {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.slider-images img {
    border-radius: 50%;
    margin-left: -30px; /* Overlap images */
    width: 120px;
    height: 120px;
}
.circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #FFD700;
    position: absolute;
    z-index: -1; /* Send behind images */
}
.circle.top {
    top: 10%;
    left: -50px;
}
.circle.bottom {
    bottom: 10%;
    left: -50px;
}
.custom-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
    z-index: 10; /* Make sure it's on top */
    cursor: pointer;
}
.custom-nav-button.prev {
    left: -20px;
}
.custom-nav-button.next {
    right: -20px;
}
.owl-dots {
    text-align: center;
    margin-top: 20px;
}
.owl-dot {
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    opacity: 0.5;
    cursor: pointer;
}
.owl-dot.active {
    width: 15px;
    height: 15px;
    opacity: 1;
}

@media (max-width: 768px) {
    .slider-content {
        flex-direction: column;
        text-align: center;
    }
    .slider-text {
        max-width: 100%;
        margin-bottom: 20px;
    }
    .slider-images {
        margin-bottom: 20px;
    }
    .custom-nav-button {
        position: static;
        transform: none;
        margin: 0 10px;
    }
    /* .custom-nav-button.prev, .custom-nav-button.next {
    } */
    .owl-dots {
        margin-top: 50px;
    }
}



.special-offer-section {
    background: linear-gradient(90deg, #FACC15 0%, #E3C7B5 100%);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 30px;
    }
    
    .circle-background {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 0, 0, 0.2); /* Adjust color and opacity */
    }
    
    .circle1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    }
    
    .circle2 {
    width: 300px;
    height: 300px;
    top: 30%;
    right: 15%;
    }
    
    .circle3 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    left: 30%;
    }
    
    .special-offer-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    }
    
    .special-offer-content {
    max-width: 600px;
    z-index: 1;
    }
    
    .special-offer-content h3 {
    font-size: 2rem;
    color: #e53935;
    }
    
    .special-offer-content h1 {
    font-size: 5rem;
    color: #511616;
    }
    
    .special-offer-content p {
    font-size: 2rem;
    color: #511616;
    }
    
    @media (max-width: 992px) {
    .special-offer-section {
    flex-direction: column;
    text-align: center;
    }
    .special-offer-image img {
    margin-bottom: 20px;
    }
    .circle-background {
    display: none;
    }
    .special-offer-content h3 {
    font-size: 1.5rem; /* Adjust font size for smaller screens */
    }
    .special-offer-content h1 {
    font-size: 3rem; /* Adjust font size for smaller screens */
    }
    .special-offer-content p {
    font-size: 1.5rem; /* Adjust font size for smaller screens */
    }
    }
    
    @media (max-width: 576px) {
    .special-offer-content h3 {
    font-size: 1.25rem; /* Further adjust font size for very small screens */
    }
    .special-offer-content h1 {
    font-size: 2.5rem; /* Further adjust font size for very small screens */
    }
    .special-offer-content p {
    font-size: 1.25rem; /* Further adjust font size for very small screens */
    }
    }
.footer {
background-color: #FACC15;
padding: 50px 0;
color: #333;
}

.footer .footer-logo {
max-width: 200px;
}

.footer h5 {
font-weight: bold;
font-size: 18px;
}

.footer a {
color: #333;
text-decoration: none;
}

.footer a:hover {
text-decoration: underline;
}

.footer .footer-bottom {
border-top: 1px solid #f5f2f2;
padding-top: 10px;
margin-top: 50px;
display: flex;
justify-content: space-between;
}