* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f5f5;
    color: #151515;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}


/* ==================================================
   HEADER
================================================== */

.header {
    height: 78px;
    padding: 0 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #111111;
    color: white;

    position: sticky;
    top: 0;
    z-index: 100;
}

.header .logo {
    width: 150px;
    height: 64px;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.header .logo img {
    width: 120%;
    height: 120%;

    object-fit: contain;
    display: block;

    transform: translateY(10px);
    transform: translatex(30px);
    
}

.shop-button {
    background: white;
    color: #111111;

    padding: 12px 20px;

    border-radius: 26px;

    font-size: 17px;
    font-weight: bold;

    white-space: nowrap;
}


/* ==================================================
   HERO
================================================== */

.hero {
    background: #111111;
    color: white;

    padding: 42px 24px 60px;

    display: flex;
    flex-direction: column;

    gap: 34px;
}

.hero-image {
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;

    display: block;

    border-radius: 20px;

    background: white;
}

.hero-content {
    width: 100%;
}

.eyebrow {
    color: #aaaaaa;

    font-size: 14px;
    font-weight: bold;

    letter-spacing: 3px;

    margin-bottom: 15px;
}

.hero h1 {
    font-size: 48px;

    line-height: 1.02;

    margin-bottom: 22px;

    letter-spacing: -1px;
}

.hero h1 span {
    display: block;
}

.hero-content > p {
    color: #cccccc;

    font-size: 18px;

    line-height: 1.6;

    margin-bottom: 28px;
}


/* ==================================================
   WHATSAPP BUTTON
================================================== */

.whatsapp-button {
    display: block;

    width: 100%;

    background: #20c063;
    color: white;

    text-align: center;

    padding: 17px 18px;

    border-radius: 12px;

    font-size: 17px;
    font-weight: bold;

    transition: 0.2s;
}

.whatsapp-button:active {
    transform: scale(0.98);
}


/* ==================================================
   SECTION
================================================== */

.section {
    padding: 60px 24px;
}

.section-label {
    color: #888888;

    font-size: 12px;
    font-weight: bold;

    letter-spacing: 3px;

    margin-bottom: 10px;
}

h2 {
    font-size: 36px;

    line-height: 1.15;

    margin-bottom: 28px;
}


/* ==================================================
   PRODUCTS
================================================== */

.products {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 16px;
}

.product-card {
    background: white;

    border-radius: 17px;

    overflow: hidden;

    box-shadow: 0 5px 22px rgba(0, 0, 0, 0.08);
}

.product-card > img {
    width: 100%;

    aspect-ratio: 1 / 1;

    object-fit: cover;

    display: block;

    background: white;
}

.product-info {
    padding: 16px;
}

.product-info h3 {
    font-size: 18px;

    line-height: 1.25;

    margin-bottom: 5px;
}

.volume {
    color: #888888;

    font-size: 13px;

    margin-bottom: 9px;
}

.product-info > p {
    color: #666666;

    font-size: 13px;

    line-height: 1.5;

    margin-bottom: 12px;
}

.price {
    font-size: 19px;

    font-weight: 800;

    margin-bottom: 14px;
}

.product-card .whatsapp-button {
    padding: 12px 8px;

    font-size: 13px;

    border-radius: 9px;
}


/* ==================================================
   PLACEHOLDER PRODUK
================================================== */

.product-placeholder .placeholder {
    width: 100%;

    aspect-ratio: 1 / 1;

    background: #eeeeee;

    color: #999999;

    display: flex;

    align-items: center;
    justify-content: center;

    text-align: center;

    font-size: 11px;

    font-weight: bold;

    letter-spacing: 1px;
}


/* ==================================================
   ADVANTAGES
================================================== */

.advantages {
    background: white;
}

.advantage-list {
    display: flex;

    flex-direction: column;

    gap: 25px;
}

.advantage {
    display: flex;

    gap: 15px;

    align-items: flex-start;
}

.advantage-icon {
    min-width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #f3f3f3;

    border-radius: 13px;

    font-size: 22px;
}

.advantage h3 {
    font-size: 18px;

    margin-bottom: 4px;
}

.advantage p {
    color: #666666;

    font-size: 14px;
}


/* ==================================================
   TOKO
================================================== */

.shop-section {
    background: #111111;

    color: white;

    text-align: center;

    padding: 65px 24px;
}

.shop-section .section-label {
    color: #888888;
}

.shop-section h2 {
    margin-bottom: 12px;
}

.shop-section > p {
    color: #bbbbbb;

    font-size: 15px;

    margin-bottom: 28px;
}

.shop-links {
    display: flex;

    flex-direction: column;

    gap: 13px;
}

.marketplace {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    background: white;
    color: #111111;

    padding: 17px;

    border-radius: 12px;

    font-size: 16px;

    font-weight: bold;
}


/* ==================================================
   FOOTER
================================================== */

footer {
    background: #080808;

    color: white;

    text-align: center;

    padding: 40px 24px;
}

footer p {
    color: #888888;

    font-size: 14px;
}

.copyright {
    margin-top: 18px;

    color: #555555 !important;

    font-size: 11px !important;
}


/* ==================================================
   FLOATING WHATSAPP
================================================== */

.floating-whatsapp {
    position: fixed;

    right: 20px;
    bottom: 20px;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #20c063;

    color: white;

    border-radius: 50%;

    font-size: 25px;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);

    z-index: 200;
}


/* ==================================================
   TABLET / DESKTOP
================================================== */

@media (min-width: 700px) {

    .header {
        height: 88px;
        padding: 0 5%;
    }

    .header .logo {
        width: 165px;
        height: 72px;
    }

    .shop-button {
        padding: 14px 24px;
        font-size: 18px;
    }


    /* ---------- HERO ---------- */

    .hero {
        padding: 55px 8% 75px;

        flex-direction: row;

        align-items: center;

        gap: 70px;
    }

    .hero-image {
        width: 48%;
    }

    .hero-content {
        width: 52%;
    }

    .eyebrow {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .hero h1 {
        font-size: 64px;

        line-height: 1.00;

        letter-spacing: -2px;

        margin-bottom: 24px;
    }

    .hero-content > p {
        font-size: 19px;

        max-width: 580px;

        margin-bottom: 30px;
    }

    .hero .whatsapp-button {
        max-width: 520px;

        padding: 18px;

        font-size: 18px;
    }


    /* ---------- SECTION ---------- */

    .section {
        padding-left: 8%;
        padding-right: 8%;
    }

    h2 {
        font-size: 40px;
    }


    /* ---------- PRODUCTS ---------- */

    .products {
        grid-template-columns: repeat(3, 1fr);

        gap: 20px;
    }

    .product-info {
        padding: 18px;
    }

    .product-info h3 {
        font-size: 21px;
    }

    .product-info > p {
        font-size: 14px;
    }

    .price {
        font-size: 22px;
    }


    /* ---------- TOKO ---------- */

    .shop-section {
        padding-left: 8%;
        padding-right: 8%;
    }

    .shop-links {
        max-width: 500px;

        margin: auto;
    }
}


/* ==================================================
   LAYAR BESAR
================================================== */

@media (min-width: 1100px) {

    .header .logo {
        width: 175px;
        height: 76px;
    }

    .hero {
        padding-top: 65px;
        padding-bottom: 85px;

        gap: 80px;
    }

    .hero h1 {
        font-size: 72px;
    }

    .hero-content > p {
        font-size: 20px;
    }

    .hero-image img {
        border-radius: 24px;
    }
}
