﻿@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

/* =====================================================
   CSS Variables
   ===================================================== */
:root {
    --theme-footer-bg: ;
    --theme-footer-text: ;
    --theme-button-bg: ;
    --theme-button-text: ;
    --theme-button-hover-bg: ;
    --theme-button-hover-text: ;
    --theme-accent: ;
}

* { box-sizing: border-box; }
html { height: 100%; }
html, body { margin: 0; padding: 0; }
body {
    font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: clip;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
#main-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

#footer-placeholder {
    position: relative;
    z-index: 20;
    clear: both;
}
/* img { max-width: 100%; height: auto; } */


/* =====================================================
   FOOTER
   ===================================================== */

.site-footer {
    padding: 56px 0 24px;
    background: linear-gradient(132deg, #15182a 0%, #23233a 58%, #2d2d4d 100%);
    color: color-mix(in srgb, var(--theme-footer-text) 88%, transparent);
    position: relative;
    z-index: 20;
    clear: both;
}

.footer-top {
    padding-bottom: 34px;
    border-bottom: 1px solid color-mix(in srgb, var(--theme-footer-text) 14%, transparent);
}

.footer-brand-block {
    max-width: 360px;
}

.footer-logo {
    width: 170px;
    margin-bottom: 18px;
    filter: none;
}

.footer-brand-block p {
    margin: 0 0 18px;
    color: color-mix(in srgb, var(--theme-footer-text) 68%, transparent);
    font-size: 14px;
    line-height: 1.7;
}

.footer-utility-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 24px;
    margin-top: 18px;
    padding-top: 12px;
}

.footer-newsletter {
    flex: 0 0 360px;
    max-width: 360px;
    width: 100%;
}

.footer-payments {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    min-width: 0;
    flex-wrap: nowrap;
    gap: 14px;
    max-width: none;
    width: 100%;
    padding-inline: 28px;
    overflow: hidden;
    align-self: flex-end;
}

.footer-payments img {
    flex: 0 0 auto;
    height: 20px;
    width: auto;
    max-width: 56px;
    object-fit: contain;
    display: block;
    filter: none;
    opacity: 0.88;
}

.footer-newsletter-label {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--theme-footer-text) 62%, transparent);
}

.footer-newsletter-row {
    display: flex;
    align-items: stretch;
    gap: 10px;
}

.footer-newsletter-row input {
    flex: 1;
    min-width: 0;
    height: 30px;
    padding: 0 14px;
    border: 1px solid color-mix(in srgb, var(--theme-footer-text) 20%, transparent);
    background: rgba(255, 255, 255, 0.08);
    color: var(--theme-footer-text);
    font-size: 14px;
    outline: none;
}

.footer-newsletter-row input::placeholder {
    color: color-mix(in srgb, var(--theme-footer-text) 46%, transparent);
}

.footer-newsletter-row input:focus {
    border-color: color-mix(in srgb, var(--theme-footer-text) 38%, transparent);
}

.footer-newsletter-row button {
    height: 30px;
    padding: 0 18px;
    border: 0;
    background: var(--theme-button-bg);
    color: var(--theme-button-text);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.footer-newsletter-row button:hover,
.footer-newsletter-row button:focus-visible {
    background: var(--theme-button-hover-bg);
    color: var(--theme-button-hover-text);
}

.footer-newsletter-row button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.footer-newsletter-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 12px;
    color: color-mix(in srgb, var(--theme-footer-text) 66%, transparent);
    font-size: 12px;
    line-height: 1.5;
    cursor: pointer;
}

.footer-newsletter-consent input {
    width: 16px;
    height: 16px;
    margin-top: 1px;
    flex-shrink: 0;
    accent-color: var(--theme-accent);
}

.footer-newsletter-consent span {
    display: block;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.footer-contact-list a,
.footer-contact-list span {
    font-size: 14px;
    color: color-mix(in srgb, var(--theme-footer-text) 84%, transparent);
}

.footer-contact-list a {
    position: relative;
    width: fit-content;
    transition: color 0.24s ease, transform 0.24s ease;
    text-decoration: none;
}

.footer-contact-list a::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 50%;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--theme-accent);
    transform: translateY(-50%);
    transition: width 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-column h3 {
    margin: 0 0 16px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--theme-footer-text) 58%, transparent);
    transition: color 0.24s ease;
}

.footer-column:hover h3 {
    color: color-mix(in srgb, var(--theme-accent) 86%, #fff 14%);
}

.footer-column a {
    position: relative;
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: color-mix(in srgb, var(--theme-footer-text) 84%, transparent);
    transition: color 0.24s ease, transform 0.24s ease;
    text-decoration: none;
    width: fit-content;
}

.footer-column a::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 50%;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--theme-accent);
    transform: translateY(-50%);
    transition: width 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-column a:hover,
