/* Minification failed. Returning unminified contents.
(11,46): run-time error CSS1039: Token not allowed after unary operator: '-bg-card'
(11,62): run-time error CSS1039: Token not allowed after unary operator: '-bg-main'
(12,35): run-time error CSS1039: Token not allowed after unary operator: '-border-light'
(22,17): run-time error CSS1039: Token not allowed after unary operator: '-moss'
(27,23): run-time error CSS1039: Token not allowed after unary operator: '-font-display'
(30,17): run-time error CSS1039: Token not allowed after unary operator: '-pine-deeper'
(37,21): run-time error CSS1039: Token not allowed after unary operator: '-gold'
(43,17): run-time error CSS1039: Token not allowed after unary operator: '-muted'
(91,28): run-time error CSS1039: Token not allowed after unary operator: '-border-light'
(94,23): run-time error CSS1039: Token not allowed after unary operator: '-font-body'
(96,17): run-time error CSS1039: Token not allowed after unary operator: '-pine-dark'
(102,28): run-time error CSS1039: Token not allowed after unary operator: '-moss-light'
(113,18): run-time error CSS1039: Token not allowed after unary operator: '-muted'
(128,22): run-time error CSS1039: Token not allowed after unary operator: '-muted'
(136,32): run-time error CSS1039: Token not allowed after unary operator: '-border-light'
(139,27): run-time error CSS1039: Token not allowed after unary operator: '-font-body'
(142,21): run-time error CSS1039: Token not allowed after unary operator: '-pine-dark'
(152,32): run-time error CSS1039: Token not allowed after unary operator: '-moss-light'
(158,17): run-time error CSS1039: Token not allowed after unary operator: '-muted'
(163,21): run-time error CSS1039: Token not allowed after unary operator: '-pine-dark'
(177,28): run-time error CSS1039: Token not allowed after unary operator: '-border-light'
(180,17): run-time error CSS1039: Token not allowed after unary operator: '-pine-dark'
(181,23): run-time error CSS1039: Token not allowed after unary operator: '-font-body'
(189,28): run-time error CSS1039: Token not allowed after unary operator: '-moss-light'
(190,21): run-time error CSS1039: Token not allowed after unary operator: '-moss'
(194,26): run-time error CSS1039: Token not allowed after unary operator: '-moss'
(195,28): run-time error CSS1039: Token not allowed after unary operator: '-moss'
(203,17): run-time error CSS1039: Token not allowed after unary operator: '-muted'
(237,30): run-time error CSS1039: Token not allowed after unary operator: '-gold'
(252,28): run-time error CSS1039: Token not allowed after unary operator: '-border-light'
(279,27): run-time error CSS1039: Token not allowed after unary operator: '-font-display'
(282,21): run-time error CSS1039: Token not allowed after unary operator: '-pine-deeper'
(292,17): run-time error CSS1039: Token not allowed after unary operator: '-muted'
(299,22): run-time error CSS1039: Token not allowed after unary operator: '-moss'
(305,17): run-time error CSS1039: Token not allowed after unary operator: '-moss'
(326,17): run-time error CSS1039: Token not allowed after unary operator: '-muted'
(333,20): run-time error CSS1039: Token not allowed after unary operator: '-moss'
(339,21): run-time error CSS1039: Token not allowed after unary operator: '-pine-dark'
(349,32): run-time error CSS1039: Token not allowed after unary operator: '-border-light'
(350,17): run-time error CSS1039: Token not allowed after unary operator: '-moss'
(366,21): run-time error CSS1039: Token not allowed after unary operator: '-pine-deeper'
(379,17): run-time error CSS1039: Token not allowed after unary operator: '-muted'
(388,27): run-time error CSS1039: Token not allowed after unary operator: '-font-display'
(390,21): run-time error CSS1039: Token not allowed after unary operator: '-pine-deeper'
(450,28): run-time error CSS1039: Token not allowed after unary operator: '-moss'
(460,28): run-time error CSS1039: Token not allowed after unary operator: '-moss'
(462,33): run-time error CSS1039: Token not allowed after unary operator: '-moss'
(476,26): run-time error CSS1039: Token not allowed after unary operator: '-pine-deeper'
 */
/* ============================================================
   VENDORS PAGE  (Views/Vendors/Index.cshtml)
   Feature stylesheet. Reuses tokens from base-home.css / home.css
   (--pine-*, --moss*, --gold*, --muted, --border*, --font-*).
   No :root redefinitions. Pagination (#pagination) and .cta-*
   are provided by the global stylesheet — not duplicated here.
   ============================================================ */

/* ── HEADER ─────────────────────────────────────────────── */
.vendor-header {
    background: linear-gradient(180deg, var(--bg-card), var(--bg-main));
    border-bottom: 1px solid var(--border-light);
    padding: 110px 24px 70px;
    text-align: center;
}

