/**
 * Amazon Price Loader Styles
 */

/* Loading state for price */
.mcp-price-row.mcp-price-loading .mcp-product-price {
    position: relative;
    color: transparent;
    min-width: 60px;
    display: inline-block;
}

.mcp-price-row.mcp-price-loading .mcp-product-price:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid #ddd;
    border-top-color: #ff6900;
    border-radius: 50%;
    animation: mcp-spin 0.8s linear infinite;
}

/* Check price link style */
.mcp-product-price.mcp-check-price {
    color: #0066c0;
    text-decoration: underline;
    cursor: pointer;
    font-size: 14px;
}

.mcp-product-price.mcp-check-price:hover {
    color: #ff6900;
}

/* Loading animation */
@keyframes mcp-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hide discount and original price during loading */
.mcp-price-row.mcp-price-loading .mcp-original-price,
.mcp-price-row.mcp-price-loading .mcp-discount {
    visibility: hidden;
}