.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1280px;
    margin: auto;
    margin-top: 3rem;
    gap: 5rem;
    padding: 3rem;
}

.search-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.search-title {
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}

.search-paragraph {
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: bold;
    text-align: center;
}

.search-input {
    width: 100%;
    max-width: 600px;
    padding: 10px;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    gap: 1rem;
    width: 100%;
}

.products-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border: solid 1px #FFF;
    background-color: #06062a;
    color: white;
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    font-size: 1.2em;
}

.products-card:hover {
        box-shadow: 0 0 5px 2px #FFF;
}

.products-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border: solid 3px #FFF;
    border-radius: 8px;
    background-color: #FFF;
}

.products-title {
    font-size: 14pt;
    text-transform: uppercase;
    font-weight: bold;
}

.products-description {
    width: 100%;
    font-size: 11pt;
}

.products-button {
    text-decoration: none;
    text-transform: uppercase;
    border: solid 1px #FFF;
    background-color: #FFF;
    color: #06062a;
    font-weight: bold;
    font-size: 10pt;
    padding: 0.5rem 1rem;
    width: 100%;
}

.products-button:hover {
    background-color: #e4e4e4;
    border: solid 1px #e4e4e4;
}

.firmwares-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.firmware-version {
    font-size: 9pt;
    margin-bottom:5px;
}



@media screen and (max-width: 40rem) {
    .products-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        padding: 20px;
    }
}

@media screen and (min-width: 40rem) and (max-width: 48rem) {
    .products-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
    }
}

@media screen and (min-width: 48rem) and (max-width: 64rem) {
    .products-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
    }
}