/* استایل گالری */
.thumbs-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto; /* امکان اسکرول افقی در موبایل اگر عکس‌ها زیاد باشند */
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
}
.thumb {
    /*width: 100px;*/
    flex: 0 0 80px; /* عرض ثابت برای اسکرول */
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
    opacity: 0.6;
}
.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.thumb:hover, .thumb.active {
    border-color: var(--accent-gold);
    opacity: 1;
    transform: scale(1.05);
}

/* استایل سایدبار اطلاعات */
.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #E2E8F0;
    font-size: 0.9rem;
}
.spec-row span:first-child {
    color: var(--text-muted);
}
.spec-row span:last-child {
    color: var(--primary-dark);
    font-weight: 600;
    text-align: left;
}

/* ریسپانسیو برای صفحه تکی */
@media (max-width: 900px) {
    div[style*="grid-template-columns: 2fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    .sidebar-info {
        margin-top: 50px;
    }
    .info-box { padding: 20px !important; }

    .main-image-container img {
        height: 350px !important;
    }
}
