/* Tema 9 — Obsidian Luxury vitrin (vx- design system) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@600;700;800;900&display=swap');

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

html { scroll-behavior: smooth; }

body.tema-9 {
  --vx-primary: #e91e8c;
  --vx-accent: #7c3aed;
  --vx-bg: #06060f;
  --vx-bg1: #0c0c18;
  --vx-bg2: #11111e;
  --vx-text: #f0f0ff;
  --vx-muted: #7777aa;
  --vx-card-bg: rgba(11, 11, 20, 0.9);
  --vx-nav-bg: rgba(6, 6, 15, 0.92);
  --vx-mar-bg: #0d0d1f;
  --vx-mar-txt: #ffb703;
  --vx-radius: 16px;
  --vx-radius-lg: 24px;
  --vx-radius-xl: 32px;
  --vx-gap: 18px;
  --vx-gap-m: 10px;
  --vx-font-h: 'Outfit', system-ui, sans-serif;
  --vx-font-b: 'Inter', system-ui, sans-serif;
  --vx-name-size: 1.05rem;
  --vx-name-clr: #ffffff;
  --vx-name-bg: rgba(0, 0, 0, 0.6);
  --vx-name-pad: 4px 12px;
  --vx-name-r: 20px;
  --vx-name-align: flex-start;
  --vx-aspect: 2/3;
  --vx-hover-s: 1.015;
  --vx-hover-sh: rgba(233, 30, 140, 0.18);
  --vx-badge-sz: 0.72rem;
  --vx-detail-r: 0.82;
  --vx-detail-nm: clamp(1.6rem, 3.2vw, 2.6rem);
  --vx-online-bg: #06060f;
  --vx-online-bd: rgba(37, 211, 102, 0.25);
  --vx-online-txt: #ffffff;
  --vx-online-dot: #25d366;
  --vx-mob-cols: 2;
  --vx-cols: 4;
  background: var(--vx-bg);
  color: var(--vx-text);
  font-family: var(--vx-font-b);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

body.tema-9::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 15% 25%, rgba(233, 30, 140, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 75%, rgba(124, 58, 237, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

body.tema-9::-webkit-scrollbar { width: 4px; }
body.tema-9::-webkit-scrollbar-track { background: var(--vx-bg); }
body.tema-9::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--vx-primary), var(--vx-accent));
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════
   OBSIDIAN LUXURY — VX Design System
   CSS Prefix: vx-   (Non-AMP Widget)
   ═══════════════════════════════════════════════════ */

