* {
    margin: 0;
    padding: 0;
}
.winky-sans {
    font-family: "Winky Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400; /* Replace with actual weight */
    font-style: normal;
  }
.customnavbar {
    background-color: black;
    padding: 10px 20px;
    height: 60px;
    /* Set a fixed height for the navbar */
    display: flex;
    align-items: center;
    /* Keep items aligned vertically */
}
.cart-icon {
    cursor: pointer;
}
.customnavbar-brand img {
    height: 120px;
    /* Increase logo height */
    width: auto;
    /* Maintain aspect ratio */
    max-height: 100%;
    /* Ensure it does not overflow */
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='white' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

.customnavbar .nav-link {
    color: white;
    margin: 0 10px;
}

.customnavbar .nav-link:hover {
    color: #E74C3C;
}

.customnavbar .btn-subscribe {
    background-color: #E74C3C;
    color: white;
    border-radius: 20px;
}

.customnavbar .btn-contact {
    background-color: white;
    color: #E74C3C;
    border-radius: 20px;
}

.customnavbar .cart-icon {
    color: white;
    font-size: 20px;
    margin-left: 15px;
}

.customnavbar .dropdown-menu {
    background-color: black;
    border: none;
}

.customnavbar .dropdown-item {
    color: white;
}

.customnavbar .dropdown-item:hover {
    background-color: #E74C3C;
    color: white;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.logo-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.estoreheadingbuton {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px 25px;
    position: relative;
}

.logo:before,
.logo:after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.logo:before {
    left: 5px;
}

.logo:after {
    right: 5px;
}

.featured-product {
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s;
    background-size: cover;
    background-position: center;
}

.product-img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.featured-product:hover {
    transform: translateY(-5px);
}

.product-content {
    padding: 20px;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.4);
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.product-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.price {
    font-size: 20px;
    font-weight: bold;
    margin: 15px 0;
}

.btn-cart {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 6px 15px;
    transition: background-color 0.3s;
}

.btn-cart:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.products-heading {
    text-align: center;
    margin: 40px 0 20px;
    font-weight: bold;
    position: relative;
}

.products-heading:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #333;
    margin: 10px auto;
}

.filter-btn {
    background-color: #f8f9fa;
    color: #333;
    border: 1px solid #ddd;
    margin: 0 5px;
    border-radius: 20px;
    font-size: 14px;
    padding: 5px 15px;
    transition: all 0.3s;
}

.filter-btn.active {
    background-color: #102943;
    color: white;
}

.product-card {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: transform 0.3s;
    border: 1px solid #eee;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-img {
    /* height: 160px; */
    background-position: center;
    background-size: cover;
}

.product-details {
    /* padding: 15px; */
    text-align: center;
    font-size: 20px;
    /* margin-top: 40px; */
}

.product-price {
    color: #ff6b6b;
    font-weight: bold;
    margin: 8px 0;
}

.add-btn {
    background-color: #f8f9fa;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 20px;
    padding: 3px 50px;
    transition: all 0.3s;
    font-weight: bolder;
}

.add-btn:hover {
    background-color: #333;
    color: white;
}

.filter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .featured-product {
        margin-bottom: 20px;
    }

    .filter-btn {
        margin-bottom: 10px;
    }

}

@media (max-width:768px) {
    .add-btn {
        padding: 2px 18px !important;
        font-size: 15px !important;
    }
    .customnavbar{
        height: unset !important;
        padding: unset !important;
    }
    /* .customnavbar-brand img {
        height: 80px !important;
    } */
    .customnavbar-brand img{
        height: 85px;
    }

}