.vendor-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--moss);
    margin-bottom: 0.6rem;
}

.vendor-h1 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    font-weight: 600;
    color: var(--pine-deeper);
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

    .vendor-h1 em {
        font-style: italic;
        color: var(--gold);
    }

.vendor-sub {
    max-width: 560px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* ── SECTION WRAPPER ────────────────────────────────────── */
.vendor-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0px 24px 70px;
}

/* ── CONTROLS (search · state · count) ──────────────────── */
.vendor-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0;
}

    /* scoped + explicit so the search wrapper always grabs the free space
   instead of leaving a gap between it and the filters */
    .vendor-controls .vendor-search {
        position: relative;
        flex: 1 1 0;
        min-width: 260px;
    }

/* high-specificity so it beats any global input / .form-control rule
       loaded later in the bundle that was capping the field width */
.vendor-section .vendor-controls .vendor-search input {
    display: block;
    width: 100%;
    max-width: none;
    min-width: 0;
    box-sizing: border-box;
}

/* push the count to the far right of the row */
.vendor-controls .result-count {
    margin-left: auto;
}

.vendor-search input {
    width: 100%;
    padding: 0.7rem 1rem 0.7rem 2.6rem;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    background: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--pine-dark);
    transition: border-color 0.2s, box-shadow 0.2s;
}

    .vendor-search input:focus {
        outline: none;
        border-color: var(--moss-light);
        box-shadow: 0 0 0 3px rgba(74, 124, 53, 0.15);
    }

.vendor-search svg {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    stroke: var(--muted);
}

/* state filter */
.state-filter {
    position: relative;
    display: flex;
    align-items: center;
}

    .state-filter svg {
        position: absolute;
        left: 0.8rem;
        width: 16px;
        height: 16px;
        stroke: var(--muted);
        pointer-events: none;
    }

    .state-filter select {
        appearance: none;
        -webkit-appearance: none;
        padding: 0.7rem 2.2rem 0.7rem 2.4rem;
        border: 1px solid var(--border-light);
        border-radius: 10px;
        background: #fff;
        font-family: var(--font-body);
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--pine-dark);
        cursor: pointer;
        transition: border-color 0.2s, box-shadow 0.2s;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236D7A6B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 0.8rem center;
    }

        .state-filter select:focus {
            outline: none;
            border-color: var(--moss-light);
            box-shadow: 0 0 0 3px rgba(74, 124, 53, 0.15);
        }

.result-count {
    font-size: 0.85rem;
    color: var(--muted);
    white-space: nowrap;
}

    .result-count strong {
        color: var(--pine-dark);
    }

/* ── CATEGORY PILLS ─────────────────────────────────────── */
.categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.cat-pill {
    opacity: 0;
    padding: 0.45rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: 999px;
    background: #fff;
    color: var(--pine-dark);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.18s;
}

    .cat-pill:hover {
        border-color: var(--moss-light);
        color: var(--moss);
    }

    .cat-pill.active {
        background: var(--moss);
        border-color: var(--moss);
        color: #fff;
    }

/* ── ACTIVE SEARCH TAG ──────────────────────────────────── */
.search-tag-wrap {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.search-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    /* warm wood/gold accent chip, derived from --gold */
    background: rgba(201, 151, 58, 0.14);
    border: 1px solid rgba(201, 151, 58, 0.35);
    color: #7a5a1f;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.35rem 0.4rem 0.35rem 0.8rem;
    border-radius: 999px;
    margin-left: 0.4rem;
}

    .search-tag .close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: rgba(201, 151, 58, 0.3);
        color: #7a5a1f;
        font-size: 0.95rem;
        line-height: 1;
        text-decoration: none;
        transition: background 0.18s, color 0.18s;
    }

        .search-tag .close:hover {
            background: var(--gold);
            color: #fff;
        }

/* ── VENDOR GRID + CARDS ────────────────────────────────── */
.vendor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.vendor-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 1.4rem;
    box-shadow: 0 2px 20px rgba(26, 48, 34, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

    .vendor-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 40px rgba(26, 48, 34, 0.12);
    }

    .vendor-card .tag {
        align-self: flex-start;
        /* wood/gold category chip */
        background: rgba(201, 151, 58, 0.14);
        color: #7a5a1f;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.03em;
        text-transform: uppercase;
        padding: 0.25rem 0.6rem;
        border-radius: 6px;
        margin-bottom: 0.75rem;
    }

    .vendor-card h3 {
        font-family: var(--font-display);
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--pine-deeper);
        margin-bottom: 0.6rem;
        margin-top: 12px;
    }

.vendor-meta {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted);
    margin-bottom: 0.35rem;
}

    .vendor-meta svg {
        width: 15px;
        height: 15px;
        stroke: var(--moss);
        flex-shrink: 0;
        margin-top: 0.25rem;
    }

