.ps-slider {
    overflow: hidden;
}

.ps-slider-view {
    display: flex;
    align-items: center;
}

.ps-track-wrap {
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.ps-track {
    display: flex;
    transition: transform 0.5s ease;
}

.ps-slide {
    flex-shrink: 0;
    box-sizing: border-box;
    padding: 0 10px;
}

.ps-slide-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ps-slide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ps-slide-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.ps-slide-image {
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
}

.ps-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.ps-slide-card:hover .ps-slide-image img {
    transform: scale(1.05);
}


.ps-slide-content {
    padding: 20px;
    text-align: center;
}

.ps-slide-title {
    font-size: 20px;
    margin: 0 0 15px 0;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.ps-slide-btn {
    display: inline-block;
    background: var(--brand-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.ps-slide-btn:hover {
    background: hsl(355, 96%, 45%);
}

.ps-arrow {
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e0e0e0;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 0;
    flex-shrink: 0;
}

.ps-arrow-prev {
    margin-right: -20px;
    order: -1;
}

.ps-arrow-next {
    margin-left: -20px;
}

.ps-arrow .dashicons {
    width: auto;
    height: auto;
    font-size: 20px;
}

.ps-arrow:hover {
    background: var(--brand-color);
    color: #fff;
    border-color: var(--brand-color);
}

.ps-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.ps-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease;
}

.ps-dot.active {
    background: var(--brand-color);
}
