﻿@font-face {
    font-family: 'Filson Pro';
    src: url('/fonts/FilsonPro-Regular.woff2') format('woff2'), url('/fonts/FilsonPro-Regular.woff') format('woff');
    font-style: normal;
    font-display: swap;
}

/* Single, consistent :root block */
:root {
    font-family: 'Filson Pro', sans-serif;
    font-style: normal;
    --color-primary: #a698ea;
    --color-secondary: #b0f963;
    --color-text-dark: #243837;
    --color-text-light: #ffffff;
    --color-background-dark: #2d3d3f;
    --color-background-light: #ffffff;
}

body {
    font-family: inherit;
    font-style: normal;
}

@media (max-width: 768px) {


    .action-buttons {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .about-btn, .contact-btn4 {
        width: 100%;
        text-align: center;
        max-width: 200px; /* Optional: Control maximum width */
    }
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 45px;
    margin: 50px 0;
}

.cta-btn {
    padding: 16px 0;
    width: 197px;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    border-radius: 12px;
    cursor: pointer;
}

.action-buttons {
    display: flex;
    gap: 45px;
    margin-top: 60px;
    justify-content: center;
}

.about-btn {
    background-color: #a698ea;
    border-radius: 12px;
    padding: 16px 54px;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .about-btn:hover {
        background-color: #b1a0ff;
    }

.contact-btn4 {
    background-color: transparent;
    border-radius: 12px;
    padding: 16px 44px;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: #2c3c3d;
    border: 2px solid #b1a0ff;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

    .contact-btn4:hover {
        background-color: #b1a0ff;
        color: #ffffff;
    }


.footer-banner2 {
    background-color: #2d3d3f;
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}

.banner-title2 {
    font-size: 70px;
    font-weight: 500;
    line-height: 84px;
    margin-bottom: 20px;
}

    .banner-title2 span {
        color: #a5ec5b;
    }

.banner-subtitle2 {
    font-size: 25px;
    font-weight: 400;
    line-height: 30px;
}


.container14 {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 70px;
    padding-right: 70px;
}
.container15 {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    padding-left: 90px;
    padding-right: 90px;
}



/* CSS for section section:hero */
.hero-section11 {
    background-color: var(--color-secondary);
    padding: 20px 0;
    text-align: left;
    margin-bottom: -5px;
   
}

.hero-title11 {
    font-family: "Filson Pro";
    font-weight: 500;
    font-size: 70px;
    line-height: 100px;
    color: var(--color-text-dark);
    margin-top: 50px;
    margin-left: 70px;
}

@media (max-width: 768px) {
    .hero-title11 {
        font-size: 48px;
    }

    .hero-section11 {
        padding: 20px 0;
    }
}



/* CSS for section section:product */
.product-section {
    padding: 60px 0;
    background-color: var(--color-background-light);
   
}

.product-banner {
    margin-bottom: 0px;
}
.product-banner-img2 {
    width: 100%;
    max-width: 1190px;
    display: block;
    margin: 0 auto;
}


.product-showcase {
    display: flex;
    align-items: center;
    gap: 74px;
    margin-bottom: 50px;
    padding: 0 70px;
    margin-top: -50px;
}

.product-image-wrapper {
    flex: 1 1 40%;
    flex-shrink: 0;
}

.product-description {
    flex: 1 1 60%;
}

    .product-description p {
        font-family: "Filson Pro";
        font-weight: 700;
        font-size: 21px;
        line-height: 1.6;
        color: #4a917e;
    }

.highlight-green {
    color: #99cb4a;
}

.product-details {
    max-width: 1014px;
    margin: 0 auto;
}

.details-block {
    margin-bottom: 60px;
}

.details-title {
    font-family: "Filson Pro";
    font-weight: 700;
    font-size: 32px;
    line-height: 1.06;
    color: #99cb4a;
    margin-bottom: 20px;
}

.ingredients-list div {
    margin-bottom: 1em;
    font-size: 20px;
    line-height: 1.7;
    color: var(--color-text-dark);
}

.ingredients-list dt {
    font-weight: 700;
    display: inline;
}

.ingredients-list dd {
    font-weight: 400;
    display: inline;
    margin-left: 0.5em;
}

.features-list {
   
    font-weight: 700;
    font-size: 20px;
    line-height: 1.7;
    color: var(--color-text-dark);
    padding-left: 20px;
    list-style: disc;
    margin-bottom: 30px;
}



.features-list {
    list-style: none; /* Remove default bullets */
    padding-left: 0; /* Remove extra padding */
    margin: 0;
}

    .features-list li {
        position: relative;
        padding-left: 1.5em; /* Space for dash */
        margin-bottom: 0.5em;
    }

        .features-list li::before {
            content: "–"; /* The dash */
            position: absolute;
            left: 0;
            color: var(--color-text-dark); /* Match text color */
            font-weight: bold; /* Optional: make dash bold */
        }

.conclusion-text {
    font-family: "Filson Pro";
    font-weight: 700;
    font-size: 20px;
    line-height: 1.7;
    color: var(--color-text-dark);
}

@media (max-width: 992px) {
    .product-showcase {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 0;
    }
}

@media (max-width: 480px) {
    .product-image-wrapper img {
        max-width: 80%; /* Shrinks the image to 80% of its container */
        height: auto; /* Keeps aspect ratio */
        margin-top: 30px;
    }

    .hero-section11 {
        padding-top: 40px; /* Push content down to clear the fixed navbar */
        padding-bottom: 10px;
    }

    .hero-title11 {
        font-size: 32px;
        line-height: 1.2;
        margin-top: 0; /* Remove margin that was causing overlap */
        margin: 0;
        text-align: center;
    }

    .product-section {
      padding-top: 10px;
    }
}

/* ✅ Extra Small Devices (Mobile Portrait, ≤480px) */
@media (max-width: 480px) {
    .hero-title11 {
        font-size: 36px;
        line-height: 1.2;
        margin-left: 20px;
        margin-top: 30px;
        text-align: center;
    }

    .container14,
    .container15 {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
   
    .product-showcase {
        gap: 30px;
    }

    .product-description p {
        font-size: 18px;
        text-align: center;
    }

    .details-title {
        font-size: 26px;
        text-align: center;
    }

    .ingredients-list div,
    .features-list li,
    .conclusion-text {
        font-size: 18px;
        text-align: left;
    }

    .action-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .about-btn,
    .contact-btn4 {
        width: 100%;
        max-width: 250px;
    }
}

/* ✅ Small Devices (Mobile Landscape & Small Tablets, 481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .hero-title11 {
        font-size: 44px;
        line-height: 1.3;
        margin-left: 40px;
        text-align: center;
    }

    .container14,
    .container15 {
        padding-left: 40px;
        padding-right: 40px;
    }

    .product-description p {
        font-size: 19px;
        text-align: center;
    }

    .details-title {
        font-size: 28px;
    }

    .product-showcase {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .product-image-wrapper img {
        max-width: 70%;
    }
}

/* ✅ Medium Devices (Tablets, 769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title11 {
        font-size: 56px;
        line-height: 1.4;
        margin-left: 50px;
    }

    .container14,
    .container15 {
        padding-left: 50px;
        padding-right: 50px;
    }

    .product-showcase {
        gap: 50px;
    }

    .product-description p {
        font-size: 20px;
    }
}

/* ✅ Large Devices (Small Desktops, 1025px - 1280px) */
@media (min-width: 1025px) and (max-width: 1280px) {
    .hero-title11 {
        font-size: 64px;
    }

    .container14,
    .container15 {
        padding-left: 60px;
        padding-right: 60px;
    }

    .product-showcase {
        gap: 60px;
    }
}

