/* ================================================================
   Cargoroll — Smart Tags System
   Unified pill design used on: tag cloud, ad cards, ad detail,
   ad form suggestion chips, ad form selected chips.
   ================================================================ */

/* ── Base pill ────────────────────────────────────────────────── */

.tag-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: #f0ecf8;
    color: #664F9E;
    border: 1.5px solid #c4b5e0;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    border-radius: 20px;
    white-space: nowrap;
    line-height: 1.4;
}

/* Clickable pill (tag cloud, detail page links) */
.tag-pill--link {
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.tag-pill--link:hover,
.tag-pill--link:focus {
    background: #664F9E;
    color: #fff;
    border-color: #664F9E;
    text-decoration: none;
    outline: none;
}

/* Active (currently filtered) */
.tag-pill--active {
    background: #664F9E;
    color: #fff;
    border-color: #664F9E;
}

/* ── Tag cloud widget ─────────────────────────────────────────── */

.tag-cloud-widget {
    margin: 20px 0;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.tag-cloud-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #664F9E;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 12px 0;
}

.tag-cloud-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* Cloud chips use the base .tag-pill + .tag-pill--link */

/* ── Tags on ad cards ─────────────────────────────────────────── */

.ad-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin: 6px 0 4px;
}

/* Card tags are not clickable (the whole card is a link) */
.ad-card-tags .tag-pill {
    font-size: 11px;
    padding: 3px 8px;
    pointer-events: none;
}

/* ── Tags on ad detail page ───────────────────────────────────── */

.ad-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 8px 0 12px;
}

.ad-detail-tags .tag-pill {
    font-size: 13px;
    padding: 5px 12px;
}

/* ── Tag suggester in ad form ─────────────────────────────────── */

.tag-suggester-wrap {
    margin-top: 8px;
}

.tag-suggestions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
    min-height: 28px;
}

/* Suggestion chip (not yet selected) — uses base pill + dashed border */
.tag-suggestion-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: #f0ecf8;
    color: #664F9E;
    border: 1.5px dashed #A18DC2;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.12s, color 0.12s, border-color 0.12s;
    white-space: nowrap;
    line-height: 1.4;
}

.tag-suggestion-chip:hover {
    background: #664F9E;
    color: #fff;
    border-color: #664F9E;
    border-style: solid;
}

.tag-suggestion-chip .chip-plus {
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
}

/* Selected chip in form — solid purple */
.tag-selected-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: #664F9E;
    color: #fff;
    border: 1.5px solid #664F9E;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    border-radius: 20px;
    white-space: nowrap;
    line-height: 1.4;
}

.tag-selected-chip .chip-remove {
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    opacity: 0.75;
    margin-left: 2px;
}

.tag-selected-chip .chip-remove:hover {
    opacity: 1;
}

/* Selected chips row */
.tag-selected-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 6px;
    min-height: 10px;
}

/* Hidden inputs container */
.tag-hidden-inputs {
    display: none;
}

/* Loading state */
.tag-suggestions-loading {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #6c757d;
    font-style: italic;
}

/* ── Tag landing page ─────────────────────────────────────────── */

.tag-landing-header {
    background: linear-gradient(135deg, #664F9E 0%, #A18DC2 100%);
    color: #fff;
    padding: 48px 0 36px;
    margin-bottom: 32px;
}

.tag-landing-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.tag-landing-intro {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
    max-width: 680px;
}

/* ── Responsive ───────────────────────────────────────────────── */

@media (max-width: 768px) {
    .tag-cloud-widget {
        padding: 12px 14px;
    }

    .tag-pill {
        font-size: 11px;
        padding: 3px 9px;
    }

    .ad-detail-tags .tag-pill {
        font-size: 12px;
        padding: 4px 10px;
    }
}
