/* MxChat Product Card (fork addition) — on-page "Nákupný asistent" panel.
   See includes/class-mxchat-product-card.php. Deliberately self-contained
   (no shared variables with the admin or chat-widget stylesheets) since it
   renders on the storefront, in the theme's own visual context. */

.mxchat-pqc-card {
    border: 1px solid #d9dbe9;
    border-radius: 14px;
    padding: 16px 18px;
    margin: 20px 0;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(30, 30, 60, 0.06);
    font-family: inherit;
}

.mxchat-pqc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
}

.mxchat-pqc-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.4;
}

.mxchat-pqc-sparkle {
    flex-shrink: 0;
    color: #7873f5;
    display: inline-flex;
}

.mxchat-pqc-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.mxchat-pqc-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid #d9dbe9;
    border-radius: 10px;
    background: #f8f8fc;
    color: #1a1a2e;
    font-size: 13px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.mxchat-pqc-btn:hover {
    background: #efeffb;
    border-color: #7873f5;
}

.mxchat-pqc-btn:active {
    transform: translateY(1px);
}

.mxchat-pqc-btn .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: #7873f5;
    flex-shrink: 0;
}

.mxchat-pqc-btn-icon-text {
    font-size: 15px;
    line-height: 1;
    flex-shrink: 0;
}

.mxchat-pqc-btn-label {
    min-width: 0;
    overflow-wrap: break-word;
}

@media (max-width: 480px) {
    .mxchat-pqc-grid {
        grid-template-columns: 1fr;
    }
}
