/* =============================================
   FOOTER STYLES — seed.com clone
   Class names match footer.php (seed-footer-new__)
   ============================================= */

/* ---- Main Footer Container ---- */
.seed-footer-new {
    background-color: #1C3A13;
    color: #FCFCF7;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(252, 252, 247, 0.08);
}

/* ---- Inner Wrapper ---- */
.seed-footer-new__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px 60px;
}

/* ---- Main Grid: Brand Left | Links Right ---- */
.seed-footer-new__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

/* ---- Left Column: Brand + Newsletter ---- */
.seed-footer-new__brand {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.seed-footer-new__logo {
    font-size: 32px;
    font-weight: 700;
    color: #FCFCF7;
    letter-spacing: -0.02em;
}

.seed-footer-new__tagline {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.35;
    color: #FCFCF7;
    margin: 0;
}

/* Newsletter */
.seed-footer-new__newsletter-title {
    font-size: 15px;
    font-weight: 500;
    color: #FCFCF7;
    margin: 0 0 4px;
}

.seed-footer-new__newsletter-consent {
    font-size: 12px;
    color: rgba(252, 252, 247, 0.45);
    margin: 0 0 12px;
}

.seed-footer-new__newsletter-form {
    display: flex;
    align-items: center;
    border: 1px solid rgba(252, 252, 247, 0.25);
    border-radius: 50px;
    overflow: hidden;
    transition: border-color 0.2s;
    max-width: 420px;
}

.seed-footer-new__newsletter-form:focus-within {
    border-color: rgba(252, 252, 247, 0.6);
}

.seed-footer-new__newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 14px 20px;
    color: #FCFCF7;
    font-size: 14px;
    font-family: inherit;
    outline: none;
}

.seed-footer-new__newsletter-form input::placeholder {
    color: rgba(252, 252, 247, 0.4);
}

.seed-footer-new__newsletter-form button {
    background: transparent;
    border: none;
    padding: 14px 18px;
    color: #FCFCF7;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: opacity 0.2s;
}

.seed-footer-new__newsletter-form button:hover {
    opacity: 0.6;
}

/* FDA Disclaimer */
.seed-footer-new__disclaimer {
    border: 1px solid rgba(252, 252, 247, 0.12);
    border-radius: 8px;
    padding: 14px 16px;
    max-width: 420px;
}

.seed-footer-new__disclaimer p {
    font-size: 11px;
    line-height: 1.5;
    color: rgba(252, 252, 247, 0.4);
    margin: 0;
}

/* ---- Right Column: Link Groups ---- */
.seed-footer-new__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
}

.seed-footer-new__col h5 {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(252, 252, 247, 0.45);
    margin: 0 0 16px;
}

.seed-footer-new__col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.seed-footer-new__col ul li {
    margin-bottom: 10px;
}

.seed-footer-new__col ul li a {
    font-size: 14px;
    font-weight: 400;
    color: rgba(252, 252, 247, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.seed-footer-new__col ul li a:hover {
    color: #FCFCF7;
}

/* ---- Footer Bottom: Copyright Bar ---- */
.seed-footer-new__bottom {
    position: relative;
    text-align: center;
    padding: 0;
    overflow: hidden;
}

.seed-footer-new__bottom-bg {
    position: relative;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.seed-footer-new__bottom-bg img {
    width: 60%;
    max-width: 700px;
    height: auto;
    display: block;
    object-fit: contain;
    margin: 0 auto;
}

.seed-footer-new__copyright {
    font-size: 12px;
    color: rgba(252, 252, 247, 0.35);
    margin: 0;
    padding: 12px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .seed-footer-new__inner {
        padding: 60px 40px 40px;
    }

    .seed-footer-new__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .seed-footer-new__links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .seed-footer-new__inner {
        padding: 48px 24px 32px;
    }

    .seed-footer-new__grid {
        gap: 40px;
    }

    .seed-footer-new__tagline {
        font-size: 22px;
    }

    .seed-footer-new__links {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 24px;
    }

    .seed-footer-new__bottom {
        padding: 0;
    }

    .seed-footer-new__bottom-bg {
        background-image: none !important;
    }

    .seed-footer-new__bottom-bg img {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .seed-footer-new__links {
        grid-template-columns: 1fr 1fr;
    }

    .seed-footer-new__tagline {
        font-size: 20px;
    }
}