/* Dropdown genel genişlik */
.dropdown-menu-categories {
    min-width: 280px;
    padding: 0.5rem;
}

/* Yuvarlak görsel */
.category-thumb {
    width: 44px;
    height: 44px;
    border: 1px solid #e5e5e5;
    background-color: #f8f9fa;
}

/* Kategori başlığı */
.category-title {
    font-size: 0.95rem;
    line-height: 1.2;
}

/* Hover efekti */
.dropdown-menu-categories .dropdown-item:hover {
    background-color: #f5f5f5;
}

/* Desktop */
@media (min-width: 992px) {
    .dropdown-menu-categories {
        min-width: 320px;
    }

    .category-thumb {
        width: 48px;
        height: 48px;
    }

    .category-title {
        font-size: 1rem;
    }
}

/* Mobil – dokunmatik alanı büyüt */
@media (max-width: 576px) {
    .dropdown-menu-categories {
        min-width: 100%;
    }

    .dropdown-menu-categories .dropdown-item {
        padding: 1rem;
    }

    .category-thumb {
        width: 52px;
        height: 52px;
    }

    .category-title {
        font-size: 1.05rem;
    }
}


.premium-cta {
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: #fff !important;
    font-weight: 600;
    padding: 8px 22px !important;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    animation: pulseCta 2.5s infinite, shakeCta 6s infinite;
}

/* Hover */
.premium-cta:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

/* Mobilde tam genişlik */
@media (max-width: 991px) {
    .premium-cta {
        text-align: center;
        justify-content: center;
        margin-top: 8px;
    }
}


/* Pulse Animation */
@keyframes pulseCta {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Shake Animation */
@keyframes shakeCta {
    0%, 100% { transform: translateX(0); }
    2% { transform: translateX(-2px); }
    4% { transform: translateX(2px); }
    6% { transform: translateX(-2px); }
    8% { transform: translateX(2px); }
    10% { transform: translateX(0); }
}

