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

.fv-cart-table th,
.fv-cart-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.fv-cart-table th {
    background: #f8f8f8;
    font-weight: bold;
}

.fv-cart-table tr:nth-child(even) {
    background: #fafafa;
}

.fv-cart-total {
    margin-top: 15px;
    font-size: 1.1em;
    text-align: right;
}

.fv-remove-from-cart {
    background: #e74c3c;
    color: #fff;
    border: none;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9em;
}

.fv-remove-from-cart:hover { background: #c0392b; }

.fv-qty-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.fv-qty-input {
    width: 60px;
    text-align: center;
    padding: 6px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.fv-increase, .fv-decrease {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 6px 8px;
    border-radius: 4px;
    cursor: pointer;
}
.fv-increase:hover, .fv-decrease:hover { 
	background: #005c87; 
}
.fv-cart-product-name {
    line-height: 1.4;
}

.fv-cart-product-name strong {
    display: block;
    color: #2c3e50;
}

.fv-paket-info {
    color: #777;
    font-size: 0.9em;
}
.fv-cart-actions {
    margin-top: 20px;
    text-align: right;
}

.fv-btn-primary,
.fv-btn-success {
    display: inline-block;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    cursor: pointer;
    font-size: 1em;
    transition: background 0.2s ease;
}

.fv-btn-primary:hover {
    background: #005c87;
}

.fv-btn-success {
    background: #28a745;
}

.fv-btn-success:hover {
    background: #1f7d34;
}

.fv-agb-label {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.95em;
    margin-bottom: 10px;
    text-align: left;
}

