.product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style-type: none;
    padding: 0;
    max-height: 35vw;
    overflow-y: auto;
}

.product-card {
    border: 1px solid #ddd;
    padding: 10px;
    margin: 15px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex: 1 1 100%;
    /* Default to 1 column */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.product-card img {
    height: auto;
    width: 150px;
    object-fit: contain;
    margin-bottom: 10px;
}

.product-info {
    flex: 1;
}

.product-info h4 {
    font-size: 16px;
    margin: 0 0 10px 0;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.product-price {
    font-size: 14px;
    font-weight: bold;
}

.product-card button {
    padding: 5px 10px;
    font-size: 14px;
}

.product-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.search-container {
    display: flex;
    flex-direction: row;
    align-items: left;
    margin: 10px 0;
}

#Owl360_product-search-input {
    border: none;
    padding: 10px;
    font-size: 14px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border-radius: 4px;
    width: 60%;
    margin-right: 10px;
}

#Owl360_product-search-input:focus {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    outline: none;
}

.clear-results-search,
.product-search-button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin-right: 10px;
}

.product-search-button:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}