.products-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-bottom: 40px;
}

.product-card {
    display: flex;
    flex-direction: column;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 24px;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    transition: display 0.3s ease-in-out;
}

.product-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border: none !important;
    border-radius: 6px 6px 0 0 !important;
    opacity: 1 !important;
    padding: 30px;
    background-color: #fcfcfc;
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.02);
}

.search-container {
    max-width: 1200px;
    margin: 0 auto 50px auto;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.search-input {
    width: 100%;
    max-width: 1000px;
    padding: 15px 25px;
    border-radius: 6px;
    border: 1px solid #1d1d1f20;
    font-size: 13px;
    font-family: 'Open Sans', sans-serif;
    outline: none;
    transition: all 0.3s ease;
    background: #fdfdfd;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.search-input:focus {
    border-color: #1d1d1f50;
    background: #ffffff;
}

.product-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-info h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 400;
}

.product-info p {
    margin: 0;
    opacity: 0.8;
}

.product-btn {
    display: inline-block;
    padding: 10px 24px;
    font-size: small;
    cursor: pointer;
    border-radius: 6px;
    border: none;
    background: #1d1d1f;
    color: #ffffff !important;
    text-decoration: none;
    text-align: center;
    width: fit-content;
    margin-top: 10px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 350;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 24px;
}

@media (min-width: 800px) {
    .product-card {
        flex-direction: row;
        align-items: stretch;
    }

    .product-card img {
        width: 50%;
        height: auto;
        border-radius: 6px 0 0 6px !important;
    }

    .product-info {
        width: 50%;
        justify-content: center;
        padding: 40px;
    }
}