/* Título h1 no mesmo padrão do inmemorian */
.grife-section h1 {
    font-family: "Alfa Slab One", cursive;
    color: white;
    font-size: 3.0rem;
    text-align: center;
    margin-bottom: 2.5rem;
    text-shadow: 0 0 10px rgba(179, 179, 177, 0.3);
}

/* Card de produto: fundo escuro e borda sutil */
.grife-card {
    background: rgba(30, 30, 30, 0.92);
    border: 2px solid #222;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.grife-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 10px 32px rgba(0,0,0,0.7);
}

/* Imagem do produto: preto e branco, centralizada, ocupa todo espaço do card */
.grife-card .image img {
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: 220px;
    filter: grayscale(1);
    background: #111;
    transition: filter 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border-radius: 0;
}

/* Ao passar o mouse, destaca a imagem */
.grife-card:hover .image img {
    filter: grayscale(0.2) drop-shadow(0 2px 12px #000);
}

/* Modal para visualização ampliada */
.grife-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
}

.grife-modal.is-active {
    display: flex;
}

.grife-modal img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 40px #000;
    background: #111;
}

.grife-modal .grife-modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
    z-index: 10001;
    background: none;
    border: none;
}

/* Responsividade */
@media (max-width: 768px) {
    .grife-card .image img {
        height: 140px;
    }
    .grife-modal img {
        max-width: 98vw;
        max-height: 60vh;
    }
}

.grife-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}