/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
.payment-widget, .klarna-widget {
    display: none !important;
}

@media only screen and (max-width: 48em) {

    @media (max-width: 768px) {
        .woocommerce-Price-amount {
            display: block;
            font-size: 1.5rem; /* Fiyatın boyutunu büyüt */
            margin-bottom: 2px;
        }

        .woocommerce-price-suffix {
            display: block;
            font-size: 0.8rem; /* Ek metnin boyutunu küçük tut */
            white-space: normal;
        }

        .price {
            display: block;
            text-align: left;
        }
    }

    @media (max-width: 768px) {
        .price {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: flex-start;
            flex-wrap: wrap; /* Fiyat ve metinler satırı taşarsa alt satıra iner */
        }

        .woocommerce-Price-amount {
            font-size: 1.5rem; /* Fiyatı büyüt */
            margin-right: 5px; /* Fiyat ve ek metin arasında boşluk */
        }

        .woocommerce-price-suffix {
            font-size: 0.8rem; /* Ek metnin boyutunu küçük tut */
            white-space: nowrap; /* Ek metnin tek satırda kalmasını sağla */
        }

        /* "Sepete Ekle" butonları için stil */
        .add-to-cart-button {
            font-size: 0.8rem;
            padding: 8px;
            margin-top: 5px;
        }
    }
}



/*************** ADD MOBILE ONLY CSS HERE  ***************/

