/* ── Filtros Tienda — Studio Blast v0.1 ──────── */

.ft-filtros {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-end;
    margin-bottom: 32px;
}

.ft-filtros__grupo {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1 1 180px;
    min-width: 160px;
}

.ft-filtros__label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #666;
}

.ft-filtros__select {
    appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px 32px 8px 12px;
    font-size: 0.9rem;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    transition: border-color 0.2s;
    width: 100%;
}

.ft-filtros__select:focus {
    outline: none;
    border-color: #000;
}

.ft-filtros__grupo--reset {
    flex: 0 0 auto;
    justify-content: flex-end;
}

.ft-filtros__reset {
    display: inline-block;
    padding: 8px 16px;
    font-size: 0.85rem;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
    line-height: 1.4;
}

.ft-filtros__reset:hover {
    background-color: #f5f5f5;
    color: #333;
    border-color: #bbb;
}

/* ── Mobile ───────────────────────────────────── */
@media (max-width: 767px) {
    .ft-filtros__grupo {
        flex: 1 1 100%;
    }

    .ft-filtros__grupo--reset {
        width: 100%;
    }

    .ft-filtros__reset {
        width: 100%;
        text-align: center;
        display: block;
    }
}
