/* ================================================================
   TerraFloor — gallery-info.css
   ================================================================ */

   .gallery-info {
    padding-block: 100px;
    
    
     margin: auto;
}

.gallery-info__inner {
    display: flex;
    gap: 30px;
    align-items: flex-start;
     max-width: var(--container-max);
    
}

/* ================================================================
   ГАЛЕРЕЯ (левая часть)
   ================================================================ */
.gallery-viewer {
    flex-shrink: 0;
    width: 705px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

/* Главное фото */
.gallery-viewer__main {
    border-radius: 40px;
    overflow: hidden;
    height: 570px;
    position: relative;
}
.gallery-viewer__main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.25s ease;
}

/* Полоска миниатюр */
.gallery-viewer__thumbs {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    display: flex;
    gap: 8px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(1px);
    border-radius: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}
.gallery-viewer__thumbs::-webkit-scrollbar { display: none; }

.gallery-viewer__thumb {
    flex: 0 0 calc(25% - 6px);
    scroll-snap-align: start;
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid transparent;
    cursor: pointer;
    padding: 0;
    background: none;
    transition: border-color 0.2s;
    height: 97px;
}
.gallery-viewer__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 13px;
}
.gallery-viewer__thumb.is-active {
    border-color: rgba(246, 240, 235, 0.9);
}

/* ================================================================
   ИНФОБЛОКИ (правая часть)
   ================================================================ */
.gallery-info__blocks {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-width: 0;
}

.info-block {
    background: linear-gradient(180deg, #fdf9f6 0%, #f8f8f8 100%);
    border-radius: 20px;
    padding: 26px 40px 48px;
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.info-block__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #f6f0eb;
    border-radius: 100px;
    padding: 10px;
    flex-shrink: 0;
}
.info-block__icon img {
    width: 33px;
    height: 33px;
    object-fit: contain;
}

.info-block__body {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.info-block__title {
    color: var(--color-black);
    font-size: 30px;
    line-height: 34px;
    font-weight: 500;
    margin: 0;
}

.info-block__text {
    color: var(--color-gray);
    font-size: 15px;
    line-height: 21px;
    margin: 0;
}

/* ================================================================
   Адаптив
   ================================================================ */
@media (max-width: 1280px) {
    .gallery-viewer { width: 520px; }
    .gallery-viewer__thumbs { width: 440px; }
    .info-block__title { font-size: 22px; line-height: 28px; }
}

@media (max-width: 1024px) {
    .gallery-info__inner { flex-direction: column; }
    .gallery-viewer { width: 100%; }
    .gallery-viewer__main { height: 400px; }
    .gallery-viewer__thumbs {
        width: calc(100% - 40px);
        bottom: 16px;
    }
}

@media (max-width: 768px) {
    .gallery-info { padding-block: 60px; }
    .gallery-viewer__main { height: 280px; border-radius: 24px; }
    .gallery-viewer__thumbs {
        width: calc(100% - 24px);
        bottom: 12px;
        padding: 8px;
    }
    .gallery-viewer__thumb { height: 70px; }
    .info-block { padding: 24px; }
    .info-block__title { font-size: 20px; line-height: 26px; }
}