.wpforms-form button[type=submit], button.wpforms-page-button {
    background-color: #ff6c0c !important;
    border-color: #ff6c0c !important;
    color: #fff !important;
    transition: background 0.3s ease-in-out;
}
 
.wpforms-form button[type=submit]:hover, button.wpforms-page-button:hover {
    background-color: #363636 !important;
}


/* Sadece listeleme sayfalarında (ana sayfa, kategori vb.) başlığı kes */
.archive .product-title, 
.archive .woocommerce-loop-product__title, 
.archive .product-title a,
.home .product-title, 
.home .woocommerce-loop-product__title, 
.home .product-title a {
    display: -webkit-box !important;
    -webkit-line-clamp: 1 !important; /* Kaç satır isterseniz (1 veya 2) */
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: normal !important;
}

/* Tekil ürün sayfasında başlığın kesilmesini engelle */
.single-product .product-title, 
.single-product .entry-title {
    display: block !important;
    -webkit-line-clamp: none !important;
    overflow: visible !important;
}


/* İndirimli ürün teklif kutucuğunu büyütme ve hizalama */
.product-page-section input[type="checkbox"], 
input[type="checkbox"] {
    -webkit-appearance: checkbox !important;
    -moz-appearance: checkbox !important;
    appearance: checkbox !important;
    width: 22px !important; /* Genişlik */
    height: 22px !important; /* Yükseklik */
    cursor: pointer !important;
    vertical-align: middle !important;
    margin-right: 8px !important; /* Yazı ile arasındaki boşluk */
}



/* Kutucuğu şık bir HEMEN EKLE butonuna dönüştürme - Yeni Renk Kombini */
.woobt-product input[type="checkbox"],
.wpcft-product input[type="checkbox"] {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-color: #0b9462 !important; /* İlk baştaki buton rengi: Profesyonel Zümrüt Yeşili */
    color: #ffffff !important;
    width: 105px !important; 
    height: 32px !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px !important;
    border: none !important;
    transition: background-color 0.2s ease;
}

/* Butonun içine ilk başta HEMEN EKLE yazısı yerleştirme */
.woobt-product input[type="checkbox"]::before,
.wpcft-product input[type="checkbox"]::before {
    content: "HEMEN EKLE" !important; 
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 11px !important; 
    font-weight: bold !important;
    font-family: sans-serif !important;
    white-space: nowrap !important;
}

/* Müşteri tıkladığında butonun alacağı aksiyon (Farklı Arka Plan) */
.woobt-product input[type="checkbox"]:checked,
.wpcft-product input[type="checkbox"]:checked {
    background-color: #ff6600 !important; /* Seçilince sitenin ana Turuncu rengine döner */
}

.woobt-product input[type="checkbox"]:checked::before,
.wpcft-product input[type="checkbox"]:checked::before {
    content: "EKLENDİ" !important;
    font-size: 12px !important;
}

/* Açık Adres etiketini görünür yap */
#billing_address_2_field label,
#billing_address_2_field .screen-reader-text {
position: static !important;
width: auto !important;
height: auto !important;
margin: 0 0 8px 0 !important;
overflow: visible !important;
clip: auto !important;
clip-path: none !important;
white-space: normal !important;
display: block !important;
}

/* Açık Adres alanı */
#billing_address_2_field {
width: 100% !important;
clear: both;
}