 /* Parfüm Sitesi - Sticky Product Bar Stilleri */
        .sticky-product-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 999;
            padding: 0;
            animation: slideUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
        }
        
        @keyframes slideUp {
            from {
                transform: translateY(100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        .sticky-bar-backdrop {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(250,250,250,0.98) 100%);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-top: 1px solid rgba(200,200,200,0.3);
            box-shadow: 0 -8px 32px rgba(0,0,0,0.12);
        }
        
        .sticky-bar-content {
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 20px;
            gap: 20px;
        }
        
        .sticky-price {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        
        .product-name {
            font-size: 0.85em;
            color: #666;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .price-value {
            font-size: 1.5em;
            font-weight: 700;
            color: #2c2c2c;
            line-height: 1.2;
        }
        
        .price-value .woocommerce-Price-amount {
            color: #b8860b;
            font-weight: 700;
            text-shadow: 0 1px 2px rgba(184, 134, 11, 0.2);
        }
        
        .sticky-add-to-cart {
            flex: 1.8;
        }
        
        .sticky-cart-btn {
            width: 100%;
            background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
            color: white;
            border: none;
            padding: 16px 24px;
            border-radius: 12px;
            font-size: 1.1em;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }
        
        .sticky-cart-btn:hover {
            background: linear-gradient(135deg, #2c2c2c 0%, #404040 50%, #2c2c2c 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.25);
        }
        
        .sticky-cart-btn:active {
            transform: translateY(-1px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }
        
        .sticky-cart-btn.disabled {
            background: linear-gradient(135deg, #ccc 0%, #ddd 50%, #ccc 100%);
            cursor: not-allowed;
            color: #888;
        }
        
        .sticky-cart-btn.disabled:hover {
            transform: none;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }
        
        /* Sepete ekleme başarılı durumu */
        .sticky-cart-btn.success {
            background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
            color: #2c2c2c;
            animation: successPulse 0.6s ease-out;
        }
        
        @keyframes successPulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        /* Cart animasyon elementi */
        .cart-animation {
            position: absolute;
            opacity: 0;
            transform: scale(0.5);
            transition: all 0.3s ease;
            pointer-events: none;
        }
        
        .cart-animation.active {
            opacity: 1;
            transform: scale(1.2);
            animation: cartBounce 0.8s ease-out;
        }
        
        @keyframes cartBounce {
            0% { 
                transform: scale(0.5) rotate(0deg);
                opacity: 0;
            }
            50% { 
                transform: scale(1.3) rotate(180deg);
                opacity: 1;
            }
            100% { 
                transform: scale(1.2) rotate(360deg);
                opacity: 1;
            }
        }
        
        /* Lüks shimmer animasyonu */
        .sticky-cart-btn:not(.disabled):not(.loading):not(.success)::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
            animation: shimmer 3s infinite;
        }
        
        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }
        
        /* Loading animasyonu */
        .sticky-cart-btn.loading {
            background: linear-gradient(135deg, #2c2c2c 0%, #404040 50%, #2c2c2c 100%);
        }
        
        .sticky-cart-btn.loading .btn-icon svg {
            animation: luxuryPulse 1.5s ease-in-out infinite;
        }
        
        @keyframes luxuryPulse {
            0%, 100% { 
                transform: scale(1) rotate(0deg);
                opacity: 1;
            }
            50% { 
                transform: scale(1.1) rotate(180deg);
                opacity: 0.8;
            }
        }
        
        /* Icon stilleri */
        .btn-icon svg {
            transition: all 0.3s ease;
        }
        
        .sticky-cart-btn:hover .btn-icon svg {
            transform: scale(1.1);
        }
        
        /* Titreşim efekti */
        .sticky-cart-btn.vibrate {
            animation: vibrate 0.3s ease-in-out;
        }
        
        @keyframes vibrate {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-2px); }
            75% { transform: translateX(2px); }
        }
        
        /* Sadece mobil ve tablette göster */
        @media (min-width: 1025px) {
            .sticky-product-bar {
                display: none !important;
            }
        }
        
        /* Küçük ekranlar için responsive */
        @media (max-width: 480px) {
            .sticky-bar-content {
                padding: 16px 16px;
                gap: 16px;
            }
            
            .price-value {
                font-size: 1.3em;
            }
            
            .sticky-cart-btn {
                padding: 14px 20px;
                font-size: 1em;
                gap: 10px;
            }
            
            .btn-icon svg {
                width: 16px;
                height: 16px;
            }
        }
        
        /* Çok küçük ekranlar */
        @media (max-width: 360px) {
            .sticky-bar-content {
                padding: 14px 12px;
                gap: 12px;
            }
            
            .price-value {
                font-size: 1.2em;
            }
            
            .sticky-cart-btn {
                padding: 12px 16px;
                font-size: 0.95em;
            }
        }
.sticky-cart-btn.vibrate {
    animation: vibrate 0.3s ease-in-out;
}

@keyframes vibrate {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.sticky-product-bar {
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.sticky-product-bar.show {
    opacity: 1;
    transform: translateY(0);
}