/* to display my images */
.gallery-container {
    margin-bottom: var(--spacing-md);
}

.main-image-container {
    width: 100%;
    margin-bottom: var(--spacing-sm);
    background: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.thumbnails-row {
    display: flex;
    gap: var(--spacing-sm);
    overflow-x: auto;
    padding-bottom: 4px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s ease, border-color 0.2s ease;
    border: 2px solid transparent;
}

.thumbnail:hover {
    opacity: 1;
}

.thumbnail.active {
    opacity: 1;
    border-color: var(--color-text);
}

.thumbnails-row::-webkit-scrollbar {
    height: 4px;
}

.thumbnails-row::-webkit-scrollbar-thumb {
    background: var(--color-border);
}