/* Base styles */
:root {
    /* Minimalist Fresh Theme Colors */
    --primary-color: #0ea5e9;
    /* Fresh Sky Blue */
    --primary-light: #38bdf8;
    --primary-gradient: linear-gradient(135deg, #38bdf8, #0ea5e9);
    --primary-tint: rgba(14, 165, 233, 0.08);

    --bg-color: #f9fafb;
    --bg-glass: #ffffff;
    /* No more glass, just pure solid white */
    --header-glass: #ffffff;
    --border-glass: #e5e7eb;
    /* Clean light gray border */

    --btn-bg: #f3f4f6;
    --msg-bg-white: #ffffff;
    --text-dark: #111827;
    --text-muted: #6b7280;

    --border-radius-lg: 16px;
    --border-radius-md: 12px;
    --border-radius-sm: 8px;

    --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-strong: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    font-family: var(--font-family);
    background-color: #e0e0f0;
    /* Page background, adjust as needed */
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Widget Container */
.livechat-widget {
    width: 380px;
    max-width: 100%;
    height: 80vh;
    background-color: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-strong);
    display: flex;
    flex-direction: column;
    overflow: hidden;

    /* Animation Styles */
    position: fixed;
    z-index: 1000;
    bottom: 90px;
    right: 24px;
    opacity: 1;
    transform: scale(1) translateY(0);
    transform-origin: bottom right;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

/* Hidden state for widget */
.livechat-widget.hidden {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
    pointer-events: none;
}

/* Launcher Button */
.livechat-launcher {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    color: #FFFFFF;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s ease;
}

.livechat-launcher:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(14, 165, 233, 0.4);
}

.livechat-launcher svg {
    position: absolute;
    width: 26px;
    height: 28px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.livechat-launcher .msg-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

.livechat-launcher .x-icon {
    opacity: 1;
    transform: rotate(0) scale(1);
}

/* Launcher states */
.livechat-launcher.closed .msg-icon {
    opacity: 1;
    transform: rotate(0) scale(1);
    animation: breathe 2s ease-in-out infinite;
}

.livechat-launcher.closed .x-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

@keyframes breathe {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

/* Header (Floating controls) */
.livechat-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    background: #ffffff;
    border-bottom: 1px solid var(--border-glass);
}

.header-left,
.header-right {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

/* Center Agent Pill in Header */
.header-agent-pill {
    display: flex;
    align-items: center;
    background-color: var(--msg-bg-white);
    padding: 6px 16px 6px 6px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    /* Slightly stronger shadow to lift off background */
    gap: 10px;
    margin: 0 10px;
    /* buffer from side buttons */
}

.agent-avatar-sm-pill {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #4C4B63;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-shrink: 0;
}

.agent-avatar-sm-pill svg {
    width: 14px;
    height: 14px;
    fill: var(--primary-color);
}

.online-indicator-sm {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    background-color: #0CAF60;
    border: 2px solid var(--msg-bg-white);
    border-radius: 50%;
}

.agent-name-pill {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 14px;
    white-space: nowrap;
}

.icon-btn-round {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--btn-bg);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: var(--text-dark);
    transition: background-color 0.2s;
}

.icon-btn-round:hover {
    background-color: #dcdce2;
}

.icon-btn-round svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Messages Area */
.livechat-messages {
    flex-grow: 1;
    padding: 60px 16px 16px 16px;
    /* Space for top header */
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Push messages down when there are few of them (anchors to bottom view) */
.livechat-messages> :first-child {
    margin-top: auto;
}

/* Agent Profile Card in Chat */
.agent-profile-card {
    background: #ffffff;
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 16px;
    box-shadow: var(--shadow-subtle);
    width: fit-content;
    align-self: center;
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.agent-header-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.agent-avatar-lg {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #4C4B63;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.agent-avatar-lg svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-color);
}

.online-indicator {
    position: absolute;
    top: 0;
    right: -2px;
    width: 12px;
    height: 12px;
    background-color: #0CAF60;
    border: 2px solid var(--msg-bg-white);
    border-radius: 50%;
}

.agent-info {
    text-align: left;
}

.agent-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
    margin: 0;
    line-height: 1.2;
}

.agent-role {
    color: var(--text-muted);
    font-size: 12px;
    margin: 2px 0 0 0;
}

.feedback-actions {
    display: flex;
    gap: 16px;
}

.feedback-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: var(--text-dark);
}

.feedback-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@keyframes messageSlideUp {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Message Bubbles */
.message {
    display: flex;
    max-width: 90%;
    gap: 8px;
    animation: messageSlideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    transform-origin: bottom center;
}

.message.incoming {
    align-self: flex-start;
}

.message.outgoing {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-avatar-sm {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #4C4B63;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-top: 4px;
    /* Align with top text line */
}

.message-avatar-sm svg {
    width: 12px;
    height: 12px;
    fill: var(--primary-color);
}

.message-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Message Bubbles */
.message-bubble {
    padding: 14px 16px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-dark);
    word-break: break-word;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.message-bubble:hover {
    transform: translateY(-2px);
}

.chat-uploaded-image {
    max-width: 100%;
    max-height: 200px;
    border-radius: 8px;
    margin-top: 4px;
    object-fit: cover;
    display: block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.chat-bubble-article {
    padding: 0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.chat-article-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #ffffff;
    padding: 12px;
    border-radius: 12px;
    max-width: 100%;
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--border-glass);
}

.chat-article-img,
.chat-article-img-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}

.chat-article-img-placeholder {
    background: #f0f0f0;
}

.chat-article-body {
    flex-grow: 1;
    overflow: hidden;
}

.chat-article-title {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.chat-article-exc {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.chat-article-link {
    display: inline-block;
    font-size: 12px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    padding-top: 8px;
    border-top: 1px solid #f0f0f0;
    width: 100%;
    text-align: center;
}

.chat-article-link:hover {
    color: #52065e;
    text-decoration: underline;
}

/* Markdown Styles inside message bubble */
.message-bubble p {
    margin: 0 0 8px 0;
}

.message-bubble p:last-child {
    margin-bottom: 0;
}

.message-bubble pre {
    background-color: rgba(0, 0, 0, 0.05);
    padding: 10px;
    border-radius: 6px;
    overflow-x: auto;
    margin: 8px 0;
}

.message.outgoing .message-bubble pre {
    background-color: rgba(0, 0, 0, 0.2);
}

.message-bubble code {
    font-family: Consolas, Monaco, monospace;
    background-color: rgba(0, 0, 0, 0.05);
    padding: 2px 4px;
    border-radius: 4px;
    font-size: 13px;
}

.message.outgoing .message-bubble code {
    background-color: rgba(0, 0, 0, 0.2);
}

.message-bubble pre code {
    background-color: transparent;
    padding: 0;
}

.message-bubble ul,
.message-bubble ol {
    margin: 8px 0 8px 20px;
    padding: 0;
}

.message-bubble h1,
.message-bubble h2,
.message-bubble h3,
.message-bubble h4,
.message-bubble h5,
.message-bubble h6 {
    margin: 12px 0 8px 0;
    font-weight: 600;
}

.message-bubble a {
    color: var(--primary-color);
    text-decoration: underline;
}

.message.outgoing .message-bubble a {
    color: #FFFFFF;
}

.message.incoming .message-bubble {
    background: #ffffff;
    border: 1px solid var(--border-glass);
    /* Top-left, Top-right, Bottom-right, Bottom-left */
    border-radius: var(--border-radius-sm) var(--border-radius-lg) var(--border-radius-lg) var(--border-radius-lg);
}

.message.outgoing .message-bubble {
    background: var(--primary-color);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
    border-radius: var(--border-radius-lg) var(--border-radius-sm) var(--border-radius-lg) var(--border-radius-lg);
}

.human-support-link {
    font-size: 11px;
    color: var(--text-muted);
    text-decoration: none;
    margin-top: 4px;
    opacity: 0.7;
    transition: opacity 0.2s, color 0.2s;
    width: 100%;
    text-align: center;
    display: block;
}

.human-support-link:hover {
    opacity: 1;
    color: var(--primary-color);
    text-decoration: underline;
}

.message-status {
    font-size: 11px;
    color: var(--text-muted);
    align-self: flex-end;
    /* right align for outgoing */
    margin-top: -2px;
}

/* Typewriter Cursor */
.typewriter-cursor {
    display: inline-block;
    width: 2px;
    height: 14px;
    background-color: var(--text-dark);
    vertical-align: middle;
    margin-left: 2px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* Suggested Questions */
.suggestions-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
    padding-left: 40px;
    /* Align with message bubble (24px avatar + 8px gap + 8px padding) */
    max-width: 85%;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.suggestions-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.suggestion-chip {
    background: #ffffff;
    border: 1px solid var(--primary-light);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font-family);
    cursor: pointer;
    text-align: left;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: fit-content;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.suggestion-chip:hover {
    background: #f0f9ff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.15);
    transform: translateY(-2px);
}

.suggestion-chip:active {
    transform: scale(0.98);
}

/* Typing indicator */
.typing-indicator-container {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 14px 16px;
    background: #ffffff;
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-sm) var(--border-radius-lg) var(--border-radius-lg) var(--border-radius-lg);
    box-shadow: var(--shadow-subtle);
    width: fit-content;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background-color: var(--text-muted);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typing {

    0%,
    80%,
    100% {
        transform: scale(0.6);
        opacity: 0.4;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Input Area */
.livechat-input-area {
    padding: 12px 16px;
    background: #ffffff;
    border-top: 1px solid var(--border-glass);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Attachment Menu */
.attachment-menu {
    position: absolute;
    bottom: 100%;
    left: 16px;
    margin-bottom: 10px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 8px;
    z-index: 100;
    width: 280px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.attachment-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border: none;
    background: transparent;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
    text-align: left;
}

.attachment-item:hover {
    background: rgba(0, 0, 0, 0.05);
}

.article-list-header {
    font-size: 12px;
    color: #888;
    padding: 8px 12px 4px;
    border-bottom: 1px solid #eee;
    margin-bottom: 4px;
}

.article-list {
    max-height: 200px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.article-item-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    text-align: left;
    padding: 8px 12px;
    border: none;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.art-thumb,
.art-thumb-placeholder {
    width: 44px;
    height: 44px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
}

.art-thumb-placeholder {
    background: #f0f0f0;
}

.art-info {
    flex-grow: 1;
    overflow: hidden;
}

.article-item-btn:hover {
    background: #f5f5f5;
}

.art-title {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.art-exc {
    font-size: 11px;
    color: #888;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Base Input Layout */
.input-container {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--border-glass);
    border-radius: 30px;
    padding: 8px 8px 8px 16px;
    box-shadow: var(--shadow-subtle);
    gap: 8px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.input-container:focus-within {
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.1);
    border-color: var(--primary-light);
}

.icon-btn-flat {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-dark);
}

.icon-btn-flat svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.livechat-input {
    flex-grow: 1;
    border: none;
    outline: none;
    font-size: 14px;
    font-family: var(--font-family);
    padding: 6px 0;
    background: transparent;
    color: var(--text-dark);
    height: 24px;
    line-height: 24px;
}

.livechat-input::placeholder {
    color: var(--text-muted);
}

.send-btn-round {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--btn-bg);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: default;
    /* Inactive by default */
    color: #A0A0B0;
}

.send-btn-round.active {
    background: var(--primary-color);
    color: #FFFFFF;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
    transform: scale(1.05);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s ease;
}

.send-btn-round.active:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(14, 165, 233, 0.3);
}

.send-btn-round svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Footer */
.livechat-footer {
    text-align: center;
    padding-bottom: 12px;
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.livechat-footer img {
    height: 12px;
    vertical-align: middle;
}

.livechat-footer span {
    font-weight: 500;
    color: var(--text-dark);
}

/* Custom scrollbar */
.livechat-messages::-webkit-scrollbar {
    width: 4px;
}

/* Product Grid Styles */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 8px;
}

.chat-product-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-subtle);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s ease;
    border: 1px solid var(--border-glass);
}

.chat-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.1);
}

.product-item-img,
.product-item-img-placeholder {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.product-item-img-placeholder {
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #999;
}

.product-item-info {
    padding: 8px;
}

.product-item-title {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-item-exc {
    font-size: 11px;
    color: #888;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.livechat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.livechat-messages::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

/* --- QR Code Modal --- */
.qr-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.qr-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.qr-modal-content {
    background: #fff;
    padding: 24px;
    border-radius: 20px;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    width: 280px;
    max-width: 90%;
}

.qr-modal-overlay.active .qr-modal-content {
    transform: scale(1);
}

#qrModalImg {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 8px;
}

.qr-modal-close {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
}

.qr-modal-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(14, 165, 233, 0.3);
}