/* ── TICKER (Duyuru Bandı) ── */
.vx-ticker {
    position: relative;
    width: 100%;
    background: var(--vx-mar-bg, #0d0d1f);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    z-index: 99;
    overflow: hidden;
}
.vx-ticker-row {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    padding: 7px 0;
    display: flex;
    align-items: center;
}
.vx-ticker-row + .vx-ticker-row {
    border-top: 1px solid rgba(255,255,255,0.04);
}
.vx-ticker-row::before,
.vx-ticker-row::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px; z-index: 2; pointer-events: none;
}
.vx-ticker-row::before {
    left: 0;
    background: linear-gradient(to right, var(--vx-mar-bg, #0d0d1f), transparent);
}
.vx-ticker-row::after {
    right: 0;
    background: linear-gradient(to left, var(--vx-mar-bg, #0d0d1f), transparent);
}
.vx-ticker-scroll {
    display: inline-block;
    padding-left: 100%;
    animation: vx-ticker 55s linear infinite;
    font-size: 0.7rem;
    font-weight: 700;
    font-style: italic;
    color: var(--vx-mar-txt, #ffb703);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.vx-ticker-row:hover .vx-ticker-scroll { animation-play-state: paused; }
.vx-ticker-scroll a { color: var(--vx-mar-txt, #ffb703); text-decoration: none; }
.vx-ticker-scroll a:hover { text-decoration: underline; opacity: 0.85; }
@keyframes vx-ticker {
    0%   { transform: translate3d(0,0,0); }
    100% { transform: translate3d(-100%,0,0); }
}

/* ── NAV ── */
.vx-nav {
    position: sticky; top: 0; z-index: 200;
    height: 68px; padding: 0 28px;
    background: var(--vx-nav-bg, rgba(6,6,15,0.88));
    backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
}
.vx-nav-back {
    display: inline-flex; align-items: center; gap: 7px;
    color: var(--vx-muted); text-decoration: none;
    font-family: var(--vx-font-h); font-size: 0.78rem; font-weight: 600;
    padding: 8px 16px; border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    transition: all 0.25s; letter-spacing: 0.3px;
    flex-shrink: 0;
}
.vx-nav-back:hover {
    color: var(--vx-primary);
    border-color: var(--vx-primary);
    background: rgba(233, 30, 140, 0.08);
}
.vx-nav-back svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; }
.vx-nav-brand {
    display: flex; flex-direction: column; align-items: center; gap: 2px;
    text-align: center; min-width: 0;
}
.vx-nav-title {
    font-family: var(--vx-font-h);
    font-size: 0.68rem; font-weight: 900;
    letter-spacing: 3.5px; text-transform: uppercase;
    background: linear-gradient(90deg, var(--vx-primary), var(--vx-accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    max-width: 220px;
}
.vx-nav-spacer { flex-shrink: 0; }

/* ── CONTAINER ── */
.vx-wrap {
    width: 100%; max-width: 1280px;
    margin: 0 auto; padding: 0 20px;
    position: relative; z-index: 1;
}
@media (max-width: 768px) {
    .vx-wrap { padding: 0 10px; }
}

/* ── HERO (Index sayfası) ── */
.vx-hero {
    text-align: center;
    padding: 44px 20px 20px;
    position: relative;
}
.vx-hero::before {
    content: '';
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 600px; height: 300px;
    background: radial-gradient(ellipse at 50% 0%, rgba(233, 30, 140, 0.14) 0%, transparent 70%);
    pointer-events: none;
}
.vx-hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 5px 20px; border-radius: 50px; margin-bottom: 16px;
    border: 1px solid rgba(233, 30, 140, 0.30);
    background: rgba(233, 30, 140, 0.08);
    font-size: 0.6rem; font-weight: 900; letter-spacing: 2.5px;
    text-transform: uppercase; color: var(--vx-primary);
}
.vx-hero-eyebrow span { font-style: italic; }
.vx-hero h1 {
    font-family: var(--vx-font-h);
    font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900;
    letter-spacing: -1.5px; line-height: 1.05;
    color: var(--vx-text); margin-bottom: 14px;
}
.vx-hero-chip {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 7px 20px; border-radius: 50px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 0.78rem; font-weight: 600;
    color: var(--vx-muted);
}
.vx-hero-chip strong { color: var(--vx-primary); font-weight: 800; }

/* ── GRID ── */
.vx-grid {
    display: grid;
    grid-template-columns: repeat(var(--vx-cols, 4), 1fr);
    gap: var(--vx-gap, 18px);
    padding: 28px 0 36px;
}

/* ── CARD ── */
.vx-card {
    position: relative;
    border-radius: var(--vx-radius-lg);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.07);
    background: var(--vx-card-bg);
    transition:
        transform 0.38s cubic-bezier(.2,0,.1,1),
        box-shadow 0.38s ease,
        border-color 0.3s;
    animation: vx-card-in 0.5s ease both;
    will-change: transform;
}
@keyframes vx-card-in {
    from { opacity: 0; transform: translateY(22px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.vx-card:hover {
    transform: translateY(-10px) scale(var(--vx-hover-s, 1.015));
    border-color: var(--vx-primary);
    box-shadow:
        0 0 0 1px rgba(233, 30, 140, 0.35),
        0 24px 60px var(--vx-hover-sh, rgba(233,30,140,0.18)),
        0 0 40px rgba(233, 30, 140, 0.12);
}

/* Üst kenar aksan çizgisi */
.vx-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--vx-primary), transparent);
    opacity: 0;
    transition: opacity 0.35s;
    z-index: 5;
}
.vx-card:hover::before { opacity: 1; }

.vx-card.vx-card-four, .vx-card.vx-card-six {
    grid-column: 1 / -1;
}
.vx-card.vx-card-four .vx-card-media, .vx-card.vx-card-six .vx-card-media {
    aspect-ratio: auto !important;
    height: 200px !important;
}
@media (max-width: 768px) {
    .vx-card.vx-card-four .vx-card-media, .vx-card.vx-card-six .vx-card-media {
        height: 160px !important;
    }
}
.vx-card-gallery-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.vx-card-gallery-slider {
    display: flex;
    gap: 0px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    width: 100%;
    height: 100%;
    padding: 0px;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.vx-card-gallery-slider::-webkit-scrollbar { display: none; }
.vx-card-gallery-slide {
    flex: 0 0 33.3333%;
    width: 33.3333%;
    scroll-snap-align: start;
    height: 100%;
    border-radius: 0px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .vx-card-gallery-slider {
        gap: 0px;
        padding: 0px;
    }
    .vx-card-gallery-slide {
        flex: 0 0 50.0000%;
        width: 50.0000%;
        border-radius: 0px;
    }
    .vx-card.vx-card-four .vx-card-footer,
    .vx-card.vx-card-six .vx-card-footer { padding: 8px 12px 10px; }
}
/* Gallery Arrow Buttons */
.vx-gal-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 20; width: 30px; height: 30px;
    background: rgba(0,0,0,0.55); backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%; cursor: pointer;
    display: none;
    align-items: center; justify-content: center;
    color: #fff; font-size: 14px; line-height: 1;
    transition: background 0.2s, opacity 0.2s;
    opacity: 0; pointer-events: none;
}
.vx-card:hover .vx-gal-arrow { opacity: 1; pointer-events: auto; }
.vx-gal-arrow:hover { background: rgba(0,0,0,0.85); }
.vx-gal-arrow-prev { left: 6px; }
.vx-gal-arrow-next { right: 6px; }
/* Gallery Dot Indicators */
.vx-gal-dots {
    position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%);
    z-index: 20; display: none;
    gap: 5px; align-items: center;
}
@media (max-width: 768px) {
    .vx-gal-arrow {
        display: none;
        opacity: 0.8; pointer-events: auto; /* Always visible on touch devices */
    }
    .vx-gal-dots {
        display: none;
    }
}
.vx-gal-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(255,255,255,0.4);
    transition: background 0.2s, width 0.2s;
    cursor: pointer;
}
.vx-gal-dot.active { background: #fff; width: 14px; border-radius: 3px; }

.vx-card-media {
    position: relative;
    aspect-ratio: var(--vx-aspect, 2/3);
    overflow: hidden;
    background: var(--vx-bg2);
}
.vx-card-img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s cubic-bezier(.4,0,.2,1), filter 0.4s ease;
}
.vx-card:hover .vx-card-img { transform: scale(1.08); filter: brightness(0.85); }

.vx-card-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--vx-bg1), var(--vx-bg2));
    display: flex; align-items: center; justify-content: center;
    font-size: 3.5rem; color: rgba(255,255,255,0.08);
}

/* Sadece alt gradient */
.vx-card-ob {
    position: absolute; bottom: 0; left: 0; right: 0; height: 75%;
    background: linear-gradient(to top,
        rgba(4,4,14,1) 0%,
        rgba(4,4,14,0.82) 30%,
        rgba(4,4,14,0.4) 60%,
        transparent 100%);
    pointer-events: none; z-index: 1;
}

.vx-card-link {
    position: absolute; inset: 0;
    z-index: 3; display: block;
    border-radius: inherit;
}

/* Badges */
.vx-badge-new {
    position: absolute; top: 12px; left: 12px; z-index: 4;
    background: linear-gradient(135deg, var(--vx-primary), var(--vx-accent));
    color: white; font-family: var(--vx-font-h);
    font-size: 0.52rem; font-weight: 900;
    padding: 3px 9px; border-radius: 4px;
    letter-spacing: 1.5px; text-transform: uppercase;
}
.vx-badge-photo {
    position: absolute; top: 12px; right: 12px; z-index: 4;
    background: rgba(0,0,0,0.68); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.85);
    font-size: 0.6rem; font-weight: 600;
    padding: 3px 9px; border-radius: 6px;
    display: flex; align-items: center; gap: 4px;
}

/* İsim alanı */
.vx-card-foot {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 20px 14px 14px; z-index: 2;
    display: flex; justify-content: var(--vx-name-align, flex-start);
}
.vx-card-name {
    font-family: var(--vx-font-h);
    font-size: var(--vx-name-size, 1.05rem); font-weight: 700;
    color: var(--vx-name-clr, #fff);
    background: var(--vx-name-bg, rgba(0,0,0,0.6));
    padding: var(--vx-name-pad, 4px 12px);
    border-radius: var(--vx-name-r, 20px);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    display: inline-block; max-width: 90%;
    backdrop-filter: blur(6px);
}

/* ── DETAIL PAGE ── */
.vx-detail { padding: 36px 0 90px; }
.vx-detail-layout {
    display: grid;
    grid-template-columns: var(--vx-detail-r, 0.82)fr calc((1 / var(--vx-detail-r, 0.82)) * 1fr);
    gap: 48px; align-items: start;
}

.vx-gal-col { position: sticky; top: 82px; min-width: 0; }
.vx-gal-main {
    border-radius: var(--vx-radius-xl);
    overflow: hidden; aspect-ratio: 3/4;
    background: var(--vx-bg2); position: relative;
    margin-bottom: 12px;
    box-shadow: 0 28px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
}
.vx-gal-main img {
    width: 100%; height: 100%; object-fit: cover;
    transition: opacity 0.22s ease;
}
.vx-gal-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 5rem; color: rgba(255,255,255,0.08);
}
.vx-gal-wa-overlay {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%; z-index: 10;
    opacity: 0 !important; pointer-events: auto; cursor: pointer;
}
.vx-gal-wa-overlay svg { display: none !important; }

.vx-gal-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(0,0,0,0.7); backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    color: white; font-size: 1.2rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s; z-index: 20; pointer-events: auto;
}
.vx-gal-btn:hover { background: var(--vx-primary); border-color: var(--vx-primary); }
.vx-gal-btn-l { left: 14px; }
.vx-gal-btn-r { right: 14px; }

