/* ====== EXPLORE PAGE SPECIFIC STYLES ====== */

.explore-page #app {
    height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 0 80px 0; /* додаємо відступ знизу для navbar */
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 фото в ряд */
    gap: 8px;
    padding: 12px;
}

.explore-grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.05);
    transition: transform 0.2s ease;
    cursor: pointer;
    height: 100%;
    aspect-ratio: 3 / 4;

}

.explore-grid img:hover {
    transform: scale(1.03);
}

.explore-page .end-message {
    display: none;
    text-align: center;
    margin-top: 20px;
    color: gray;
    font-size: 16px;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.explore-page .end-message.show {
    display: block;
    opacity: 1;
}

.explore-page h1 + .explore-grid {
    margin-top: 24px;
}