.product-card {
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #fff;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-img {
    background: #f8f9fa;
    text-align: center;
    padding: 15px;
}

.product-img img {
    max-height: 220px;
    object-fit: contain;
}

.badge-category {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ff6b6b;
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 20px;
}

.badge-descuento {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #d3546a;
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 20px;
}

.product-title {
    font-weight: 600;
    font-size: 15px;
    min-height: 40px;
}

.product-price {
    font-size: 18px;
    font-weight: bold;
    color: #222;
}

.btn-primary {
    background-color: #ff6b6b;
    border: none;
}

.btn-primary:hover {
    background-color: #f42a2a;
}

.product-card-small {
    border: none;
    transition: all 0.3s ease;
    background: #fff;
}

.product-card-small:hover {
    transform: translateY(-4px);
}

.product-img {
    background: #f8f9fa;
    text-align: center;
    padding: 12px;
}

.product-img img {
    max-height: 180px;
    object-fit: contain;
}

.badge-category-small {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff6b6b;
    color: #fff;
    padding: 4px 10px;
    font-size: 11px;
    border-radius: 20px;
}

.product-title-small {
    font-weight: 600;
    font-size: 14px;
    min-height: 38px;
}

.product-price-small {
    font-size: 16px;
    font-weight: bold;
    color: #222;
}
.product-gallery {
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.thumb-img {
    transition: 0.3s;
}

.thumb-img:hover {
    transform: scale(1.05);
    border: 2px solid #ff6b6b;
}

