.product-slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    margin: auto;
    padding: 0 10px;
}

.poduct-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 15px;
    margin-top: 20px;
}

.product-card {
    flex: 0 0 auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    padding: 12px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.5s ease;
}

.product-card h3 {
    font-size: 1rem;
    margin: 10px 0;
    color: #333;
    transition: color 0.3s ease;
}

.product-card:hover h3 {
    color: #22c55e;
}

.product-card p {
    font-size: 1rem;
    color: #22c55e;
    font-weight: bold;
}

/* Slider navigation buttons */
.slider-controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 15px;
}

.slider-btn {
    width: 40px !important;
    height: 40px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f3f3f3;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.slider-btn:hover {
    background-color: #22c55e;
    color: white;
}

.slider-btn:hover svg {
    color: white;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #22c55e;
}

.product-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    width: 100%;
    text-align-last: center;
}

.product-section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #22c55e;
    justify-self: anchor-center;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .product-card {
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .slider-controls {
        justify-content: center;
    }

    .section-title {
        font-size: 1.3rem;
        text-align: center;
        display: block;
    }

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 576px) {
    .product-card {
        padding: 8px;
    }

    .product-card h3 {
        font-size: 0.9rem;
    }
}

/* Animation for auto-sliding */
@keyframes fadeIn {
    from {
        opacity: 0.7;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}