.wcv-cart-container {
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-bottom: 4px solid #28a745;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
}

.wcv-cart-header {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #28a745;
    text-align: center;
}

.wcv-cart-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wcv-cart-item {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.wcv-cart-item:last-child {
    border-bottom: none;
}

.wcv-product-name {
    font-weight: 600;
    font-size: 16px;
}

.wcv-item-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wcv-quantity {
    font-size: 14px;
    color: #555;
}

.wcv-price {
    font-size: 14px;
    color: #555;
    text-align: right;
}

.wcv-empty {
    text-align: center;
    color: #777;
}

.wcv-error {
    color: #d9534f;
    text-align: center;
}

.wcv-grand-total {
    margin-top: 15px;
}

.wcv-divider {
    border: 0;
    height: 2px;
    background: linear-gradient(to right, #28a745, #ffffff);
    margin: 10px 0;
}

.wcv-total-text {
    font-weight: 600;
    font-size: 16px;
    margin: 5px 0;
}

.wcv-total-amount {
    color: #28a745;
}

/* Responsive design */
@media (max-width: 768px) {
    .wcv-cart-container {
        padding: 15px;
    }

    .wcv-cart-header {
        font-size: 18px;
    }

    .wcv-product-name {
        font-size: 14px;
    }

    .wcv-quantity, .wcv-price {
        font-size: 12px;
    }

    .wcv-total-text {
        font-size: 14px;
    }
}