/* Product List Styles */

.products-section {
    background-color: #ffffff;
    padding-bottom: 130px;
}

.products-container {
    max-width: 1720px;
    margin: 0 auto;
}

.product-item {
    display: flex;
    align-items: flex-start;
    min-height: 600px;
    margin-top: 240px;
}

.product-item:nth-child(odd) {
    flex-direction: row;
}


.product-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 970px;
}

.product-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.product-info {
    flex: 1;
    padding:0 50px;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 28px;
    font-weight: 500;
    color: #727171;
    margin: 0 0 20px 0;
    letter-spacing: 1px;
}

.product-subtitle {
    font-size: 22px;
    font-weight: 500;
    color: #727171;
    margin: 0 0 40px 0;
    letter-spacing: 0.5px;
}

.product-description {
    line-height: 1.8;
}

.desc-highlight {
    font-size: 18px;
    font-weight: 500;
    color: #727171;
    line-height: 40px;
}

.desc-text {
    font-size: 20px;
    font-weight: 500;
    color: #727171;
    line-height: 40px;
}

.desc-note {
    font-size: 14px;
    font-weight: 500;
    color: #727171;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-item {
        min-height: 500px;
    }
    
    .product-image {
        padding: 40px;
    }
    
    .product-info {
        padding: 60px 60px;
    }
    
    .product-title {
        font-size: 28px;
    }
    
    .product-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .desc-highlight {
        font-size: 14px;
    }
    
    .desc-text {
        font-size: 13px;
    }
    
    .desc-note {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .product-item,
    .product-item:nth-child(odd),
    .product-item:nth-child(even) {
        flex-direction: column;
        min-height: auto;
        margin-top: 20px;
    }
    
    .product-image {
        padding: 20px 20px;
        min-width: 100%;
        box-sizing: border-box;
        display: inline-block;
    }
    
    .product-info {
        padding: 20px 20px;
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .product-subtitle {
        font-size: 14px;
        margin-bottom: 0px;
    }
    
    .desc-highlight {
        font-size: 12px;
        line-height: 24px;
    }
    
    .desc-text {
        font-size: 12px;
        line-height: 24px;
    }
    
    .desc-note {
        font-size: 11px;
    }

    .products-section{
        padding-bottom: 60px;
    }
}
