/* Prijs display */
.drc-price-display {
    margin-top: 15px;
    padding: 15px 18px;
    background: #f7f8f9;
    border-radius: 8px;
    border: 1px solid #e1e4e8;
    display: none;
    position: relative;
}

.drc-price-display.drc-show {
    display: block;
    animation: drc-fadeIn 0.3s ease;
}

.drc-price-display.drc-discount {
    background: linear-gradient(135deg, #e8f5f7 0%, #f0f9fa 100%);
    border-color: #21808d;
}

@keyframes drc-fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(-10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Loading state */
.drc-price-loading {
    text-align: center;
    color: #5e6c84;
    font-size: 14px;
    padding: 10px 0;
}

/* Price rows */
.drc-price-content {
    position: relative;
}

.drc-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
}

.drc-price-row:last-of-type {
    margin-bottom: 0;
}

.drc-price-row.drc-total {
    padding-top: 10px;
    margin-top: 8px;
    border-top: 1px solid #e1e4e8;
    font-size: 16px;
    font-weight: 600;
}

.drc-label {
    color: #5e6c84;
    font-weight: 500;
}

.drc-value {
    font-weight: 600;
    color: #172b4d;
}

.drc-price-display.drc-discount .drc-value {
    color: #21808d;
}

/* Discount badge */
.drc-discount-badge {
    position: absolute;
    top: 15px;
    right: 18px;
    display: none;
}

.drc-discount-percent {
    background: #21808d;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
}
