.mr-fps-wrapper-85545b4a {
    display: flex;
    gap: 30px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    overflow: hidden;
}

/* Banner Styles */
.mr-fps-banner {
    width: 35%;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 450px;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.mr-fps-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.mr-fps-banner-content {
    position: relative;
    z-index: 2;
    padding: 40px 30px;
    color: #fff;
    width: 100%;
}

.mr-fps-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.mr-fps-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.2;
    color: inherit;
}

.mr-fps-subtitle {
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.9;
    margin: 0 0 25px;
}

.mr-fps-btn {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #000;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mr-fps-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Slider Styles */
.mr-fps-slider {
    width: calc(65% - 30px);
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
}

.mr-fps-track-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.mr-fps-track {
    display: flex;
}

.mr-fps-slide {
    flex: 0 0 260px;
    min-width: 260px;
    height: auto;
}

/* Spotlight Feature */
.mr-fps-slide.mr-fps-spotlight {
    flex: 0 0 340px;
    min-width: 340px;
}

.mr-fps-spotlight .mr-fps-card {
    border: 2px solid rgba(0, 113, 227, 0.1);
}

.mr-fps-spotlight .mr-fps-card-title {
    font-size: 20px;
}

/* Product Card */
.mr-fps-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    box-sizing: border-box;
}

.mr-fps-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.mr-fps-card-img {
    position: relative;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    background: #f9f9f9;
    height: 220px;
    width: 100%;
}

.mr-fps-card-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    box-sizing: border-box;
    transition: transform 0.5s ease;
}

.mr-fps-card:hover .mr-fps-card-img img {
    transform: scale(1.05);
}

.mr-fps-sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e3000f;
    color: #fff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
}

.mr-fps-card-actions {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.mr-fps-card:hover .mr-fps-card-actions {
    opacity: 1;
    transform: translateY(0);
}

.mr-fps-add-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 50%;
    color: #000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.mr-fps-add-cart:hover {
    background: #000;
    color: #fff;
}

.mr-fps-card-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.mr-fps-card-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px;
    line-height: 1.3;
}

.mr-fps-card-title a {
    color: #1d1d1f;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mr-fps-card-title a:hover {
    color: #0071e3;
}

.mr-fps-card-excerpt {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    flex-grow: 1;
}

.mr-fps-card-price {
    margin-top: auto;
    font-weight: 700;
    font-size: 16px;
    color: #1d1d1f;
}

.mr-fps-card-price del {
    color: #86868b;
    font-weight: 400;
    font-size: 14px;
    margin-right: 5px;
}

.mr-fps-card-price ins {
    text-decoration: none;
}

/* Nav Arrows */
.mr-fps-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 10;
    color: #1d1d1f;
    transition: all 0.2s ease;
}

.mr-fps-nav.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.mr-fps-nav:not(.swiper-button-disabled):hover {
    background: #f5f5f7;
    transform: translateY(-50%) scale(1.05);
}

.mr-fps-prev { left: -15px; }
.mr-fps-next { right: -15px; }

/* Responsive */
@media (max-width: 1024px) {
    .mr-fps-wrapper-85545b4a {
        flex-direction: column;
    }
    .mr-fps-banner {
        width: 100% !important;
        min-height: 350px;
    }
    .mr-fps-slider {
        width: 100% !important;
        padding: 0 15px;
        box-sizing: border-box;
    }
}

@media (max-width: 767px) {
    .mr-fps-banner {
        min-height: 300px;
    }
    .mr-fps-nav {
        display: none;
    }
    .mr-fps-title {
        font-size: 24px;
    }
    .mr-fps-slider {
        padding: 0;
    }
    .mr-fps-slide, .mr-fps-slide.mr-fps-spotlight {
        flex: 0 0 calc(85vw - 20px) !important;
        min-width: 0 !important;
    }
}