/* ══════════════════════════════════════════════
   Interreg V-A Romania-Bulgaria — Art & Culture
   Frontend Styles — Light Theme
   ══════════════════════════════════════════════ */

:root {
    --bg: #F4F1F8;
    --bg2: #FFFFFF;
    --card: #FFFFFF;
    --elev: #EDE8F5;
    --accent: #7B5EA7;
    --accent-l: #9B7DC7;
    --accent-d: rgba(123,94,167,.1);
    --t1: #2D2842;
    --t2: #6B6580;
    --t3: #9994A8;
    --brd: rgba(123,94,167,.15);
    --brd-a: rgba(123,94,167,.35);
    --r: 14px;
    --rs: 8px;
    --tr: .3s cubic-bezier(.4,0,.2,1);
    --shadow: 0 2px 12px rgba(43,36,66,.08);
    --shadow-lg: 0 8px 32px rgba(43,36,66,.12)
}

* { margin: 0; padding: 0; box-sizing: border-box }

html, body {
    height: 100%;
    overflow: hidden;
    font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--t1);
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent
}

#app {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative
}

/* ── HEADER ── */
.hdr {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: env(safe-area-inset-top, 10px) 12px 10px;
    background: linear-gradient(180deg, rgba(244,241,248,.97), rgba(244,241,248,.85) 70%, transparent);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px
}
.hdr-logo {
    margin: 10px 5px;
    padding: 8px 16px 7px;
    background: var(--accent);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(123,94,167,.35);
    flex-shrink: 1;
    min-width: 0
}
.hdr-t {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    text-shadow: 0 1px 3px rgba(0,0,0,.15)
}
.hdr-s {
    font-size: 9px;
    color: rgba(255,255,255,.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 1px
}
.lng {
    display: flex;
    gap: 2px;
    background: var(--card);
    border: 1px solid var(--brd);
    border-radius: 20px;
    padding: 3px;
    flex-shrink: 0;
    box-shadow: var(--shadow)
}
.lng button {
    border: none;
    background: 0;
    color: var(--t3);
    font-size: 11px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 16px;
    cursor: pointer;
    transition: var(--tr);
    font-family: inherit
}
.lng .on {
    background: var(--accent);
    color: #fff
}

/* ── MAP ── */
#map { flex: 1; width: 100% }

/* ── FLAGS ── */
.fl {
    width: 18px; height: 13px;
    border-radius: 2px;
    object-fit: cover;
    vertical-align: middle;
    box-shadow: 0 1px 3px rgba(0,0,0,.15)
}
.fls {
    width: 16px; height: 11px;
    border-radius: 1.5px;
    object-fit: cover;
    vertical-align: middle;
    box-shadow: 0 1px 2px rgba(0,0,0,.12)
}

/* ── BOTTOM SHEET ── */
.bs {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 200;
    background: var(--bg2);
    border-radius: 20px 20px 0 0;
    border-top: 1px solid var(--brd);
    max-height: 45vh;
    transition: max-height var(--tr);
    display: flex;
    flex-direction: column;
    box-shadow: 0 -4px 24px rgba(43,36,66,.1);
    padding-bottom: env(safe-area-inset-bottom, 0)
}
.bs.exp { max-height: 85vh }

.bs-h {
    display: flex;
    justify-content: center;
    padding: 10px 0 6px;
    cursor: grab;
    flex-shrink: 0
}
.bs-h::after {
    content: '';
    width: 36px; height: 4px;
    background: var(--t3);
    border-radius: 2px;
    opacity: .35
}

.bs-c {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 0 16px 20px;
    min-height: 0
}

.lh {
    font-size: 20px;
    font-weight: 700;
    color: var(--t1);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px
}
.lh .cnt {
    font-size: 11px;
    font-weight: 600;
    background: var(--accent-d);
    color: var(--accent);
    padding: 3px 9px;
    border-radius: 10px
}

/* ── FILTERS ── */
.filters {
    margin-bottom: 14px
}
.filter-search {
    width: 100%;
    padding: 10px 14px 10px 36px;
    background: var(--bg);
    border: 1px solid var(--brd);
    border-radius: 10px;
    color: var(--t1);
    font-size: 13px;
    font-family: inherit;
    outline: none;
    transition: border-color var(--tr);
    margin-bottom: 10px
}
.filter-search:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(123,94,167,.1)
}
.filter-search::placeholder {
    color: var(--t3)
}
.filter-search-wrap {
    position: relative
}
.filter-search-wrap i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--t3);
    font-size: 13px;
    pointer-events: none
}
.filter-chips {
    display: flex;
    gap: 6px;
    flex-wrap: wrap
}
.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--brd);
    background: var(--bg);
    color: var(--t2);
    transition: var(--tr);
    font-family: inherit;
    white-space: nowrap
}
.filter-chip:hover { border-color: var(--brd-a) }
.filter-chip.on {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent)
}
.filter-chip img {
    width: 14px; height: 10px;
    border-radius: 1px;
    object-fit: cover
}
.filter-chip i {
    font-size: 11px
}
.filter-divider {
    width: 1px;
    height: 22px;
    background: var(--brd);
    margin: 0 2px;
    flex-shrink: 0;
    align-self: center
}
.no-results {
    text-align: center;
    padding: 30px 16px;
    color: var(--t3);
    font-size: 13px
}
.no-results i {
    font-size: 28px;
    color: var(--accent);
    display: block;
    margin-bottom: 10px;
    opacity: .5
}

