/*
 * GushOfLove — Footer
 *
 * Loaded on: all pages.
 */

:root {
    --ef-bg: #0c0c1d;
    --ef-surface: #13132b;
    --ef-border: rgba(255,255,255,.07);
    --ef-muted: rgba(255,255,255,.45);
    --ef-text: rgba(255,255,255,.70);
    --ef-white: #ffffff;
    --ef-accent: var(--clr-primary,#e8175d);
    --ef-accent2: var(--clr-secondary,#ff6b9d);
    --ef-glow: rgba(232,23,93,.18);
    --ef-radius: 10px;
    --ef-ff: var(--font-family,system-ui,sans-serif);
}

.eros-prefooter-cta {
    background: linear-gradient(135deg,#1a0a2e 0%,#2d0a2e 40%,#1a0a1a 100%);
    border-top: 1px solid rgba(232,23,93,.25);
    border-bottom: 1px solid rgba(255,255,255,.05);
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}

.eros-prefooter-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 120%,rgba(232,23,93,.20) 0%,transparent 70%);
    pointer-events: none;
}

.eros-prefooter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.eros-prefooter-text {
    flex: 1;
    min-width: 260px;
}

.eros-prefooter-title {
    font-family: var(--ef-ff);
    font-size: clamp(1.35rem,2.5vw,1.9rem);
    font-weight: 800;
    color: var(--ef-white);
    margin: 0 0 .5rem;
    line-height: 1.25;
    letter-spacing: -.02em;
}

.eros-prefooter-sub {
    font-size: .92rem;
    color: var(--ef-muted);
    margin: 0;
    line-height: 1.6;
}

.eros-prefooter-actions {
    display: flex;
    gap: .85rem;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
}

.eros-prefooter-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .8rem 1.8rem;
    border-radius: 50px;
    font-family: var(--ef-ff);
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s,box-shadow .2s,background .2s;
    white-space: nowrap;
}

.eros-prefooter-btn--primary {
    background: linear-gradient(135deg,var(--ef-accent),var(--ef-accent2));
    color: #fff;
    box-shadow: 0 4px 20px rgba(232,23,93,.4);
}

.eros-prefooter-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(232,23,93,.55);
    color: #fff;
}

.eros-prefooter-btn--ghost {
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.75);
    border: 1px solid rgba(255,255,255,.18);
}

.eros-prefooter-btn--ghost:hover {
    background: rgba(255,255,255,.15);
    color: #fff;
    transform: translateY(-2px);
}

.eros-footer {
    background: var(--ef-bg);
    color: var(--ef-muted);
    font-family: var(--ef-ff);
    position: relative;
    overflow: hidden;
}

.eros-footer::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -80px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle,var(--ef-glow) 0%,transparent 70%);
    pointer-events: none;
}

.eros-footer-inner {
    padding-top: 5rem;
    padding-bottom: 0;
    position: relative;
    z-index: 1;
}

.eros-footer-grid {
    display: grid;
    grid-template-columns: 1.85fr 1fr 1fr 1fr;
    gap: 3rem 3.5rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--ef-border);
}

.eros-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.eros-footer-logo-link {
    display: inline-block;
}

.eros-footer-logo {
    max-height: 48px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.05);
}

.eros-footer-site-name {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--ef-white);
    text-decoration: none;
    letter-spacing: -.03em;
}

.eros-footer-heart {
    font-size: 1.1rem;
}

.eros-footer-tagline {
    font-size: .875rem;
    line-height: 1.7;
    color: var(--ef-muted);
    max-width: 290px;
    margin: 0;
}

.eros-footer-stats {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: .15rem;
}

.eros-footer-stat {
    display: flex;
    flex-direction: column;
    gap: .1rem;
}

