/* ── AMT Shopping Agent — AI Gradient Theme ─────────────────────────────── */

:root {
    --amt-ai-pink: #e000c4;
    --amt-ai-purple: #7a5cff;
    --amt-ai-blue: #009dff;
    --amt-ai-cyan: #00c8ff;

    --amt-ai-gradient: linear-gradient(135deg, #e000c4 0%, #7a5cff 48%, #009dff 100%);
    --amt-ai-gradient-hover: linear-gradient(135deg, #c900b0 0%, #654cff 48%, #008ee8 100%);
    --amt-ai-soft: linear-gradient(135deg, rgba(224, 0, 196, 0.10) 0%, rgba(122, 92, 255, 0.10) 48%, rgba(0, 157, 255, 0.12) 100%);

    --amt-ai-text: #202434;
    --amt-ai-muted: #7b8497;
    --amt-ai-border: #e8ebf5;
    --amt-ai-bg: #f7f8fc;
    --amt-ai-card: #ffffff;

    --amt-ai-shadow: 0 18px 45px rgba(31, 37, 76, 0.16);
    --amt-ai-glow: 0 12px 28px rgba(122, 92, 255, 0.26);
}

#amt-agent-root {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ── Shared AI Icon ─────────────────────────────────────────────────────── */
.amt-ai-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    background: var(--amt-ai-gradient);
    -webkit-background-clip: text;
    background-clip: text;
}

.amt-ai-icon svg {
    color: #7a5cff;
    filter: drop-shadow(0 4px 8px rgba(122, 92, 255, 0.22));
}

/* ── FAB Button ─────────────────────────────────────────────────────────── */
.amt-agent-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999999;
    display: flex;
    align-items: center;
    gap: 9px;
    background: #fff;
    color: var(--amt-ai-text);
    border: 1px solid rgba(122, 92, 255, 0.22);
    border-radius: 50px;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(31, 37, 76, 0.14);
    transition: all 0.22s ease;
    overflow: hidden;
}

.amt-agent-fab::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--amt-ai-soft);
    opacity: 0;
    transition: opacity 0.22s ease;
}

.amt-agent-fab:hover {
    transform: translateY(-2px);
    box-shadow: var(--amt-ai-glow);
    border-color: rgba(122, 92, 255, 0.38);
}

.amt-agent-fab:hover::before {
    opacity: 1;
}

.amt-agent-fab > span {
    position: relative;
    z-index: 1;
}

.amt-fab-icon {
    width: 28px;
    height: 28px;
    border-radius: 12px;
    background: var(--amt-ai-soft);
    -webkit-background-clip: initial;
    background-clip: initial;
}

.amt-fab-label {
    background: var(--amt-ai-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.amt-fab-icon svg {
    width: 18px;
    height: 18px;
}

/* ── Chat Panel ─────────────────────────────────────────────────────────── */
.amt-agent-panel {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 99999;
    width: 400px;
    max-height: 660px;
    min-height: 520px;
    background: var(--amt-ai-card);
    border-radius: 22px;
    box-shadow: var(--amt-ai-shadow);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(122, 92, 255, 0.16);
}

.amt-agent-panel::before {
    content: "";
    height: 4px;
    background: var(--amt-ai-gradient);
    flex-shrink: 0;
}

/* ── Header ─────────────────────────────────────────────────────────────── */
.amt-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-bottom: 1px solid var(--amt-ai-border);
    padding: 16px 18px;
    flex-shrink: 0;
}

.amt-panel-title {
    display: flex;
    align-items: center;
    gap: 11px;
}

.amt-panel-icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: var(--amt-ai-soft);
    -webkit-background-clip: initial;
    background-clip: initial;
}

.amt-panel-icon svg {
    width: 24px;
    height: 24px;
}

