/* ==========================================================
   STAGE 4 — INFORMASI PRODUK
========================================================== */

.product-information-stage-four {
    width: 100%;
    padding:
        clamp(85px, 8vw, 130px) 0;

    background-color: #ffffff;
}


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

.product-information-stage-header {
    display: flex;
    align-items: center;
    gap: 24px;

    margin-bottom: 42px;
}

.product-information-stage-chevron {
    position: relative;

    flex: 0 0 auto;

    width: 23px;
    height: 40px;
}

.product-information-stage-chevron::before,
.product-information-stage-chevron::after {
    position: absolute;
    left: 6px;

    width: 7px;
    height: 24px;

    background-color: #ef0000;

    content: "";
}

.product-information-stage-chevron::before {
    top: 0;

    transform: rotate(-39deg);
    transform-origin: bottom center;
}

.product-information-stage-chevron::after {
    bottom: 0;

    transform: rotate(39deg);
    transform-origin: top center;
}

.product-information-stage-title {
    margin: 0;

    color: #090909;

    font-size: clamp(38px, 3.8vw, 58px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
}


/* ==========================================================
   INFORMATION TABLE
========================================================== */

.product-information-stage-table {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    width: 100%;

    background-color: #ffffff;
    border: 1px solid #d8d8d8;
    border-radius: 12px;

    overflow: hidden;
}

.product-information-stage-column {
    display: flex;
    flex-direction: column;

    min-width: 0;
}

.product-information-stage-column-right {
    border-left: 1px solid #d8d8d8;
}

.product-information-stage-row {
    display: grid;
    grid-template-columns:
        minmax(190px, 0.88fr) minmax(250px, 1.12fr);

    min-height: 100px;

    border-bottom: 1px solid #d8d8d8;
}

.product-information-stage-column .product-information-stage-row:last-child {
    border-bottom: 0;
}

.product-information-stage-row-large {
    flex: 1;
    min-height: 200px;
}

.product-information-stage-label,
.product-information-stage-value {
    display: flex;
    align-items: center;

    min-width: 0;
    padding: 24px 34px;
}

.product-information-stage-label {
    border-right: 1px solid #d8d8d8;

    color: #111111;

    font-size: clamp(15px, 1.15vw, 19px);
    font-weight: 700;
    line-height: 1.45;
}

.product-information-stage-value {
    color: #353535;

    font-size: clamp(14px, 1.05vw, 18px);
    font-weight: 400;
    line-height: 1.55;
}


/* ==========================================================
   INFORMATION NOTICE
========================================================== */

.product-information-stage-notice {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;

    width: 100%;
    min-height: 88px;
    margin-top: 32px;
    padding: 18px 28px;

    background-color: #ffffff;
    border: 1px solid #9e9e9e;
    border-radius: 9px;

    color: #111111;

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

.product-information-stage-notice:hover {
    border-color: #ef0000;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);

    transform: translateY(-2px);
}

.product-information-stage-notice-icon {
    flex: 0 0 auto;

    width: 45px;
    height: 45px;

    color: #111111;
}

.product-information-stage-notice-icon svg {
    display: block;

    width: 100%;
    height: 100%;
}

.product-information-stage-notice-text {
    margin: 0;

    color: #292929;

    font-size: clamp(14px, 1.05vw, 17px);
    font-weight: 400;
    line-height: 1.65;
}

.product-information-stage-notice-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    color: #ef0000;

    transition: transform 180ms ease;
}

.product-information-stage-notice-arrow svg {
    width: 26px;
    height: 26px;
}

.product-information-stage-notice:hover .product-information-stage-notice-arrow {
    transform: translateX(5px);
}


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

@media (max-width: 1380px) {
    .product-information-stage-row {
        grid-template-columns:
            minmax(170px, 0.85fr) minmax(220px, 1.15fr);

        min-height: 92px;
    }

    .product-information-stage-row-large {
        min-height: 184px;
    }

    .product-information-stage-label,
    .product-information-stage-value {
        padding:
            21px 26px;
    }

    .product-information-stage-label {
        font-size: 16px;
    }

    .product-information-stage-value {
        font-size: 15px;
    }
}


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

@media (max-width: 1100px) {
    .product-information-stage-table {
        grid-template-columns: 1fr;
    }

    .product-information-stage-column-right {
        border-top: 1px solid #d8d8d8;
        border-left: 0;
    }

    .product-information-stage-row,
    .product-information-stage-row-large {
        grid-template-columns:
            minmax(210px, 0.8fr) minmax(280px, 1.2fr);

        min-height: 92px;
    }

    .product-information-stage-column .product-information-stage-row:last-child {
        border-bottom: 0;
    }

    .product-information-stage-column:first-child .product-information-stage-row:last-child {
        border-bottom: 0;
    }
}


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

@media (max-width: 800px) {
    .product-information-stage-four {
        padding:
            75px 0;
    }

    .product-information-stage-header {
        gap: 18px;

        margin-bottom: 32px;
    }

    .product-information-stage-title {
        font-size: 42px;
        letter-spacing: -1.5px;
    }

    .product-information-stage-row,
    .product-information-stage-row-large {
        grid-template-columns:
            minmax(170px, 0.85fr) minmax(220px, 1.15fr);

        min-height: 88px;
    }

    .product-information-stage-label,
    .product-information-stage-value {
        padding:
            19px 21px;
    }

    .product-information-stage-label {
        font-size: 15px;
    }

    .product-information-stage-value {
        font-size: 14px;
    }

    .product-information-stage-notice {
        gap: 18px;

        padding:
            18px 21px;
    }

    .product-information-stage-notice-icon {
        width: 40px;
        height: 40px;
    }

    .product-information-stage-notice-text {
        font-size: 14px;
    }
}


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

@media (max-width: 560px) {
    .product-information-stage-four {
        padding:
            58px 0;
    }

    .product-information-stage-header {
        align-items: flex-start;
        gap: 14px;

        margin-bottom: 25px;
    }

    .product-information-stage-chevron {
        width: 18px;
        height: 32px;
        margin-top: 2px;
    }

    .product-information-stage-chevron::before,
    .product-information-stage-chevron::after {
        left: 5px;

        width: 5px;
        height: 19px;
    }

    .product-information-stage-title {
        font-size: 34px;
        letter-spacing: -1.2px;
    }

    .product-information-stage-table {
        border-radius: 9px;
    }

    .product-information-stage-row,
    .product-information-stage-row-large {
        grid-template-columns: 1fr;

        min-height: 0;
    }

    .product-information-stage-label,
    .product-information-stage-value {
        min-height: 62px;
        padding:
            17px 19px;
    }

    .product-information-stage-label {
        background-color: #fafafa;
        border-right: 0;
        border-bottom: 1px solid #e3e3e3;

        font-size: 15px;
    }

    .product-information-stage-value {
        font-size: 14px;
    }

    .product-information-stage-notice {
        grid-template-columns: auto minmax(0, 1fr);
        align-items: flex-start;
        gap: 15px;

        margin-top: 22px;
        padding:
            18px 17px;
    }

    .product-information-stage-notice-arrow {
        display: none;
    }

    .product-information-stage-notice-icon {
        width: 36px;
        height: 36px;
    }

    .product-information-stage-notice-text {
        font-size: 13px;
        line-height: 1.65;
    }
}


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

@media (max-width: 390px) {
    .product-information-stage-title {
        font-size: 30px;
    }

    .product-information-stage-label,
    .product-information-stage-value {
        padding-inline: 16px;
    }
}