.custom-search-bar-wrapper {
    padding: 20px 16px; /* Coincide con el padding de la cuadrícula de categorías */
    background-color: #f9f9f9; /* Un fondo gris muy claro */
}
.custom-search-form {
    position: relative;
}
.custom-search-field {
    width: 100%;
    padding: 14px 20px 14px 60px !important;/* <-- LÍNEA ACTUALIZADA (Más espacio) */
    border: 1px solid #ccc;
    border-radius: 30px; /* Píldora redondeada */
    font-size: 1rem;
    box-sizing: border-box; /* Importante */
}
.custom-search-field:focus {
    border-color: #000;
    outline: none;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    background-color: #111;
}
.custom-search-submit {
    position: absolute;
    left: 10px; /* Posición del icono */
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px; /* Área de clic */
}
.custom-search-submit svg {
    width: 22px;
    height: 22px;
    color: #777; /* Color del icono */
}