
.elementor-widget-agrind-footer-newsletter,
.elementor-widget-agrind-footer-newsletter > .elementor-widget-container,
.elementor-widget-agrind_footer_newsletter,
.elementor-widget-agrind_footer_newsletter > .elementor-widget-container {
    min-width: 0;
    max-width: 100%;
}

.agrind-footer,
.agrind-footer * { box-sizing: border-box; }

.agrind-footer {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background: #194A17;
    color: #9FB39C;
}

.agrind-footer__inner {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin: 0 auto;
}

.agrind-footer__inner > *,
.agrind-footer__top > *,
.agrind-footer__bottom > * {
    min-width: 0;
    max-width: 100%;
}

.agrind-footer__top {
    display: grid;
    grid-template-columns: 1.1fr .8fr 1.15fr;
    gap: 72px;
    align-items: start;
}

.agrind-footer__logo {
    display: block;
    width: 78px;
    height: auto;
    max-width: 100%;
    margin-bottom: 22px;
}

.agrind-footer__brand-text {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 22px;
}

.agrind-footer__description {
    max-width: 360px;
    font-size: 16px;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.agrind-footer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.agrind-footer__social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    text-decoration: none;
    transition: transform .2s ease, background-color .2s ease, color .2s ease;
}

.agrind-footer__social-link:hover {
    transform: translateY(-2px);
    color: #fff;
    background: rgba(255,255,255,.18);
}

.agrind-footer__social-link svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.agrind-footer__heading {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
}

.agrind-footer__links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.agrind-footer__links li + li { margin-top: 16px; }

.agrind-footer__links a {
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
    overflow-wrap: anywhere;
}

.agrind-footer__links a:hover {
    color: #fff;
}

.agrind-footer__newsletter-text {
    max-width: 360px;
    font-size: 16px;
    line-height: 1.45;
    margin-bottom: 20px;
    overflow-wrap: anywhere;
}

.agrind-footer__form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    max-width: 390px;
}

.agrind-footer__input {
    min-width: 0;
    height: 46px;
    padding: 0 16px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 11px;
    color: #fff;
    outline: none;
}

.agrind-footer__input::placeholder { color: rgba(255,255,255,.43); }

.agrind-footer__input:focus {
    border-color: rgba(255,255,255,.55);
}

.agrind-footer__submit {
    min-width: 56px;
    height: 46px;
    padding: 0 16px;
    border: 0;
    border-radius: 11px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: filter .2s ease, transform .2s ease;
}

.agrind-footer__submit:hover { filter: brightness(1.08); transform: translateY(-1px); }
.agrind-footer__submit:disabled { opacity: .65; cursor: wait; }

.agrind-footer__message {
    min-height: 22px;
    margin-top: 10px;
    font-size: 14px;
}

.agrind-footer__message.is-success { color: #baf6a6; }
.agrind-footer__message.is-error { color: #ffd2d2; }

.agrind-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    margin-top: 58px;
    padding-top: 34px;
    border-top: 1px solid rgba(255,255,255,.14);
    font-size: 13px;
}

.agrind-footer__payments {
    display: flex;
    align-items: center;
    gap: 12px;
}

.agrind-footer__payments strong {
    font-weight: 600;
    overflow-wrap: anywhere;
}

.screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

@media (max-width: 1024px) {
    .agrind-footer__inner {
        display: grid;
        grid-template-columns: repeat(8, minmax(0, 1fr));
    }

    .agrind-footer__inner > * {
        grid-column: 1 / -1;
    }

    .agrind-footer__top {
        grid-template-columns: repeat(8, minmax(0, 1fr));
        gap: 48px;
    }

    .agrind-footer__brand {
        grid-column: 1 / 6;
    }

    .agrind-footer__links {
        grid-column: 6 / -1;
    }

    .agrind-footer__newsletter {
        grid-column: 1 / -1;
    }

    .agrind-footer__socials {
        display: grid;
        grid-template-columns: repeat(auto-fit, 40px);
        justify-content: start;
    }

    .agrind-footer__form {
        grid-template-columns: repeat(8, minmax(0, 1fr));
        max-width: 100%;
    }

    .agrind-footer__input {
        grid-column: 1 / 7;
    }

    .agrind-footer__submit {
        grid-column: 7 / -1;
    }

    .agrind-footer__bottom {
        display: grid;
        grid-template-columns: repeat(8, minmax(0, 1fr));
    }

    .agrind-footer__bottom > :first-child {
        grid-column: 1 / 6;
    }

    .agrind-footer__payments {
        grid-column: 6 / -1;
        justify-self: end;
    }
}

@media (max-width: 767px) {
    .agrind-footer__inner,
    .agrind-footer__top,
    .agrind-footer__bottom {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .agrind-footer__top {
        gap: 32px;
    }

    .agrind-footer__brand,
    .agrind-footer__links,
    .agrind-footer__newsletter {
        grid-column: 1 / -1;
    }

    .agrind-footer__links ul {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 20px;
    }

    .agrind-footer__links li + li {
        margin-top: 0;
    }

    .agrind-footer__socials {
        grid-template-columns: repeat(4, minmax(40px, 1fr));
    }

    .agrind-footer__social-link {
        justify-self: start;
    }

    .agrind-footer__form {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        max-width: 100%;
    }

    .agrind-footer__input,
    .agrind-footer__submit {
        grid-column: 1 / -1;
        width: 100%;
    }

    .agrind-footer__bottom {
        align-items: start;
        margin-top: 42px;
    }

    .agrind-footer__bottom > :first-child,
    .agrind-footer__payments {
        grid-column: 1 / -1;
    }

    .agrind-footer__payments {
        justify-self: start;
        flex-wrap: wrap;
    }
}

@media (max-width: 380px) {
    .agrind-footer__links ul {
        grid-template-columns: 1fr;
    }
}
