/* ===========================================
   MANSUL PRODUCT CARD - GRID
   =========================================== */

.mansul-product-grid {
    display: grid;
    width: 100%;
    box-sizing: border-box;
}

/* ===========================================
   CARD
   =========================================== */

.mansul-product-card {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    width: 100%;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: default;
}

.mansul-product-card[href] {
    cursor: pointer;
}

/* ===========================================
   TÍTULO
   =========================================== */

.mansul-product-card__title {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    box-sizing: border-box;
}

/* ===========================================
   IMAGEM
   =========================================== */

.mansul-product-card__image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.mansul-product-card__image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* ===========================================
   HOVER EFFECTS
   =========================================== */

/* Hover - Aumentar (Scale) */
.mansul-product-card--hover-scale:hover {
    transform: scale(1.05);
}

/* Hover - Subir (Translate) */
.mansul-product-card--hover-translateY:hover {
    transform: translateY(-10px);
}

/* Transição suave para todos os cards com hover */
.mansul-product-card--hover-scale,
.mansul-product-card--hover-translateY {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
