.newsletter-section {
    background: linear-gradient(135deg, var(--primary) 0%, #333 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(43,56,209,0.08);
}
.feature-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.fashion-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 25px 20px;
    transition: transform 0.3s ease;
}
.fashion-feature:hover { transform: translateY(-3px); }
.fashion-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 22px;
    transition: all 0.3s ease;
}
.fashion-feature:hover .fashion-icon {
    background: var(--accent);
    color: #fff;
}
.fashion-feature h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
}
.fashion-feature p {
    font-size: 13px;
    color: var(--text-muted);
}
.site-footer {
    background: var(--footer-bg);
    color: #fff;
}
.site-footer .container {
    max-width: 1280px;
}
.footer-top {
    padding: 60px 0 40px;
    border-bottom: 1px solid var(--footer-border);
}
.footer-top .grid {
    align-items: start;
}
.footer-bottom {
    padding: 20px 0;
}
.footer-biz-reg {
    color: var(--copyright-text, var(--footer-link, rgba(255, 255, 255, 0.45)));
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.02em;
    -webkit-font-smoothing: antialiased;
}
.footer-biz-value {
    color: var(--theme-primary, var(--accent));
    font-weight: 600;
}
.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--footer-heading);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    font-size: 14px;
    color: var(--footer-link);
    transition: all 0.3s;
}
.footer-col ul li a:hover {
    color: var(--footer-link-hover);
    padding-left: 3px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--footer-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--footer-link);
    transition: all 0.3s;
    margin-right: 8px;
}
.footer-social a:hover {
    background: var(--footer-link-hover);
    border-color: var(--footer-link-hover);
    color: #fff;
}
.footer-faq-section .max-w-4xl {
    max-width: 72rem !important;
}
.footer-bottom .container > div {
    row-gap: 10px;
}
.footer-bottom .footer-bottom-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    width: 100%;
}
.footer-bottom .footer-bottom-left {
    flex: 1 1 auto;
    min-width: 0;
}
.footer-bottom .footer-bottom-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: nowrap;
    gap: 14px;
    white-space: nowrap;
}
.footer-bottom .footer-bottom-right a {
    display: inline-flex;
    align-items: center;
}
@media (max-width: 768px) {
    .footer-bottom .container > div {
        text-align: center;
        justify-content: center;
    }
    .footer-bottom .footer-bottom-row {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .footer-bottom .footer-bottom-left {
        text-align: center;
        white-space: normal;
    }
    .footer-bottom .footer-bottom-right {
        justify-content: center;
        flex-wrap: wrap;
        white-space: normal;
        gap: 10px 14px;
    }
}
@media (min-width: 1024px) {
    .footer-bottom .footer-bottom-row {
        flex-wrap: nowrap;
    }
}
@media (max-width: 768px) {
    .newsletter-section { padding: 50px 0; }
    .newsletter-section h2 { font-size: 26px !important; }
    .newsletter-section p { font-size: 13px !important; }
    .fashion-feature { padding: 18px 12px; }
    .fashion-icon { width: 44px; height: 44px; min-width: 44px; font-size: 18px; }
    .fashion-feature h3 { font-size: 13px; }
    .fashion-feature p { font-size: 12px; }
    .footer-top { padding: 40px 0 30px; }
    .footer-col h4 { font-size: 14px; margin-bottom: 14px; }
    .footer-col ul li a { font-size: 13px; }
}
@media (max-width: 480px) {
    .newsletter-section { padding: 36px 0; }
    .newsletter-section h2 { font-size: 22px !important; line-height: 1.3 !important; }
    .newsletter-section form { flex-direction: column; border-radius: 12px !important; }
    .newsletter-section form input { padding: 14px 16px !important; border-radius: 12px 12px 0 0 !important; }
    .newsletter-section form button { border-radius: 0 0 12px 12px !important; padding: 14px 20px !important; width: 100%; }
    .fashion-feature { padding: 14px 10px; gap: 10px; }
    .fashion-icon { width: 38px; height: 38px; min-width: 38px; font-size: 16px; }
    .footer-top { padding: 30px 0 20px; }
    .footer-bottom { font-size: 12px; }
}
.site-footer .footer-top > .container {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}
.site-footer .footer-top .grid {
    align-items: flex-start;
    column-gap: 30px;
    row-gap: 24px;
}
.site-footer .footer-col {
    min-width: 0;
}
.site-footer .footer-col h4 {
    margin-bottom: 16px;
}
.site-footer .footer-bottom .container {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}
.site-footer .footer-bottom .container > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px 20px;
}
@media (min-width: 1024px) {
    .site-footer .footer-bottom .footer-bottom-row {
        flex-wrap: nowrap !important;
    }
    .site-footer .footer-bottom .footer-bottom-left {
        white-space: nowrap;
    }
    .site-footer .footer-bottom .footer-bottom-right {
        white-space: nowrap;
        flex-wrap: nowrap;
        gap: 14px;
    }
}
@media (max-width: 1023px) {
    .site-footer .footer-bottom .footer-bottom-row {
        flex-wrap: wrap;
        justify-content: center;
    }
    .site-footer .footer-bottom .footer-bottom-left {
        flex: 1 1 100%;
        text-align: center;
        white-space: normal;
    }
    .site-footer .footer-bottom .footer-bottom-right {
        justify-content: center;
        flex-wrap: wrap;
        white-space: normal;
        width: 100%;
    }
}
