/* products.css */
.products-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-showcase {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.product-image {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.product-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.product-info {
    padding: 20px;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.product-title {
    font-size: 2.5rem;
    color: #2d3436;
    margin-bottom: 20px;
    font-weight: 700;
}

.product-description {
    font-size: 1.1rem;
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 30px;
}

.product-features {
    margin-bottom: 30px;
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 15px;
    color: #2d3436;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4834d4;
}

.btn-primary {
    padding: 15px 35px;
    font-size: 1.1rem;
    background-color: #4834d4;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(72, 52, 212, 0.3);
}

.fade-out {
    opacity: 0;
}

.fade-in {
    opacity: 1;
}

.product-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.slide-indicators {
    display: flex;
    gap: 10px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background-color: #4834d4;
}

.control-button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #4834d4;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.control-button:hover {
    background-color: #f0f0f0;
}

@media (max-width: 768px) {
    .product-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-title {
        font-size: 2rem;
    }

    .product-image img {
        height: 300px;
    }
}