/* ── LOCATION CARD ── */
.lc {
    background: var(--card);
    border: 1px solid var(--brd);
    border-radius: var(--r);
    margin-bottom: 10px;
    cursor: pointer;
    transition: var(--tr);
    display: flex;
    align-items: stretch;
    overflow: hidden;
    box-shadow: var(--shadow)
}
.lc:hover, .lc:active {
    border-color: var(--brd-a);
    background: var(--elev);
    box-shadow: var(--shadow-lg)
}
.lc-th {
    width: 72px;
    min-height: 72px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    position: relative
}
.lc-ov {
    position: absolute;
    bottom: 4px; left: 4px;
    width: 26px; height: 26px;
    border-radius: 8px;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--accent)
}
.lc-i {
    flex: 1;
    min-width: 0;
    padding: 12px
}
.lc-n {
    font-size: 15px;
    font-weight: 700;
    color: var(--t1);
    line-height: 1.3;
    margin-bottom: 3px
}
.lc-c {
    font-size: 12px;
    color: var(--t2);
    display: flex;
    align-items: center;
    gap: 5px
}
.lc-a {
    color: var(--t3);
    font-size: 12px;
    flex-shrink: 0;
    align-self: center;
    padding-right: 12px
}

/* ── DETAIL PAGE ── */
.dp {
    position: fixed;
    inset: 0;
    z-index: 500;
    background: var(--bg);
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch
}
.dp.on { transform: translateX(0) }

/* Back bar — sticky at top */
.dp-back {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    padding-top: calc(env(safe-area-inset-top, 12px) + 14px);
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--brd);
    cursor: pointer;
    transition: background var(--tr)
}
.dp-back:hover { background: rgba(255,255,255,1) }
.dp-back:active { background: var(--elev) }
.dp-back-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0
}
.dp-back-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--t1)
}
.dp-back-sub {
    font-size: 11px;
    color: var(--t3);
    margin-top: 1px
}

