/* =========================================================
   GLOBAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #352a25;
    background: #faf9f7;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
    display: block;
}

button {
    font-family: inherit;
}

.container {
    width: min(1180px, 90%);
    margin: auto;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(250, 246, 240, 0.94);

    border-bottom: 1px solid #eadfd4;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-wrapper {
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* BRAND */

.brand-logo {
    display: flex;
    align-items: center;

    gap: 11px;

    color: #3d3029;

    flex-shrink: 0;
}

.brand-logo img {
    width: 40px;
    height: 40px;

    object-fit: contain;
}

.brand-logo span {
    font-size: 20px;
    font-weight: 800;

    letter-spacing: 4px;

    line-height: 1;
}


/* NAVIGATION */

nav {
    display: flex;
    align-items: center;

    gap: 30px;

    font-size: 13px;
}

nav a {
    color: #75675d;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

nav a:hover {
    color: #a87559;
}


/* NAVBAR WHATSAPP */

.nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 11px 19px;

    background: #3f9b68;
    color: #fff !important;

    border: none;
    border-radius: 30px;

    font-size: 12px;
    font-weight: 600;

    box-shadow:
        0 5px 15px rgba(63, 155, 104, 0.15);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.nav-button:hover {
    background: #347f55;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(63, 155, 104, 0.22);
}

.nav-button img {
    width: 17px;
    height: 17px;

    object-fit: contain;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 600px;

    padding: 0;

    overflow: hidden;

    background:
        linear-gradient(
            105deg,
            #f7eee6 0%,
            #f8f0e9 45%,
            #f1dfcf 100%
        );
}

.hero-content {
    min-height: 600px;

    display: grid;

    grid-template-columns: 46% 54%;

    align-items: center;

    position: relative;
}


/* HERO TEXT */

.hero-text {
    position: relative;

    z-index: 5;

    padding: 70px 0;
}

.eyebrow {
    display: block;

    margin-bottom: 15px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2.5px;

    color: #a87559;
}

.hero h1 {
    max-width: 650px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(48px, 6vw, 76px);

    line-height: 0.98;

    letter-spacing: -3px;

    color: #352a25;
}

.hero h1 span {
    display: block;

    font-style: italic;

    font-weight: 400;
}

.hero p {
    max-width: 520px;

    margin: 25px 0;

    color: #77685e;

    font-size: 14px;

    line-height: 1.7;
}


/* HERO BUTTONS */

.hero-buttons {
    display: flex;
    align-items: center;

    gap: 12px;
}

.button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 13px 22px;

    border-radius: 30px;

    font-size: 12px;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.button:hover {
    transform: translateY(-2px);
}


/* PRIMARY BUTTON */

.button.primary {
    background: #40332c;

    color: #fff;

    box-shadow:
        0 8px 20px rgba(64, 51, 44, 0.10);
}

.button.primary:hover {
    background: #a87559;

    box-shadow:
        0 10px 25px rgba(168, 117, 89, 0.20);
}


/* SECONDARY BUTTON */

.button.secondary {
    background: rgba(255, 252, 248, 0.65);

    border: 1px solid #cdbdaf;

    color: #5b4b42;
}

.button.secondary:hover {
    background: #fff;

    border-color: #a87559;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.hero-image {
    position: relative;

    height: 540px;

    overflow: hidden;

    -webkit-mask-image:
        linear-gradient(
            to right,

            transparent 0%,

            rgba(0, 0, 0, 0.10) 7%,

            rgba(0, 0, 0, 0.35) 16%,

            rgba(0, 0, 0, 0.70) 27%,

            black 39%,

            black 100%
        );

    mask-image:
        linear-gradient(
            to right,

            transparent 0%,

            rgba(0, 0, 0, 0.10) 7%,

            rgba(0, 0, 0, 0.35) 16%,

            rgba(0, 0, 0, 0.70) 27%,

            black 39%,

            black 100%
        );
}

.hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    display: block;
}


/* HERO LEFT FADE */

