/* ============================================================
   Eventriqs — Vendor Hero Widget Styles v1.0.0
   Single vendor profile page
   ============================================================ */

.eq-vh {
    width: 100%;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    overflow: hidden;
}

/* ── GALLERY WRAP ─────────────────────────────────── */
.eq-vh__gallery-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* ── TRACK ────────────────────────────────────────── */
.eq-vh__track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
}

/* ── SLIDES ───────────────────────────────────────── */
.eq-vh__slide {
    flex-shrink: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 0 2px;
}

/* ── ARROWS ───────────────────────────────────────── */
.eq-vh__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.88);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: #1a1a2e;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: background 0.15s, transform 0.15s;
}

.eq-vh__arrow:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.05);
}

.eq-vh__arrow--prev { left: 16px; }
.eq-vh__arrow--next { right: 16px; }

/* ── INFO BAR ─────────────────────────────────────── */
.eq-vh__info {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 24px;
    background: #ffffff;
    border-bottom: 0.5px solid #eeeeee;
}

/* ── LOGO ─────────────────────────────────────────── */
.eq-vh__logo {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #eeeeee;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.eq-vh__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

.eq-vh__logo-initials {
    font-size: 20px;
    font-weight: 700;
    color: #D4537E;
}

/* ── META ─────────────────────────────────────────── */
.eq-vh__meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.eq-vh__name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.eq-vh__category {
    font-size: 13px;
    color: #888888;
    margin: 0;
}

/* ── BREADCRUMB ───────────────────────────────────── */
.eq-vh__breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    font-size: 12px;
    margin-top: 4px;
}

.eq-vh__breadcrumb a {
    color: #D4537E;
    text-decoration: none;
}

.eq-vh__breadcrumb a:hover {
    text-decoration: underline;
}

.eq-vh__sep {
    color: #aaaaaa;
    padding: 0 2px;
}

.eq-vh__current {
    color: #aaaaaa;
}

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 768px) {
    .eq-vh__info    { padding: 12px 16px; gap: 12px; }
    .eq-vh__logo    { width: 56px; height: 56px; }
    .eq-vh__name    { font-size: 17px; }
    .eq-vh__category { font-size: 12px; }
}

@media (max-width: 480px) {
    .eq-vh__arrow   { width: 28px; height: 28px; font-size: 12px; }
    .eq-vh__name    { font-size: 15px; }
}
