.anva-ps {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.anva-ps-header {
    text-align: center;
    margin-bottom: 28px;
}

.anva-ps-headline {
    margin: 0 0 8px;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.2;
    color: #111827;
}

.anva-ps-subheadline {
    margin: 0;
    font-size: 15px;
    color: #6b7280;
}

.anva-ps-slider {
    position: relative;
}

.anva-ps-viewport {
    overflow: hidden;
    touch-action: pan-y;
}

.anva-ps-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.anva-ps-card {
    flex: 0 0 25%;
    min-width: 0;
    padding: 0 12px;
    box-sizing: border-box;
}

.anva-ps-image-link {
    display: block;
    text-decoration: none;
}

.anva-ps-image-wrap {
    position: relative;
    border: 1px dashed transparent;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.3s ease;
}

.anva-ps-card:hover .anva-ps-image-wrap {
    border-color: #445eb4;
}

.anva-ps-image-wrap img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.anva-ps-sale-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 4px 10px;
    background: #e53935;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    border-radius: 2px;
}

.anva-ps-hover-icon {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #111;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.anva-ps-card:hover .anva-ps-hover-icon {
    opacity: 1;
    transform: translateY(0);
}

.anva-ps-title {
    margin: 14px 0 8px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    text-transform: uppercase;
}

.anva-ps-title a {
    color: #111827;
    text-decoration: none;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.anva-ps-title a:hover {
    color: #445eb4;
}

.anva-ps-rating {
    margin-bottom: 8px;
    line-height: 1;
}

.anva-ps-rating .star-rating {
    font-size: 13px;
    letter-spacing: 4px;
    width: 85px;
    height: 1.2em;
    line-height: 1.2em;
}

.anva-ps-rating .star-rating::before,
.anva-ps-rating .star-rating span::before {
    letter-spacing: 4px;
    color: #cecece;
}

.anva-ps-rating .star-rating span::before {
    color: #fc6b14;
}

.anva-ps-price {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 15px;
}

.anva-ps-price del {
    color: #9ca3af;
    opacity: 1;
}

.anva-ps-price ins,
.anva-ps-price-current {
    text-decoration: none;
    font-weight: 700;
    color: #111827;
}

.anva-ps-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    padding: 0;
    border: 2.5px dotted #333;
    border-radius: 50%;
    background-color: #fff;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, opacity 0.25s ease, visibility 0.25s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    -webkit-tap-highlight-color: transparent;
}

.anva-ps-slider:hover .anva-ps-nav {
    opacity: 1;
    visibility: visible;
}

.anva-ps-nav:hover {
    background-color: #ff6b3d;
    border-color: #ff6b3d;
    transform: translateY(-50%) scale(1.1);
}

.anva-ps-nav:hover svg {
    fill: #fff;
}

.anva-ps-nav svg {
    fill: #333;
    width: 28px;
    height: 28px;
    transition: fill 0.3s ease;
}

.anva-ps-prev {
    left: 20px;
}

.anva-ps-next {
    right: 20px;
}

@media (max-width: 767px) {
    .anva-ps-headline {
        font-size: 32px;
    }
}

@media (max-width: 1199px) {
    .anva-ps-card {
        flex-basis: 33.3333%;
    }
}

@media (max-width: 991px) {
    .anva-ps-card {
        flex-basis: 50%;
    }

    .anva-ps-nav {
        visibility: visible;
        opacity: 1;
    }
}

@media (hover: none) {
    .anva-ps-nav {
        touch-action: manipulation;
    }

    .anva-ps-nav:active {
        background-color: #ff6b3d;
        border-color: #ff6b3d;
        transform: translateY(-50%) scale(1.05);
    }

    .anva-ps-nav:active svg {
        fill: #fff;
    }
}

@media (max-width: 575px) {
    .anva-ps-card {
        flex-basis: 100%;
    }

    .anva-ps-prev {
        left: 10px;
    }

    .anva-ps-next {
        right: 10px;
    }

    .anva-ps-nav {
        width: 44px;
        height: 44px;
    }

    .anva-ps-nav svg {
        width: 24px;
        height: 24px;
    }
}
