
/* SDS Interior Show Styles */
* {
    box-sizing: border-box;
}
#wp-show-container *{
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;;
}
#wp-show-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.wp-show-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.wp-show-cards {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wp-show-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wp-show-card:hover {
    border-color: #797631;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.wp-show-card.active {
    border-color: #797631;
    background: linear-gradient(135deg, #fff 0%, #f8f6f0 100%);
    box-shadow: 0 8px 25px rgba(197, 165, 114, 0.2);
}

.wp-show-card-header div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.wp-show-card-title {
    font-size: 15px;
    font-weight: 400;
    color: #333;
    margin-bottom: 5px;
}

.wp-show-card-price {
    color: #797631;
    font-weight: 600;
    font-size: 14px;
}

.wp-show-card-details {
    display: grid;
    grid-template-columns: auto auto;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.wp-show-card-detail {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size:14px;
}

.wp-show-main-content {
    flex: 1;
    position: relative;
    width: 100%;
}

.wp-show-image-container {
    position: relative;
    max-width: 760px;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 25px;
    background: #f0f0f0;
}

.wp-show-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.wp-show-image-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgb(0 0 0 / 80%);
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 400;
    font-size: 12px;
    color: #ffffff;
    backdrop-filter: blur(10px);
    z-index: 9;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.wp-show-main-details div {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.wp-show-main-title {
    font-size: 26px;
    font-weight: 400;
    color: #333;
    margin-bottom: 5px;
}

.wp-show-main-price {
    font-size: 18px;
    color: #797631;
    font-weight: 600;
}
.wp-show-feature p{
   margin:0;
}
.wp-show-specs {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.wp-show-spec {
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    flex: 1;
}

.wp-show-spec-icon {
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
}

.wp-show-spec-value {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.wp-show-spec-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wp-show-features {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
}

.wp-show-features-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.wp-show-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.wp-show-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
}

.wp-show-feature-bullet {
    width: 6px;
    height: 6px;
    background: #797631;
    border-radius: 50%;
    flex-shrink: 0;
}
.swiper-button-next:after, .swiper-button-prev:after{
    background: #797631 !important;
    padding: 12px;
    color: white;
    font-size: 16px !important;
}

@media (max-width: 768px) {
    .wp-show-content {
        flex-direction: column;
    }
    .wp-show-image-container{
        height: auto;
    }
    .wp-show-cards {
        flex: none;
        width: 100%;
    }
    
    .wp-show-specs {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .wp-show-features-grid {
        grid-template-columns: 1fr;
    }
}