/* =========================================
   Force Fair — Produtos Page
   ========================================= */

/* ---- Hero ---- */
.ff-produtos-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

/* Foto de fundo — escurecida e fosca (baixo contraste/saturação) */
.ff-produtos-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: url(../img/bg-produtos.jpg);
    background-size: cover;
    background-position: center;
    filter: brightness(0.55) contrast(0.9) saturate(0.75);
}

/* Camada de tonalidade verde da marca, sobre a foto */
.ff-produtos-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(31, 38, 31, 0.82) 0%, rgba(31, 38, 31, 0.6) 45%, rgba(31, 38, 31, 0.85) 100%);
    mix-blend-mode: multiply;
}

/* ---- Product Grid ---- */
.ff-produtos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .ff-produtos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ff-produtos-grid {
        grid-template-columns: 1fr;
    }
}

/* ---- Product Card ---- */
.ff-product-card {
    background: var(--wp--preset--color--off-white-green-bg, #E0E0D7);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Reset WP group defaults inside cards */
.ff-product-card > .wp-block-group,
.ff-product-body > .wp-block-group,
.ff-product-body > p {
    margin-top: 0;
    margin-bottom: 0;
}

/* Placeholder image */
.ff-product-placeholder {
    aspect-ratio: 1 / 1;
    background: var(--wp--preset--color--brand-secondary-bg, #747D75);
}

.ff-product-placeholder img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card body */
.ff-product-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

/* Product display name (tag-like) */
.ff-product-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--wp--preset--color--brand-secondary-bg, #747D75);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Product headline */
.ff-product-headline {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--wp--preset--color--brand-primary-bg, #1F261F);
    margin: 0;
    line-height: 1.3;
}

/* Product description */
.ff-product-desc {
    font-size: 0.9375rem;
    color: var(--wp--preset--color--dark-neutral-text, #505050);
    line-height: 1.6;
    margin: 0;
}

/* Inline bullets */
.ff-product-bullets {
    font-size: 0.875rem;
    color: var(--wp--preset--color--brand-secondary-bg, #747D75);
    margin: 0;
}

/* CTA link */
.ff-product-cta {
    margin-top: auto;
    padding-top: 0.5rem;
}

.ff-product-cta a {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--wp--preset--color--brand-primary-bg, #1F261F);
    text-decoration: none;
    cursor: pointer;
}

.ff-product-cta a:hover {
    text-decoration: underline;
}

/* Closing CTA button hover */
.ff-closing-cta .wp-block-button__link:hover {
    opacity: 0.9;
}
