/* Price Font Fix - Force Override v1.1 */
.product-price {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    color: #198754 !important;
    margin-bottom: 1.5rem !important;
    letter-spacing: -0.5px !important;
}

.product-price::after {
    content: '' !important;
}

.package-price-section {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 1rem !important;
    margin-top: auto !important;
}

.package-price-wrapper {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 1rem !important;
}

.package-price {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    color: #198754 !important;
    letter-spacing: -0.5px !important;
    border-bottom: 2px solid #198754 !important;
    padding-bottom: 0.1rem !important;
    display: inline-block !important;
}

.package-price::after {
    content: ' TL' !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: #198754 !important;
}

.package-old-price::after,
.old-package-price::after {
    content: ' TL' !important;
    font-size: 1rem !important;
    color: #999 !important;
    text-decoration: line-through !important;
    font-weight: 400 !important;
}

/* Mobile */
@media (max-width: 768px) {
    .product-price {
        font-family: 'Montserrat', sans-serif !important;
        font-size: 1.2rem !important;
        font-weight: 700 !important;
        color: #198754 !important;
    }
    
    .product-price::after {
        content: '' !important;
    }
    
    .package-price-section {
        align-items: center !important;
        justify-content: center !important;
        margin-bottom: 0.75rem !important;
    }
    
    .package-price-wrapper {
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 0.75rem !important;
    }
    
    .old-package-price {
        margin-top: 0.3rem !important;
    }
    
    .package-price {
        font-family: 'Montserrat', sans-serif !important;
        font-size: 1.8rem !important;
        font-weight: 700 !important;
        color: #198754 !important;
        border-bottom: 2px solid #198754 !important;
        padding-bottom: 0.1rem !important;
    }
    
    .package-price::after {
        content: ' TL' !important;
        font-size: 1.6rem !important;
        font-weight: 700 !important;
        color: #198754 !important;
    }
    
    .old-package-price {
        font-size: 0.9rem !important;
    }
    
    .old-package-price::after {
        content: ' TL' !important;
        font-size: 0.9rem !important;
    }
}