/* Hero */
.dh {
    width: 100%;
    height: 260px;
    position: relative;
    overflow: hidden;
    background: var(--elev)
}
.dh img {
    width: 100%;
    height: 100%;
    object-fit: cover
}
.dh-g {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 140px;
    background: linear-gradient(transparent, var(--bg))
}
.dh-info {
    position: absolute;
    bottom: 16px; left: 16px; right: 16px;
    z-index: 2
}
.dh-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(123,94,167,.2);
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 11px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 8px
}
.dh-title {
    font-size: 24px;
    font-weight: 700;
    color: #030303;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(255,255,255,.4);
}
.dh-city {
    font-size: 13px;
    color: var(--t2);
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dh-city img {
    width: auto;
    height: auto;
}

.db { padding: 0 16px 40px }

/* Action buttons */
.ab {
    display: flex;
    gap: 10px;
    margin: 16px 0 22px
}
.ab a, .ab button {
    flex: 1;
    padding: 13px;
    border-radius: var(--r);
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--tr);
    text-decoration: none !important
}
.ab .p { background: var(--accent); color: #fff }
.ab .p:hover { background: var(--accent-l) }
.ab .s { background: var(--card); color: var(--t1); border: 1px solid var(--brd); box-shadow: var(--shadow) }
.ab .s:hover { border-color: var(--accent) }

/* ── GALLERY ── */
.gal-t {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px
}
.gal-t i { font-size: 14px }
.gal-g {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 6px;
    margin-bottom: 22px
}
.gal-i {
    aspect-ratio: 1;
    border-radius: var(--rs);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    background: var(--elev)
}
.gal-i img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .3s, opacity .4s
}
.gal-i:hover img { transform: scale(1.08) }
.gal-i::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 60%, rgba(0,0,0,.25));
    pointer-events: none;
    opacity: 0;
    transition: opacity .3s
}
.gal-i:hover::after { opacity: 1 }
.gal-i .gal-z {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    opacity: 0;
    transition: opacity .3s;
    z-index: 1;
    pointer-events: none
}
.gal-i:hover .gal-z { opacity: .8 }

/* ── DETAIL SECTIONS ── */
.ds { margin-bottom: 22px }
.ds-t {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px
}
.ds-t i { font-size: 14px }
.dt { font-size: 14px; line-height: 1.75; color: var(--t2) }
.ir {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid var(--brd)
}
.ir:last-child { border-bottom: none }
.ii {
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--accent);
    width: 20px;
    text-align: center
}
.il {
    font-size: 10px;
    color: var(--t3);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 3px
}
.iv { font-size: 14px; color: var(--t1); line-height: 1.5 }
.iv a { color: var(--accent); text-decoration: none }

/* ── LIGHTBOX ── */
.lb {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0,0,0,.88);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s
}
.lb.on { opacity: 1; pointer-events: auto }
.lb-x {
    position: absolute;
    top: env(safe-area-inset-top, 16px); right: 16px;
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(0,0,0,.5);
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer
}
.lb-img {
    max-width: 92vw;
    max-height: 75vh;
    border-radius: var(--r);
    object-fit: contain;
    box-shadow: 0 16px 64px rgba(0,0,0,.5)
}
.lb-cap {
    color: rgba(255,255,255,.7);
    font-size: 13px;
    margin-top: 14px;
    text-align: center;
    max-width: 80vw
}
.lb-n {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(0,0,0,.5);
    border: 1px solid rgba(255,255,255,.12);
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--tr)
}
.lb-n:hover {
    background: rgba(123,94,167,.5);
    border-color: var(--accent-l)
}
.lb-n.pv { left: 12px }
.lb-n.nx { right: 12px }
.lb-cnt {
    position: absolute;
    bottom: env(safe-area-inset-bottom, 20px);
    font-size: 12px;
    color: rgba(255,255,255,.45);
    letter-spacing: 2px
}

