@font-face {
    font-family: 'Onest';
    src: url('../fonts/Onest-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

/* Abril Fatface Font */
@font-face {
    font-family: 'Abril Fatface';
    src: url('../fonts/AbrilFatface-Regular.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

/* Teko Font */
@font-face {
    font-family: 'Teko';
    src: url('../fonts/Teko-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

.navbar-custom {
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
    border-radius: 110px;
    padding: 10px 50px;
}

.navbar-nav .nav-link {
    color: white;

}

.buy-now-3 {
    display: inline-block;
    text-align: center;
    margin-top: 10px;
    background: #005EF7;
    color: #fff;
    padding: 12px 40px;
    border: solid 1px 4px 4px 1px black;
    border-radius: 75px;
    font-family: "Onest", sans-serif;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-in-out;
}

/* ✅ Button Hover Effect */
.buy-now-3:hover {
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.7);
    transform: translateY(-2px);
}

/* =============================== HERO SECTION ==============================*/

.hero-section {
    color: white;
    text-align: left;
    padding: 5vw 0;
    /* height: 100vh; */
    /* height: 74%; */
    display: flex;
    align-items: flex-end;
}

.underline-text {
    display: inline-block;
    position: relative;
    z-index: 1;
}

.underline-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0.2em;
    width: 100%;
    height: clamp(13px, 6px, 12px);
    background-color: rgba(0, 94, 247, 1);
    z-index: -1;
}


.card-img {
    height: 120vh;
    object-fit: cover;
    border-radius: 0 0 50px 50px;
}

/* =====================MEDIA QUERIES ==================== */
@media (max-width: 768px) {
    .logo {
        height: 60px;
    }


}

@media (min-width: 720px) and (max-width: 1024px) {

    .logo {
        height: 80px;
    }

}

@media (min-width: 1800px) {
    .hero-section {
        justify-content: flex-start;
        align-items: flex-start;
    }

    .logo {
        height: 180px;
    }


}

.navbar-nav {
    font-family: 'Teko', sans-serif;
    font-weight: 500;
    font-size: 26px;
    line-height: 100%;
    letter-spacing: 0%;
}

.hero-title {
    font-family: 'Teko', sans-serif;
    font-weight: 500;
    font-size: clamp(40px, 10vw, 111px);
    line-height: 99%;
    letter-spacing: -2%;
}


.card-title {

    font-family: 'Teko', sans-serif;
    background-color: white;
    font-weight: 500;
    font-size: 50px;
    line-height: 85px;

}

/* 🔹 Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .card-title {
        font-size: 35px;

    }
}

/* Section Styling */
.custom-section {
    font-family: "Onest", sans-serif;
    background-color: #ffffff;
    text-align: center;
    padding: 80px 20px 0px 20px;
}

/* Heading Styling */
.custom-heading {
    font-family: 'Teko', sans-serif;
    font-size: 85px;
    font-weight: 500;
    text-transform: none;
    display: inline-block;
    line-height: 70px;
}

.highlighted-text {
    position: relative;
    display: inline-block;
    z-index: 1;
    padding: 0 5px;
}

.highlighted-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100%;
    height: 20px;
    background-color: #F5E901;
    z-index: -1;
}

/* ✅ Product Section */
.product-section {
    padding: 117px 60px 0px 60px;
    display: flex;
    justify-content: center;
}

.container {
    /* max-width: 1200px !important;  */
    /* width: 100%; */
}

/* ✅ Product Box */
.product-box {
    background: url("../images/original\ umami\ bg.jpeg") no-repeat center center/cover;
    border-radius: 20px;
    padding: 40px 65px 40px 15px;
    width: 1029px;
    margin: 0 auto;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

/* ✅ Product Image */
.product-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.product-image img {
    max-width: 100%;
    height: auto;
    width: 350px;
}

/* ✅ Product Title */
.product-title {
    font-family: 'Teko', sans-serif;
    font-size: 65px;
    text-align: center;
    font-weight: 500;
}

.product-description {
    font-size: 20px;
    font-family: "Onest", sans-serif;
    text-align: center;
    color: #000000;

}

.col-lg-7 {
    text-align: center;
}

/* ✅ Buy Now Button */
.buy-now {
    display: inline-block;
    text-align: center;
    margin-top: 10px;
    background: #005EF7;
    color: #fff;
    padding: 12px 40px;
    border: solid 1px 4px 4px 1px black;
    border-radius: 75px;
    font-family: "Onest", sans-serif;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-in-out;
}

/* ✅ Button Hover Effect */
.buy-now:hover {
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.7);
    transform: translateY(-2px);
}

/* ✅ Nutrition Table */

.nutrition-table {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: white;
    padding: 10px;
    border-radius: 10px;
    margin-top: 20px;
    position: relative;
}

.nutrition-facts {
    width: 50%;
    font-size: 14px;
    font-family: "Onest", sans-serif;
    font-weight: 700;
    border-right: 1px solid #8e8d8d;
    padding-right: 15px;
}

.nutrition-facts p {
    display: flex;
    justify-content: space-between;
    font-family: "Onest", sans-serif;
    font-weight: 700;
    border-bottom: 1px solid #8e8d8d;
    padding: 5px 0;
    margin: 2px 0;
}

.calories-button {
    background: #005EF7;
    color: #fff;
    padding: 5px 10px;
    font-family: "Gotham", sans-serif;
    font-size: 12px;
    border-radius: 15px;
    font-weight: bold;
    margin-left: 10px;
    margin-bottom: 5px;
}

.ingredients {
    width: 50%;
    text-align: left;
    font-family: "Onest", sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding-left: 15px;
    margin-bottom: 0% !important;
}

.ingredients-list {
    background-color: #E5EFFF;
    border-radius: 5px;
    padding: 20px 0px;
    list-style: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ingredients-list li {
    font-family: "Onest", sans-serif;
    font-weight: 400;
    padding: 10px 12px;
    display: flex;
    align-items: center;
}

.ingredients-list li span {
    margin-right: 5px;
}



@media (max-width: 1024px) {
    .nutrition-container {
        width: 100%;
    }

    .nutrition-facts {
        font-size: 12px;
    }

    .calories-button {
        font-size: 10px;
    }
}

/* ✅ 📱 Tablet (Max 768px) */
@media (max-width: 768px) {
    .product-box {
        padding: 40px;
    }

    .product-section .container {
        max-width: 100%;
    }

    .product-image img {
        width: 280px;
    }

    .nutrition-table {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;

    }

    .nutrition-facts {
        width: 50%;
        border-right: 1px solid #ddd;
        padding-right: 15px;
    }

    .ingredients {
        width: 50%;
        padding-left: 15px;
    }

}

/* ✅ 📱 Mobile (Max 480px) */
@media (max-width: 480px) {

    .product-box {
        padding: 40px;
    }

    .product-section {
        padding: 60px 20px 20px 20px !important;
    }

    .product-section .container {
        padding: 0 !important;
        max-width: 100%;
        width: 100%;
    }

    .product-image img {
        width: 200px;
    }

    .nutrition-table {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        align-items: center;
    }

    .nutrition-facts,
    .ingredients {
        width: 100%;
        text-align: left;
    }

    .nutrition-facts {
        border-right: none;
        padding-right: 0;
    }

    .ingredients {
        padding-left: 0;
    }

    .ingredients-list {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
    }

    .ingredients-list li {
        width: 100%;
    }

    .calories-button {
        position: relative;
        top: 0;
        right: 0;
        width: auto;
        text-align: center;
        display: block;
        margin: 0 auto;
        margin-bottom: 5px;
    }
}


/* ✅ Product Section 2 */
.product-section-2 {
    padding: 60px;
    display: flex;
    justify-content: center;
}

/* ✅ Product Box */
.product-box-2 {
    background: url("../images/garlic\ umami\ bg.jpeg") no-repeat center center/cover;
    border-radius: 20px;
    padding: 40px 15px 40px 65px;
    width: 1029px;
    margin: 0 auto;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

.container-2 {
    max-width: 1200px;
    width: 100%;
}

/* ✅ Product Image */
.product-image-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.product-image-2 img {
    max-width: 100%;
    height: auto;
    width: 350px;
}

/* ✅ Product Title */
.product-title-2 {
    font-family: 'Teko', sans-serif;
    font-size: 65px;
    text-align: center;
    font-weight: 500;
}

.product-description-2 {
    font-size: 18px;
    font-family: "Onest", sans-serif;
    font-weight: 400;
    text-align: center;
    padding: 0 50px;
    letter-spacing: 2%;
    color: #000000;
}

.col-lg-7 {
    text-align: center;
}

/* ✅ Buy Now Button */
.buy-now-2 {
    display: inline-block;
    text-align: center;
    margin-top: 10px;
    background: #ffffff;
    color: #000000;
    padding: 12px 40px;
    border: solid 1px 4px 4px 1px black;
    border-radius: 75px;
    font-family: "Onest", sans-serif;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-in-out;
}

/* ✅ Button Hover Effect */
.buy-now-2:hover {
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.7);
    transform: translateY(-2px);
}

/* ✅ Nutrition Table */
.nutrition-table-2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: white;
    padding: 10px;
    border-radius: 10px;
    margin-top: 20px;
    position: relative;
}

.nutrition-facts-2 {
    width: 50%;
    font-size: 14px;
    font-family: "Onest", sans-serif;
    font-weight: 700;
    border-right: 1px solid #8e8d8d;
    padding-right: 15px;
}

.nutrition-facts-2 p {
    display: flex;
    justify-content: space-between;
    font-family: "Onest", sans-serif;
    font-weight: 700;
    border-bottom: 1px solid #8e8d8d;
    padding: 3px 0;
}

.calories-button-2 {
    background: #4BB543;
    color: #fff;
    padding: 5px 10px;
    font-family: "Gotham", sans-serif;
    font-size: 12px;
    border-radius: 15px;
    font-weight: bold;
    margin-left: 10px;
    margin-bottom: 5px;
}

.ingredients-2 {
    width: 50%;
    text-align: left;
    font-family: "Onest", sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding-left: 15px;
    margin-bottom: 0% !important;
}

.ingredients-list-2 {
    background-color: #E5FBDF;
    border-radius: 5px;
    padding: 10px 0px;
    list-style: none;
    margin: 0;
}

.ingredients-list-2 li {
    font-family: "Onest", sans-serif;
    font-weight: 400;
    padding: 10px 10px;
    display: flex;
}

.ingredients-list-2 li span {
    margin-right: 5px;
}


/* ✅ Tablet Fix for Section 2 */
@media (max-width: 1024px) {
    .nutrition-container-2 {
        width: 100%;
    }

    .ingredients-list-2 {
        padding: 0px;
    }

    .nutrition-facts-2 {
        font-size: 12px;
    }

    .calories-button-2 {
        font-size: 10px;
    }

    .product-section-2 .container-2 {
        max-width: 100%;

    }

    .product-image-2 img {
        width: 280px;
    }
}

/* ✅ 📱 Tablet (Max 768px) */
@media (max-width: 768px) {
    .product-box-2 {
        padding: 40px;
    }

    .nutrition-table-2 {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;

    }

    .nutrition-facts-2 {
        width: 50%;
        border-right: 1px solid #ddd;
        padding-right: 15px;
    }

    .ingredients-2 {
        width: 50%;
        padding-left: 15px;
    }
}

/* ✅ Mobile Fix for Section 2 */
@media (max-width: 480px) {
    .product-section-2 {
        padding: 20px !important;
        border-radius: 50px;
    }

    .product-box-2 {
        padding: 40px;
    }

    .product-section-2 .container-2 {
        padding: 0 !important;
        max-width: 100%;
        width: 100%;
    }

    .product-image-2 img {
        width: 200px;
    }

    .product-section-2 {
        padding: 20px !important;
        border-radius: 50px;
    }

    .product-section-2 .container-2 {
        padding: 0 !important;
        max-width: 100%;
        width: 100%;
    }

    .product-image-2 img {
        width: 200px;
    }

    .nutrition-table-2 {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        align-items: center;
    }

    .nutrition-facts-2,
    .ingredients-2 {
        width: 100%;
        text-align: left;
    }

    .nutrition-facts-2 {
        border-right: none;
        padding-right: 0;
    }

    .ingredients-2 {
        padding-left: 0;
    }

    .ingredients-list-2 {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
    }

    .ingredients-list-2 li {
        width: 100%;
    }

    .calories-button-2 {
        position: relative;
        top: 0;
        right: 0;
        width: auto;
        text-align: center;
        display: block;
        margin: 0 auto;
        margin-bottom: 5px;
    }
}

/* ✅ Product Section 3*/
.product-section-3 {
    padding: 60px;
    display: flex;
    justify-content: center;
}

.container-3 {
    max-width: 1200px !important;
    width: 100%;
}

/* ✅ Product Box */
.product-box-3 {
    background: url("../images/smoky\ umami\ bg.jpeg") no-repeat center center/cover;
    border-radius: 20px;
    padding: 40px 65px 40px 15px;
    width: 1029px;
    margin: 0 auto;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

/* ✅ Product Image */
.product-image-3 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.product-image-3 img {
    max-width: 100%;
    height: auto;
    width: 350px;
}

/* ✅ Product Title */
.product-title-3 {
    font-family: 'Teko', sans-serif;
    font-size: 65px;
    text-align: center;
    font-weight: 500;
}

.product-description-3 {
    font-size: 20px;
    font-family: "Onest", sans-serif;
    text-align: center;
    color: #000000;
}

.col-lg-7-3 {
    text-align: center;
}

/* ✅ Buy Now Button */
.buy-now-3 {
    display: inline-block;
    text-align: center;
    margin-top: 10px;
    background: #005EF7;
    color: #fff;
    padding: 12px 40px;
    border: solid 1px 4px 4px 1px black;
    border-radius: 75px;
    font-family: "Onest", sans-serif;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-in-out;
}

/* ✅ Button Hover Effect */
.buy-now-3:hover {
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.7);
    transform: translateY(-2px);
}

/* ✅ Nutrition Table */
.nutrition-table-3 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: white;
    padding: 10px;
    border-radius: 10px;
    margin-top: 20px;
    position: relative;
}

.nutrition-facts-3 {
    width: 50%;
    font-size: 14px;
    font-family: "Onest", sans-serif;
    font-weight: 700;
    border-right: 1px solid #8e8d8d;
    padding-right: 15px;
}

.nutrition-facts-3 p {
    display: flex;
    justify-content: space-between;
    font-family: "Onest", sans-serif;
    font-weight: 700;
    border-bottom: 1px solid #8e8d8d;
    padding: 3px 0;
}

.calories-button-3 {
    background: #FEC937;
    color: #fff;
    padding: 5px 10px;
    font-family: "Gotham", sans-serif;
    font-size: 12px;
    border-radius: 15px;
    font-weight: bold;
    margin-left: 10px;
    margin-bottom: 5px;
}

.ingredients-3 {
    width: 50%;
    text-align: left;
    font-family: "Onest", sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding-left: 15px;
    margin-bottom: 0% !important;
}

.ingredients-list-3 {
    background-color: #FFF5DB;
    border-radius: 5px;
    padding: 10px 0px;
    list-style: none;
    margin: 0;
}

.ingredients-list-3 li {
    font-family: "Onest", sans-serif;
    font-weight: 400;
    padding: 10px 10px;
    display: flex;
}

.ingredients-list-3 li span {
    margin-right: 5px;
}



/* ✅ 1024 Fix */
@media (max-width: 1024px) {
    .nutrition-container-3 {
        width: 100%;
    }

    .ingredients-list-3 {
        padding: 0px;
    }

    .nutrition-facts-3 {
        font-size: 12px;
    }

    .nutrition-facts-3 p {
        padding: 8px 0;
    }

    .calories-button-3 {
        font-size: 10px;
    }

    .ingredients-list-3 {
        font-size: 14px;
    }

    .product-section-3 .container-3 {
        max-width: 100%;
    }

    .product-image-3 img {
        width: 280px;
    }
}

/* ✅ 📱 Tablet (Max 768px) */
@media (max-width: 768px) {
    .product-box-3 {
        padding: 40px;
    }

    .nutrition-table-3 {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;

    }

    .nutrition-facts-3 {
        width: 50%;
        border-right: 1px solid #ddd;
        padding-right: 15px;
    }

    .ingredients-3 {
        width: 50%;
        padding-left: 15px;
    }

    .ingredients-list-3 {
        font-size: 14px;
    }

    .nutrition-facts-3 {
        font-size: 14px;
    }

    .nutrition-facts-3 p {
        padding: 3px;
    }

    .calories-button-3 {
        font-size: 12px;
    }

}

/* ✅ Mobile Fix */
@media (max-width: 767px) {
    .product-section-3 {
        padding: 20px !important;
    }

    .product-box-3 {
        padding: 40px;
    }

    .product-section-3 .container-3 {
        padding: 0 !important;
        max-width: 100%;
        width: 100%;
    }

    .product-image-3 img {
        width: 200px;
    }

    .nutrition-table-3 {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        align-items: center;
    }

    .nutrition-facts-3,
    .ingredients-3 {
        width: 100%;
        text-align: left;
    }

    .nutrition-facts-3 {
        border-right: none;
        padding-right: 0;
    }

    .ingredients-3 {
        padding-left: 0;
    }

    .ingredients-list-3 {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
    }

    .ingredients-list-3 li {
        width: 100%;
    }

    .calories-button-3 {
        position: relative;
        top: 0;
        right: 0;
        width: auto;
        text-align: center;
        display: block;
        margin: 0 auto;
    }
}




/* By arbab */

/* Header */

.navbar-nav .active a {
    color: #005EF7;
}

/* Main page  */

.banner_img {
    height: 100%;
}

.product-section-2 {
    padding-bottom: 0;
}

.card-img-overlay {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Responsviness Style Strat */

@media screen and (max-width:1024px) {
    .flavor .hero-section {
        margin-top: 0px !important;
    }

    .product-box,
    .product-box-2,
    .product-box-3 {
        width: 100%;
        padding: 40px;
    }
}


@media screen and (max-width:820px) {}

@media screen and (max-width:768px) {}

@media screen and (max-width:600px) {
    .banner_img {
        height: 290px;
    }

    .product-box,
    .product-box-2,
    .product-box-3 {
        padding: 20px 20px 40px 20px;
    }

    .card-img {
        height: 330px;
    }
}