
.catalogo-llave-lunar {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin: 20px;
}
.catalogo-llave-lunar .producto {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s;
    text-align: center;
    padding: 10px;
}
.catalogo-llave-lunar .producto:hover {
    transform: scale(1.03);
}
.catalogo-llave-lunar .producto img {
    max-width: 100%;
    height: auto;
}
.catalogo-llave-lunar h2 {
    font-size: 16px;
    margin: 10px 0 5px;
    color: #333;
}
.catalogo-llave-lunar .precio {
    margin: 5px 0;
}
.precio-regular {
    text-decoration: line-through;
    color: #999;
    margin-right: 8px;
}
.precio-oferta {
    color: #e60000;
    font-weight: bold;
}
.precio-normal {
    color: #333;
    font-weight: bold;
}
.etiqueta-descuento {
    background-color: #e60000;
    color: white;
    font-size: 12px;
    padding: 3px 8px;
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 4px;
}
.boton-vermas {
    margin-top: 10px;
    background: #ff6600;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
}
