        /* Pürüzsüz geçişler için genel kural */
        #main-header, #desktop-nav, #main-logo, .nav-item {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        /* Scroll edildiğinde navigasyonun dönüşümü için */
        .nav-on-white {
            background-color: transparent !important;
            box-shadow: none !important;
            backdrop-filter: none !important;
        }
    .slide .product-image { transform: scale(0.8); transition: transform 1s 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
    .slide.active { opacity: 1; visibility: visible; z-index: 5; }
    .slide.active h2 { transform: translateY(0); transition: transform 0.8s 0.2s cubic-bezier(0.165, 0.84, 0.44, 1); }
    .slide.active .product-image { transform: scale(1); }
    .slide.active .decor-item { opacity: 0.7; transform: rotate(0) scale(1); transition: all 1.2s 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); }
    .slider-tab.active { color: #ef4444; font-weight: 700; }

.whatsapp-button {
    position: fixed;
    bottom: 75px;
    left: 20px;
    width: 60px;
    height: 60px;
    background-color: #003466;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease-in-out, opacity 0.3s ease-in-out;
    /* Yumu�0�3�0�0ak animasyon */
    z-index: 1000;
    text-decoration: none;
    cursor: pointer;
    opacity: 1;
    /* Ba�0�3�0�0lang�0�2���0�1��ta g�0�1�0�9r�0�1�0�4n�0�1�0�4r */
}


/* WhatsApp �0�2��konu */

.whatsapp-button i {
    font-size: 28px;
    /* Orijinal boyut */
    color: white;
    /* Beyaz renk */
}


/* Hover efekti */

.whatsapp-button:hover {
    transform: scale(1.1);
}


/* Mobilde Butonu Gizle (A�0�3�0�0a�0�2�0�0�0�2�� Kay�0�2��nca) */

@media (max-width: 768px) {
    .whatsapp-button.hidden {
        opacity: 0;
        pointer-events: none;
        /* T�0�2��klamay�0�2�� engeller */
    }
}


/* WhatsApp Destek Penceresi */

.whatsapp-chatbox {
    position: fixed;
    bottom: 20px;
    left: -300px;
    width: 280px;
    height: 350px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: left 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    z-index: 999;
}


/* Pencere A�0�1��0�2��ld�0�2���0�2�0�0�0�2��nda */

.whatsapp-chatbox.open {
    left: 20px;
}


/* �0�1�0�4st K�0�2��s�0�2��m */

.whatsapp-header {
    background-color: #003466;
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    justify-content: space-around;
    ;
    align-items: center;
}

.whatsapp-header .close-btn {
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
}

.whatsapp-content {
    flex: 1;
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.whatsapp-content p {
    font-size: 14px;
    color: #003466;
    margin-bottom: 10px;
}

.whatsapp-link {
    display: inline-block;
    padding: 10px 15px;
    background-color: #003466;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
}

.whatsapp-link:hover {
    background-color: #003466;
}
