/* product-landing.css */

/* Hide Scrollbar for chat container */
.hide-scroll::-webkit-scrollbar {
    display: none;
}
.hide-scroll {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Chat Bubbles Animation */
@keyframes slideUpFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.chat-bubble {
    animation: slideUpFadeIn 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
    transform-origin: bottom left;
}

.chat-bubble.sent {
    transform-origin: bottom right;
}

/* Typing Indicator Animation */
.typing-indicator span {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #8696a0;
    border-radius: 50%;
    margin: 0 2px;
    animation: bounce 1.4s infinite ease-in-out both;
}

.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* Phone Mockup Specific styles */
.wa-phone-mockup {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255,255,255,0.1);
}

/* Interactive Options Hover */
.demo-option {
    transition: all 0.2s ease;
}
.demo-option:hover {
    background-color: #2a3942;
    transform: translateX(4px);
}
.demo-option:active {
    transform: scale(0.98);
}