.amt-panel-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.amt-panel-title-name {
    font-size: 17px;
    font-weight: 900;
    background: var(--amt-ai-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.35px;
}

.amt-panel-header-sub {
    font-size: 11px;
    color: var(--amt-ai-muted);
    font-weight: 500;
}

.amt-panel-close {
    background: #f5f6fb;
    border: 1px solid var(--amt-ai-border);
    color: #6c7486;
    font-size: 14px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.amt-panel-close:hover {
    background: var(--amt-ai-gradient);
    color: #fff;
    border-color: transparent;
}

/* ── Messages Area ──────────────────────────────────────────────────────── */
.amt-panel-messages {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 18px 16px 10px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background:
        radial-gradient(circle at top left, rgba(224, 0, 196, 0.07), transparent 28%),
        radial-gradient(circle at bottom right, rgba(0, 157, 255, 0.08), transparent 30%),
        var(--amt-ai-bg);
    scroll-behavior: smooth;
}

.amt-panel-messages::-webkit-scrollbar {
    width: 4px;
}

.amt-panel-messages::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #e000c4, #009dff);
    border-radius: 6px;
}

/* ── Welcome Block ──────────────────────────────────────────────────────── */
.amt-welcome-block {
    text-align: center;
    padding: 10px 8px 8px;
}

.amt-welcome-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 10px;
    border-radius: 20px;
    background: var(--amt-ai-soft);
    -webkit-background-clip: initial;
    background-clip: initial;
}

.amt-welcome-icon svg {
    width: 38px;
    height: 38px;
}

