.wellness-slider-section {
    margin-top: 40px;
    padding: 20px 0;
}

.slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.slider-wrapper {
    position: relative;
}

.slide {
    display: none;
    animation: fadeIn .5s ease;
}

.slide.active {
    display: block;
}

.product-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}


/*.product-image {
    flex: 1;
}

.product-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
} */

.product-image {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-content {
    flex: 1;
}

.product-content h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #0d4c5a;
}

.product-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.product-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #0ba7a0;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: .3s;
}

.product-btn:hover {
    background: #087c78;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: #0ba7a0;
    color: white;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.slider-dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 50%;
    background: #ccc;
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background: #0ba7a0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */
@media(max-width:768px){

    .product-card{
        flex-direction:column;
        text-align:center;
    }

    .product-content h3{
        font-size:24px;
    }

    .slider-btn{
        width:40px;
        height:40px;
    }
}