
.products {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.product-slider {
    position: relative;
    overflow: hidden;
}

.product-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.product-slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

.product-img {
    width: 100%;
    max-width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.product-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
    font-weight: 600;
}

.product-info p {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 20px;
    max-width: 600px;
    font-weight: 400;
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.slider-btn {
    background-color: #3498db;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    border: none;
    font-size: 20px;
}

.slider-btn:hover {
    background-color: #2980b9;
}
