* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #ffffff;
    color: #171717;
}


/* =====================================
   MAIN PAGE
===================================== */

.page {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 28px 6vw 18px;
}


/* =====================================
   HEADER
===================================== */

.header {
    text-align: center;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 140px;
    height: auto;
    max-width: none;
    max-height: none;

}


/* =====================================
   HERO
===================================== */

.hero {
    text-align: center;
    margin-top: 20px;
}

.eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1;
}

.subheading {
    margin-top: 10px;
    font-size: 14px;
    color: #6b6b6b;
}


/* =====================================
   PRODUCTS
===================================== */

.products {
    width: 100%;
    max-width: 900px;
    margin: 25px auto 18px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.product {
    text-align: center;
}

.product-image {
    height: 260px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image img {
    max-width: 100%;
    height: 250px;
    object-fit: contain;

    transition: transform 0.25s ease;
}

.product:hover .product-image img {
    transform: translateY(-6px);
}

.product h2 {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-top: 5px;
}

.variant {
    font-size: 10px;
    color: #777;
    margin-top: 5px;
}

.price {
    font-size: 15px;
    font-weight: 700;
    margin-top: 6px;
}


/* =====================================
   CLAIMS
===================================== */

.claims {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.2px;

    margin: 5px 0 20px;
}

.claims i {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #a96c35;
}


/* =====================================
   BUY BUTTONS
===================================== */

.buy {
    display: flex;
    justify-content: center;
    gap: 12px;

    margin-bottom: 22px;
}

.button {
    min-width: 175px;
    padding: 13px 20px;

    text-align: center;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;

    text-decoration: none;

    transition: all 0.2s ease;
}

.amazon {
    background: #171717;
    color: white;
}

.whatsapp {
    background: transparent;
    color: #171717;
    border: 1px solid #171717;
}

.button:hover {
    transform: translateY(-2px);
}

.amazon:hover {
    background: #a96c35;
}

.whatsapp:hover {
    background: #171717;
    color: white;
}


/* =====================================
   FOOTER
===================================== */

.footer {
    border-top: 1px solid #dedbd5;

    padding-top: 15px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    max-width: 900px;
    width: 100%;

    margin: auto auto 0;

    font-size: 9px;
    color: #777;

    line-height: 1.6;
}

.footer strong {
    color: #171717;

    font-size: 10px;
    letter-spacing: 1px;
}

.footer p {
    margin-top: 4px;
}

.footer-care {
    text-align: right;
}

.footer a {
    color: inherit;
    text-decoration: none;
}

.footer a:hover {
    color: #a96c35;
}


/* =====================================
   COPYRIGHT
===================================== */

.copyright {
    text-align: center;

    margin-top: 10px;

    font-size: 8px;
    color: #999;
}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 700px) {

    body {
        overflow-y: auto;
    }

    .page {
        padding: 20px 18px 15px;
    }

    .header {
        height: 45px;
    }

    .logo {
        max-width: 120px;
        max-height: 45px;
    }

    .hero {
        margin-top: 15px;
    }

    .eyebrow {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .subheading {
        font-size: 12px;
    }

    .products {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-top: 20px;
    }

    .product-image {
        height: 190px;
    }

    .product-image img {
        height: 185px;
    }

    .product h2 {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .variant {
        display: none;
    }

    .price {
        font-size: 13px;
    }

    .claims {
        font-size: 7px;
        gap: 7px;
        margin-top: 15px;
    }

    .buy {
        gap: 8px;
    }

    .button {
        min-width: 145px;
        padding: 12px 8px;
        font-size: 8px;
    }

    .footer {
        font-size: 7px;
    }

    .footer strong {
        font-size: 8px;
    }

    .copyright {
        font-size: 7px;
    }
}


/* =====================================
   VERY SMALL SCREENS
===================================== */

@media (max-width: 380px) {

    .product-image {
        height: 155px;
    }

    .product-image img {
        height: 150px;
    }

    .claims {
        font-size: 6px;
    }

    .button {
        min-width: 130px;
    }

}