.dropdown-category .menu-left {
    display: none !important;
}

.dropdown-category:hover .menu-left {
    display: block !important;
}

/* SweetAlert Modern Custom Styles for AvoLife */

/* Overlay - Arkaplan */
.swal-overlay {
    background: rgba(44, 62, 80, 0.4) !important;
    backdrop-filter: blur(3px) !important;
    animation: fadeIn 0.3s ease !important;
}

/* Ana Modal */
.swal-modal {
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 24px !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25) !important;
    border: none !important;
    padding: 40px 30px 30px 30px !important;
    max-width: 420px !important;
    animation: slideInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* Modern Close Button (X işareti) */
.swal-modal::before {
    content: '×' !important;
    position: absolute !important;
    top: 20px !important;
    right: 25px !important;
    font-size: 24px !important;
    color: #94a3b8 !important;
    cursor: pointer !important;
    width: 30px !important;
    height: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    transition: all 0.2s ease !important;
    z-index: 1000 !important;
}

.swal-modal::before:hover {
    background: #f1f5f9 !important;
    color: #475569 !important;
}

/* Success Icon - Orijinal SweetAlert + Avolife Renkleri */
.swal-icon--success {
    width: 80px !important;
    height: 80px !important;
    margin: 0 auto 24px auto !important;
}

.swal-icon--success__ring {
    border-color: #4CAF50 !important;
}

.swal-icon--success__line {
    background-color: #4CAF50 !important;
}

/* Beyaz arkaplan pseudo-element'lerini gizle */
.swal-icon--success::before,
.swal-icon--success::after {
    display: none !important;
}

/* Title */
.swal-title {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 16px !important;
    text-align: center !important;
    line-height: 1.3 !important;
}

/* Text */
.swal-text {
    font-size: 16px !important;
    color: #475569 !important;
    line-height: 1.5 !important;
    text-align: center !important;
    margin-bottom: 32px !important;
}

/* Footer */
.swal-footer {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

/* Button Container */
.swal-button-container {
    position: relative !important;
    width: 100% !important;
}

/* Base Button */
.swal-button {
    width: 100% !important;
    padding: 16px 24px !important;
    border: none !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

/* Primary Button (Confirm) */
.swal-button--confirm {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%) !important;
    color: white !important;
    box-shadow: 0 4px 14px rgba(76, 175, 80, 0.3) !important;
}

.swal-button--confirm:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4) !important;
}

.swal-button--confirm:active {
    transform: translateY(0) !important;
}

.swal-button--confirm:focus {
    box-shadow: 0 4px 14px rgba(76, 175, 80, 0.3), 0 0 0 3px rgba(76, 175, 80, 0.2) !important;
    outline: none !important;
}

/* Secondary Button (Cart) */
.swal-button--cart {
    background: #f8fafc !important;
    color: #475569 !important;
    border: 2px solid #e2e8f0 !important;
    box-shadow: none !important;
}

.swal-button--cart:hover {
    background: #f1f5f9 !important;
    border-color: #cbd5e1 !important;
    color: #334155 !important;
    transform: translateY(-1px) !important;
}

.swal-button--cart:focus {
    box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.2) !important;
    outline: none !important;
}

/* Loading Spinner */
.swal-button__loader {
    display: none !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

.swal-button__loader div {
    width: 4px !important;
    height: 4px !important;
    margin: 0 2px !important;
    background: currentColor !important;
    border-radius: 50% !important;
    animation: bounce 1.4s ease-in-out infinite both !important;
}

.swal-button__loader div:nth-child(1) { animation-delay: -0.32s !important; }
.swal-button__loader div:nth-child(2) { animation-delay: -0.16s !important; }

/* Show loader when button is in loading state */
.swal-button--loading .swal-button__loader {
    display: flex !important;
}

.swal-button--loading {
    color: transparent !important;
}

/* Responsive */
@media (max-width: 480px) {
    .swal-modal {
        margin: 20px !important;
        max-width: calc(100vw - 40px) !important;
        padding: 30px 20px 20px 20px !important;
    }
    
    .swal-footer {
        gap: 8px !important;
    }
    
    .swal-button {
        padding: 14px 20px !important;
        font-size: 15px !important;
    }
    
    .swal-title {
        font-size: 20px !important;
    }
    
    .swal-text {
        font-size: 14px !important;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        transform: translate3d(0, 30px, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes checkmarkLong {
    from {
        width: 0;
        left: 32px;
        top: 44px;
    }
    to {
        width: 25px;
        left: 20px;
        top: 44px;
    }
}

@keyframes checkmarkTip {
    from {
        width: 0;
        left: 28px;
        top: 50px;
    }
    to {
        width: 12px;
        left: 28px;
        top: 50px;
    }
}

/* Checkmark animasyonları kaldırıldı - gereksiz */

@keyframes checkmarkAppear {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Dark Mode Kaldırıldı - Sadece Light Theme */


/* Extra Modern Touch - Already included in .swal-modal above */

/* Pulse animasyonu kaldırıldı - fazla dikkat dağıtıcı */