.cpw-custom-cart {
    background: #ffffff;
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cpw-custom-cart h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.cpw-cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.cpw-cart-table th,
.cpw-cart-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cpw-cart-table th {
    background: #f9f9f9;
    font-weight: 600;
    color: #333;
}

.cpw-quantity-input {
    width: 60px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
}

.cpw-remove-item {
    background: #ff4d4d;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.cpw-remove-item:hover {
    background: #e04343;
}

.cpw-cart-actions {
    text-align: right;
}

.cpw-checkout-button {
    display: inline-block;
    background: #0071a1;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.2s;
}

.cpw-checkout-button:hover {
    background: #005f87;
}