/**
 * Footer — Tasarım Ayarları → Footer
 * .design-footer-themed (.modern-footer-wrapper)
 */

.design-footer-themed.modern-footer-wrapper {
    max-width: var(--footer-wrapper-max-width, 1310px) !important;
    margin-left: var(--footer-wrapper-margin-x, auto) !important;
    margin-right: var(--footer-wrapper-margin-x, auto) !important;
    margin-top: 40px;
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
}

.design-footer-themed .modern-footer {
    position: relative;
    overflow: hidden;
    background: var(--footer-bg-color, linear-gradient(120deg, #fff 0%, #fff7fb 30%, #fdeff6 55%, #fff8fb 78%, #fff 100%)) !important;
    border: var(--footer-border-width, 1px) solid var(--footer-border-color, #f3c8dc) !important;
    border-radius: var(--footer-border-radius, 20px) !important;
    padding: 70px 2% 16px;
}

.design-footer-themed .modern-footer-main {
    display: grid;
    grid-template-columns: 1.35fr repeat(var(--menu-cols, 2), 1.05fr) 1.2fr;
    gap: 58px;
    align-items: start;
}

.design-footer-themed .modern-footer-logo {
    width: 220px;
    max-width: 100%;
    margin: 0 auto 20px;
    display: block;
}

.design-footer-themed .modern-footer-text {
    max-width: 385px;
    color: #5f6275;
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 26px;
    font-weight: 500;
}

.design-footer-themed .modern-wa-card {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 20px;
    border: 1px solid rgba(233, 30, 122, 0.28);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 241, 248, 0.78));
    box-shadow: 0 15px 35px rgba(233, 30, 122, 0.11);
    overflow: hidden;
}

.design-footer-themed .modern-wa-icon {
    width: 92px;
    height: 92px;
    min-width: 92px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #ff4da0, #e91e7a);
    color: #fff;
    font-size: 54px;
}

.design-footer-themed .modern-wa-small {
    font-size: 18px;
    font-weight: 800;
    color: #0f1f35;
}

.design-footer-themed .modern-wa-title {
    margin-top: -3px;
    color: #e91e7a;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.05;
}

.design-footer-themed .modern-wa-desc {
    margin: 9px 0 13px;
    font-size: 11px;
    line-height: 1.45;
    color: #5f6275;
}

.design-footer-themed .modern-wa-button {
    min-width: 230px;
    max-width: 100%;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    border-radius: 999px;
    padding: 0 6px 0 24px;
    background: linear-gradient(135deg, #ff5fa8, #e91e7a);
    color: #fff !important;
    font-size: 16px;
    font-weight: 800;
}

.design-footer-themed .modern-wa-button span:last-child {
    width: 31px;
    height: 31px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #e91e7a;
}

/* Menü başlıkları */
.design-footer-themed .modern-footer-title {
    display: flex;
    align-items: center;
    gap: var(--footer-heading-icon-gap, 11px);
    font-size: var(--footer-heading-font-size, 21px) !important;
    font-weight: var(--footer-heading-font-weight, 800) !important;
    margin-bottom: 14px;
    color: var(--footer-heading-color, #0f1f35) !important;
    transition: color 0.25s ease;
}

.design-footer-themed .modern-footer-title:hover {
    color: var(--footer-heading-hover-color, #e91e7a) !important;
}

.design-footer-themed .modern-footer-title i {
    color: var(--footer-heading-icon-color, #e91e7a) !important;
    font-size: var(--footer-heading-icon-size, 24px) !important;
}

.design-footer-themed .modern-footer-title-menu-icon {
    width: var(--footer-heading-icon-size, 24px);
    height: var(--footer-heading-icon-size, 24px);
    object-fit: contain;
    display: block;
}

.design-footer-themed .modern-title-line {
    width: 52px;
    height: 3px;
    border-radius: 20px;
    background: var(--footer-heading-line-color, #e91e7a) !important;
    margin-bottom: 23px;
    margin-left: 39px;
}

/* Menü linkleri */
.design-footer-themed .modern-footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.design-footer-themed .modern-footer-list li {
    border-bottom: 1px dashed var(--footer-link-border-color, #f5d4e8);
    transition: border-color 0.25s ease;
}

.design-footer-themed .modern-footer-list li:hover {
    border-bottom-color: var(--footer-link-border-hover-color, #e91e7a);
}

.design-footer-themed .modern-footer-list a {
    min-height: 47px;
    display: flex;
    align-items: center;
    gap: var(--footer-link-icon-gap, 15px);
    text-decoration: none;
    color: var(--footer-link-color, #252d42) !important;
    font-size: var(--footer-link-font-size, 15px) !important;
    font-weight: var(--footer-link-font-weight, 400) !important;
    transition: color 0.25s ease, transform 0.25s ease;
}

.design-footer-themed .modern-footer-list a i {
    width: var(--footer-link-icon-size, 21px);
    color: var(--footer-link-icon-color, #e91e7a) !important;
    font-size: var(--footer-link-icon-size, 19px) !important;
}

.design-footer-themed .modern-footer-list-menu-icon {
    width: var(--footer-link-icon-size, 21px);
    height: var(--footer-link-icon-size, 21px);
    object-fit: contain;
    display: block;
}

.design-footer-themed .modern-footer-list a:hover {
    color: var(--footer-link-hover-color, #e91e7a) !important;
    transform: translateX(5px);
}

.design-footer-themed .modern-contact-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 27px;
}

.design-footer-themed .modern-contact-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e91e7a;
    font-size: 25px;
    background: rgba(233, 30, 122, 0.08);
}

.design-footer-themed .modern-contact-item strong {
    display: block;
    font-size: 17px;
    margin-bottom: 4px;
    color: #0f1f35;
}

.design-footer-themed .modern-contact-item span {
    color: #5f6275;
    font-size: 14px;
    line-height: 1.55;
}

.design-footer-themed .modern-trust {
    margin-top: 44px;
    padding: 22px 32px;
    border: 1px solid rgba(233, 30, 122, 0.2);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.66);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.design-footer-themed .modern-trust-item {
    display: flex;
    align-items: center;
    gap: 17px;
    border-right: 1px solid rgba(233, 30, 122, 0.16);
}

.design-footer-themed .modern-trust-item:last-child {
    border-right: none;
}

.design-footer-themed .modern-trust-item i {
    color: #e91e7a;
    font-size: 36px;
}

.design-footer-themed .modern-trust-item strong {
    display: block;
    font-size: 15px;
    color: #0f1f35;
}

.design-footer-themed .modern-trust-item span {
    display: block;
    font-size: 12px;
    color: #5f6275;
}

.design-footer-themed .modern-footer-bottom {
    margin-top: 28px;
    padding: 23px 0 31px;
    border-top: 1px solid rgba(233, 30, 122, 0.14);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 30px;
}

.design-footer-themed .modern-payment-title,
.design-footer-themed .modern-social-title {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 13px;
    color: #0f1f35;
}

.design-footer-themed .modern-social-title {
    text-align: right;
}

.design-footer-themed .modern-payment-logos {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.design-footer-themed .modern-pay-box {
    min-width: 80px;
    height: 45px;
    border: 1px solid rgba(233, 30, 122, 0.22);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.7);
}

.design-footer-themed .modern-copyright {
    text-align: center;
    color: #5f6275;
    font-size: 13px;
    line-height: 1.7;
}

.design-footer-themed .modern-copyright img {
    width: 42px;
    display: block;
    margin: 0 auto 7px;
}

.design-footer-themed .modern-socials {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
}

.design-footer-themed .modern-socials a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    text-decoration: none;
    font-size: 20px;
}

.design-footer-themed .s-facebook {
    background: #2d65bd;
}

.design-footer-themed .s-instagram {
    background: linear-gradient(135deg, #ffb000, #d91b72, #633bd7);
}

.design-footer-themed .s-pinterest {
    background: #d91f2c;
}

.design-footer-themed .s-youtube {
    background: #ef1e22;
}

@media (max-width: 1200px) {
    .design-footer-themed .modern-footer-main {
        grid-template-columns: 1fr;
    }

    .design-footer-themed .modern-trust {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .design-footer-themed .modern-footer-main,
    .design-footer-themed .modern-trust,
    .design-footer-themed .modern-footer-bottom {
        grid-template-columns: 1fr;
    }

    .design-footer-themed .modern-socials,
    .design-footer-themed .modern-payment-logos {
        justify-content: center;
    }

    .design-footer-themed .modern-footer {
        padding: 48px 22px 48px;
        border-radius: 26px;
    }

    .design-footer-themed .modern-wa-card {
        gap: 12px;
        padding: 16px 14px;
    }

    .design-footer-themed .modern-wa-icon {
        width: 64px;
        height: 64px;
        min-width: 64px;
        font-size: 34px;
    }

    .design-footer-themed .modern-wa-title {
        font-size: 24px;
    }

    .design-footer-themed .modern-wa-small {
        font-size: 14px;
    }

    .design-footer-themed .modern-wa-button {
        width: 100%;
        min-width: 0;
        font-size: 14px;
        padding-left: 14px;
    }

    .design-footer-themed .modern-wa-button > span:first-child {
        overflow-wrap: anywhere;
    }
}