.amt-welcome-greeting {
    font-size: 19px;
    font-weight: 900;
    background: var(--amt-ai-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.amt-welcome-text {
    font-size: 14px;
    color: #596174;
    line-height: 1.55;
}

.amt-welcome-text strong {
    color: var(--amt-ai-text);
}

/* ── Suggestion Chips ───────────────────────────────────────────────────── */
.amt-chips-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}

.amt-chips-label {
    font-size: 12px;
    color: var(--amt-ai-muted);
    font-weight: 600;
    padding-left: 2px;
}

.amt-chips-grid {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.amt-chip {
    background: #fff;
    border: 1.5px solid var(--amt-ai-border);
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 13px;
    cursor: pointer;
    color: var(--amt-ai-text);
    font-family: inherit;
    font-weight: 600;
    text-align: left;
    transition: all 0.2s ease;
    line-height: 1.45;
    display: block;
    width: 100%;
    box-shadow: 0 2px 8px rgba(31, 37, 76, 0.04);
}

.amt-chip::before {
    content: "✦";
    margin-right: 7px;
    background: var(--amt-ai-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.amt-chip:hover {
    border-color: rgba(122, 92, 255, 0.42);
    color: #5a42e8;
    background: var(--amt-ai-soft);
    transform: translateX(2px);
}

.amt-chip-more {
    color: #5a42e8;
    border-color: rgba(122, 92, 255, 0.28);
    background: var(--amt-ai-soft);
    font-weight: 800;
    text-align: center;
}

.amt-chip-loading {
    font-size: 12px;
    color: var(--amt-ai-muted);
    font-style: italic;
    padding: 4px;
}

/* ── Message Bubbles ────────────────────────────────────────────────────── */
.amt-message {
    display: flex;
    flex-direction: column;
    max-width: 88%;
}

.amt-message-user {
    align-self: flex-end;
}

.amt-message-bot {
    align-self: flex-start;
}

.amt-message p {
    margin: 0;
    padding: 12px 15px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.58;
    word-wrap: break-word;
}

.amt-message-time {
    font-size: 10px;
    color: #aab1c2;
    margin-top: 4px;
    padding: 0 4px;
}

.amt-message-user .amt-message-time {
    text-align: right;
}

.amt-message-user p {
    background: var(--amt-ai-gradient);
    color: #fff;
    border-bottom-right-radius: 5px;
    box-shadow: 0 8px 20px rgba(122, 92, 255, 0.25);
}

.amt-message-bot p {
    background: #fff;
    color: var(--amt-ai-text);
    border-bottom-left-radius: 5px;
    box-shadow: 0 6px 18px rgba(31, 37, 76, 0.07);
    border: 1px solid var(--amt-ai-border);
}

.amt-message-bot p a {
    color: #5a42e8;
    font-weight: 700;
    text-decoration: underline;
}

/* ── Product Cards ──────────────────────────────────────────────────────── */
.amt-products-grid {
    display: flex;
    flex-direction: column;
    gap: 9px;
    width: 100%;
}

.amt-product-card {
    display: flex;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--amt-ai-border);
    border-radius: 15px;
    padding: 11px;
    align-items: flex-start;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(31, 37, 76, 0.05);
}

.amt-product-card:hover {
    box-shadow: 0 8px 24px rgba(122, 92, 255, 0.14);
    border-color: rgba(122, 92, 255, 0.24);
    transform: translateY(-1px);
}

.amt-product-img-wrap {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fd;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid var(--amt-ai-border);
}

.amt-product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 3px;
}

.amt-no-img {
    font-size: 26px;
    color: #c5ccdc;
}

.amt-product-info {
    flex: 1;
    min-width: 0;
}

.amt-product-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 13px;
    font-weight: 700;
    color: var(--amt-ai-text);
    text-decoration: none;
    line-height: 1.42;
    margin-bottom: 4px;
}

.amt-product-name:hover {
    color: #5a42e8;
}

.amt-product-price {
    font-size: 15px;
    font-weight: 900;
    background: var(--amt-ai-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.amt-product-actions {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.amt-btn {
    padding: 5px 11px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    border: 1.5px solid transparent;
    transition: all 0.18s ease;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    font-family: inherit;
}

.amt-btn-view {
    background: #171b2c;
    color: #fff;
}

.amt-btn-view:hover {
    background: #2a3048;
    color: #fff;
}

.amt-btn-cart {
    background: var(--amt-ai-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 14px rgba(122, 92, 255, 0.18);
}

.amt-btn-cart:hover {
    background: var(--amt-ai-gradient-hover);
    color: #fff;
}

.amt-btn-enquire {
    background: #fff;
    color: #5a42e8;
    border-color: rgba(122, 92, 255, 0.38);
}

.amt-btn-enquire:hover {
    background: var(--amt-ai-soft);
}

/* ── Typing Indicator ───────────────────────────────────────────────────── */
.amt-typing {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 20px 2px;
    flex-shrink: 0;
    background: var(--amt-ai-bg);
}

.amt-typing span {
    width: 7px;
    height: 7px;
    background: #cfd5e4;
    border-radius: 50%;
    animation: amt-bounce 1.2s infinite;
}

.amt-typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.amt-typing span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes amt-bounce {
    0%, 80%, 100% {
        transform: scale(0.7);
        background: #cfd5e4;
    }
    40% {
        transform: scale(1.2);
        background: #7a5cff;
    }
}

/* ── Input Area ─────────────────────────────────────────────────────────── */
.amt-panel-input {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    padding: 11px 14px 14px;
    border-top: 1px solid var(--amt-ai-border);
    flex-shrink: 0;
    background: #fff;
}

.amt-panel-input textarea {
    flex: 1;
    border: 1.5px solid var(--amt-ai-border);
    border-radius: 14px;
    padding: 10px 14px;
    font-size: 14px;
    resize: none;
    outline: none;
    max-height: 100px;
    line-height: 1.5;
    font-family: inherit;
    color: var(--amt-ai-text);
    background: #fafbff;
    transition: all 0.2s ease;
}

.amt-panel-input textarea:focus {
    border-color: rgba(122, 92, 255, 0.45);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(122, 92, 255, 0.08);
}

.amt-panel-input textarea::placeholder {
    color: #aeb6c8;
}

.amt-panel-input textarea::-webkit-scrollbar {
    display: none;
}

.amt-panel-input textarea {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.amt-send-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--amt-ai-gradient);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
    box-shadow: var(--amt-ai-glow);
}

.amt-send-btn:hover {
    background: var(--amt-ai-gradient-hover);
    transform: scale(1.07);
}

.amt-send-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
}

/* ── PDP Widget ─────────────────────────────────────────────────────────── */
.amt-agent-pdp-widget {
    background: #fff;
    border: 1.5px solid rgba(122, 92, 255, 0.14);
    border-radius: 16px;
    padding: 16px 18px;
    margin: 20px 0;
    box-shadow: 0 8px 24px rgba(31, 37, 76, 0.08);
    position: relative;
    overflow: hidden;
}

.amt-agent-pdp-widget::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--amt-ai-soft);
    opacity: 0.55;
    pointer-events: none;
}

.amt-agent-pdp-header,
.amt-agent-pdp-chips {
    position: relative;
    z-index: 1;
}

.amt-agent-pdp-header {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--amt-ai-text);
}

.amt-agent-icon {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    background: #fff;
    -webkit-background-clip: initial;
    background-clip: initial;
    box-shadow: 0 4px 12px rgba(122, 92, 255, 0.12);
}

.amt-agent-icon svg {
    width: 18px;
    height: 18px;
}

