.ir-slider-container-b5e578a4 {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0 60px;
}

.ir-slider-track-b5e578a4 {
    display: flex;
    transition: transform 0.5s ease-out;
    width: 100%;
}

.ir-slider-slide-b5e578a4 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .ir-slider-slide-b5e578a4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

.ir-slider-card-b5e578a4 {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 20px 30px;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid #f0ebe4;
}

.ir-image-wrapper-b5e578a4 {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ir-ring-container-b5e578a4 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: rotateRing 20s linear infinite;
}

@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.ir-ring-text-b5e578a4 {
    width: 100%;
    height: 100%;
}

.ir-ring-text-b5e578a4 text {
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
}

.ir-ring-text-b5e578a4 textPath {
    fill: #2d2a26;
}

.ir-image-inner-b5e578a4 {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 2;
    background: #faf8f5;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.05);
}

.ir-image-inner-b5e578a4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
}

.ir-content-b5e578a4 {
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ir-desc-b5e578a4 {
    color: #6b6560;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.ir-btn-b5e578a4 {
    display: inline-block;
    background: #111111;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: center;
}

.ir-btn-b5e578a4:hover {
    background: #333333;
    transform: translateY(-2px);
}

/* Slider Controls */
.ir-slider-nav-b5e578a4 {
    display: none;
}

@media (min-width: 768px) {
    .ir-slider-nav-b5e578a4 {
        display: block;
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        pointer-events: none;
        z-index: 10;
    }
}

.ir-slider-prev-b5e578a4,
.ir-slider-next-b5e578a4 {
    position: absolute;
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    color: #333;
}

.ir-slider-prev-b5e578a4:hover,
.ir-slider-next-b5e578a4:hover {
    background: #f5f5f5;
    transform: scale(1.05);
}

.ir-slider-prev-b5e578a4 { left: 10px; }
.ir-slider-next-b5e578a4 { right: 10px; }

/* Mobile Dots */
.ir-slider-dots-b5e578a4 {
    display: flex;
    justify-content: center;
    gap: 8px;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
}

@media (min-width: 768px) {
    .ir-slider-dots-b5e578a4 {
        display: none;
    }
}

.ir-dot-b5e578a4 {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ir-dot-b5e578a4.active {
    background: #333333;
    width: 20px;
    border-radius: 4px;
}

/* Mobile swipe functionality */
@media (max-width: 767px) {
    .ir-slider-track-b5e578a4 {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        padding-bottom: 20px;
    }
    
    .ir-slider-track-b5e578a4::-webkit-scrollbar {
        display: none; /* Safari/Chrome */
    }
    
    .ir-slider-slide-b5e578a4 {
        scroll-snap-align: center;
        flex: 0 0 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .ir-slider-card-b5e578a4 {
        width: 100%;
    }
}