.tabs {
    display: flex;
    gap: 15px;
    border-bottom: 2px solid #ccc;
    margin-bottom: 15px;
}

.tab {
    cursor: pointer;
    padding: 10px 20px;
    font-weight: 500;
    color: #444;
}

.tab.active {
    border-bottom: 3px solid green;
    color: green;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.slider-container {
    position: relative;
    text-align: center;
}

.main-image img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    /* adjust based on your layout */
    object-fit: contain;
    border-radius: 10px;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    background: #fff;
    padding: 5px 10px;
    border-radius: 50%;
    cursor: pointer;
}

.arrow.left {
    left: 10px;
}

.arrow.right {
    right: 10px;
}


.thumbnail-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 15px;
}

.thumb-scroll-container {
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 0;
    scroll-behavior: smooth;
}

.thumbnails {
    display: inline-flex;
    gap: 10px;
}

.thumbnails img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 5px;
    flex-shrink: 0;
}

.thumbnails img.active {
    border-color: green;
}

.thumbnail-scroll {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    font-size: 24px;
    background: white;
    padding: 5px 10px;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.thumbnail-scroll.left {
    left: 0;
}

.thumbnail-scroll.right {
    right: 0;
}