/* ==========================================================
   STAGE 3 — MEREK SEMEN YANG TERSEDIA
========================================================== */

.semen-brands-section {
    width: 100%;
    padding:
        clamp(72px, 7vw, 105px) 0 clamp(82px, 8vw, 120px);

    background-color: #ffffff;
}


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

.semen-brands-header {
    width: 100%;
    margin-bottom: 34px;
}

.semen-brands-title {
    margin: 0;

    color: #090909;

    font-size: clamp(34px, 3.2vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1.7px;
}


/* ==========================================================
   BRAND GRID
========================================================== */

.semen-brands-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 1.8vw, 28px);

    width: 100%;
}


/* ==========================================================
   BRAND CARD
========================================================== */

.semen-brand-card {
    display: grid;
    grid-template-columns:
        minmax(145px, 0.85fr) minmax(190px, 1.15fr);

    min-width: 0;
    min-height: 300px;

    background-color: #ffffff;
    border: 1px solid #d9d9d9;
    border-radius: 10px;

    overflow: hidden;

    transition:
        border-color 220ms ease,
        box-shadow 220ms ease,
        transform 220ms ease;
}

.semen-brand-card:hover {
    border-color: rgba(239, 0, 0, 0.42);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);

    transform: translateY(-5px);
}


/* ==========================================================
   PRODUCT IMAGE
========================================================== */

.semen-brand-media {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 0;
    padding:
        28px 18px 28px 28px;

    background:
        linear-gradient(135deg,
            #ffffff 0%,
            #fafafa 100%);
}

.semen-brand-image {
    display: block;

    width: 100%;
    max-width: 155px;
    height: 235px;

    object-fit: contain;
    object-position: center;

    transition: transform 450ms ease;
}

.semen-brand-card:hover .semen-brand-image {
    transform: scale(1.035);
}


/* ==========================================================
   CARD CONTENT
========================================================== */

.semen-brand-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    min-width: 0;
    padding:
        34px 28px 34px 12px;
}

.semen-brand-name {
    margin: 0;

    color: #090909;

    font-size: clamp(17px, 1.35vw, 22px);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.4px;
}

.semen-brand-description {
    max-width: 270px;
    margin: 18px 0 0;

    color: #404040;

    font-size: 13px;
    font-weight: 400;
    line-height: 1.75;
}


/* ==========================================================
   BRAND BUTTON
========================================================== */

.semen-brand-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;

    width: 100%;
    max-width: 225px;
    min-height: 48px;
    margin-top: 28px;
    padding:
        11px 16px;

    background-color: #ffffff;
    border: 1px solid #ef0000;
    border-radius: 5px;

    color: #ef0000;

    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;

    transition:
        background-color 180ms ease,
        color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.semen-brand-button svg {
    flex: 0 0 auto;

    width: 20px;
    height: 20px;

    transition: transform 180ms ease;
}

.semen-brand-button:hover {
    background-color: #ef0000;
    box-shadow: 0 10px 24px rgba(239, 0, 0, 0.17);

    color: #ffffff;

    transform: translateY(-2px);
}

.semen-brand-button:hover svg {
    transform: translateX(4px);
}


/* ==========================================================
   LARGE LAPTOP
========================================================== */

@media (max-width: 1380px) {
    .semen-brand-card {
        grid-template-columns:
            minmax(125px, 0.8fr) minmax(175px, 1.2fr);

        min-height: 280px;
    }

    .semen-brand-media {
        padding:
            24px 12px 24px 20px;
    }

    .semen-brand-image {
        max-width: 130px;
        height: 210px;
    }

    .semen-brand-content {
        padding:
            28px 20px 28px 8px;
    }

    .semen-brand-name {
        font-size: 17px;
    }

    .semen-brand-description {
        margin-top: 14px;

        font-size: 12px;
    }

    .semen-brand-button {
        margin-top: 22px;
        padding-inline: 13px;

        font-size: 11px;
    }
}


/* ==========================================================
   SMALL LAPTOP
========================================================== */

@media (max-width: 1080px) {
    .semen-brands-grid {
        grid-template-columns: 1fr;
    }

    .semen-brand-card {
        grid-template-columns:
            minmax(180px, 0.7fr) minmax(300px, 1.3fr);

        min-height: 280px;
    }

    .semen-brand-image {
        max-width: 155px;
        height: 220px;
    }

    .semen-brand-content {
        padding:
            36px 40px 36px 18px;
    }

    .semen-brand-name {
        font-size: 22px;
    }

    .semen-brand-description {
        max-width: 430px;

        font-size: 14px;
    }

    .semen-brand-button {
        max-width: 245px;

        font-size: 13px;
    }
}


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

@media (max-width: 800px) {
    .semen-brands-section {
        padding:
            68px 0 82px;
    }

    .semen-brands-header {
        margin-bottom: 28px;
    }

    .semen-brands-title {
        font-size: 40px;
    }

    .semen-brand-card {
        grid-template-columns:
            minmax(150px, 0.75fr) minmax(230px, 1.25fr);
    }

    .semen-brand-content {
        padding:
            30px 28px 30px 14px;
    }
}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 560px) {
    .semen-brands-section {
        padding:
            54px 0 68px;
    }

    .semen-brands-title {
        font-size: 34px;
        letter-spacing: -1.2px;
    }

    .semen-brands-grid {
        gap: 15px;
    }

    .semen-brand-card {
        display: flex;
        flex-direction: column;

        min-height: 0;
    }

    .semen-brand-media {
        min-height: 245px;
        padding:
            28px 24px 12px;
    }

    .semen-brand-image {
        max-width: 145px;
        height: 210px;
    }

    .semen-brand-content {
        align-items: flex-start;

        padding:
            22px 24px 28px;
    }

    .semen-brand-name {
        font-size: 21px;
    }

    .semen-brand-description {
        margin-top: 14px;

        font-size: 13px;
        line-height: 1.7;
    }

    .semen-brand-button {
        max-width: none;
        margin-top: 22px;

        font-size: 13px;
    }
}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 390px) {
    .semen-brands-title {
        font-size: 30px;
    }

    .semen-brand-content {
        padding-inline: 20px;
    }
}