.cart-page-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.cart-items-container {
    background-color: var(--pezm-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.item-details {
    flex-grow: 1;
}

.item-details h4 {
    font-size: 1.2rem;
    color: var(--pezm-blue);
    margin-bottom: 5px;
}

.item-details p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.item-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.item-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--pezm-red);
    min-width: 80px;
    text-align: right;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    overflow: hidden;
}

.quantity-controls button {
    background: none;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.quantity-controls button:hover {
    background-color: var(--bg-light);
}

.quantity-controls span {
    padding: 0 10px;
    font-weight: 600;
}

.remove-item {
    color: #dc3545;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.remove-item:hover {
    color: #a71d2a;
}

.cart-summary {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.cart-summary h3 {
    font-size: 1.5rem;
    color: var(--pezm-blue);
    margin-bottom: 25px;
    border-bottom: 2px solid var(--pezm-red);
    padding-bottom: 10px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.total-line {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pezm-red);
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    margin-top: 20px;
}

.checkout-btn {
    width: 100%;
    margin-top: 20px;
    padding: 15px;
    font-size: 1.1rem;
}

.continue-shopping-btn {
    width: 100%;
    margin-top: 15px;
    text-align: center;
    background: none;
    border: 1px solid var(--pezm-blue);
    color: var(--pezm-blue);
}

.continue-shopping-btn:hover {
    background-color: var(--pezm-blue);
    color: var(--pezm-white);
}

.empty-cart-message {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    padding: 50px 0;
}
/* ... (Existing styles from cart.css) ... */

@media (max-width: 992px) {
    .cart-page-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .cart-item img {
        width: 150px;
        height: 150px;
    }
    .item-details {
        margin-bottom: 10px;
    }
    .item-actions {
        width: 100%;
        justify-content: space-between;
    }
    .item-price {
        min-width: auto;
        text-align: left;
    }
}