/* Tienda - Estilo OpenCart */
.tienda {
    margin-top: 100px;
    margin-bottom: 60px;
}
/* Grid de productos */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
[class*="col-"] { padding: 0 10px; }
.col-12 { width: 100%; }
.col-sm-6 { width: 50%; }
.col-md-4 { width: 33.333%; }
.col-lg-3 { width: 25%; }
/* Tarjeta de producto */
.producto-card {
    background: #EBE9DD;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(118,107,93,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
.producto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(118,107,93,0.2);
}
/* Imagen */
.producto-imagen {
    position: relative;
    overflow: hidden;
    background: #f0ede4;
    width: 100%;
    padding-top: 100%;
}
.producto-imagen img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.producto-card:hover .producto-imagen img {
    transform: scale(1.05);
}
/* Badge */
.producto-badge {
    position: absolute;
    top: 10px; left: 10px;
    background: #766B5D;
    color: #EBE9DD;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}
/* Información */
.producto-info {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.producto-titulo {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: #766B5D;
}
.producto-descripcion {
    font-size: 0.8rem;
    color: #8a8070;
    margin-bottom: 12px;
    line-height: 1.4;
    flex: 1;
}
.producto-precio {
    font-size: 1.3rem;
    font-weight: bold;
    color: #766B5D;
    margin-bottom: 15px;
}
.btn-comprar {
    background: #25D366;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}
.btn-comprar:hover {
    background: #1eb954;
}
/* Paginación */
.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    list-style: none;
    margin-top: 40px;
}
.pagination .page-link {
    display: inline-block;
    padding: 8px 14px;
    color: #766B5D;
    background: #EBE9DD;
    border: 1px solid #D4C7AF;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.pagination .page-item.active .page-link {
    background-color: #766B5D;
    border-color: #766B5D;
    color: #EBE9DD;
}
.pagination .page-link:hover {
    background-color: #A8A696;
    border-color: #A8A696;
    color: #EBE9DD;
}
/* Responsive */
@media (max-width: 768px) {
    .tienda { margin-top: 80px; }
    .producto-titulo { font-size: 0.9rem; }
    .producto-precio { font-size: 1.1rem; }
    .btn-comprar { padding: 6px 12px; font-size: 0.75rem; }
}