.hero-image::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            to right,

            #f7eee6 0%,

            rgba(247, 238, 230, 0.96) 5%,

            rgba(247, 238, 230, 0.82) 13%,

            rgba(247, 238, 230, 0.58) 23%,

            rgba(247, 238, 230, 0.28) 33%,

            rgba(247, 238, 230, 0.08) 42%,

            transparent 55%
        );
}


/* HERO BOTTOM FADE */

.hero-image::before {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 22%;

    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            to top,

            rgba(241, 223, 207, 0.38),

            transparent
        );
}


/* =========================================================
   TRUST / BENEFITS
========================================================= */

.trust {
    background: #fffaf5;

    border-top: 1px solid #eee2d7;

    border-bottom: 1px solid #eee2d7;

    padding: 16px 0;
}

.trust-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 12px;
}


/* CARD */

.trust-card {
    display: flex;

    align-items: center;

    gap: 14px;

    padding: 17px 18px;

    border-radius: 16px;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.trust-card:hover {
    background: #fff;

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(92, 66, 48, 0.08);
}


/* ICON */

.trust-icon {
    width: 46px;
    height: 46px;

    min-width: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    font-size: 21px;

    font-weight: 600;

    transition:
        transform 0.25s ease;
}

.trust-card:hover .trust-icon {
    transform:
        rotate(-5deg)
        scale(1.08);
}


/* ICON COLORS */

.custom-icon {
    background: #f8eee7;

    color: #a87559;
}

.size-icon {
    background: #eef1f3;

    color: #71808a;
}

.mdf-icon {
    background: #f3ece3;

    color: #96734e;
}

.glossy-icon {
    background: #f8edf2;

    color: #ad718f;
}


/* TRUST TEXT */

.trust-text {
    display: flex;

    flex-direction: column;

    gap: 2px;

    min-width: 0;
}

.trust-text strong {
    font-size: 14px;

    font-weight: 700;

    color: #3d3029;
}

.trust-text span {
    font-size: 10px;

    color: #8a7c72;

    line-height: 1.45;
}


/* =========================================================
   GENERAL SECTION
========================================================= */

.section {
    padding: 100px 0;
}

.section-heading {
    margin-bottom: 45px;
}

.section-heading h2 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 44px;

    line-height: 1.1;

    letter-spacing: -1.5px;

    color: #352a25;
}

.section-heading p {
    margin-top: 12px;

    color: #81746b;

    font-size: 13px;
}


/* =========================================================
   PRODUCTS
========================================================= */

.product-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.product-card {
    background: #fff;

    border: 1px solid #ebe1d8;

    border-radius: 14px;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);

    border-color: #ddcbbd;

    box-shadow:
        0 18px 40px rgba(70, 50, 35, 0.10);
}

.product-image {
    aspect-ratio: 1 / 1;

    overflow: hidden;

    background: #eee7df;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}

.product-info {
    padding: 18px;
}

.product-category {
    font-size: 9px;

    letter-spacing: 1.5px;

    color: #a87559;
}

.product-info h3 {
    margin: 7px 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 18px;

    line-height: 1.25;

    color: #3d3029;
}

.product-info p {
    min-height: 65px;

    font-size: 12px;

    color: #81746b;

    line-height: 1.6;
}

.product-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 18px;

    padding-top: 14px;

    border-top: 1px solid #eee7e0;
}

.product-bottom strong {
    font-size: 13px;

    color: #3d3029;
}

.product-bottom button {
    border: none;

    background: #40332c;

    color: #fff;

    padding: 9px 15px;

    border-radius: 20px;

    cursor: pointer;

    font-size: 10px;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.product-bottom button:hover {
    background: #a87559;

    transform: translateY(-1px);
}


/* =========================================================
   MARKETPLACE
========================================================= */

.marketplace-section {
    background: #fffaf5;

    padding: 85px 0;

    border-top: 1px solid #eee2d7;
}

.marketplace-container {
    text-align: center;
}

.marketplace-heading {
    max-width: 650px;

    margin: 0 auto 40px;
}

.marketplace-heading .eyebrow {
    margin-bottom: 12px;
}

.marketplace-heading h2 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 42px;

    line-height: 1.1;

    letter-spacing: -1.5px;

    margin-bottom: 12px;

    color: #352a25;
}

