.budha-catalogo {
    max-width: 1280px;
    margin: 0 auto;
    padding: 8px 0 24px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.45;
    box-sizing: border-box;
}
.budha-catalogo *,
.budha-catalogo *::before,
.budha-catalogo *::after {
    box-sizing: border-box;
}
.budha-aviso {
    background: #fff3cd;
    border: 1px solid #ffecb5;
    color: #664d03;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
}
.budha-buscador {
    background: #fff;
    border-radius: 12px;
    padding: 16px 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.budha-input {
    flex: 1;
    min-width: 220px;
    height: 44px;
    padding: 0 16px;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    font-size: 15px;
}
.budha-input:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76,175,80,0.15);
}
.budha-btn {
    height: 44px;
    padding: 0 22px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.budha-btn-buscar {
    background: #4CAF50;
    color: #fff;
}
.budha-btn-buscar:hover { background: #43a047; color: #fff; }
.budha-btn-limpiar {
    background: #9e9e9e;
    color: #fff;
}
.budha-btn-limpiar:hover { background: #757575; color: #fff; }
.budha-info {
    margin-bottom: 14px;
    font-size: 14px;
    color: #666;
}
.budha-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}
.budha-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}
.budha-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}
.budha-img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background: #fafafa;
    padding: 14px;
}
.budha-img-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 13px;
}
.budha-card-body {
    padding: 14px 16px 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.budha-titulo {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 5px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 38px;
    color: #222;
}
.budha-meta {
    font-size: 13px;
    color: #1976d2;
    margin-bottom: 8px;
    font-weight: 500;
}
.budha-precio {
    font-size: 18px;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 3px;
}
.budha-stock {
    font-size: 13px;
    color: #777;
    margin-bottom: 14px;
}
.budha-botones {
    display: flex;
    gap: 10px;
    margin-top: auto;
}
.budha-btn-ml,
.budha-btn-cashea {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
    overflow: hidden;
}
.budha-btn-ml {
    background: #ffe600;
    color: #002f6d;
}
.budha-btn-cashea {
    background: #ffed00;
    color: #0c0d0d;
}
.budha-btn-ml:hover,
.budha-btn-cashea:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
    opacity: 0.92;
}
.budha-btn-ml img,
.budha-btn-cashea img {
    height: 31px;
    width: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
}
.budha-paginacion {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.budha-paginacion a,
.budha-paginacion span {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
}
.budha-paginacion a:hover {
    background: #e8f5e9;
    border-color: #4CAF50;
}
.budha-paginacion .actual {
    background: #4CAF50;
    color: #fff;
    border-color: #4CAF50;
}
.budha-vacio {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #777;
    font-size: 16px;
}
@media (max-width: 600px) {
    .budha-botones { flex-direction: column; }
    .budha-buscador { flex-direction: column; }
    .budha-input, .budha-btn { width: 100%; }
}
