/* QIBOX Platform Links — Subtle quick-commerce buttons */

.qibox-platform-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 4px;
    padding: 10px 14px;
    background: #f9f9f9;
    border: 1px solid #ececec;
    border-radius: 8px;
}

.qibox-pl-label {
    font-size: 11px;
    color: #999;
    font-weight: 500;
    letter-spacing: 0.02em;
    white-space: nowrap;
    margin-right: 2px;
}

.qibox-pl-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

/* ── Base button ── */
.qibox-pl-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px 5px 7px;
    border-radius: 6px;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none !important;
    transition: background 0.18s ease, border-color 0.18s ease, opacity 0.18s ease;
    cursor: pointer;
    white-space: nowrap;
}

.qibox-pl-btn:hover {
    opacity: 0.85;
    text-decoration: none !important;
}

.qibox-pl-logo {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
}

.qibox-pl-arrow {
    opacity: 0.6;
    flex-shrink: 0;
    margin-left: 1px;
}

/* ── Blinkit — yellow tint ── */
.qibox-pl-btn--blinkit {
    background: #fffbea;
    border-color: #f0e080;
    color: #7a6500 !important;
}

.qibox-pl-btn--blinkit:hover {
    background: #fff8d0;
    border-color: #d4c000;
}

/* ── Instamart — green tint ── */
.qibox-pl-btn--instamart {
    background: #f0fbf2;
    border-color: #b2e8bc;
    color: #1a6627 !important;
}

.qibox-pl-btn--instamart:hover {
    background: #e0f7e5;
    border-color: #76c985;
}