.marketplace-heading p {
    color: #81746b;

    font-size: 13px;

    line-height: 1.7;
}


/* MARKETPLACE GRID */

.marketplace-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 15px;

    text-align: left;
}


/* MARKETPLACE CARD */

.marketplace-card {
    display: flex;

    align-items: center;

    gap: 14px;

    min-height: 95px;

    padding: 20px;

    background: #fff;

    border: 1px solid #e6dcd3;

    border-radius: 15px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.marketplace-card:hover {
    transform: translateY(-5px);

    border-color: #cdb7a6;

    box-shadow:
        0 15px 35px rgba(70, 50, 35, 0.09);
}


/* MARKETPLACE LOGO */

.marketplace-logo {
    width: 48px;
    height: 48px;

    min-width: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;
}

.marketplace-logo img {
    width: 25px;
    height: 25px;

    object-fit: contain;
}


/* LOGO COLORS */

.tiktok-logo {
    background: #f1efed;
}

.tokopedia-logo {
    background: #edf6ef;
}

.shopee-logo {
    background: #fff0ea;
}

.instagram-logo {
    background: #f6edf3;
}


/* MARKETPLACE INFO */

.marketplace-info {
    display: flex;

    flex-direction: column;

    flex: 1;

    min-width: 0;
}

.marketplace-info span {
    margin-bottom: 3px;

    font-size: 10px;

    color: #95877d;
}

.marketplace-info strong {
    font-size: 13px;

    color: #40332c;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}


/* ARROW */

.marketplace-arrow {
    width: 30px;
    height: 30px;

    min-width: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid #e3d9d0;

    font-size: 13px;

    color: #81746b;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.marketplace-card:hover .marketplace-arrow {
    background: #40332c;

    color: #fff;

    border-color: #40332c;
}


/* =========================================================
   CUSTOM
========================================================= */

.custom-section {
    background: #40332c;

    color: #fff;

    padding: 100px 0;
}

.custom-content {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;
}

.custom-section .eyebrow {
    color: #d2aa8d;
}

.custom-section h2 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 48px;

    line-height: 1.05;

    letter-spacing: -2px;
}

.custom-section p {
    margin: 22px 0;

    color: #d0c5bd;

    font-size: 13px;

    line-height: 1.7;
}

.custom-section .button.primary {
    background: #fff8f1;

    color: #40332c;
}

.custom-section .button.primary:hover {
    background: #ead6c6;
}


/* CUSTOM LIST */

.custom-list > div {
    display: flex;

    gap: 25px;

    padding: 20px 0;

    border-bottom: 1px solid #66564c;
}

.custom-list span {
    color: #c49b7d;
}

.custom-list p {
    margin: 0;

    color: #d0c5bd;
}


/* =========================================================
   STEPS
========================================================= */

.steps {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.step {
    border-top: 2px solid #a87559;

    padding-top: 20px;
}

.step > span {
    color: #a7958a;

    font-size: 11px;
}

.step h3 {
    margin: 15px 0 8px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 18px;

    color: #40332c;
}

.step p {
    font-size: 12px;

    color: #81746b;
}


/* =========================================================
   ABOUT
========================================================= */

.about {
    padding: 100px 0;

    background:
        linear-gradient(
            135deg,
            #f0e7df,
            #eee4db
        );
}

.about-content {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}

.about h2 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 46px;

    line-height: 1.05;

    color: #40332c;
}

.about p {
    color: #75675d;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    background: #302722;

    color: #fff;
}

.footer-content {
    min-height: 150px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.footer-content strong {
    letter-spacing: 3px;

    font-size: 18px;
}

.footer-content p {
    color: #b7aaa2;

    font-size: 11px;
}


/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    background: #3f9b68;

    color: #fff !important;

    font-weight: 600;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.whatsapp-button:hover {
    background: #347f55;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(63, 155, 104, 0.20);
}

.whatsapp-button img {
    width: 18px;
    height: 18px;

    object-fit: contain;
}


/* FLOATING WHATSAPP */

.whatsapp {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 999;

    padding: 13px 20px;

    border-radius: 30px;

    font-size: 13px;

    box-shadow:
        0 8px 30px rgba(63, 155, 104, 0.22);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    /* NAV */

    nav {
        display: none;
    }


    /* HERO */

    .hero {
        padding: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;

        gap: 0;

        min-height: auto;
    }

    .hero-text {
        padding: 70px 0 40px;
    }

    .hero-image {
        height: 430px;

        -webkit-mask-image:
            linear-gradient(
                to bottom,
                black 0%,
                black 80%,
                transparent 100%
            );

        mask-image:
            linear-gradient(
                to bottom,
                black 0%,
                black 80%,
                transparent 100%
            );
    }

    .hero-image::after {
        background:
            linear-gradient(
                to bottom,
                transparent 0%,
                transparent 65%,
                rgba(241, 223, 207, 0.55) 100%
            );
    }

    .hero-image::before {
        display: none;
    }


    /* TRUST */

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* PRODUCTS */

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* MARKETPLACE */

    .marketplace-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* STEPS */

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }


    /* CUSTOM + ABOUT */

    .custom-content,
    .about-content {
        grid-template-columns: 1fr;

        gap: 45px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    /* NAV */

    .nav-wrapper {
        height: 68px;
    }

    .brand-logo {
        gap: 9px;
    }

    .brand-logo img {
        width: 34px;
        height: 34px;
    }

    .brand-logo span {
        font-size: 17px;

        letter-spacing: 3px;
    }

    .nav-button {
        display: none;
    }


    /* HERO */

    .hero h1 {
        font-size: 47px;

        letter-spacing: -2px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-wrap: wrap;
    }

    .hero-image {
        height: 350px;
    }


    /* SECTION */

    .section {
        padding: 70px 0;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2 {
        font-size: 36px;
    }


    /* TRUST */

    .trust {
        padding: 12px 0;
    }

    .trust-grid {
        grid-template-columns: 1fr;

        gap: 4px;
    }

    .trust-card {
        padding: 14px;
    }


    /* PRODUCTS */

    .product-grid {
        grid-template-columns: 1fr;
    }


    /* MARKETPLACE */

    .marketplace-section {
        padding: 65px 0;
    }

    .marketplace-heading h2 {
        font-size: 34px;
    }

    .marketplace-grid {
        grid-template-columns: 1fr;
    }

    .marketplace-card {
        min-height: 82px;
    }


    /* STEPS */

    .steps {
        grid-template-columns: 1fr;
    }


    /* CUSTOM */

    .custom-section h2,
    .about h2 {
        font-size: 38px;
    }


    /* ABOUT */

    .about {
        padding: 70px 0;
    }


    /* FOOTER */

    .footer-content {
        min-height: 130px;

        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        gap: 15px;
    }


    /* FLOATING WHATSAPP */

    .whatsapp {
        right: 15px;

        bottom: 15px;

        padding: 12px 17px;

        font-size: 12px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .container {
        width: 92%;
    }


    /* HERO */

    .hero h1 {
        font-size: 40px;
    }

    .hero-image {
        height: 300px;
    }


    /* TRUST */

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-card {
        padding: 13px;
    }

    .trust-icon {
        width: 42px;
        height: 42px;

        min-width: 42px;

        font-size: 19px;
    }


    /* MARKETPLACE */

    .marketplace-logo {
        width: 44px;
        height: 44px;

        min-width: 44px;
    }

    .marketplace-logo img {
        width: 23px;
        height: 23px;
    }


    /* BUTTON */

    .button {
        padding: 12px 18px;
    }
}