.footer-contact-list a:hover {
    color: color-mix(in srgb, var(--theme-accent) 90%, #fff 10%);
    transform: translateX(4px);
}

.footer-column a:hover::before,
.footer-contact-list a:hover::before,
.footer-column a:focus-visible::before,
.footer-contact-list a:focus-visible::before {
    width: 8px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 0;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 0;
    border: 1px solid color-mix(in srgb, var(--theme-footer-text) 24%, transparent);
    border-radius: 50%;
    color: color-mix(in srgb, var(--theme-footer-text) 80%, transparent);
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-socials a::before {
    display: none;
}

.footer-socials a:hover {
    border-color: color-mix(in srgb, var(--theme-footer-text) 50%, transparent);
    color: var(--theme-footer-text);
    transform: translateY(-1px);
}

.footer-bottom-links a:hover,
.footer-bottom-links-mobile a:hover {
    color: var(--theme-footer-text);
    transform: none;
}

.footer-socials i {
    font-size: 16px;
    line-height: 1;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 18px;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: color-mix(in srgb, var(--theme-footer-text) 56%, transparent);
}

.footer-etbis {
    display: flex;
    justify-content: flex-end;
    flex-shrink: 0;
}

.footer-etbis-image {
    width: auto;
    height: 72px;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-bottom-links-mobile {
    display: none;
}

.footer-bottom-links a {
    font-size: 13px;
    color: color-mix(in srgb, var(--theme-footer-text) 64%, transparent);
    text-decoration: none;
}

.footer-contact-list a {
    text-decoration: none;
}

/* ── Orbitex Signoff ─────────────────────────────────────────── */

.orbitex-signoff {
    background: #ffffff;
    border-top: 1px solid rgba(17, 17, 20, 0.08);
    position: relative;
    z-index: 20;
}

.orbitex-signoff-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    color: #111114;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
}

.orbitex-signoff-logo {
    width: 86px;
    height: auto;
    flex: 0 0 auto;
}

/* =====================================================
   FOOTER RESPONSIVE
   ===================================================== */

@media (max-width: 767.98px) {
    .site-footer {
        padding: 44px 0 20px;
    }

    .footer-top {
        padding-bottom: 24px;
    }

    .footer-utility-row {
        display: grid;
        grid-template-columns: 96px repeat(4, minmax(0, 1fr));
        grid-template-rows: auto auto auto;
        gap: 8px 10px;
        min-width: 0;
        align-items: center;
    }

    .footer-etbis {
        grid-column: 1;
        grid-row: 1 / 3;
        justify-content: flex-start;
        align-self: center;
        flex: unset;
        min-width: unset;
    }

    .footer-etbis-image {
        height: 64px;
    }

    .footer-payments {
        display: contents;
    }

    .footer-payments img:nth-child(1) { grid-column: 2; grid-row: 1; justify-self: center; }
    .footer-payments img:nth-child(2) { grid-column: 3; grid-row: 1; justify-self: center; }
    .footer-payments img:nth-child(3) { grid-column: 4; grid-row: 1; justify-self: center; }
    .footer-payments img:nth-child(4) { grid-column: 5; grid-row: 1; justify-self: center; }
    .footer-payments img:nth-child(5) { grid-column: 2; grid-row: 2; justify-self: center; }
    .footer-payments img:nth-child(6) { grid-column: 3; grid-row: 2; justify-self: center; }
    .footer-payments img:nth-child(7) { grid-column: 4; grid-row: 2; justify-self: center; }
    .footer-payments img:nth-child(8) { grid-column: 5; grid-row: 2; justify-self: center; }

    .footer-payments img {
        height: 16px;
        max-width: 52px;
        width: auto;
        align-self: center;
    }

    .footer-newsletter {
        grid-column: 1 / 6;
        grid-row: 3;
        max-width: 100%;
        min-width: 0;
        overflow: visible;
        margin-top: 6px;
    }

    .footer-newsletter-row {
        width: 100%;
        min-width: 0;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px;
        align-items: center;
    }

    .footer-newsletter-row input {
        width: 100%;
        min-width: 0;
        height: 38px !important;
        padding: 0 12px !important;
        font-size: 14px;
        border-radius: 8px;
    }

    .footer-newsletter-row button {
        width: auto;
        min-width: 88px;
        height: 38px;
        padding: 0 14px;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 700;
    }

    .footer-newsletter-consent {
        min-width: 0;
    }

    .footer-newsletter-consent span {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-bottom p {
        width: 100%;
        text-align: center;
        order: 2;
    }

    .footer-bottom-links {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 16px;
        width: 100%;
        justify-content: center;
        order: 1;
    }

    .footer-bottom .footer-bottom-links {
        display: none;
    }

    .footer-bottom-links-mobile {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 16px;
        width: 100%;
        justify-content: center;
        margin-top: 20px;
    }

    .footer-bottom-links-mobile a {
        text-align: center;
        font-size: 13px;
        color: color-mix(in srgb, var(--theme-footer-text) 64%, transparent);
        text-decoration: none;
    }

    .footer-bottom-links a {
        text-align: center;
    }

    .orbitex-signoff-link {
        flex-wrap: wrap;
        gap: 8px;
        padding: 14px 16px;
    }

    .orbitex-signoff-logo {
        width: 74px;
    }
}

@media (max-width: 575.98px) {
    .orbitex-signoff-link {
        font-size: 11.5px;
    }

    .footer-payments {
        gap: 8px;
        flex-wrap: wrap;
        padding-inline: 0;
    }

    .footer-payments img {
        height: 16px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    .footer-bottom-links {
        gap: 8px 12px;
    }

    .footer-bottom-links a {
        font-size: 12px;
    }

    .footer-column a {
        font-size: 13px;
    }
}

@media (max-width: 359.98px) {
    .container.site-shell,
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media (max-width: 991.98px) {
  #arac-donusum-vitrini .row {
    display: flex;
    flex-direction: column-reverse;
  }
}