.full-gallery-section {
    margin: 60px 0;
    padding: 0 20px;
}

.gallery-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.full-gallery {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: none;
}

.full-gallery::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    flex: 0 0 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.gallery-btn-prev { left: 10px; }
.gallery-btn-next { right: 10px; }