/* ── MAP INFO WINDOW ── */
.gm-style .gm-style-iw-c {
    background: var(--card) !important;
    border: 1px solid var(--brd) !important;
    border-radius: var(--r) !important;
    padding: 0 !important;
    box-shadow: var(--shadow-lg) !important
}
.gm-style .gm-style-iw-d { overflow: hidden !important }
.gm-style .gm-style-iw-tc::after { background: var(--card) !important }
.gm-style-iw button[aria-label="Close"] { display: none !important }
.iw { padding: 0; min-width: 220px; max-width: 280px; overflow: hidden; border-radius: var(--r) }
.iw-h { width: 100%; height: 100px; object-fit: cover; display: block }
.iw-b { padding: 12px 14px 14px }
.iw-n {
    font-size: 15px;
    font-weight: 700;
    color: var(--t1);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px
}
.iw-n i { color: var(--accent); font-size: 13px }
.iw-c {
    font-size: 12px;
    color: var(--t2);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px
}
.iw-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: var(--accent);
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: inherit
}

/* ── LOADING ── */
.ld {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity .5s
}
.ld.out { opacity: 0; pointer-events: none }
.ld-l {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px
}
.ld-s {
    font-size: 12px;
    color: var(--t3);
    letter-spacing: 3px;
    text-transform: uppercase
}
.sp {
    width: 24px; height: 24px;
    border: 2px solid var(--brd);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: sp .8s linear infinite;
    margin-top: 24px
}
@keyframes sp { to { transform: rotate(360deg) } }

/* ── LOGOS ── */
.logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 18px 12px;
    margin-top: 16px;
    border-top: 1px solid var(--brd);
    flex-wrap: wrap
}
.logos img {
    height: 36px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
    opacity: .85;
    transition: opacity .3s;
    border-radius: 4px;
    background: rgba(123,94,167,.06);
    padding: 4px 8px
}
.logos img:hover { opacity: 1 }
.logos-sm { padding: 14px 10px; margin-top: 12px; gap: 12px }
.logos-sm img { height: 28px; max-width: 80px; padding: 3px 6px }
.logos-ld { margin-top: 28px; gap: 20px }
.logos-ld img { height: 42px; max-width: 120px; opacity: .7; padding: 6px 10px }
.logos-label {
    width: 100%;
    text-align: center;
    font-size: 9px;
    color: var(--t3);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2px
}

/* ── INFO BUTTON ── */
.hdr-info {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--card);
    border: 1px solid var(--brd);
    color: var(--t2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    flex-shrink: 0;
    transition: var(--tr);
    box-shadow: var(--shadow)
}
.hdr-info:hover { border-color: var(--accent); color: var(--accent) }

/* ── ABOUT OVERLAY — replaced by INFO PANEL above ── */

/* ── CONSENT DIALOG ── */
.consent-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(45,40,66,.5);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s
}
.consent-overlay.on { opacity: 1; pointer-events: auto }
.consent-box {
    background: var(--bg2);
    border: 1px solid var(--brd);
    border-radius: 20px 20px 0 0;
    width: 100%;
    max-width: 480px;
    padding: 24px 20px;
    padding-bottom: calc(env(safe-area-inset-bottom, 16px) + 16px);
    box-shadow: 0 -8px 40px rgba(43,36,66,.15)
}
.consent-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: var(--accent-d);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px
}
.consent-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--t1);
    margin-bottom: 8px
}
.consent-text {
    font-size: 13px;
    color: var(--t2);
    line-height: 1.65;
    margin-bottom: 18px
}
.consent-text a {
    color: var(--accent);
    text-decoration: underline
}
.consent-btns {
    display: flex;
    gap: 10px
}
.consent-btn {
    flex: 1;
    padding: 14px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    transition: var(--tr)
}
.consent-btn.primary {
    background: var(--accent);
    color: #fff
}
.consent-btn.primary:hover {
    background: var(--accent-l)
}
.consent-btn.secondary {
    background: var(--bg);
    color: var(--t2);
    border: 1px solid var(--brd)
}
.consent-btn.secondary:hover {
    border-color: var(--accent);
    color: var(--t1)
}

