/* =========================================================
   GLOBAL RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Times New Roman", Times, serif;
    font-size: 23px;
    line-height: 1.7;
    color: #222222;
    background: #ffffff;
}


img {
    display: block;
    max-width: 100%;
    height: auto;
}


a {
    text-decoration: none;
}


p {
    margin-bottom: 20px;
}



/* =========================================================
   GENERAL CONTAINERS
========================================================= */

.main-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


.text-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


.header-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}



/* =========================================================
   NAVBAR
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}


.navbar {
    background: #000000;
    min-height: 70px;
}


.nav-container {
    width: 90%;
    max-width: 1200px;
    min-height: 70px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.logo {
    color: #ffffff;
    font-size: 53px;
    font-weight: 700;
    white-space: nowrap;
}


.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}


.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}


.nav-links a {
    color: #ffffff;
    font-size: 18px;
}


.nav-links a:hover {
    color: #cccccc;
}


/* Navbar CTA */

.nav-button {
    background: #d60000;
    color: #ffffff;

    padding: 9px 20px;

    font-size: 17px;
    font-weight: 700;

    border-radius: 4px;

    white-space: nowrap;
}


.nav-button:hover {
    background: #b00000;
}


/* Mobile menu button */

.menu-toggle {
    display: none;

    width: 42px;
    height: 38px;

    background: transparent;
    border: 1px solid #ffffff;
    border-radius: 4px;

    cursor: pointer;

    padding: 7px;
}


.menu-toggle span {
    display: block;

    width: 100%;
    height: 2px;

    background: #ffffff;

    margin: 5px 0;
}



/* =========================================================
   HERO SECTION
========================================================= */

.hero-section {
    background: #f7f7f7;
    padding: 35px 0;
}


.hero-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}


.hero-image-area {
    width: 50%;
}


.image-placeholder {
    width: 100%;
    min-height: 400px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eeeeee;
}


.image-placeholder img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
}


.hero-content {
    width: 60%;
}


.hero-content h1 {
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.15;
    font-weight: 500;
    color: #B8860B;

    margin-bottom: 25px;
}


.hero-content p {
    font-size: 20px;
}


.primary-button {
    display: inline-block;

    background: #d60000;
    color: #ffffff;

    padding: 15px 100px;

    font-size: 33px;
    font-weight: 700;

    border-radius: 4px;

    margin-top: 10px;
}


.primary-button:hover {
    background: #b00000;
}



/* =========================================================
   HEADERS
========================================================= */

.black-header {
    background: #000000;
    color: #ffffff;

    min-height: 90px;

    display: flex;
    align-items: center;

    padding: 18px 0;
}


.black-header h2 {
    width: 100%;

    text-align: center;

    font-size: clamp(28px, 4vw, 42px);

    line-height: 1.2;

    font-weight: 700;

    margin: 0;
}



/* =========================================================
   NORMAL CONTENT
========================================================= */

.content-section {
    padding: 35px 0;
}


.content-section p {
    margin-bottom: 15px;
}



/* =========================================================
   IMAGE SECTION
========================================================= */

.image-section {
    padding: 50px 0;
}


.large-image {
    width: 100%;
    max-width: 1000px;

    margin: 0 auto;

    border-radius: 6px;
}


.image-section a {
    display: block;
}



/* =========================================================
   REVIEW ITEMS
========================================================= */

.review-item {
    display: flex;
    align-items: center;

    gap: 45px;

    padding: 35px 0;

    border-bottom: 1px solid #dddddd;
}


.review-image {
    width: 38%;
    flex-shrink: 0;
}


.review-image img {
    width: 100%;
    max-height: 300px;

    object-fit: contain;
}


.review-content {
    flex: 1;
}


.review-content h3 {
    font-size: 30px;
    font-weight: 700;
    color: #008000;
    margin-bottom: 15px;
}



/* =========================================================
   TWO COLUMN SECTION
========================================================= */

.two-column {
    display: flex;
    align-items: center;

    gap: 100px;
}


.column-image {
    width: 50%;
}


.column-image img {
    width: 250%;
    max-height: 400px;

    object-fit: contain;
}


.column-text {
    width: 75%;
}


.column-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0066cc;
}



/* =========================================================
   BENEFITS & INGREDIENTS
========================================================= */

.feature-list {
    list-style: none;

    padding: 0;
    margin: 0;
}


.feature-list li {
    display: flex;

    gap: 15px;

    margin-bottom: 35px;
}


.check-mark {
    flex-shrink: 0;

    font-size: 27px;
    font-weight: 900;
}


.feature-list h3 {
    font-size: 27px;

    line-height: 1.3;

    margin-bottom: 8px;
}


.feature-list p {
    margin-bottom: 0;
}



/* =========================================================
   PROS AND CONS
========================================================= */

.pros-cons-wrapper {
    display: flex;
    gap: 35px;
}


.pros-cons-box {
    width: 50%;

    padding: 35px;

    border: 1px solid #dddddd;

    background: #fafafa;

    border-radius: 6px;
}


