﻿body {
    padding: 0;
}

.bg-allergy {
    background-color: #CEF2E8;
    color: #5DBFD2;
}

.bg-alzheimer {
    background-color: #CEE7F2;
    color: #7DA6BB;
}

.bg-harmone {
    background-color: #E5CEF2;
    color: #9773AB;
}

.bg-wellness {
    background-color: #EEF2CE;
    color: #C2C79D;
}

.badge {
    border-radius: 20px;
    padding: 10px;
}

.container-fluid {
    padding: 0;
}

.hero-section {
    background-size: cover;
    background-position: center;
    height: 80vh;
    position: relative;
    color: white;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    overflow: hidden;
}

.hero-content {
    position: absolute;
    top: 30%;
    left: 10%;
    max-width: 40%;
    word-wrap: break-word;
}

.hero-heading {
    color: black;
    font-size: 80px;
    font-weight: bold;
}

.hero-subheading {
    font-size: 24px;
    margin-bottom: 20px;
}

.filter-bar {
    color: black;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    margin-top: 40%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

    .filter-bar .tags {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }

        .filter-bar .tags span {
            font-weight: bold;
            margin-right: 10px;
        }

    .filter-bar .tag {
        background-color: #e1e8ed;
        border-radius: 20px;
        padding: 5px 15px;
        margin-right: 10px;
        font-size: 14px;
    }

    .filter-bar .dropdowns {
        display: flex;
        gap: 10px;
    }

    .filter-bar .dropdown .btn {
        padding: 5px 15px;
        font-size: 14px;
    }

.product-section {
    max-width: 1100px;
    margin-top: -70px;
}

.product-box {
    width: 350px;
    border-radius: 50px;
    margin-bottom:5%;
}

.product-faq-section {
    max-width: 1100px;
}

.faq-btn {
    color: white;
    border-radius: 25px;
    background: linear-gradient(to right, #897CE5, #5DBFD2);
    margin-top: 50px;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-section {
        background-position: 70% center;
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
    }

    .hero-content {
        left: 5%;
        max-width: 90%;
    }

    .filter-bar {
        margin-top: 130%;
    }

    .hero-heading {
        font-size: 32px;
    }

    .hero-subheading {
        font-size: 18px;
    }

    .filter-bar .tag {
        margin-right: 2px;
    }

    .filter-bar .tags {
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0px;
        gap: 0px;
    }

    .filter-bar .dropdowns {
        width: 100%;
        justify-content: space-between;
    }

    .filter-bar .tag,
    .filter-bar .dropdown .btn {
        padding: 5px 10px;
        font-size: 12px;
    }

    .product-section {
        margin-top: -20px;
    }

    .product-box {
        width: 95%;
        border-radius: 25px;
        margin-bottom: 20px;
    }
}
