.operations-slider-container {
    overflow-x: auto;
    padding: 20px;
    -webkit-overflow-scrolling: touch;
}

.operations-slider-container[data-operations-carousel] {
    position: relative;
    overflow: visible;
}

.operations-slider {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-behavior: smooth;
}

.operations-slider::-webkit-scrollbar {
    display: none;
}

.slider-card {
    flex: 0 0 auto;
    width: 250px;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    box-sizing: border-box;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 10px;
    font-family: Arial, sans-serif;
}

.operations-slider-container,
.operations-slider {
    cursor: grab;
}

.operations-slider:active {
    cursor: grabbing;
}

.operations-slider.grabbing {
    cursor: grabbing;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 46px;
    height: 46px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #ff8c00;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.28);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.slider-arrow span {
    display: block;
    margin-top: -6px;
    font-size: 38px;
    font-weight: 400;
    line-height: 1;
}

.slider-arrow.prev span {
    margin-left: -3px;
}

.slider-arrow.next span {
    margin-left: 3px;
}

.slider-arrow.prev {
    left: -23px;
}

.slider-arrow.next {
    right: -23px;
}

.slider-arrow:hover:not(:disabled),
.slider-arrow:focus-visible:not(:disabled) {
    border-color: #fff;
    background: #e77900;
    color: #fff;
    transform: translateY(-50%) scale(1.06);
}

.slider-arrow:focus-visible {
    outline: 3px solid rgba(255, 140, 0, 0.32);
    outline-offset: 2px;
}

.slider-arrow:disabled {
    opacity: 0.38;
    cursor: default;
}

.operations-slider-container.is-static .slider-arrow {
    display: none;
}

.slider-card img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    object-position: center;
    background: #fff;
    border-radius: 6px;
}

.slider-card h3 {
    font-size: 1rem;
    font-weight: bold;
    color: #1e3d2f;
    margin: 10px 0 5px;
}

.slider-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin-bottom: 10px;
    min-height: 60px;
}

.slider-card a {
    font-size: 0.9rem;
    color: #f06523;
    text-decoration: none;
    font-weight: 500;
}

.operations-slider .slider-card .view-details-btn {
    margin-top: auto;
}

@media screen and (min-width: 769px) {
    .operations-slider-container[data-operations-carousel] .operations-slider {
        padding-right: 34px;
        padding-left: 34px;
        scroll-padding-inline: 34px;
    }
}

@media screen and (max-width: 768px) {
    .slider-arrow {
        display: none;
    }
}
