/**
 * Buscador de productos reutilizable (.product-search).
 * Sin margin-top/bottom: el espaciado vertical lo define el contenedor padre.
 */
.product-search {
    width: 100%;
    max-width: 531px;
}

.product-search__box {
    display: flex;
    align-items: center;
    width: 100%;
    height: 52px;
    border: 2px solid #000000;
    border-radius: 26px;
    box-sizing: border-box;
    padding: 0 20px 0 24px;
    background: #ffffff;
}

.product-search__input {
    flex: 1 1 auto;
    min-width: 0;
    height: 100%;
    border: 0;
    outline: none;
    background: transparent;
    text-align: left;
    font: normal normal bold 16px/19px 'Work Sans', sans-serif;
    letter-spacing: 0.32px;
    color: #000000;
}

.product-search__input::placeholder {
    font: normal normal bold 16px/19px 'Work Sans', sans-serif;
    letter-spacing: 0.32px;
    color: #000000;
    opacity: 1;
}

.product-search__input::-webkit-search-decoration,
.product-search__input::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

.product-search__submit {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    line-height: 0;
}

.product-search__submit img {
    display: block;
    width: 28px;
    height: 28px;
}

/* Viewports extremos: dejar espacio útil al placeholder */
@media (max-width: 249.98px) {
    .product-search__box {
        height: 44px;
        padding: 0 10px 0 12px;
    }

    .product-search__input,
    .product-search__input::placeholder {
        font: normal normal bold 13px/16px 'Work Sans', sans-serif;
        letter-spacing: 0;
    }

    .product-search__submit {
        margin-left: 6px;
    }

    .product-search__submit img {
        width: 22px;
        height: 22px;
    }
}
