
/* ================================
       GRID — 5 COLUMNAS FIJAS
   ================================ */

.psc-products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* SIEMPRE 5 columnas */
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Ajustes responsive */
@media (max-width: 1200px) {
    .psc-products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .psc-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .psc-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .psc-products-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* ================================
       TARJETA
   ================================ */

.psc-product-card {
    border: 1px solid #ddd;
    padding: 12px;
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

/* ================================
       IMAGEN
   ================================ */

.psc-product-image {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

.psc-product-image img {
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* ================================
       INFORMACIÓN
   ================================ */

.psc-product-info {
    flex: 1; /* rellena el espacio superior */
}

.psc-product-title {
    font-size: 0.78rem;  /* 🔹 Título más pequeño */
    margin: 0 0 3px 0;
    line-height: 1.1;
}

.psc-product-ref {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 6px;
}

.psc-product-desc {
    font-size: 0.9rem;
    color: #555;
}

/* ================================
     BOTÓN CENTRADO Y ABAJO DEL TODO
   ================================ */

.psc-product-actions {
    margin-top: auto;              /* empuja el botón abajo */
    display: flex;
    justify-content: center;       /* centra el botón horizontal */
    align-items: center;
    padding-top: 10px;
}

.psc-product-button {
    display: inline-block;
    padding: 8px 14px;
    background: #C62E2B;
    border: 1px solid #C62E2B;
    border-radius: 3px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    text-align: center;
}

.psc-product-button:hover {
    background: #a82825;
    border-color: #a82825;
}

/* ================================
       SWITCHER GRID / LISTA
   ================================ */

.psc-view-switcher {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.psc-view-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border-radius: 4px;
    color: #C62E2B;             /* color vino */
    border: 1px solid transparent;
    cursor: pointer;
    transition: 0.2s;
}

.psc-view-icon:hover {
    background: rgba(198, 46, 43, 0.07);
    border-color: #C62E2B;
}

.psc-view-icon.active {
    background: #C62E2B;
    color: #fff;
    border-color: #C62E2B;
}