.eros-footer-stat strong {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--ef-white);
    line-height: 1;
    background: linear-gradient(135deg,var(--ef-accent),var(--ef-accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.eros-footer-stat span {
    font-size: .68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: rgba(255,255,255,.35);
}

.eros-footer-trust {
    display: flex;
    flex-direction: column;
    gap: .55rem;
    margin-top: .1rem;
}

.eros-footer-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .02em;
    color: rgba(255,255,255,.40);
}

.eros-footer-badge svg {
    flex-shrink: 0;
    opacity: .55;
}

.eros-footer-social {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
    margin-top: .3rem;
}

.eros-footer-social-label {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.28);
    font-weight: 700;
    margin-right: .3rem;
}

.eros-footer-social a,
.eros-footer-social-ph {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.11);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.45);
    text-decoration: none;
    transition: background .2s,border-color .2s,color .2s,transform .2s;
    flex-shrink: 0;
}

.eros-footer-social a:hover {
    background: var(--ef-accent);
    border-color: var(--ef-accent);
    color: #fff;
    transform: translateY(-3px);
}

.eros-footer-social--placeholder .eros-footer-social-ph {
    cursor: default;
}

.eros-footer-col {
    display: flex;
    flex-direction: column;
}

.eros-footer-col .widget-title,
.eros-footer-heading {
    font-family: var(--ef-ff);
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--ef-white);
    margin: 0 0 1.4rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid var(--ef-accent);
    display: inline-block;
    width: 100%;
}

.eros-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.eros-footer-links li {
    line-height: 1;
}

.eros-footer-links li a,
.eros-footer-col .widget ul li a,
.eros-footer-col a {
    font-size: .875rem;
    color: var(--ef-muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem 0;
    border-bottom: 1px solid rgba(255,255,255,.04);
    transition: color .18s,gap .18s,padding-left .18s;
    line-height: 1.4;
}

.eros-footer-links li:last-child a,
.eros-footer-col .widget ul li:last-child a {
    border-bottom: none;
}

.eros-footer-links li a::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--ef-accent);
    opacity: 0;
    flex-shrink: 0;
    transition: opacity .18s,transform .18s;
    transform: scale(0);
}

.eros-footer-links li a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.eros-footer-links li a:hover,
.eros-footer-col .widget ul li a:hover,
.eros-footer-col a:hover {
    color: var(--ef-white);
    padding-left: 4px;
}

.eros-footer-link-cta {
    color: var(--ef-accent);
    font-weight: 700;
}

.eros-footer-link-cta:hover {
    color: var(--ef-accent2);
}

.eros-footer-col .widget {
    margin-bottom: 0;
}

.eros-footer-col .widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.eros-footer-col .widget ul li {
    margin-bottom: 0;
}

.eros-footer-col .widget p {
    font-size: .875rem;
    color: var(--ef-muted);
    line-height: 1.65;
    margin: 0 0 .6rem;
}

.eros-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.75rem 0 2.25rem;
    visibility: visible;
}

.eros-footer-copy {
    font-size: .78rem;
    color: rgba(255,255,255,.55);
    margin: 0;
}

.eros-footer-copy a {
    color: rgba(255,255,255,.55);
    text-decoration: none;
    transition: color .18s;
}

.eros-footer-copy a:hover {
    color: var(--ef-accent);
}

.eros-footer-nav {
    display: flex;
    align-items: center;
    visibility: visible;
}

.eros-footer-menu {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    visibility: visible;
}

.eros-footer-menu a {
    font-size: .78rem;
    color: rgba(255,255,255,.65);
    text-decoration: none;
    transition: color .18s;
}

.eros-footer-menu a:hover {
    color: var(--ef-white);
}

.eros-footer-menu li+li::before {
    content: '·';
    margin-right: 1.5rem;
    color: rgba(255,255,255,.30);
    pointer-events: none;
}

.eros-footer-made {
    font-size: .75rem;
    color: rgba(255,255,255,.50);
    margin: 0;
    white-space: nowrap;
}

.elementor-location-footer {
    background: var(--ef-bg);
}

.eros-footer-wave {
    display: none;
}

