/* Floating Disclaimer Styling */
        .ought-prdct-float-message-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            max-width: 300px;
        }
        
        .ought-prdct-float-message {
            background-color: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            font-family: Arial, sans-serif;
            font-size: 14px;
            line-height: 1.5;
            color: #333;
        }
        
        .ought-prdct-float-message-header {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .ought-prdct-float-message-icon {
            color: #dc3545;
            margin-right: 8px;
            font-size: 18px;
        }
        
        .ought-prdct-float-message-title {
            font-weight: bold;
            color: #dc3545;
            margin: 0;
        }
        
        .ought-prdct-float-message-content {
            margin-bottom: 15px;
        }
        
        .ought-prdct-float-message-whatsapp {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #25D366;
            color: white;
            text-decoration: none;
            padding: 8px 15px;
            border-radius: 4px;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        
        .ought-prdct-float-message-whatsapp:hover {
            background-color: #128C7E;
            color: white;
        }
        
        .ought-prdct-float-message-whatsapp-icon {
            margin-right: 8px;
            font-size: 18px;
        }
        
        .ought-prdct-float-message-close {
            position: absolute;
            top: 10px;
            right: 10px;
            background: none;
            border: none;
            font-size: 16px;
            cursor: pointer;
            color: #6c757d;
        }
        
        /* Responsive adjustments - FIXED FOR MOBILE */
        @media (max-width: 768px) {
            .ought-prdct-float-message-container {
                max-width: 280px;
                bottom: 15px;
                right: 15px;
                left: auto; /* Ensure it stays on the right */
            }
        }
        
        @media (max-width: 576px) {
            .ought-prdct-float-message-container {
                position: fixed; /* Keep it fixed on mobile */
                max-width: calc(100vw - 30px); /* Responsive width */
                bottom: 10px;
                right: 15px;
                left: 15px;
                margin: 0 auto; /* Center it if needed */
            }
            
            .ought-prdct-float-message {
                padding: 12px;
                font-size: 13px;
            }
            
            .ought-prdct-float-message-whatsapp {
                padding: 6px 12px;
                font-size: 13px;
            }
        }
        
        /* For very small screens */
        @media (max-width: 360px) {
            .ought-prdct-float-message-container {
                max-width: calc(100vw - 20px);
                right: 10px;
                left: 10px;
            }
        }