 .section-bestoff {
            position: relative;
            padding: 50px 0;
            overflow: hidden;
        }

        .bestof-container {
            position: relative;
          
            margin: 0 auto;
            overflow: hidden;
        }

        .bestof {
            display: flex;
            transition: transform 0.6s ease-in-out;
            gap: 20px;
        }

        .bestof-item {
            min-width: calc(20% - 16px);
            flex-shrink: 0;
        }

        .bestof-item img {
            width: 100%;
            height: 157px;
            object-fit: cover;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: var(   --background-btn-color );
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .nav-button:hover {
            background-color: rgba(0, 0, 0, 0.9);
            transform: translateY(-50%) scale(1.1);
        }

        .nav-button.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .nav-left {
            left: 10px;
        }

        .nav-right {
            right: 10px;
        }