/* Cart Summary Styling Updates */
.cart-summary {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    /* Bolder text */
    color: var(--text-primary);
}

.summary-row.original-price {
    color: #e74c3c !important;
    /* Red */
}

.summary-row.original-price span {
    color: #e74c3c !important;
}

.summary-row.total {
    font-size: 1.4rem;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.summary-row.total span:first-child {
    color: var(--text-primary);
}

#total-price {
    color: #2ecc71 !important;
    /* Green */
    font-weight: 900;
}