
/* ==========================================================
   TECHCARS SHARED FOOTER
   ========================================================== */

.tc-shared-footer{
    position:relative;
    z-index:10;

    width:100%;

    overflow:hidden;

    border-top:1px solid rgba(255,255,255,.07);

    background:
        linear-gradient(
            180deg,
            #070B10 0%,
            #030609 100%
        );

    color:#fff;
}

.tc-shared-footer-glow{
    position:absolute;
    top:-240px;
    left:-160px;

    width:560px;
    height:560px;

    border-radius:50%;

    background:rgba(0,230,117,.08);

    filter:blur(90px);

    pointer-events:none;
}

.tc-shared-footer-inner{
    position:relative;
    z-index:1;

    width:100%;
    max-width:1440px;

    margin:0 auto;
    padding:92px 48px 76px;

    display:grid;
    grid-template-columns:minmax(300px,1.5fr) repeat(3,minmax(150px,1fr));
    gap:64px;
}

.tc-shared-footer-logo{
    display:inline-flex;
    align-items:center;

    text-decoration:none!important;
}

.tc-shared-footer-logo img{
    display:block;

    width:158px!important;
    height:auto!important;

    margin:0!important;
}

.tc-shared-footer-logo > span{
    color:#fff;

    font-size:28px;
    font-weight:300;
}

.tc-shared-footer-logo > span span{
    color:#00E675;
}

.tc-shared-footer-brand > p{
    max-width:390px;

    margin:30px 0 0;

    color:#8E999F;

    font-size:16px;
    line-height:1.75;
}

.tc-shared-footer-contact{
    width:max-content;

    margin-top:36px;

    display:inline-flex;
    align-items:center;
    gap:14px;

    color:#00E675!important;

    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.06em;
    text-decoration:none!important;
}

.tc-shared-footer-contact span{
    font-size:20px;

    transition:transform .2s ease;
}

.tc-shared-footer-contact:hover span{
    transform:translateX(5px);
}

.tc-shared-footer-column h2{
    margin:2px 0 28px;

    color:#fff;

    font-size:12px;
    line-height:1;
    font-weight:950;
    text-transform:uppercase;
    letter-spacing:.13em;
}

.tc-shared-footer-column nav{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:16px;
}

.tc-shared-footer-column nav a,
.tc-shared-footer-column nav > span,
.tc-shared-footer-details > a,
.tc-shared-footer-details > p{
    margin:0;

    color:#8E999F!important;

    font-size:14px;
    line-height:1.35;
    text-decoration:none!important;

    transition:
        color .2s ease,
        transform .2s ease;
}

.tc-shared-footer-column nav a:hover,
.tc-shared-footer-details > a:hover{
    color:#00E675!important;

    transform:translateX(4px);
}

.tc-shared-footer-column nav > span{
    display:flex;
    align-items:center;
    gap:8px;
}

.tc-shared-footer-column nav em{
    color:#00E675;

    font-size:8px;
    font-style:normal;
    font-weight:950;
    text-transform:uppercase;
    letter-spacing:.08em;

    opacity:.70;
}

.tc-shared-footer-details{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.tc-shared-footer-details > p{
    margin-top:14px;
}

.tc-shared-footer-socials{
    display:flex;
    align-items:center;
    gap:12px;

    margin-top:30px;
}

.tc-shared-footer-socials a{
    width:38px;
    height:38px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid rgba(255,255,255,.11);
    border-radius:50%;

    background:rgba(255,255,255,.025);

    text-decoration:none!important;

    transition:
        transform .2s ease,
        border-color .2s ease,
        background .2s ease;
}

.tc-shared-footer-socials a:hover{
    transform:translateY(-4px);

    border-color:rgba(0,230,117,.55);

    background:rgba(0,230,117,.07);
}

.tc-shared-footer-socials img{
    width:17px!important;
    height:17px!important;
    max-width:17px!important;
    max-height:17px!important;

    margin:0!important;

    object-fit:contain;
}

.tc-shared-footer-bottom{
    position:relative;
    z-index:1;

    width:calc(100% - 96px);
    max-width:1344px;

    margin:0 auto;
    padding:26px 0 34px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;

    border-top:1px solid rgba(255,255,255,.075);
}

.tc-shared-footer-bottom p{
    margin:0;

    color:#677178;

    font-size:12px;
    line-height:1.5;
}

.tc-shared-footer-bottom > div{
    display:flex;
    align-items:center;
    gap:26px;
}

.tc-shared-footer-bottom a{
    color:#78838A!important;

    font-size:11px;
    text-decoration:none!important;

    transition:color .2s ease;
}

.tc-shared-footer-bottom a:hover{
    color:#00E675!important;
}

/*
 * A Kadence saját lábléce ne jelenjen meg
 * a TechCars által kezelt oldalakon.
 */
body:has(.tc-shared-footer) .site-footer,
body:has(.tc-shared-footer) #colophon{
    display:none!important;
}

@media(max-width:1050px){
    .tc-shared-footer-inner{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:58px 42px;
    }
}

@media(max-width:760px){
    .tc-shared-footer-inner{
        padding:72px 22px 56px;

        grid-template-columns:1fr;
        gap:48px;
    }

    .tc-shared-footer-logo img{
        width:146px!important;
    }

    .tc-shared-footer-brand > p{
        max-width:100%;
    }

    .tc-shared-footer-column h2{
        margin-bottom:22px;
    }

    .tc-shared-footer-bottom{
        width:calc(100% - 44px);

        padding:26px 0 30px;

        flex-direction:column;
        align-items:flex-start;
    }

    .tc-shared-footer-bottom > div{
        flex-direction:column;
        align-items:flex-start;
        gap:12px;
    }
}


/* ==========================================================
   TECHCARS SHARED FOOTER – COOKIE BEÁLLÍTÁSOK
   ========================================================== */

.tc-footer-cookie-settings{
    appearance:none;

    margin:0;
    padding:0;

    border:0;
    background:transparent;

    color:#8D989F;

    font:inherit;
    font-size:12px;
    font-weight:600;

    cursor:pointer;

    transition:color .2s ease;
}

.tc-footer-cookie-settings:hover,
.tc-footer-cookie-settings:focus-visible{
    color:#00E675;
}

/*
 * Az eredeti lebegő cookie-ikonok globális elrejtése.
 * A funkció a lábléc Cookie-beállítások gombján keresztül
 * továbbra is elérhető.
 */
.cky-btn-revisit-wrapper,
.cmplz-manage-consent,
#moove_gdpr_save_popup_settings_button,
.cookie-law-info-again,
.cc-revoke,
[data-cky-tag="revisit-consent"]{
    visibility:hidden!important;
    opacity:0!important;
    pointer-events:none!important;
}