.amt-agent-pdp-header strong {
    background: var(--amt-ai-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.amt-agent-pdp-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.amt-agent-pdp-chips .amt-chip {
    display: inline-flex;
    width: auto;
    padding: 8px 14px;
    font-size: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
    .amt-agent-panel {
        width: 100vw;
        height: 75vh;
        max-height: 75vh;
        bottom: 0;
        right: 0;
        border-radius: 18px 18px 0 0;
        position: fixed;
    }

    .amt-agent-fab {
        bottom: 16px;
        right: 16px;
        border-radius: 50%;
        width: 54px;
        height: 54px;
        padding: 0;
        justify-content: center;
    }

    .amt-fab-label {
        display: none;
    }

    .amt-fab-icon {
        width: 34px;
        height: 34px;
    }

    .amt-panel-header {
        padding: 14px 16px;
        position: relative;
    }

    .amt-panel-close {
        position: absolute;
        right: 14px;
        top: 50%;
        transform: translateY(-50%);
        background: #f5f6fb;
        width: 34px;
        height: 34px;
        font-size: 16px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        z-index: 10;
    }

    .amt-panel-messages {
        padding: 12px 12px 8px;
    }

    .amt-panel-input {
        padding: 8px 12px 12px;
    }

    .amt-welcome-block {
        padding: 4px 0;
    }

    .amt-welcome-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 7px;
    }

    .amt-welcome-icon svg {
        width: 32px;
        height: 32px;
    }

    .amt-welcome-greeting {
        font-size: 16px;
    }

    .amt-welcome-text {
        font-size: 13px;
    }

    .amt-agent-pdp-chips .amt-chip {
        width: 100%;
        justify-content: flex-start;
    }
}

/* ── Streaming cursor ───────────────────────────────────────────────────── */
.amt-cursor {
    display: inline-block;
    width: 2px;
    background: #7a5cff;
    margin-left: 2px;
    animation: amt-blink 0.7s infinite;
    vertical-align: middle;
    height: 1em;
}

@keyframes amt-blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/* PDP: keep Arlo bubble visible */
.catalog-product-view .amt-agent-fab {
    display: flex !important;
    right: 24px !important;
    bottom: 28px !important;
}

/* PDP: open chat panel on the left side */
.catalog-product-view #amt-agent-panel {
    left: 0px !important;
    right: auto !important;
    top: 0px !important;
    bottom: auto !important;
    width: 360px !important;
    height:100vh !important;
    min-height: 0 !important;
    max-height: none !important;
}

/* Do not disturb product page layout */
/*.catalog-product-view .page-main,
.catalog-product-view .columns,
.catalog-product-view .column.main {
    padding-left: initial !important;
}*/
.catalog-product-view .amt-agent-panel {z-index: 9999999;border-radius: 0px}
/* Mobile PDP: open as bottom sheet */
@media (max-width: 991px) {
    .catalog-product-view #amt-agent-panel {
        left: 0 !important;
        right: 0 !important;
        top: auto !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 75vh !important;
        border-radius: 22px 22px 0 0 !important;
    }
}

/* ── Shift website when Ask Arlo is open ───────────────────────────── */

/* ── Ask Arlo: full-height left panel ONLY on product detail page ───────── */

body.amt-agent-open {
    overflow-x: hidden;
}

/* =========================================================
   PRODUCT DETAIL PAGE ONLY - DESKTOP
   Full-height fixed left panel
========================================================= */
@media (min-width: 992px) {

    body.amt-agent-open.catalog-product-view #amt-agent-panel {
        position: fixed !important;
        left: 0 !important;
        top: 0 !important;
        bottom: 0 !important;
        right: auto !important;

        width: 380px !important;
        height: 100vh !important;
        min-height: 100vh !important;
        max-height: 100vh !important;

        border-radius: 0px !important;
        z-index: 999999 !important;
        display: flex !important;
    }

    body.amt-agent-open.catalog-product-view #amt-agent-panel .amt-panel-header {
        flex-shrink: 0 !important;
    }

    body.amt-agent-open.catalog-product-view #amt-agent-panel .amt-panel-messages {
        flex: 1 1 auto !important;
        min-height: 0 !important;
        max-height: none !important;
        overflow-y: auto !important;
    }

    body.amt-agent-open.catalog-product-view #amt-agent-panel .amt-typing,
    body.amt-agent-open.catalog-product-view #amt-agent-panel .amt-panel-input {
        flex-shrink: 0 !important;
    }

    /* Move website only on PDP when chat is open */
    body.amt-agent-open.catalog-product-view .page-wrapper {
        margin-left: 380px !important;
        width: calc(100% - 380px) !important;
        transition: margin-left 0.28s ease, width 0.28s ease;
        position: relative;
    }

    body.catalog-product-view:not(.amt-agent-open) .page-wrapper {
        margin-left: 0 !important;
        width: 100% !important;
        transition: margin-left 0.28s ease, width 0.28s ease;
    }

    /* Your PDP layout adjustments - scoped only to PDP open state */
    body.amt-agent-open.catalog-product-view #maincontent {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    body.amt-agent-open.catalog-product-view:not(.fotorama--fullscreen) .fotorama__wrap--slide .fotorama__stage__frame,
    body.amt-agent-open.catalog-product-view:not(.fotorama--fullscreen) .fotorama__stage {
        width: 350px !important;
    }

    body.amt-agent-open.catalog-product-view .product-add-form {
        max-width: 270px;
    }

    body.amt-agent-open.catalog-product-view .box-tocart-right {
        max-width: 270px;
        min-width: 270px;
    }

    body.amt-agent-open.catalog-product-view .product.detailed .product.data.items > .item.content .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* =========================================================
   NON-PRODUCT PAGES
   Keep normal bottom-right chatbot behavior
