.navrch-trail-gallery-preview {
    position: relative;
    margin-bottom: 20px;
}

.navrch-trail-gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 120px;
    gap: 10px;
    margin-bottom: 12px;
}

.navrch-trail-gallery-preview-item {
    border: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
    border-radius: 0;
    overflow: hidden;
    background: #0f172a;
}

/* PRVÁ VEĽKÁ FOTKA (Vľavo) */
.navrch-trail-gallery-preview-item:nth-child(1) {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

/* DRUHÁ FOTKA (Vpravo hore) */
.navrch-trail-gallery-preview-item:nth-child(2) {
    border-top-right-radius: 12px;
}

/* TRETIA FOTKA (Vpravo dole) */
.navrch-trail-gallery-preview-item:nth-child(3) {
    border-bottom-right-radius: 12px;
}

.navrch-trail-gallery-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.navrch-trail-gallery-preview-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.navrch-trail-gallery-cta,
.navrch-trail-gallery-upload-button,
.navrch-trail-gallery-close {
    border: 1px solid #ffffff;
    border-radius: 5px;
    background: transparent;
    color: #ffffff;
    padding: 10px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.navrch-trail-gallery-cta {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    background: transparent;
    backdrop-filter: blur(2px);
}

.navrch-trail-gallery-cta:hover,
.navrch-trail-gallery-upload-button:hover,
.navrch-trail-gallery-close:hover {
    background: #ffffff;
    color: #0f172a;
}

.navrch-trail-gallery-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.94);
    z-index: 99999;
    overflow-y: auto;
    padding: 16px;
}

.navrch-trail-gallery-modal-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.navrch-trail-gallery-modal-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.navrch-trail-gallery-upload-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.navrch-trail-gallery-upload-button input {
    display: none;
}

.navrch-trail-gallery-upload-status {
    display: grid;
    gap: 6px;
    margin-bottom: 14px;
    color: #e2e8f0;
    padding: 10px 12px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    border-radius: 8px;
    background: rgba(30, 41, 59, 0.6);
}

.navrch-trail-gallery-upload-status.is-success {
    color: #ecfdf3;
    border-color: #22c55e;
    background: rgba(22, 101, 52, 0.7);
}

.navrch-trail-gallery-upload-status.is-error {
    color: #fee2e2;
    border-color: #ef4444;
    background: rgba(127, 29, 29, 0.7);
}

.navrch-trail-gallery-login-note {
    margin: 0;
    color: #cbd5e1;
    font-size: 14px;
}

.navrch-trail-gallery-login-note a {
    color: #93c5fd;
    text-decoration: underline;
}

.navrch-trail-gallery-upload-status progress {
    width: 100%;
}

.navrch-trail-gallery-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.navrch-trail-gallery-full-item {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    min-height: 180px;
}

.navrch-trail-gallery-full-item img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
}

@media (max-width: 768px) {
    /* Resetujeme bočné zaoblenia */

    .navrch-trail-gallery-preview-item:nth-child(3) {
        border-radius: 0px;
    }

    /* Prvá fotka bude mať zaoblený vrch */
    .navrch-trail-gallery-preview-item:first-child {
        border-top-left-radius: 12px;
        border-bottom-left-radius: 12px;
    }

    /* Posledná (tretia) fotka bude mať zaoblený spodok */
    .navrch-trail-gallery-preview-item:last-child {
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 12px;
    }
}