.vx-gal-counter {
    position: absolute; top: 16px; right: 16px; z-index: 20;
    background: rgba(0,0,0,0.75); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.85); font-size: 0.72rem; font-weight: 600;
    padding: 5px 12px; border-radius: 20px; pointer-events: none;
}

.vx-thumbs {
    display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px;
}
.vx-thumbs::-webkit-scrollbar { height: 2px; }
.vx-thumbs::-webkit-scrollbar-thumb { background: var(--vx-primary); border-radius: 1px; }
.vx-thumb {
    flex-shrink: 0; width: 68px; height: 90px;
    border-radius: 10px; overflow: hidden; cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s, transform 0.2s, opacity 0.2s;
    opacity: 0.6;
}
.vx-thumb.active { border-color: var(--vx-primary); opacity: 1; }
.vx-thumb:hover { border-color: rgba(233, 30, 140, 0.55); transform: scale(1.06); opacity: 1; }
.vx-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Info column */
.vx-info-col { display: flex; flex-direction: column; gap: 16px; min-width: 0; }

.vx-title-row {
    display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
    gap: 10px 12px; margin-bottom: 16px; text-align: center;
}
.vx-detail-name {
    font-family: var(--vx-font-h);
    font-size: var(--vx-detail-nm, clamp(1.6rem, 3.2vw, 2.6rem));
    font-weight: 900; letter-spacing: -1px;
    color: var(--vx-text); line-height: 1.05;
    margin-bottom: 0;
}
.vx-pill {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 5px 13px; border-radius: 999px;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.6px; text-transform: uppercase;
    backdrop-filter: blur(8px);
    transition: transform 0.15s, box-shadow 0.15s;
}
.vx-pill-loc {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.75);
}
.vx-pill-live {
    background: rgba(37,211,102,0.1);
    border: 1px solid rgba(37,211,102,0.3);
    color: #25d366;
    box-shadow: 0 0 12px rgba(37,211,102,0.12);
}
.vx-pill-live:hover { transform: translateY(-1px); box-shadow: 0 4px 18px rgba(37,211,102,0.28); }
.vx-live-dot {
    display: inline-block; width: 7px; height: 7px;
    border-radius: 50%; background: #25d366;
    box-shadow: 0 0 6px #25d366;
    animation: vx-pulse-dot 2s infinite;
}
@keyframes vx-pulse-dot {
    0%,100% { box-shadow: 0 0 4px #25d366; }
    50%      { box-shadow: 0 0 14px #25d366, 0 0 22px rgba(37,211,102,0.4); }
}

/* Panels */
.vx-panel {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.07);
    border-left: 3px solid rgba(233, 30, 140, 0.55);
    border-radius: var(--vx-radius-lg);
    padding: 20px 22px;
    backdrop-filter: blur(12px);
}
.vx-panel-ttl {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.6rem; font-weight: 900; letter-spacing: 2.5px;
    text-transform: uppercase; color: var(--vx-muted);
    margin-bottom: 14px;
}
.vx-panel-ttl::after {
    content: ''; flex: 1; height: 1px;
    background: linear-gradient(to right, rgba(255,255,255,0.07), transparent);
}
.vx-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.vx-stat {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px; padding: 11px 12px;
    display: flex; flex-direction: column; gap: 4px;
    transition: border-color 0.2s, background 0.2s;
}
.vx-stat:hover {
    border-color: rgba(233, 30, 140, 0.25);
    background: rgba(255,255,255,0.03);
}
.vx-stat-lbl { font-size: 0.6rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--vx-muted); }
.vx-stat-val { font-family: var(--vx-font-h); font-size: 0.95rem; font-weight: 700; color: var(--vx-primary); }

