/* =========================================
   CART
========================================= */

.cart-page {
    min-height: 70vh;
    padding: 45px 0 80px;
}

.cart-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.cart-heading h1 {
    margin: 0;
    color: #111827;
    font-size: 38px;
}

.cart-heading p {
    margin: 7px 0 0;
    color: #6b7280;
}

.cart-continue {
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.cart-message {
    margin-bottom: 20px;
    padding: 13px 16px;
    color: #166534;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
}


/* COUNT */

.cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    margin-left: 4px;
    padding: 0 5px;
    border-radius: 20px;
    background: #111827;
    color: #ffffff;
    font-size: 11px;
}


/* EMPTY */

.cart-empty {
    max-width: 600px;
    margin: 70px auto;
    text-align: center;
}

.cart-empty-icon {
    margin-bottom: 15px;
    font-size: 55px;
}

.cart-empty h2 {
    margin: 0 0 10px;
    color: #111827;
}

.cart-empty p {
    margin: 0 0 25px;
    color: #6b7280;
}


/* LAYOUT */

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 30px;
    align-items: start;
}


/* PRODUCT */

.cart-products {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cart-item {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) auto;
    gap: 20px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
}

.cart-item-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    padding: 8px;
    background: #f9fafb;
    border-radius: 10px;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-no-image {
    color: #9ca3af;
    font-size: 12px;
}

.cart-item-name {
    color: #111827;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
}

.cart-item-meta,
.cart-item-stock {
    margin-top: 6px;
    color: #6b7280;
    font-size: 12px;
}


/* QUANTITY */

.cart-quantity-form {
    display: inline-flex;
    align-items: center;
    margin-top: 18px;
    border: 1px solid #d1d5db;
    border-radius: 9px;
    overflow: hidden;
}

.cart-quantity-button {
    width: 38px;
    height: 36px;
    border: 0;
    background: #ffffff;
    color: #111827;
    cursor: pointer;
    font-size: 19px;
}

.cart-quantity-button:hover:not(:disabled) {
    background: #f3f4f6;
}

.cart-quantity-button:disabled {
    color: #d1d5db;
    cursor: not-allowed;
}

.cart-quantity-value {
    min-width: 38px;
    text-align: center;
    font-weight: 700;
}


/* PRICE */

.cart-item-price {
    min-width: 150px;
    text-align: right;
}

.cart-unit-price {
    margin-bottom: 7px;
    color: #6b7280;
    font-size: 12px;
}

.cart-unit-price span {
    margin-left: 4px;
}

.cart-item-price strong {
    display: block;
    color: #111827;
    font-size: 18px;
}

.cart-remove-button {
    margin-top: 20px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #b91c1c;
    cursor: pointer;
    font-size: 12px;
}


/* SUMMARY */

.cart-summary {
    position: sticky;
    top: 25px;
    padding: 25px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
}

.cart-summary h2 {
    margin: 0 0 22px;
    color: #111827;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 10px 0;
    color: #6b7280;
    font-size: 14px;
}

.cart-summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 15px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.cart-summary-total span {
    font-weight: 700;
}

.cart-summary-total strong {
    color: #111827;
    font-size: 23px;
}

.cart-checkout-button {
    width: 100%;
    margin-top: 25px;
    padding: 14px;
    border: 0;
    cursor: pointer;
}

.cart-summary-note {
    margin: 15px 0 0;
    color: #9ca3af;
    font-size: 11px;
    line-height: 1.6;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }

}

@media (max-width: 650px) {

    .cart-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .cart-item {
        grid-template-columns: 90px minmax(0, 1fr);
    }

    .cart-item-image {
        width: 90px;
        height: 90px;
    }

    .cart-item-price {
        grid-column: 1 / -1;
        min-width: 0;
        text-align: left;
    }

}