﻿body {
    /*font-family: Arial, Helvetica, sans-serif;*/
}

h3 {
    margin: 0px;
}

.ai-launch-btn {
    position: fixed;
    right: 20px;
    bottom: 18px;
    z-index: 9999;
    background: var(--accent-color);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(67, 46, 196, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.25s ease-in-out;
    z-index:2;
}

    .ai-launch-btn i {
        font-size: 17px;
    }

    .ai-launch-btn:hover {
        transform: translateY(-4px) scale(1.05);
        box-shadow: 0 10px 30px rgba(67, 46, 196, 0.7);
    }



.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    z-index: 9999;
}
    .overlay p{
        margin-bottom:1em !important;
    }

    .overlay h3,h4 {
        font-size: 1.4em !important;
    }

    .popup {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        width: 850px;
        height: 80vh;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.35);
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

.header {
    background: linear-gradient(90deg, #6053e6, #464040);
    color: #fff;
    padding: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.body {
    flex: 1;
    padding: 20px;
    overflow: auto;
    background: #f8f8fb;
}

.footer {
    padding: 12px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
    background: #fff;
}

input[type=text] {
    flex: 1;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
}

button.send {
    background: var(--accent-color);;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 10px;
    cursor: pointer;
}

.msg-user {
    background: var(--accent-color);;
    color: #fff;
    padding: 10px 14px;
    border-radius: 16px;
    margin: 10px 0;
    margin-left: auto;
    max-width: 40%;
}

.msg-ai {
    background: #fff;
    border: 1px solid #e7e7ee;
    padding: 12px 16px;
    border-radius: 16px;
    margin: 10px 0;
    max-width: 75%;
}

.typing-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);;
    animation: blink 1.2s infinite;
}

    .dot:nth-child(2) {
        animation-delay: .15s;
    }

    .dot:nth-child(3) {
        animation-delay: .3s;
    }

@keyframes blink {
    0% {
        opacity: .2
    }

    50% {
        opacity: 1
    }

    100% {
        opacity: .2
    }
}

.designer-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    margin: 12px 0;
    border: 1px solid #eee;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.designer-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
}

.designer-head {
    display: flex;
    gap: 12px;
    align-items: center;
}

.designer-meta {
    font-size: 14px;
    color: #555;
    margin: 4px 0;
}

.why-title {
    margin-top: 10px;
    font-weight: 700;
    color: #222;
}
