/* Sepete Ekle ve Sepet Butonlarını Gizle */

/* Sepete ekle butonları - Tüm görünümlerde */
.dz-buy-btn.cart-icon-btn,
.cart-icon-btn,
#addToCartBtn {
    display: none !important;
}

/* Header'daki sepet ikonu */
#cartIcon {
    display: none !important;
}

/* Product detail sayfasındaki sepete ekle butonu */
.product-detail-page #addToCartBtn {
    display: none !important;
}

/* Checkout sayfasındaki sepete ekle butonları (varsa) */
.checkout-page .dz-buy-btn,
.checkout-page .cart-icon-btn {
    display: none !important;
}

/* Detay butonu stili */
.detail-btn {
    background-color: var(--rgba-primary-1) !important;
    color: var(--primary) !important;
    border: none !important;
    padding: 10px 20px !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 500 !important;
}

.detail-btn:hover,
.detail-btn:active,
.detail-btn:focus {
    background-color: var(--primary) !important;
    color: #fff !important;
    text-decoration: none !important;
}

