
        /* Floating Button */
        .wc-whatsapp-floating-button {
            position: fixed;
            z-index: 9999;
            transition: all 0.3s ease;
        }
        
        .wc-whatsapp-floating-button.bottom-right {
            bottom: 20px;
            right: 20px;
        }
        
        .wc-whatsapp-floating-button.bottom-left {
            bottom: 20px;
            left: 20px;
        }
        
        .wc-whatsapp-floating-button a {
            display: flex;
            align-items: center;
            gap: 8px;
            background: #25D366;
            color: white;
            padding: 12px 20px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            transition: all 0.3s ease;
        }
        
        .wc-whatsapp-floating-button a:hover {
            background: #128C7E;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0,0,0,0.2);
        }
        
        .wc-whatsapp-floating-button .wc-whatsapp-icon {
            display: flex;
            align-items: center;
        }
        
        .wc-whatsapp-floating-button .wc-whatsapp-text {
            white-space: nowrap;
        }
        
        /* Product Page Button */
        .wc-whatsapp-product-button {
            margin-top: 15px;
        }
        
        .wc-whatsapp-product-button .wc-whatsapp-order-btn,
        .wc-whatsapp-cart-button .wc-whatsapp-order-btn,
        .wc-whatsapp-checkout-button .wc-whatsapp-order-btn {
            background: #25D366 !important;
            color: white !important;
            border: none !important;
            padding: 12px 24px !important;
            border-radius: 4px !important;
            font-weight: 500 !important;
            width: 100%;
            max-width: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .wc-whatsapp-product-button .wc-whatsapp-order-btn:hover,
        .wc-whatsapp-cart-button .wc-whatsapp-order-btn:hover,
        .wc-whatsapp-checkout-button .wc-whatsapp-order-btn:hover {
            background: #128C7E !important;
        }
        
        /* Cart & Checkout Buttons */
        .wc-whatsapp-cart-button,
        .wc-whatsapp-checkout-button {
            text-align: center;
            margin: 20px 0;
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .wc-whatsapp-floating-button {
                bottom: 80px !important;
            }
            
            .wc-whatsapp-floating-button a {
                padding: 14px 20px;
            }
            
            .wc-whatsapp-product-button .wc-whatsapp-order-btn,
            .wc-whatsapp-cart-button .wc-whatsapp-order-btn,
            .wc-whatsapp-checkout-button .wc-whatsapp-order-btn {
                max-width: 100%;
            }
        }
        
        @media (min-width: 769px) {
            .show-mobile-only .wc-whatsapp-floating-button {
                display: none;
            }
        }
        
        /* Admin Styles */
        .wc-whatsapp-header {
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        }
        