.cart-section {
    padding: 4rem 0;
    min-height: 60vh;
}

.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.cart-items {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--grey-light);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image img {
    width: 100%;
    border-radius: 4px;
}

.cart-item-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.cart-item-price {
    color: var(--signal-blue);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.cart-item-total {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--steel-black);
}

.remove-item {
    background: none;
    border: none;
    color: var(--industrial-grey);
    cursor: pointer;
    font-size: 1.25rem;
    transition: color 0.3s;
}

.remove-item:hover {
    color: #dc2626;
}

.cart-summary {
    background: var(--grey-light);
    padding: 2rem;
    border-radius: 8px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--industrial-grey);
}

.summary-row.total {
    border-top: 2px solid var(--steel-black);
    border-bottom: none;
    margin-top: 1rem;
    padding-top: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.summary-row.total .amount {
    color: var(--signal-blue);
    font-size: 1.5rem;
}

.checkout-btn {
    width: 100%;
    margin-top: 1.5rem;
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-cart i {
    font-size: 4rem;
    color: var(--industrial-grey);
    margin-bottom: 1rem;
}

.empty-cart h2 {
    margin-bottom: 1rem;
}

.empty-cart p {
    color: var(--industrial-grey);
    margin-bottom: 2rem;
}

@media (max-width: 968px) {
    .cart-container {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }

    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 1rem;
    }

    .cart-item-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}
