/* General Taña */
.tana-style { background: #fff !important; padding: 1px 12px; border-radius: 0 0 15px 15px; }

/* Filtros Pegados */
.tana-filters-wrapper { margin-bottom: 8px; }
.tana-filter-group { margin-bottom: 6px; }
.tana-filter-label { 
    display: block; 
    font-size: 10px; 
    color: #bbb; 
    text-transform: uppercase; 
    font-weight: 700; 
    margin-bottom: 0; 
}

/* Píldoras pequeñas horizontales */
.tana-pills-container { 
    display: flex; 
    gap: 6px; 
    overflow-x: auto; 
    padding-bottom: 0; 
    scrollbar-width: none; 
}
.tana-pills-container::-webkit-scrollbar { display: none; }

.tana-pill { 
    background: #fff; 
    border: 1px solid #eee; 
    border-radius: 15px; 
    padding: 3px 10px; 
    color: #444; 
    font-size: 12px; 
    white-space: nowrap; 
    text-decoration: none !important;
    display: inline-block;
}
.tana-pill span { color: #aaa; font-size: 11px; }

/* Resultados */
.tana-header { 
    display: flex; 
    justify-content: space-between; 
    margin: 3px 0; 
    border-top: 1px solid #f9f9f9; 
    padding-top: 8px; 
}
.tana-count { font-weight: 700; font-size: 13px; color: #333; }
.tana-view-all { color: #b587d1; font-size: 12px; font-weight: 600; text-decoration: none; }

/* Grid de Productos */
.tana-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.tana-product-card { 
    border: 1px solid #f2f2f2; 
    border-radius: 10px; 
    padding: 8px; 
    position: relative; 
    background: #fff;
    display: flex;
    flex-direction: column;
}

.tana-image-box { height: 70px; display: flex; align-items: center; justify-content: center; }
.tana-img { max-height: 100%; object-fit: contain; }

.tana-name { 
    font-size: 11px; 
    color: #333; 
    height: 26px; 
    overflow: hidden; 
    display: block; 
    margin-top: 5px; 
    line-height: 1.2; 
}
.tana-price { font-weight: 800; font-size: 14px; color: #000; margin-top: 2px; }

/* Botón Carrito Taña */
.tana-cart-wrapper { position: absolute; bottom: 8px; right: 8px; }
.tana-style .add-to-cart {
    background: #b587d1 !important;
    border: none !important;
    width: 25px !important;
    height: 25px !important;
    border-radius: 6px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
}
.tana-style .add-to-cart i { color: #fff !important; font-size: 18px !important; margin: 0;}
.tana-style .add-to-cart span { display: none !important; }