/* Основни стилове за EUR цени */
.price-eur {
    font-size: 0.9em;
    color: #666;
    font-weight: normal !important;
    margin-left: 4px;
    font-style: italic;
    white-space: nowrap;
}

/* Стилове за различни контексти */
.price-eur.from-module {
    color: #777;
}

.price-eur.from-js {
    color: #666;
}

.price-eur.from-cart {
    color: #555;
    font-size: 0.85em;
}

.price-eur.from-checkout {
    color: #333;
    font-weight: 500 !important;
}

.price-eur.from-hook {
    color: #888;
}

/* Стилове за стари цени */
.old-price .price-eur,
.price.old .price-eur,
.old-column-total .price-eur,
.price-old .price-eur {
    text-decoration: line-through;
    color: #999;
    opacity: 0.7;
}

/* Стилове за специални цени */
.price-reduction .price-eur,
.price-discount .price-eur {
    color: #d9534f;
}

.price-special .price-eur {
    color: #5cb85c;
}

/* Стилове за продуктови страници */
.product-page .price-eur {
    font-size: 1em;
    color: #555;
    margin-left: 8px;
}

.product-page .price-current .price-eur {
    font-weight: 500 !important;
    color: #333;
}

/* Стилове за количката */
.cart-summary .price-eur,
.shopping-cart .price-eur {
    color: #333;
    font-size: 0.9em;
}

.cart-total .price-eur {
    font-weight: 600 !important;
    color: #000;
    font-size: 1em;
}

/* Стилове за checkout */
.checkout-summary .price-eur,
.order-summary .price-eur {
    color: #333;
    font-weight: 500 !important;
}

.order-total .price-eur,
.final-total .price-eur {
    font-weight: 700 !important;
    color: #000;
    font-size: 1.1em;
}

/* Стилове за таблици */
table .price-eur {
    font-size: 0.85em;
    color: #666;
}

table .total .price-eur {
    font-weight: 600 !important;
    color: #333;
}

/* Стилове за списъци с продукти */
.product-list .price-eur,
.products-list .price-eur {
    font-size: 0.85em;
    color: #777;
    display: inline-block;
    margin-left: 5px;
}

/* Responsive дизайн */
@media (max-width: 768px) {
    .price-eur {
        font-size: 0.8em;
        margin-left: 3px;
    }
    
    .product-page .price-eur {
        font-size: 0.9em;
        margin-left: 5px;
    }
    
    .cart-total .price-eur {
        font-size: 0.9em;
    }
    
    .order-total .price-eur {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .price-eur {
        font-size: 0.75em;
        margin-left: 2px;
    }
    
    /* На много малки екрани може да покажем EUR цената на нов ред */
    .price-eur.mobile-newline {
        display: block;
        margin-left: 0;
        margin-top: 2px;
        font-size: 0.8em;
    }
}

/* Анимации за нови EUR цени */
.price-eur {
    opacity: 0;
    animation: fadeInEur 0.3s ease-in-out forwards;
}

@keyframes fadeInEur {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Стилове за hover ефекти */
.price:hover .price-eur {
    color: #333;
    transition: color 0.2s ease;
}

/* Стилове за тъмна тема (ако е налична) */
.dark-theme .price-eur,
.theme-dark .price-eur {
    color: #ccc;
}

.dark-theme .old-price .price-eur,
.theme-dark .old-price .price-eur {
    color: #888;
}

.dark-theme .cart-total .price-eur,
.theme-dark .cart-total .price-eur {
    color: #fff;
}

/* Стилове за различни валути (за бъдеща разширяемост) */
.price-eur.currency-eur::before {
    content: "";
}

.price-eur.currency-usd::before {
    content: "≈ ";
}

/* Стилове за специални промоции */
.price-promotion .price-eur {
    color: #ff6b35;
    font-weight: 600 !important;
}

.price-sale .price-eur {
    color: #e74c3c;
    font-weight: 500 !important;
}

/* Стилове за модални прозорци */
.modal .price-eur {
    color: #555;
}

.modal .cart-total .price-eur {
    color: #333;
    font-weight: 600 !important;
}

/* Стилове за бързи преглед на продукти */
.quick-view .price-eur {
    font-size: 0.9em;
    color: #666;
}

/* Стилове за сравнение на продукти */
.product-comparison .price-eur {
    font-size: 0.85em;
    color: #777;
    display: block;
    margin-top: 2px;
}

/* Стилове за wishlist */
.wishlist .price-eur {
    font-size: 0.8em;
    color: #999;
}

/* Стилове за search results */
.search-results .price-eur {
    font-size: 0.85em;
    color: #666;
}

/* Стилове за категории */
.category-page .price-eur {
    font-size: 0.8em;
    color: #777;
}

/* Стилове за footer цени */
.footer .price-eur {
    font-size: 0.75em;
    color: #aaa;
}

/* Стилове за печат */
@media print {
    .price-eur {
        color: #000 !important;
        font-size: 0.9em !important;
    }
}