@media (max-width:1200px) {
    .eros-footer-grid {
        grid-template-columns: 1.6fr 1fr 1fr 1fr;
        gap: 2.5rem 2rem;
    }
}

@media (max-width:960px) {
    .eros-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .eros-footer-brand {
        grid-column: 1 / -1;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 2rem;
    }

    .eros-footer-brand>.eros-footer-logo-link,
    .eros-footer-brand>.eros-footer-site-name {
        flex-shrink: 0;
    }

    .eros-footer-tagline {
        max-width: 100%;
        flex: 1;
        min-width: 200px;
    }

    .eros-footer-stats {
        gap: 1.5rem;
    }

    .eros-footer-trust {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .eros-prefooter-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

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

@media (max-width:768px) {
    .eros-footer-inner {
        padding-top: 3rem;
    }

    .eros-footer-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .eros-footer-brand {
        grid-column: auto;
        flex-direction: column;
        gap: 1rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid var(--ef-border);
        margin-bottom: 1rem;
    }

    .eros-footer-trust {
        flex-direction: column;
        gap: .5rem;
    }

    .eros-footer-col {
        padding: 1.25rem 0;
        border-bottom: 1px solid var(--ef-border);
    }

    .eros-footer-col:last-child {
        border-bottom: none;
        padding-bottom: .5rem;
    }

    .eros-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: .75rem;
        padding: 1.5rem 0 2rem;
    }

    .eros-footer-menu {
        gap: .75rem;
    }

    .eros-footer-menu li+li::before {
        margin-right: .75rem;
        color: rgba(255,255,255,.30);
    }

    .eros-footer-made {
        white-space: normal;
    }

    .eros-prefooter-cta {
        padding: 2.5rem 0;
    }

    .eros-prefooter-actions {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width:480px) {
    .eros-footer-inner {
        padding-top: 2rem;
    }

    .eros-footer-logo {
        max-height: 40px;
    }

    .eros-footer-stats {
        gap: 1rem;
    }

    .eros-footer-stat strong {
        font-size: .9rem;
    }

    .eros-footer-social a,
    .eros-footer-social-ph {
        width: 32px;
        height: 32px;
    }

    .eros-footer-copy,
    .eros-footer-made {
        font-size: .72rem;
    }

    .eros-footer-menu a {
        font-size: .72rem;
    }

    .eros-prefooter-title {
        font-size: 1.2rem;
    }

    .eros-prefooter-btn {
        padding: .7rem 1.4rem;
        font-size: .85rem;
    }
}

.eros-footer-social a:focus-visible,
.eros-footer-links li a:focus-visible,
.eros-footer-col a:focus-visible,
.eros-footer-menu a:focus-visible,
.eros-footer-copy a:focus-visible,
.eros-prefooter-btn:focus-visible {
    outline: 2px solid var(--ef-accent);
    outline-offset: 3px;
    border-radius: 4px;
}

.page-template-page-templates-page-auth .eros-prefooter-cta,
body.register-page .eros-prefooter-cta,
body.sign-in-page .eros-prefooter-cta {
    display: none;
}

.eros-footer-menu > li {
    display: list-item;
    opacity: 1;
    visibility: visible;
    list-style: none;
}

.eros-footer-menu > li > a,
.eros-footer-menu > li a {
    display: inline;
    opacity: 1;
    visibility: visible;
    color: rgba(255,255,255,.7);
    font-size: .78rem;
    font-weight: 600;
    text-decoration: none;
    pointer-events: all;
}

.eros-footer-menu > li > a:hover,
.eros-footer-menu > li a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.eros-footer-menu > li + li::before {
    content: '·';
    display: inline;
    margin-right: 1.5rem;
    color: rgba(255,255,255,.35);
    pointer-events: none;
}

@media (max-width: 768px) {
    .eros-footer-menu {
        gap: .75rem;
    }

    .eros-footer-menu > li + li::before {
        margin-right: .75rem;
    }
}
