/* ── GST Verified Badge ─────────────────────────────────────────── */

.gb-gst-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    border: 1px solid #a5d6a7;
    border-radius: 4px;
    padding: 3px 8px;
    font-size: .72rem;
    font-weight: 700;
    color: #2e7d32;
    white-space: nowrap;
    cursor: help;
    transition: background .15s, box-shadow .15s;
    text-decoration: none;
}
.gb-gst-badge:hover {
    background: linear-gradient(135deg, #c8e6c9 0%, #dcedc8 100%);
    box-shadow: 0 1px 4px rgba(46,125,50,.2);
}
.gb-gst-badge__icon {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}
.gb-gst-badge--md {
    padding: 4px 10px;
    font-size: .8rem;
    border-radius: 5px;
    gap: 5px;
}
.gb-gst-badge--md .gb-gst-badge__icon { width: 14px; height: 14px; }
.gb-gst-badge--lg {
    padding: 6px 14px;
    font-size: .9rem;
    border-radius: 6px;
    gap: 6px;
}
.gb-gst-badge--lg .gb-gst-badge__icon { width: 16px; height: 16px; }

/* ── GST Info Card (single listing page) ───────────────────────── */

.gb-gst-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin: 24px 0;
    background: #fff;
}
.gb-gst-card--verified {
    border-color: #a5d6a7;
}
.gb-gst-card__header {
    padding: 12px 16px;
    font-size: .9rem;
    font-weight: 600;
    background: #f9f9f9;
    border-bottom: 1px solid #eeeeee;
}
.gb-gst-card--verified .gb-gst-card__header {
    background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
    border-bottom-color: #c8e6c9;
}
.gb-gst-card__status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.gb-gst-card__status--active  { color: #2e7d32; }
.gb-gst-card__status--inactive { color: #c62828; }
.gb-gst-card__status--pending  { color: #e65100; }

.gb-gst-card__body { padding: 16px; }

.gb-gst-card__dl    { margin: 0; }
.gb-gst-card__row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: .88rem;
}
.gb-gst-card__row:last-child { border-bottom: none; }
.gb-gst-card__row dt {
    color: #757575;
    font-weight: 500;
}
.gb-gst-card__row dd {
    margin: 0;
    color: #212121;
    font-weight: 500;
}
.gb-gst-card__row code {
    font-family: monospace;
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: .85em;
    letter-spacing: .05em;
}
.gb-gst-card__footer {
    margin: 12px 0 0;
    font-size: .78rem;
    color: #9e9e9e;
    padding-top: 10px;
    border-top: 1px solid #f5f5f5;
}
.gb-gst-card__gstin {
    font-size: .88rem;
    color: #555;
    margin: 0;
}
.gb-gst-card__gstin code {
    font-family: monospace;
    background: #f5f5f5;
    padding: 2px 8px;
    border-radius: 3px;
    letter-spacing: .08em;
}

/* ── In pSEO listing cards ─────────────────────────────────────── */
.gb-pseo-listing-card .gb-gst-badge,
.gb-pseo-top5-card .gb-gst-badge {
    margin-top: 4px;
}

@media (max-width: 600px) {
    .gb-gst-card__row {
        grid-template-columns: 110px 1fr;
        font-size: .83rem;
    }
}