.pros-cons-box h3 {
    font-size: 32px;

    margin-bottom: 20px;
}


.pros-cons-box ul {
    padding-left: 25px;
}


.pros-cons-box li {
    margin-bottom: 12px;
}



/* =========================================================
   DISCOUNT SECTION
========================================================= */

.discount-section {
    padding: 65px 0;

    text-align: center;
}


.discount-content {
    display: flex;
    flex-direction: column;

    align-items: center;
}


.discount-image {
    width: 100%;
    max-width: 900px;

    max-height: 550px;

    object-fit: contain;

    margin-bottom: 35px;
}


.discount-section h3 {
    font-size: 34px;

    margin-bottom: 15px;
}


.discount-section h4 {
    font-size: 21px;

    font-weight: 400;

    margin-bottom: 10px;
}



/* =========================================================
   CENTER BUTTON
========================================================= */

.center-button {
    text-align: center;

    margin-top: 30px;
}



/* =========================================================
   FAQ
========================================================= */

.faq-item {
    padding: 25px 0;

    border-bottom: 1px solid #dddddd;
}


.faq-item h3 {
    font-size: 27px;

    line-height: 1.3;

    margin-bottom: 12px;
}


.faq-item p {
    margin-bottom: 0;
}



/* =========================================================
   COMPLIANCE
========================================================= */

.compliance-section {
    padding-top: 60px;
    background-color: #f2f2f2;
    font-size: 19px;
}


.footer {
    background: #000000;

    color: #ffffff;

    margin-top: 50px;

    padding: 35px 0;
}


.footer-container {
    width: 90%;
    max-width: 1200px;

    margin: 0 auto;

    text-align: center;
}


.footer-links {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 25px;

    margin-bottom: 20px;
}


.footer-links a {
    color: #ffffff;

    font-size: 17px;
}


.footer-links a:hover {
    text-decoration: underline;
}


.copyright {
    font-size: 16px;

    margin: 0;
}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .nav-menu {
        gap: 20px;
    }


    .nav-links {
        gap: 15px;
    }


    .hero-wrapper {
        gap: 35px;
    }


    .hero-content h1 {
        font-size: 42px;
    }


    .review-item {
        gap: 30px;
    }

}



/* =========================================================
   MOBILE NAVIGATION
========================================================= */

@media (max-width: 768px) {

    .navbar {
        min-height: 65px;
    }


    .nav-container {
        min-height: 65px;
    }


    .menu-toggle {
        display: block;
    }


    .nav-menu {
        display: none;

        position: absolute;

        top: 65px;
        left: 0;

        width: 100%;

        background: #000000;

        padding: 20px;

        flex-direction: column;

        align-items: stretch;

        gap: 20px;
    }


    .nav-menu.active {
        display: flex;
    }


    .nav-links {
        flex-direction: column;

        align-items: center;

        gap: 0;
    }


    .nav-links a {
        width: 100%;

        text-align: center;

        padding: 10px 0;

        border-bottom: 1px solid #333333;
    }


    .nav-button {
        text-align: center;
    }


    /* Hero */

    .hero-section {
        padding: 45px 0;
    }


    .hero-wrapper {
        flex-direction: column;

        gap: 35px;
    }


    .hero-image-area {
        width: 100%;
    }


    .hero-content {
        width: 100%;

        text-align: center;
    }


    .hero-content h1 {
        font-size: 38px;
    }


    .hero-content p {
        font-size: 18px;
    }


    /* Two columns */

    .two-column {
        flex-direction: column;

        gap: 35px;
    }


    .column-image,
    .column-text {
        width: 100%;
    }


    .column-text {
        text-align: center;
    }


    /* Reviews */

    .review-item {
        flex-direction: column;

        text-align: center;

        gap: 25px;
    }


    .review-image {
        width: 100%;
    }


    /* Pros and Cons */

    .pros-cons-wrapper {
        flex-direction: column;

        gap: 25px;
    }


    .pros-cons-box {
        width: 100%;
    }

}



/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    body {
        font-size: 17px;
        line-height: 1.6;
    }


    .main-container,
    .text-container,
    .header-container,
    .nav-container {
        width: 92%;
    }


    .logo {
        font-size: 19px;
    }


    .hero-content h1 {
        font-size: 32px;
    }


    .black-header {
        min-height: 75px;

        padding: 15px 0;
    }


    .black-header h2 {
        font-size: 27px;
    }


    .content-section {
        padding: 45px 0;
    }


    .image-section {
        padding: 30px 0;
    }


    .feature-list h3 {
        font-size: 24px;
    }


    .feature-list li {
        gap: 10px;
    }


    .check-mark {
        font-size: 23px;
    }


    .review-content h3 {
        font-size: 27px;
    }


    .column-text h3 {
        font-size: 28px;
    }


    .pros-cons-box {
        padding: 25px;
    }


    .pros-cons-box h3 {
        font-size: 28px;
    }


    .discount-section h3 {
        font-size: 28px;
    }


    .discount-section h4 {
        font-size: 19px;
    }


    .primary-button {
        font-size: 17px;

        padding: 10px 20px;
    }

}