 /* Main widget styling */
        #wa-bot-widget {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 350px;
            max-width: calc(100vw - 40px);
            background: #ffffff;
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
            z-index: 9999;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            display: none;
            overflow: hidden;
            border: 1px solid #e5e7eb;
        }

        #wa-bot-widget.open {
            display: block;
            animation: slideUp 0.3s ease-out;
        }

        @keyframes slideUp {
            from {
                transform: translateY(20px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* Floating WhatsApp button */
        #wa-bot-open {
            position: fixed;
            bottom: 80px;
            right: 20px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
            z-index: 9998;
            transition: all 0.3s ease;
        }

        .wa-float-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
        }

        .wa-float-btn svg {
            width: 32px;
            height: 32px;
            fill: white;
        }

        /* Header styling with camping colors */
        .wa-bot-header {
            background: linear-gradient(135deg, #f97316 0%, #16a34a 50%, #0891b2 100%);
            color: white;
            padding: 16px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-weight: 600;
            font-size: 16px;
        }

        .wa-bot-header-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .wa-bot-avatar {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .wa-bot-close {
            cursor: pointer;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background-color 0.2s;
            font-size: 18px;
        }

        .wa-bot-close:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        /* Body styling */
        .wa-bot-body {
            padding: 20px;
            max-height: 400px;
            overflow-y: auto;
            background: #f8fafc;
        }

        .wa-bot-msg {
            margin-bottom: 16px;
            padding: 12px 16px;
            border-radius: 12px;
            max-width: 85%;
            word-wrap: break-word;
            line-height: 1.4;
        }

        .wa-bot-msg.bot {
            background: white;
            color: #374151;
            margin-right: auto;
            border: 1px solid #e5e7eb;
            position: relative;
        }

        .wa-bot-msg.bot::before {
            content: '';
            position: absolute;
            left: -8px;
            top: 12px;
            width: 0;
            height: 0;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            border-right: 8px solid white;
        }

        .wa-bot-msg.user {
            background: linear-gradient(135deg, #0891b2 0%, #16a34a 100%);
            color: white;
            margin-left: auto;
            position: relative;
        }

        .wa-bot-msg.user::before {
            content: '';
            position: absolute;
            right: -8px;
            top: 12px;
            width: 0;
            height: 0;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            border-left: 8px solid #0891b2;
        }

        /* Category list styling */
        .wa-bot-cat-list {
            list-style: none;
            padding: 0;
            margin: 12px 0 0 0;
        }
.wa-bot-q-list{
	list-style: none;
            padding: 0;
            margin: 12px 0 0 0;
}
.wa-bot-q-list li {
            padding: 12px 16px;
            margin: 8px 0;
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .wa-bot-cat-list li {
            padding: 12px 16px;
            margin: 8px 0;
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .wa-bot-cat-list li:hover {
            background: #f1f5f9;
            border-color: #0891b2;
            transform: translateY(-1px);
        }
.wa-bot-q-list li:hover {
            background: #f1f5f9;
            border-color: #0891b2;
            transform: translateY(-1px);
        }

        .wa-bot-cat-list li.selected {
            background: linear-gradient(135deg, #0891b2 0%, #16a34a 100%);
            color: white;
            border-color: #0891b2;
        }
.wa-bot-q-list li.selected {
            background: linear-gradient(135deg, #0891b2 0%, #16a34a 100%);
            color: white;
            border-color: #0891b2;
        }

        .emoji {
            width: 20px;
            height: 20px;
        }

        /* Footer styling */
     .wa-bot-footer {
    display: none;
    border-top: 1px solid #eee;
    padding: 16px 20px;
    background: #fafafa;
    gap: 5px;
    justify-content: center;
    align-items: center;
}
        .wa-bot-input {
            flex: 1;
            padding: 12px 16px;
            border: 1px solid #e5e7eb;
            border-radius: 24px;
            outline: none;
            font-size: 14px;
            transition: border-color 0.2s;
        }

        .wa-bot-input:focus {
            border-color: #0891b2;
        }
        button.wa-bot-more-help-btn {
    background: none !important;
    color: black  !important;
}

        .wa-bot-send {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #0891b2 0%, #16a34a 100%);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  padding: 0;
}

        .wa-bot-send:hover {
            transform: scale(1.1);
        }

        .wa-bot-send:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* Typing indicator */
        .typing-indicator {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 8px 0;
        }

        .typing-dot {
            width: 8px;
            height: 8px;
            background: #94a3b8;
            border-radius: 50%;
            animation: typing 1.4s infinite ease-in-out;
        }

        .typing-dot:nth-child(2) { animation-delay: 0.2s; }
        .typing-dot:nth-child(3) { animation-delay: 0.4s; }

        @keyframes typing {
            0%, 60%, 100% { transform: translateY(0); }
            30% { transform: translateY(-10px); }
        }

        /* Status indicator */
        .status-online {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.9);
        }

        .status-dot {
            width: 8px;
            height: 8px;
            background: #10b981;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        /* Responsive design */
        @media (max-width: 480px) {
            #wa-bot-widget {
                width: calc(100vw - 20px);
                right: 10px;
                bottom: 30px;
            }
            
            .wa-float-btn {
                right: 10px;
                bottom: 10px;
            }
        }