/* ====== NAGY SOTET FOOTER ====== */

.site-footer {
    background: #333333;
    color: #ffffff;
    padding: 60px 20px 40px;
    margin-top: 60px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-title {
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 30px;
}

.footer-divider {
    height: 1px;
    background: #f5f5f5;
    max-width: 90%;
    margin: 0 auto 40px;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-links-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    column-gap: 24px;
}

.footer-links-row a:nth-child(1) {
    justify-self: start;
    text-align: left;
}

.footer-links-row a:nth-child(2) {
    justify-self: center;
    text-align: center;
}

.footer-links-row a:nth-child(3) {
    justify-self: end;
    text-align: right;
}

.footer-links a {
    display: inline-block;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    white-space: nowrap;
    cursor: pointer;
}

.footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #ffffff;
    opacity: 0;
    transform: scaleX(0.4);
    transition: opacity .25s ease, transform .25s ease;
}

.footer-links a:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.footer-bottom {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: none;
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 80px;
}

.footer-divider-spaced {
    margin-top: 18px;
}

.footer-ai-link {
    margin: 36px auto 54px;
    text-align: center;
}

.footer-ai-link a,
.footer-ai-link a:visited {
    display: inline-block;
    color: #ffffff;
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    text-decoration: none;
    padding-bottom: 4px;
    position: relative;
}

.footer-ai-link a:hover,
.footer-ai-link a:focus {
    color: #ffffff;
}

.footer-ai-link a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #ffffff;
    opacity: 0;
    transform: scaleX(0.4);
    transition: opacity .25s ease, transform .25s ease;
}

.footer-ai-link a:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.footer-newsletter {
    width: min(900px, 100%);
    margin: 0 auto;
    text-align: center;
}

.newsletter-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.newsletter-desc {
    margin: 8px 0 0;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 700;
}

.newsletter-form {
    display: grid;
    gap: 12px;
    width: 100%;
    margin: 14px auto 0;
}

.form-inner {
    width: min(620px, 100%);
    margin: 0 auto;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
    width: 100%;
    min-height: 46px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    background: #ffffff;
    color: #333333;
    font: inherit;
    font-size: 16px;
    line-height: 1.3;
    padding: 10px 18px;
    text-align: center;
    box-sizing: border-box;
}

.newsletter-form input[type="text"] {
    margin-bottom: 12px;
}

.newsletter-form input::placeholder {
    color: #9a9a9a;
}

.newsletter-consent {
    width: min(980px, 100%);
    margin: 4px auto 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.45;
    text-align: left;
}

.newsletter-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin: 2px 0 0;
}

.newsletter-consent span {
    max-width: 920px;
}

.nl-btn,
.newsletter-form button {
    min-height: 44px;
    margin: 0 auto;
    border: 1px solid #c18e90;
    border-radius: 999px;
    background: #c18e90;
    color: #ffffff;
    font: inherit;
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    padding: 12px 22px;
    text-transform: uppercase;
    cursor: pointer;
}

.nl-btn:hover,
.newsletter-form button:hover {
    background: #ffffff;
    color: #c18e90;
}

.newsletter-unsub {
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
}

.footer-shipping-note {
    margin-top: 132px;
}

.footer-shipping-note p {
    margin: 0;
    color: #ffffff;
    font-size: clamp(15px, 1.4vw, 20px);
    font-weight: 800;
    letter-spacing: .02em;
}

.footer-shipping-extra {
    margin-top: 12px !important;
    color: #d7a0a0 !important;
    font-size: clamp(15px, 1.4vw, 20px);
    line-height: 1.45;
}

.footer-contact-actions {
    display: flex;
    justify-content: center;
    gap: clamp(16px, 2.4vw, 28px);
    margin-top: 78px;
}

.footer-contact-icon {
    width: clamp(76px, 6.7vw, 98px);
    height: clamp(76px, 6.7vw, 98px);
    border: 0;
    border-radius: 0;
    background: transparent;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font: inherit;
    padding: 0;
}

.footer-contact-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.footer-madeby {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.04em;
}

.madeby-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
    text-decoration: none;
}

.text-center {
    text-align: center;
}

/* Mobilon egymás alá rendezve */

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 16px 30px;
    }

    .footer-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .footer-links {
        gap: 18px;
        margin-bottom: 50px;
    }

    .footer-links-row {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 16px;
        column-gap: 0;
        text-align: center;
    }

    .footer-links-row a:nth-child(1),
    .footer-links-row a:nth-child(2),
    .footer-links-row a:nth-child(3) {
        justify-self: center;
        text-align: center;
        white-space: normal;
    }

    .footer-links a {
        font-size: 14px;
    }

    .newsletter-desc {
        font-size: 16px;
    }

    .newsletter-consent {
        align-items: flex-start;
        font-size: 13px;
    }

    .footer-shipping-note {
        margin-top: 84px;
    }

    .footer-contact-actions {
        margin-top: 48px;
    }
}