/* ── INFO PANEL (About + Contacts) ── */
.info-overlay {
    position: fixed;
    inset: 0;
    z-index: 8000;
    background: rgba(0,0,0,.88);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s
}
.info-overlay.on { opacity: 1; pointer-events: auto }
.info-box {
    background: var(--bg2);
    border: 1px solid var(--brd);
    border-radius: var(--r);
    max-width: 500px;
    width: 92vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 24px 80px rgba(0,0,0,.6);
    overflow: hidden
}
.info-close {
    position: absolute;
    top: 12px; right: 12px;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--card);
    border: 1px solid var(--brd);
    color: var(--t2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    z-index: 2;
    transition: var(--tr)
}
.info-close:hover { border-color: var(--accent); color: var(--accent) }
.info-header {
    padding: 24px 24px 0;
    flex-shrink: 0
}
.info-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 8px
}
.info-sub {
    font-size: 12px;
    color: var(--t3);
    margin-top: 2px;
    letter-spacing: .5px
}
.info-tabs {
    display: flex;
    gap: 4px;
    padding: 16px 24px 0;
    flex-shrink: 0
}
.info-tab {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid var(--brd);
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    background: var(--card);
    color: var(--t3);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--tr);
    font-family: inherit
}
.info-tab:hover { color: var(--t2) }
.info-tab.on {
    background: var(--elev);
    color: var(--accent);
    border-color: var(--accent);
    border-bottom: 1px solid var(--elev)
}
.info-content {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 20px 24px;
    font-size: 13px;
    color: var(--t2);
    line-height: 1.75;
    min-height: 0
}
.info-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
    margin: 16px 0 8px;
    display: flex;
    align-items: center;
    gap: 8px
}
.info-content h3:first-child { margin-top: 0 }
.info-content h3 i { font-size: 14px }
.info-content p { margin-bottom: 12px }
.info-content strong { color: var(--t1) }
.info-content .info-highlight {
    background: var(--accent-d);
    border-left: 3px solid var(--accent);
    padding: 12px 16px;
    border-radius: 0 var(--rs) var(--rs) 0;
    margin: 12px 0;
    font-size: 13px
}
.info-content .contact-card {
    background: var(--card);
    border: 1px solid var(--brd);
    border-radius: var(--r);
    padding: 16px;
    margin-bottom: 12px
}
.info-content .contact-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--t1);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px
}
.info-content .contact-card h4 i {
    color: var(--accent);
    font-size: 14px
}
.info-content .contact-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-size: 13px
}
.info-content .contact-row i {
    color: var(--accent);
    font-size: 13px;
    width: 16px;
    text-align: center;
    margin-top: 2px;
    flex-shrink: 0
}
.info-content .contact-row a {
    color: var(--accent);
    text-decoration: none
}
.info-content .contact-row a:hover { text-decoration: underline }
.info-content .social-links {
    display: flex;
    gap: 10px;
    margin-top: 10px
}
.info-content .social-links a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--accent-d);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: var(--tr)
}
.info-content .social-links a:hover {
    background: var(--accent);
    color: var(--bg)
}
.info-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 16px 24px 8px;
    border-top: 1px solid var(--brd);
    flex-shrink: 0
}
.info-logos img {
    height: 42px;
    max-width: 120px;
    object-fit: contain;
    background: rgba(255,255,255,.1);
    border-radius: 6px;
    padding: 6px 12px
}
.info-copy {
    font-size: 10px;
    color: var(--t3);
    text-align: center;
    padding: 4px 24px 16px;
    letter-spacing: .5px;
    flex-shrink: 0
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px }
::-webkit-scrollbar-track { background: transparent }
::-webkit-scrollbar-thumb { background: var(--t3); border-radius: 2px; opacity: .5 }

/* ── DESKTOP ── */
@media (min-width: 768px) {
    .bs {
        left: 16px;
        right: auto;
        width: 380px;
        bottom: 16px;
        border-radius: var(--r);
        max-height: calc(100vh - 100px)
    }
    .bs.exp { max-height: calc(100vh - 100px) }
    .dp { left: auto; right: 0; width: 440px; border-left: 1px solid var(--brd) }
    .consent-box { border-radius: 20px; margin-bottom: 20px }
}
