/*
================================================

Space Vanta Theme 1.0

Module:
Cart / Summary

File:
summary.css

Responsibility:
Cart summary structure and hierarchy

================================================
*/


.sv-cart-summary {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;

    margin-top: 72px;
    padding-bottom: 48px;

    text-align: center;
}


/*
------------------------------------------------
Reflective Divider
------------------------------------------------
*/

.sv-cart-summary__divider {
    width: min(680px, 72%);

    height: 1px;

    margin-bottom: 30px;

    background:
        linear-gradient(90deg,
            transparent 0%,
            rgba(145, 151, 158, 0.12) 15%,
            rgba(190, 198, 207, 0.32) 50%,
            rgba(145, 151, 158, 0.12) 85%,
            transparent 100%);

    filter: blur(0.2px);

    opacity: 0.78;
}


/*
------------------------------------------------
Item Count
------------------------------------------------
*/

.sv-cart-summary__count {
    font-size: 11px;
    line-height: 1.5;

    letter-spacing: 0.075em;

    opacity: 0.55;
}


/*
------------------------------------------------
Total
------------------------------------------------
*/

.sv-cart-summary__total {
    margin-top: 9px;

    font-size: 18px;
    line-height: 1.4;

    font-weight: 500;

    letter-spacing: 0.025em;

    color: var(--sv-color-text-primary);
}


/*
------------------------------------------------
Actions
------------------------------------------------
*/

.sv-cart-summary__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    width: 100%;

    margin-top: 28px;
}


/*
------------------------------------------------
Responsive
------------------------------------------------
*/

@media (max-width: 767px) {

    .sv-cart-summary {
        margin-top: 54px;
        padding-bottom: 36px;
    }

    .sv-cart-summary__divider {
        width: 82%;

        margin-bottom: 26px;
    }

    .sv-cart-summary__total {
        margin-top: 8px;

        font-size: 17px;
    }

    .sv-cart-summary__actions {
        gap: 10px;

        margin-top: 24px;
    }

}