.fat-email-capture {
    margin: 1.5rem 0;
}

.fat-email-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.fat-ec-input {
    flex: 1 1 220px;
    padding: 0.6rem 0.875rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    line-height: 1.4;
}

.fat-ec-input:focus {
    outline: 2px solid #e05a2b;
    outline-offset: 1px;
    border-color: #e05a2b;
}

.fat-ec-btn {
    padding: 0.6rem 1.25rem;
    background: #e05a2b;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s;
}

.fat-ec-btn:hover {
    background: #c44d22;
}

.fat-ec-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.fat-ec-message {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.fat-ec-message.is-success {
    color: #2e7d32;
}

.fat-ec-message.is-error {
    color: #c62828;
}

/* ── Pinterest Repin Section ───────────────────────────────────────── */

.fat-pinterest-repin {
    margin: 2rem 0 1.5rem;
}

.fat-pin-heading {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #222;
}

.fat-pin-image-wrap {
    position: relative;
    display: inline-block;
    max-width: 320px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

.fat-pin-img {
    display: block;
    width: 100%;
    height: auto;
    transition: filter .25s;
}

.fat-pin-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(189, 8, 28, 0.78);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    opacity: 0;
    transition: opacity .22s;
    border-radius: 8px;
}

.fat-pin-image-wrap:hover .fat-pin-overlay,
.fat-pin-image-wrap:focus-within .fat-pin-overlay {
    opacity: 1;
}

.fat-pin-image-wrap:hover .fat-pin-img {
    filter: brightness(0.85);
}

.fat-pin-icon {
    width: 40px;
    height: 40px;
}

@media (hover: none) {
    .fat-pin-overlay {
        opacity: 1;
        background: rgba(189, 8, 28, 0.55);
    }
}
