#buzz-ai-chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 370px;
    max-width: 95vw;
    background: #fff;
    border-radius: 18px 18px 0 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    overflow: hidden;
    font-family: 'Segoe UI', Arial, sans-serif;
    display: none;
    border: 2px solid #ffd700;
    transition: box-shadow 0.2s;
}
#buzz-ai-chat-widget.active {
    display: flex;
    flex-direction: column;
    height: 500px;
}
#buzz-ai-chat-header {
    background: linear-gradient(90deg, #ffd700 0%, #ffb347 100%);
    color: #222;
    padding: 18px 20px;
    font-weight: bold;
    font-size: 1.2em;
    cursor: pointer;
    border-bottom: 1px solid #f5e663;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#buzz-ai-chat-header .buzz-title {
    display: flex;
    align-items: center;
    gap: 8px;
}
#buzz-ai-chat-header .buzz-close {
    font-size: 1.3em;
    color: #888;
    cursor: pointer;
    margin-left: 10px;
}
#buzz-ai-chat-body {
    flex: 1;
    max-height: 350px;
    overflow-y: auto;
    padding: 18px 16px 10px 16px;
    background: #faf9f6;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#buzz-ai-chat-input {
    display: flex;
    border-top: 1px solid #eee;
    background: #fff;
    padding: 10px 12px;
    gap: 8px;
}
#buzz-ai-chat-input input {
    flex: 1;
    border: 1px solid #eee;
    padding: 12px;
    font-size: 1em;
    outline: none;
    border-radius: 8px;
    background: #f9f9f9;
    transition: border 0.2s;
}
#buzz-ai-chat-input input:focus {
    border: 1.5px solid #ffd700;
}
#buzz-ai-chat-input button {
    background: #ffd700;
    border: none;
    color: #222;
    padding: 0 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.2s;
}
#buzz-ai-chat-input button:hover {
    background: #ffb347;
}
.buzz-chat-message {
    margin-bottom: 0;
    line-height: 1.6;
    word-break: break-word;
    padding: 8px 14px;
    border-radius: 12px;
    max-width: 85%;
    display: inline-block;
    font-size: 1em;
}
.buzz-chat-message.user {
    text-align: right;
    color: #fff;
    background: linear-gradient(90deg, #ffd700 0%, #ffb347 100%);
    align-self: flex-end;
    margin-left: 15%;
}
.buzz-chat-message.ai {
    text-align: left;
    color: #222;
    background: #f5f5f5;
    align-self: flex-start;
    margin-right: 15%;
    border: 1px solid #ffe066;
}
.buzz-chat-message.suggested {
    background: #fffbe6;
    color: #b38f00;
    border: 1px dashed #ffd700;
    font-size: 0.95em;
    margin-top: 4px;
}
#buzz-ai-chat-footer {
    text-align: center;
    font-size: 0.9em;
    color: #aaa;
    padding: 6px 0 4px 0;
    background: #fffbe6;
    border-top: 1px solid #ffe066;
}
.buzz-dog-carousel {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: #ffe066 #faf9f6;
}
.buzz-dog-carousel::-webkit-scrollbar {
    height: 8px;
    background: #faf9f6;
}
.buzz-dog-carousel::-webkit-scrollbar-thumb {
    background: #ffe066;
    border-radius: 8px;
}
.buzz-dog-card {
    background: #fffbe6;
    border-radius: 14px;
    box-shadow: 0 2px 8px #ffe06633;
    min-width: 200px;
    max-width: 220px;
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 12px 14px 12px;
    transition: box-shadow 0.18s, transform 0.18s;
}
.buzz-dog-card:hover {
    box-shadow: 0 4px 16px #ffd70055;
    transform: translateY(-2px) scale(1.03);
}
.buzz-dog-img-wrap {
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 10px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.buzz-dog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    background: #eee;
}
.buzz-dog-name {
    font-size: 1.1em;
    font-weight: bold;
    color: #b38f00;
    text-align: center;
    margin-bottom: 2px;
}
.buzz-dog-breed {
    font-size: 0.98em;
    color: #555;
    text-align: center;
    margin-bottom: 8px;
}
.buzz-dog-card a {
    color: #ffb347;
    font-weight: bold;
    text-decoration: none;
    font-size: 0.97em;
    margin-top: 4px;
    transition: color 0.18s;
}
.buzz-dog-card a:hover {
    color: #b38f00;
}