.vx-desc { color: var(--vx-muted); font-size: 0.9rem; line-height: 1.8; }

.vx-features { display: flex; flex-wrap: wrap; gap: 8px; }
.vx-ftag {
    padding: 7px 14px; border-radius: 8px;
    background: rgba(233, 30, 140, 0.07);
    border: 1px solid rgba(233, 30, 140, 0.18);
    color: var(--vx-primary); font-size: 0.78rem; font-weight: 600;
    transition: background 0.2s;
}
.vx-ftag:hover { background: rgba(233, 30, 140, 0.14); }

/* WhatsApp CTA */
.vx-wa-cta {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    width: 100%; padding: 18px 20px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white !important; text-decoration: none !important;
    border: none; border-radius: var(--vx-radius);
    font-family: var(--vx-font-h); font-size: 1.05rem; font-weight: 800;
    letter-spacing: 0.3px; cursor: pointer;
    position: relative; overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 32px rgba(37,211,102,0.28);
}
.vx-wa-cta::before {
    content: ''; position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.55s ease;
}
.vx-wa-cta:hover::before { left: 100%; }
.vx-wa-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 50px rgba(37,211,102,0.45);
}
.vx-wa-cta svg { width: 22px; height: 22px; fill: currentColor; flex-shrink: 0; }

