/* ==========================================================
   STAGE 7 — CARA MEMESAN
========================================================== */

.product-order-stage-seven {
    width: 100%;
    padding:
        clamp(80px, 8vw, 125px) 0 clamp(90px, 9vw, 140px);

    background-color: #ffffff;
    border: 0;
}


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

.product-order-stage-header {
    width: 100%;
    margin-bottom: 52px;
}

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

    color: #090909;

    font-size: clamp(38px, 3.7vw, 56px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -2px;
}


/* ==========================================================
   PROCESS LAYOUT
========================================================== */

.product-order-stage-process {
    display: grid;
    grid-template-columns:
        minmax(150px, 1fr) minmax(70px, 0.45fr) minmax(150px, 1fr) minmax(70px, 0.45fr) minmax(150px, 1fr) minmax(70px, 0.45fr) minmax(150px, 1fr) minmax(70px, 0.45fr) minmax(150px, 1fr);
    align-items: start;

    width: 100%;
}


/* ==========================================================
   STEP
========================================================== */

.product-order-stage-step {
    display: flex;
    flex-direction: column;
    align-items: center;

    min-width: 0;

    text-align: center;
}

.product-order-stage-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;
    margin-bottom: 28px;

    background-color: #ffffff;
    border: 2px solid #ef0000;
    border-radius: 50%;

    color: #ef0000;

    font-size: 17px;
    font-weight: 700;
    line-height: 1;
}

.product-order-stage-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100px;
    height: 100px;

    color: #090909;

    transition: transform 220ms ease;
}

.product-order-stage-icon svg {
    display: block;

    width: 100%;
    height: 100%;
}

.product-order-stage-step:hover .product-order-stage-icon {
    transform: translateY(-4px);
}

.product-order-stage-step-title {
    margin: 24px 0 0;

    color: #161616;

    font-size: clamp(15px, 1.25vw, 20px);
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: -0.25px;
}


/* ==========================================================
   CONNECTOR
========================================================== */

.product-order-stage-connector {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    width: 100%;
    margin-top: 105px;
}

.product-order-stage-line {
    display: block;

    width: 100%;
    height: 1px;

    background-color: #d8d8d8;
}

.product-order-stage-dot {
    display: block;

    width: 12px;
    height: 12px;
    margin-inline: 10px;

    background-color: #ef2414;
    border-radius: 50%;
}


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

@media (max-width: 1380px) {
    .product-order-stage-process {
        grid-template-columns:
            minmax(135px, 1fr) minmax(48px, 0.35fr) minmax(135px, 1fr) minmax(48px, 0.35fr) minmax(135px, 1fr) minmax(48px, 0.35fr) minmax(135px, 1fr) minmax(48px, 0.35fr) minmax(135px, 1fr);
    }

    .product-order-stage-number {
        width: 48px;
        height: 48px;
        margin-bottom: 24px;

        font-size: 15px;
    }

    .product-order-stage-icon {
        width: 88px;
        height: 88px;
    }

    .product-order-stage-step-title {
        margin-top: 20px;

        font-size: 15px;
    }

    .product-order-stage-connector {
        margin-top: 94px;
    }

    .product-order-stage-dot {
        width: 10px;
        height: 10px;
        margin-inline: 7px;
    }
}


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

@media (max-width: 1080px) {
    .product-order-stage-process {
        grid-template-columns: repeat(5, minmax(190px, 1fr));
        gap: 18px;

        overflow-x: auto;
        padding:
            6px 2px 24px;

        scroll-snap-type: x mandatory;
    }

    .product-order-stage-step {
        min-height: 285px;
        padding:
            28px 20px;

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

        scroll-snap-align: start;
    }

    .product-order-stage-connector {
        display: none;
    }

    .product-order-stage-number {
        margin-bottom: 22px;
    }

    .product-order-stage-icon {
        width: 95px;
        height: 95px;
    }

    .product-order-stage-step-title {
        font-size: 16px;
    }
}


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

@media (max-width: 800px) {
    .product-order-stage-seven {
        padding:
            72px 0 85px;
    }

    .product-order-stage-header {
        margin-bottom: 36px;
    }

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

    .product-order-stage-process {
        grid-template-columns: repeat(5, 210px);
    }

    .product-order-stage-step {
        min-height: 300px;
    }
}


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

@media (max-width: 560px) {
    .product-order-stage-seven {
        padding:
            58px 0 70px;
    }

    .product-order-stage-header {
        margin-bottom: 28px;
    }

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

    .product-order-stage-process {
        display: flex;
        flex-direction: column;
        gap: 14px;

        overflow: visible;
        padding: 0;
    }

    .product-order-stage-step {
        display: grid;
        grid-template-columns: auto 82px minmax(0, 1fr);
        align-items: center;
        gap: 16px;

        width: 100%;
        min-height: 125px;
        padding:
            20px 18px;

        text-align: left;
    }

    .product-order-stage-number {
        width: 43px;
        height: 43px;
        margin: 0;

        font-size: 14px;
    }

    .product-order-stage-icon {
        width: 76px;
        height: 76px;
    }

    .product-order-stage-step-title {
        margin: 0;

        font-size: 16px;
    }

    .product-order-stage-step-title br {
        display: none;
    }
}


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

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

    .product-order-stage-step {
        grid-template-columns: auto 68px minmax(0, 1fr);
        gap: 12px;

        min-height: 110px;
        padding:
            16px 14px;
    }

    .product-order-stage-number {
        width: 38px;
        height: 38px;

        font-size: 12px;
    }

    .product-order-stage-icon {
        width: 64px;
        height: 64px;
    }

    .product-order-stage-step-title {
        font-size: 14px;
    }
}