.vendor-state {
    color: var(--moss);
    font-weight: 600;
}

.vendor-meta .contact-numbers {
    display: inline;
}

    .vendor-meta .contact-numbers span {
        white-space: nowrap;
        display: inline-block;
    }

        .vendor-meta .contact-numbers span:not(:last-child)::after {
            content: ",\00a0"; /* comma + non-breaking space */
        }

/* whatsapp row (keeps brand green) */
.wa-link {
    align-items: center;
    text-decoration: none;
    color: var(--muted);
    transition: color 0.18s;
}

    .wa-link svg {
        width: 16px;
        height: 16px;
        fill: var(--moss);
        stroke: none;
        margin-top: 0;
    }

    .wa-link:hover {
        color: var(--pine-dark);
    }

/* detail link */
.product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
    padding-top: 0.9rem;
    border-top: 1px solid var(--border-light);
    color: var(--moss);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.18s, gap 0.18s;
    width: 100%;
}

    .product-link svg {
        width: 15px;
        height: 15px;
        stroke: currentColor;
        transition: transform 0.18s;
    }

    .product-link:hover {
        color: var(--pine-deeper);
        gap: 0.6rem;
    }

        .product-link:hover svg {
            transform: translateX(2px);
        }

/* ── EMPTY STATE ────────────────────────────────────────── */
.vendor-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3.5rem 1rem;
    color: var(--muted);
}

    .vendor-empty .empty-icon {
        font-size: 2.4rem;
        margin-bottom: 0.75rem;
    }

    .vendor-empty .empty-title {
        font-family: var(--font-display);
        font-size: 1.25rem;
        color: var(--pine-deeper);
        margin-bottom: 0.35rem;
    }

    .vendor-empty .empty-desc {
        font-size: 0.95rem;
    }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 640px) {
    .vendor-section {
        padding: 2rem 1.25rem 3rem;
    }

    .vendor-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .state-filter select {
        width: 100%;
    }

    .result-count {
        text-align: center;
    }

    .vendor-grid {
        grid-template-columns: 1fr;
    }
}

.vendor-detail {
    height: 320px;
}

.gsap-fade,
.gsap-up {
    opacity: 0;
}
/* ─────────────────────────────────────────────────────────────
   SHARED CARD HOVER
   Load AFTER article-card.css / vendors.css / careers.css / events.css.
   ───────────────────────────────────────────────────────────── */

.article-card,
.vendor-card,
.job-card,
.event-card {
    transition: box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
    will-change: box-shadow;
}

    /* Kill any inherited lift from the older rules. */
    .article-card:hover,
    .vendor-card:hover,
    .job-card:hover,
    .event-card:hover,
    a:hover > .article-card {
        transform: none;
        border-color: var(--moss, #4A7C35);
        box-shadow: 0 10px 28px rgba(26, 48, 34, 0.13), 0 2px 6px rgba(26, 48, 34, 0.06);
    }

    /* Keyboard parity — same treatment on focus. */
    a:focus-visible > .article-card,
    .vendor-card:focus-within,
    .job-card:focus-visible,
    .event-card:focus-visible {
        transform: none;
        border-color: var(--moss, #4A7C35);
        box-shadow: 0 10px 28px rgba(26, 48, 34, 0.13);
        outline: 2px solid var(--moss, #4A7C35);
        outline-offset: 2px;
    }

    /* Child nudges are safe — they don't change the hovered element's box. */
    .article-card .article-arrow,
    .job-card .detail-arrow,
    .vendor-card .product-link svg,
    .event-card .event-card-cta {
        transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease;
    }

    .article-card:hover .article-arrow,
    a:hover > .article-card .article-arrow {
        background: var(--pine-deeper, #1A3022);
        color: #fff;
        transform: translateX(3px);
    }

    .job-card:hover .detail-arrow,
    .vendor-card:hover .product-link svg,
    .event-card:hover .event-card-cta {
        transform: translateX(3px);
    }

    /* Interactive controls must stay above the card surface and keep their own
   hover, so hitting the heart never depends on the card's state. */
    .article-card .btn-favorite,
    .article-card .article-action {
        position: relative;
        z-index: 2;
    }

    .article-card .btn-favorite {
        transition: transform 0.15s ease, color 0.15s ease;
    }

        .article-card .btn-favorite:hover {
            transform: scale(1.15);
        }

        .article-card .btn-favorite:active {
            transform: scale(0.95);
        }

@media (prefers-reduced-motion: reduce) {
    .article-card,
    .vendor-card,
    .job-card,
    .event-card,
    .article-card .article-arrow,
    .article-card .btn-favorite {
        transition: none;
    }

        .article-card:hover .article-arrow,
        .job-card:hover .detail-arrow,
        .vendor-card:hover .product-link svg,
        .event-card:hover .event-card-cta {
            transform: none;
        }
}

