/* ============================================================
   STAND TOGGLE — LAYOUT + PROPORCJE (FINAL CLEAN)
============================================================ */

/* === KONTENER GŁÓWNY === */
.stand-toggle {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    padding: 60px 20px;
}

/* === PODZIAŁ 1/2 : 1/2 === */
.stand-toggle__main {
    flex: 1;
}

.stand-toggle__sidebar {
    flex: 1;
    padding-top: 10px;
}

/* === RAMKA OBRAZU === */
.stand-toggle__frame {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 3px 3px 0;   /* BEZ DOŁU */
}

/* === VIEWPORT — PROPORCJA ZDJĘĆ === */
.stand-toggle__viewport {
    position: relative;
    width: 100%;
    aspect-ratio: 155 / 168;
    overflow: hidden;
}

/* === OBRAZ === */
.stand-toggle__viewport img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

/* ============================================================
   BULLETS — FINALNA GEOMETRIA
============================================================ */

.stand-toggle__bullets {
    display: flex;
}

/* ⬇⬇⬇ JEDYNE MIEJSCE REGULACJI ⬇⬇⬇ */
.stand-toggle__frame > .stand-toggle__bullets {
    margin-top: 1px;   /* ← TU REGULUJESZ: -2px / -3px */
}

.stand-toggle__bullet {
    flex: 1;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #ccc;
    border-top: 5px solid #ccc;
    cursor: pointer;
}

.stand-toggle__bullet:hover {
    background: #f5f5f5;
    border-top-color: #008b00;
}

/* === META === */
.stand-toggle__meta {
    margin-top: 12px;
    font-size: 13px;
    color: #666;
}

.stand-toggle__meta strong {
    color: #2f8f2f;
}

/* === SIDEBAR === */
.stand-toggle__widget-title {
    font-size: 16px;
    font-weight: 300;
    color: #008b00;
    margin-bottom: 20px;
}

.stand-toggle__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.stand-toggle__item {
    padding: 4px 0;
}

.st-header {
    position: relative;
    padding-bottom: 3px;
}

.st-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(0,0,0,0.25);
}

.st-title {
    display: grid;
    grid-template-columns: 1fr auto;
    font-size: 14px;
    color: #666;
    text-decoration: none;
}

.st-title:hover {
    color: #444;
}

/* === MOBILE === */
@media (max-width: 767px) {
    .stand-toggle {
        display: block;
    }

    .stand-toggle__sidebar {
        margin-top: 24px;
        padding-top: 12px;
        border-top: 1px solid rgba(0,0,0,0.1);
    }
}