/* Geri link */
.vx-back-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--vx-muted); text-decoration: none;
    font-size: 0.85rem; font-weight: 500;
    transition: color 0.2s; padding: 6px 0;
}
.vx-back-link:hover { color: var(--vx-primary); }
.vx-back-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.5; }

/* Empty state */
.vx-empty { text-align: center; padding: 100px 20px; }
.vx-empty-icon { font-size: 4.5rem; margin-bottom: 20px; opacity: 0.2; }
.vx-empty h2 { font-family: var(--vx-font-h); font-size: 1.6rem; font-weight: 800; color: var(--vx-text); margin-bottom: 10px; }
.vx-empty p { color: var(--vx-muted); font-size: 0.95rem; }

/* 404 */
.vx-d404 { text-align: center; padding: 100px 20px; }
.vx-d404 h2 { font-family: var(--vx-font-h); font-size: 2rem; font-weight: 900; color: var(--vx-text); margin-bottom: 12px; }
.vx-d404 p { color: var(--vx-muted); margin-bottom: 28px; }
.vx-d404-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 50px;
    background: linear-gradient(135deg, var(--vx-primary), var(--vx-accent));
    color: white !important; text-decoration: none !important;
    font-family: var(--vx-font-h); font-weight: 800; font-size: 0.9rem;
}

