/* Piano House Slider Styles */
.piano-house-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
}

.piano-house-title {
    text-align: center;
    font-size: 1.8rem;
    color: #D4AF37;
    margin-bottom: 20px;
}

/* Slider styles */
.piano-house-slider-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.piano-house-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.piano-house-slide {
    min-width: 100%;
    text-align: center;
    padding: 20px;
}

.piano-house-icon,
.piano-house-default-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
}

.piano-house-feature-title {
    font-size: .9rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 500;
}

.piano-house-view-more {
    display: inline-block;
    color: #D4AF37;
    text-decoration: none;
    font-size: 12px;
    position: relative;
}

.piano-house-view-more::after {
    content: '›';
    margin-left: 5px;
}

/* Navigation buttons */
.piano-house-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(240, 240, 240, 0.7);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    font-size: 16px;
    color: #666;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

/* Hover effect for navigation buttons */
.piano-house-nav-button:hover {
    background-color: #C8A67B;
    color: #333;
}

.piano-house-prev {
    left: 5px;
}

.piano-house-next {
    right: 5px;
}

/* Desktop view */
@media (min-width: 768px) {
    .piano-house-slider {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-around;
        transform: none !important;
    }

    .piano-house-slide {
        min-width: 33.333%;
    }

    .piano-house-nav-button {
        display: none;
    }
}