========================================================= */
@media (min-width: 992px) {

    body.amt-agent-open:not(.catalog-product-view) #amt-agent-panel {
        position: fixed !important;
        right: 28px !important;
        bottom: 28px !important;
        left: auto !important;
        top: auto !important;

        width: 400px !important;
        max-height: 660px !important;
        min-height: 520px !important;
        height: auto !important;

        border-radius: 22px !important;
        z-index: 99999 !important;
        display: flex !important;
    }

    body.amt-agent-open:not(.catalog-product-view) .page-wrapper {
        margin-left: 0 !important;
        width: 100% !important;
    }
}

/* =========================================================
   MOBILE
   Keep full-screen/bottom style only when open
========================================================= */
@media (max-width: 991px) {

    body.amt-agent-open .page-wrapper {
        margin-left: 0 !important;
        width: 100% !important;
    }

    body.amt-agent-open #amt-agent-panel {
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
        top: auto !important;
        bottom: 0 !important;

        width: 100vw !important;
        height: 100vh !important;
        min-height: 100vh !important;
        max-height: 100vh !important;

        border-radius: 0 !important;
        z-index: 9999999 !important;
        display: flex !important;
    }
}
@media (min-width: 1600px) {
    body.amt-agent-open.catalog-product-view #maincontent{padding-left: 20px!important;padding-right: 20px!important}  
}
.topMenuBtn, footer.page-footer, .footer.content,.ves-menu, .ves-menu .ves-megamenu, #brandSliderSection .container,.category-widget-main .category .category-list a span{background: #000!important}

/* ── Chat answer feedback ───────────────────────────────────── */

.amt-feedback {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 7px;
    padding-left: 4px;
}

.amt-feedback-btn {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(122, 92, 255, 0.24);
    background: #fff;
    color: #697189;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.18s ease;
    padding: 0;
}

.amt-feedback-btn:hover {
    background: var(--amt-ai-soft);
    color: #5a42e8;
    border-color: rgba(122, 92, 255, 0.45);
    transform: translateY(-1px);
}

.amt-feedback-btn.is-selected {
    background: var(--amt-ai-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 14px rgba(122, 92, 255, 0.22);
}

.amt-feedback-btn:disabled {
    cursor: default;
    opacity: 0.8;
    transform: none;
}

.amt-feedback-status {
    font-size: 11px;
    color: var(--amt-ai-muted);
    margin-left: 2px;
}

.amt-feedback.is-submitted .amt-feedback-btn:not(.is-selected) {
    opacity: 0.35;
}

.amt-panel-input {
    gap: 8px;
}

.amt-voice-btn {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    border: 1px solid rgba(122, 92, 255, 0.22);
    background: #fff;
    color: #7a5cff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex: 0 0 42px;
    transition: all 0.2s ease;
}

.amt-voice-btn:hover {
    background: var(--amt-ai-soft);
    border-color: rgba(122, 92, 255, 0.45);
    transform: translateY(-1px);
}

.amt-voice-btn.is-listening {
    background: var(--amt-ai-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 0 6px rgba(122, 92, 255, 0.14);
    animation: amtVoicePulse 1.1s infinite;
}

@keyframes amtVoicePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(122, 92, 255, 0.28);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(122, 92, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(122, 92, 255, 0);
    }
}
.amt-map-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 8px;
    padding: 9px 13px;
    border-radius: 999px;
    background: var(--amt-ai-soft);
    color: #6d42f5 !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    border: 1px solid rgba(122, 92, 255, 0.22);
}

.amt-map-link:hover {
    background: var(--amt-ai-gradient);
    color: #fff !important;
}