/* Products Section */
.products {
    padding: 20px 0 20px;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 100px;
}

.product-item:last-child {
    margin-bottom: 0;
}

.product-content,
.product-image {
    flex: 1;
}

.product-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.product-content p {
    color: var(--secondary-color);
    line-height: 1.8;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

/* Image position variations */
.product-item.image-right {
    flex-direction: row;
}

.product-item.image-left {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .product-item {
        flex-direction: column !important; /* Override any other flex directions */
        gap: 30px;
        margin-bottom: 60px;
        text-align: center;
    }

    .product-content h2 {
        font-size: 1.8rem;
    }

    .image-left,
    .image-right {
        flex-direction: column;
    }
}