/* Similar section */
.vx-similar {
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px; margin-bottom: 24px;
}

/* ── FOOTER ── */
.vx-footer {
    background: linear-gradient(180deg, transparent, var(--vx-bg1, #0c0c18) 30%);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 36px 20px 28px;
    color: var(--vx-muted);
    position: relative; z-index: 1;
    margin-top: auto;
}
.vx-footer-inner {
    max-width: 1280px; margin: 0 auto;
    display: flex; flex-direction: column;
    align-items: center; gap: 18px; text-align: center;
}
.vx-footer-about {
    max-width: 600px; line-height: 1.65;
    color: var(--vx-text); opacity: 0.82; font-size: 0.85rem;
}
.vx-footer-links {
    display: flex; flex-wrap: wrap;
    justify-content: center; gap: 10px 20px;
}
.vx-footer-links a {
    color: var(--vx-muted); text-decoration: none;
    transition: color 0.2s; font-weight: 500; font-size: 0.85rem;
}
.vx-footer-links a:hover { color: var(--vx-primary); }
.vx-footer-warning {
    max-width: 700px; padding: 12px 20px;
    border-radius: 12px;
    background: rgba(233, 30, 140, 0.05);
    border: 1px solid rgba(233, 30, 140, 0.15);
    color: var(--vx-primary); font-size: 0.75rem; line-height: 1.55;
}
.vx-footer-copy {
    font-size: 0.72rem; opacity: 0.5;
    border-top: 1px solid rgba(255,255,255,0.04);
    width: 100%; padding-top: 14px;
}

/* ── ONLINE BADGE ── */
.vx-online {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 18px 10px 14px; border-radius: 999px;
    background: var(--vx-online-bg);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--vx-online-bd);
    box-shadow: 0 4px 28px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.05);
    font-family: var(--vx-font-h), sans-serif;
    font-size: 0.8rem; font-weight: 500;
    color: var(--vx-online-txt); letter-spacing: 0.2px;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
    animation: vx-online-in 0.6s cubic-bezier(.2,0,.1,1) both;
            position: fixed; z-index: 9999;
                    bottom: 24px; left: 20px; right: auto; top: auto;
            }
