/**
 * Product price display styles
 */

/* Loading state */
.price.dp-loading {
    opacity: 0.5;
    position: relative;
}

.price.dp-loading:after {
    content: "...";
    animation: dp-loading 1s infinite;
}

@keyframes dp-loading {
    0% { content: "."; }
    33% { content: ".."; }
    66% { content: "..."; }
}

/* Savings display */
.dp-aicoso-savings-display {
    color: #77a464;
    font-size: 0.9em;
    margin-top: 5px;
}

.dp-aicoso-savings-display .savings {
    font-weight: bold;
}

/* Price for quantity indicator */
.price-for-quantity {
    color: #666;
    font-size: 0.85em;
    font-weight: normal;
}

/* Bulk pricing table on product page */
.dp-aicoso-bulk-pricing-table {
    margin-top: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.dp-aicoso-bulk-pricing-table th {
    background: #f5f5f5;
    padding: 10px;
    text-align: left;
}

.dp-aicoso-bulk-pricing-table td {
    padding: 8px 10px;
    border-top: 1px solid #eee;
}

.dp-aicoso-bulk-pricing-table .price-cell {
    font-weight: bold;
    color: #77a464;
}