@keyframes vx-online-in {
    from { opacity: 0; transform: translateY(16px) scale(0.9); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.vx-online-dot-wrap { position: relative; width: 10px; height: 10px; flex-shrink: 0; }
.vx-online-dot {
    width: 10px; height: 10px;
    background: var(--vx-online-dot);
    border-radius: 50%; position: absolute; inset: 0;
    box-shadow: 0 0 8px var(--vx-online-dot), 0 0 16px rgba(37, 211, 102, 0.50);
}
.vx-online-ring {
    position: absolute; inset: -4px; border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.60);
    animation: vx-online-ring 2.2s ease-out infinite; opacity: 0;
}
.vx-online-ring2 {
    position: absolute; inset: -8px; border-radius: 50%;
    border: 1.5px solid rgba(37, 211, 102, 0.30);
    animation: vx-online-ring 2.2s ease-out 0.7s infinite; opacity: 0;
}
@keyframes vx-online-ring {
    0%   { transform: scale(0.7); opacity: 0.9; }
    100% { transform: scale(2.4); opacity: 0; }
}
.vx-online-label { display: flex; flex-direction: column; line-height: 1.2; }
.vx-online-count { font-size: 0.88rem; font-weight: 700; color: var(--vx-online-txt); letter-spacing: -0.3px; transition: all 0.4s ease; }
.vx-online-sub   { font-size: 0.64rem; font-weight: 500; color: rgba(37, 211, 102, 0.85); text-transform: uppercase; letter-spacing: 0.8px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .vx-detail-layout { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 768px) {
    .vx-grid { grid-template-columns: repeat(var(--vx-mob-cols, 2), 1fr) !important; gap: var(--vx-gap-m, 12px); }
    .vx-detail-layout { grid-template-columns: 1fr; }
    .vx-gal-col { position: relative; top: 0; }
    .vx-stats { grid-template-columns: repeat(2, 1fr); }
    .vx-nav { padding: 0 16px; gap: 12px; height: 60px; }
    .vx-nav-title { font-size: 0.6rem; letter-spacing: 2.5px; max-width: 150px; }
    .vx-wa-cta {
        position: relative;
        bottom: auto; left: auto; right: auto;
        width: 100%;
        margin-top: 16px;
        box-shadow: 0 12px 36px rgba(37,211,102,0.25);
    }
    .vx-detail { padding-top: 14px; padding-bottom: 14px; }
    .vx-page-detail .vx-footer { padding-bottom: 24px !important; }
    .vx-page-index .vx-footer { padding-bottom: 24px !important; }
    .vx-grid { padding: 12px 0 15px; }
    .vx-similar { margin-top: 15px; margin-bottom: 10px; padding-top: 15px; }
    .vx-gal-main { max-width: 280px; margin: 0 auto 8px; }
    .vx-thumbs { max-width: 280px; margin: 0 auto; justify-content: center; gap: 6px; }
    .vx-thumb { width: 42px; height: 56px; border-radius: 6px; }
    .vx-online {
        margin: 12px auto; padding: 9px 15px 9px 12px;
                    bottom: 90px;
            left: 16px; right: auto;
                        }
}
@media (max-width: 480px) {
    .vx-grid { grid-template-columns: repeat(var(--vx-mob-cols, 2), 1fr) !important; gap: var(--vx-gap-m, 10px); }
    .vx-card-name { font-size: 0.85rem; }
    .vx-detail-name { font-size: 1.55rem; }
    .vx-hero h1 { font-size: 1.65rem; }
    .vx-online {
                    bottom: 100px;
            left: 12px; right: auto;
                        }
}


.vx-card.js-vitrin-popup {
  cursor: pointer;
}

.vx-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 4;
  font-family: var(--vx-font-h);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.65);
  pointer-events: none;
}


/* Popup */
.vitrin-popup {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: stretch;
  justify-content: stretch;
}

.vitrin-popup.is-open {
  display: flex;
}

.vitrin-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.vitrin-popup__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: 520px;
  margin: 0 auto;
  background: #06060f;
  display: flex;
  flex-direction: column;
}

.vitrin-popup__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}

.vitrin-popup__frame {
  width: 100%;
  height: 100%;
  border: 0;
  background: #06060f;
}
