/* ============================================================
   STRAFOR PREMIUM HEADER — frontend.css
   Z-index strateji:
     #sph-header        → 99999
     .sph-drop          → 999999   (dropdown daima önde)
     .sph-mob           → 999998   (mobil menü önde)
     body overlay       → 99997
   Elementor / WooCommerce overlay ~ 9999 oldugu için
   bu değerler her zaman önde kalir.
============================================================ */

/* ── Reset & Body offset ─────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    padding-top: 172px !important;
    /* 72px header + 40px ticker + 60px search */
    margin: 0 !important;
}

/* Aggressive gap removal for Hello Elementor & Content */
#sph-header+*,
#content.site-main,
.site-content,
.page-header,
.page-content,
.entry-content,
.elementor-section-wrap>.elementor-section:first-child,
.elementor-column-gap-default>.elementor-column>.elementor-widget-wrap {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Hide potential empty page titles on home */
.home .page-header,
.home .entry-title {
    display: none !important;
}

/* ── Header Shell ────────────────────────── */
#sph-header {
    position: fixed;
    inset: 40px 0 auto 0 !important;
    z-index: 99999;
    height: 72px;
    background: var(--sph-bg, #0d1117);
    color: var(--sph-text, #fff);
    box-shadow: 0 2px 24px rgba(0, 0, 0, .45);
    transition: height .3s ease, box-shadow .3s ease, background .3s ease;
}

.sph-bg-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: var(--sph-bg-img);
    background-repeat: repeat;
    background-position: top left;
    opacity: var(--sph-bg-opacity, 1);
    pointer-events: none;
}

#sph-header.sph-scrolled {
    height: 60px;
    background: color-mix(in srgb, var(--sph-bg, #0d1117) 96%, transparent);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 2px 32px rgba(0, 0, 0, .6);
}

/* ── Inner container ─────────────────────── */
.sph-inner {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    gap: 0;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
}

/* ── Logo ────────────────────────────────── */
.sph-logo {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    z-index: 10;
}

.sph-logo img,
.sph-logo video {
    width: var(--sph-logo-w, 160px);
    height: var(--sph-logo-h, 60px);
    object-fit: contain;
    object-position: left center !important;
    display: block;
    transition: transform .3s ease, opacity .3s ease;
}

.sph-logo:hover img,
.sph-logo:hover video {
    transform: scale(1.04);
    opacity: .88;
}

.sph-logo-text {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--sph-text, #fff);
    letter-spacing: -.02em;
    white-space: nowrap;
}

/* ── Right area ──────────────────────────── */
.sph-right {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    justify-content: flex-end;
}

/* ── Desktop Nav ─────────────────────────── */
.sph-nav {
    display: flex;
    align-items: center;
}

.sph-ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    flex-wrap: nowrap;
}

.sph-li {
    position: relative;
}

.sph-a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 8px;
    border-radius: 8px;
    color: var(--sph-text, #fff);
    text-decoration: none;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .01em;
    white-space: nowrap;
    transition: background .2s, color .2s;
    position: relative;
}

.sph-a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 2px;
    border-radius: 2px;
    background: var(--sph-accent, #e74c3c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}

.sph-li:hover>.sph-a,
.sph-li.sph-drop-open>.sph-a {
    background: rgba(255, 255, 255, .08);
    color: var(--sph-accent, #e74c3c);
}

.sph-li:hover>.sph-a::after,
.sph-li.sph-drop-open>.sph-a::after {
    transform: scaleX(1);
}

/* Caret */
.sph-caret {
    width: 12px;
    height: 12px;
    transition: transform .25s ease;
    flex-shrink: 0;
}

.sph-li.sph-drop-open>.sph-a .sph-caret {
    transform: rotate(180deg);
}

/* ── Inline icon ─────────────────────────── */
.sph-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    border-radius: 2px;
    flex-shrink: 0;
}

/* ── Dropdown ────────────────────────────── */
.sph-drop {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    z-index: 999999;
    /* << Daima en önde */
    min-width: 200px;
    list-style: none;
    margin: 0;
    padding: 6px;
    background: #1a1f2e;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255, 255, 255, .04);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
}

.sph-li.sph-drop-open>.sph-drop {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.sph-drop-a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 8px;
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    font-size: .83rem;
    font-weight: 500;
    white-space: nowrap;
    transition: background .18s, color .18s;
}

.sph-drop-a:hover {
    background: rgba(255, 255, 255, .08);
    color: var(--sph-accent, #e74c3c);
}

/* Divider between items */
.sph-drop li+li {
    border-top: 1px solid rgba(255, 255, 255, .05);
}

/* ── Mega Menu ───────────────────────────── */
.sph-drop.sph-mega-menu {
    min-width: 500px;
    column-count: 2;
    column-gap: 20px;
    padding: 15px;
}

.sph-drop.sph-mega-menu li {
    break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 4px;
}

.sph-drop.sph-mega-menu li+li {
    border-top: none;
}

/* ── Social Icons ────────────────────────── */
.sph-social {
    display: flex;
    align-items: center;
    gap: 2px;
    padding-left: 8px;
    border-left: 1px solid rgba(255, 255, 255, .12);
    flex-shrink: 0;
}

.sph-soc {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    transition: background .2s, color .2s, transform .2s;
    flex-shrink: 0;
}

.sph-soc:hover {
    background: var(--soc-color, var(--sph-accent, #e74c3c));
    color: #fff;
    transform: translateY(-2px);
}

.sph-soc svg {
    display: block;
}

/* ── Hamburger Button ────────────────────── */
.sph-ham {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, .07);
    cursor: pointer;
    transition: background .2s;
    flex-shrink: 0;
}

.sph-ham:hover {
    background: rgba(255, 255, 255, .14);
}

.sph-ham span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: var(--sph-text, #fff);
    transition: transform .3s ease, opacity .3s ease, width .3s ease;
    transform-origin: center;
}

/* X state */
.sph-ham.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.sph-ham.open span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.sph-ham.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Menu Overlay ─────────────────── */
.sph-mob {
    position: fixed;
    inset: 112px 0 0 0;
    /* Adjust for ticker + header */
    z-index: 999998;
    /* << Önde, altında backdrop */
    background: var(--sph-bg, #0d1117);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.77, 0, .18, 1);
    -webkit-overflow-scrolling: touch;
}

.sph-mob.open {
    transform: translateX(0);
}

/* Body overlay when mobile menu is open */
body.sph-open::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 99997;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(4px);
}

.sph-mob-inner {
    padding: 20px 24px 40px;
}

/* Mobile list */
.sph-mob-ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sph-mob-li {
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.sph-mob-row {
    display: flex;
    align-items: center;
}

.sph-mob-a {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    padding: 15px 4px;
    color: var(--sph-text, #fff);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: color .2s;
}

.sph-mob-a:hover {
    color: var(--sph-accent, #e74c3c);
}

.sph-mob-tog {
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, .07);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sph-text, #fff);
    transition: background .2s;
    flex-shrink: 0;
}

.sph-mob-tog svg {
    width: 16px;
    height: 16px;
    transition: transform .3s;
}

.sph-mob-has-sub.sub-open .sph-mob-tog svg {
    transform: rotate(180deg);
}

.sph-mob-sub {
    list-style: none;
    margin: 0;
    padding: 0 0 8px 28px;
    display: none;
}

.sph-mob-has-sub.sub-open>.sph-mob-sub {
    display: block;
}

.sph-mob-sub-a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 4px;
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    transition: color .2s;
}

.sph-mob-sub-a:hover {
    color: var(--sph-accent, #e74c3c);
}

/* Mobile social */
.sph-mob-social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.sph-mob-social .sph-soc {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .07);
}

/* ── Cart Icon & User Button ─────────────── */
.sph-cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    color: var(--sph-text, #fff);
    text-decoration: none;
    transition: background .2s, transform .2s;
    margin-left: 5px;
}

.sph-cart-btn:hover {
    background: rgba(255, 255, 255, .08);
    transform: translateY(-2px);
}

.sph-cart-icon {
    width: 22px;
    height: 22px;
}

.sph-cart-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: #ff2a2a;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--sph-bg, #0d1117);
}

.sph-user-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    height: 44px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .15);
    background: transparent;
    color: var(--sph-text, #fff);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s;
    margin-left: 5px;
}

.sph-user-btn svg {
    width: 18px;
    height: 18px;
}

.sph-user-btn:hover {
    background: var(--sph-accent, #e74c3c);
    border-color: var(--sph-accent, #e74c3c);
    color: #fff;
    transform: translateY(-2px);
}

.sph-logged-in {
    background: rgba(255, 255, 255, .08);
    border-color: transparent;
}

/* ── User Modal (Login/Register) ─────────── */
.sph-modal {
    position: fixed;
    inset: 0;
    z-index: 9999999;
    display: none;
    /* JS will change to flex */
    align-items: center;
    justify-content: center;
}

.sph-modal-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .7);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity .3s ease;
}

.sph-modal-box {
    position: relative;
    width: 900px;
    max-width: 95vw;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
    display: flex;
    flex-direction: column;
    transform: scale(0.95) translateY(20px);
    opacity: 0;
    transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
}

.sph-modal.open-modal .sph-modal-bg {
    opacity: 1;
}

.sph-modal.open-modal .sph-modal-box {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.sph-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f1f1;
    border: none;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #333;
    z-index: 10;
    transition: .2s;
}

.sph-modal-close:hover {
    background: #e74c3c;
    color: #fff;
}

.sph-modal-split {
    display: flex;
    width: 100%;
}

.sph-modal-half {
    flex: 1;
    padding: 50px 40px;
}

.sph-register-side {
    background: #f8f9fa;
    border-right: 1px solid #eaeaea;
}

.sph-login-side {
    background: #fff;
}

.sph-modal-half h3 {
    margin: 0 0 10px 0;
    font-size: 28px;
    color: #111;
}

.sph-modal-half p {
    color: #666;
    margin-bottom: 25px;
    font-size: 15px;
}

.sph-modal-half input {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 15px;
    outline: none;
    transition: .2s;
}

.sph-modal-half input:focus {
    border-color: #333;
}

.sph-submit-btn {
    width: 100%;
    height: 48px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: .2s;
}

.sph-submit-btn:hover {
    background: #e74c3c;
}

.sph-btn-primary {
    background: #e74c3c;
}

.sph-btn-primary:hover {
    background: #c0392b;
}

.sph-form-msg {
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
    font-weight: 600;
}

/* ── Gizle: Hello Elementor default header ─ */
header.site-header,
.site-header {
    display: none !important;
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 900px) {
    .sph-nav {
        display: none;
    }

    .sph-social {
        display: none;
    }

    .sph-ham {
        display: flex;
    }

    body {
        padding-top: 156px !important;
        /* 64px header + 40px ticker + 52px search */
    }

    #sph-header {
        height: 64px;
        top: 40px;
    }

    .sph-mob {
        top: 156px;
    }

    /* Müşteri Paneli ve Giriş Yap yazısını Mobilde Sakla (Sadece İkon Kalsın) */
    .sph-user-text {
        display: none;
    }

    .sph-user-btn {
        width: 40px;
        height: 40px;
        padding: 0;
        justify-content: center;
    }

    .sph-cart-btn,
    .sph-user-btn {
        margin-left: 2px;
    }

    .sph-ham {
        width: 40px;
        height: 40px;
    }

    /* Logoyu sola daya ve mobilde taşmaması için max limitle */
    .sph-logo img,
    .sph-logo video {
        max-width: 140px !important;
    }
}

/* ── ULTRA PREMİUM ÜRÜN ARAMA ÇUBUĞU ─────────── */
#sph-search-bar-wrap {
    position: fixed;
    top: 112px;
    left: 0;
    width: 100%;
    height: 60px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 99998;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    transition: top 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#sph-header.sph-scrolled+#sph-search-bar-wrap {
    top: 100px;
}

.sph-search-inner {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

.sph-search-form {
    display: flex;
    align-items: center;
    width: 100%;
    height: 46px;
    background: #ffffff;
    border-radius: 50px;
    border: 1px solid #eef0f5;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.03),
        inset 0 2px 4px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.sph-search-form:focus-within {
    border-color: rgba(231, 76, 60, 0.5);
    /* Primary Accent Fallback */
    border-color: color-mix(in srgb, var(--sph-accent, #e74c3c) 50%, transparent);
    background: #fff;
    box-shadow:
        0 8px 30px rgba(231, 76, 60, 0.15),
        0 0 0 4px rgba(231, 76, 60, 0.05);
    transform: translateY(-2px);
}

.sph-search-icon-left {
    padding-left: 20px;
    color: #94a3b8;
    display: flex;
    align-items: center;
}

.sph-search-icon-left svg {
    width: 20px;
    height: 20px;
}

.sph-search-input {
    flex: 1;
    height: 100%;
    padding: 0 16px;
    border: none !important;
    background: transparent !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #1a1f2e !important;
    outline: none !important;
    box-shadow: none !important;
}

.sph-search-input::placeholder {
    color: #a0aec0;
    font-weight: 400;
}

.sph-search-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: calc(100% - 8px);
    margin: 4px 4px 4px 0;
    padding: 0 28px;
    background: linear-gradient(135deg, var(--sph-accent, #e74c3c) 0%, #c0392b 100%) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 40px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.35) !important;
}

.sph-search-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.45) !important;
    background: linear-gradient(135deg, #ff5748 0%, #d64132 100%) !important;
}

.sph-search-submit svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.5px;
}

@media (max-width: 900px) {
    #sph-search-bar-wrap {
        top: 104px;
        height: 52px;
    }

    #sph-header.sph-scrolled+#sph-search-bar-wrap {
        top: 100px;
    }

    .sph-search-submit span {
        display: none !important;
    }

    .sph-search-submit {
        padding: 0 16px;
    }

    .sph-search-form {
        height: 42px;
    }

    .sph-search-icon-left {
        padding-left: 15px;
    }
}

/* ── CANLI ARAMA (AJAX) SONUÇ KUTUSU ─────────── */
.sph-search-results {
    position: absolute;
    top: calc(100% + 15px);
    left: 15px;
    right: 15px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 50px -10px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    max-height: 450px;
    overflow-y: auto;
    /* Custom Scrollbar for dropdown */
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
}

.sph-search-results::-webkit-scrollbar {
    width: 6px;
}

.sph-search-results::-webkit-scrollbar-track {
    background: transparent;
}

.sph-search-results::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
    border-radius: 10px;
}

.sph-search-results.sph-search-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.sph-live-search-loading,
.sph-live-search-empty {
    padding: 24px;
    text-align: center;
    color: #64748b;
    font-size: 15px;
    font-weight: 500;
}

.sph-live-search-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.sph-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid #e2e8f0;
    border-top-color: var(--sph-accent, #e74c3c);
    border-radius: 50%;
    animation: sph-spin 1s linear infinite;
}

@keyframes sph-spin {
    to {
        transform: rotate(360deg);
    }
}

.sph-live-search-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 10px 0 !important;
}

.sph-live-search-item>a {
    display: flex !important;
    align-items: center;
    padding: 12px 20px !important;
    text-decoration: none !important;
    transition: background 0.2s ease;
    border-bottom: 1px solid #f1f5f9;
}

.sph-live-search-item:last-child>a {
    border-bottom: none;
}

.sph-live-search-item>a:hover {
    background: #f8fafc;
}

.sph-live-search-item img {
    width: 48px !important;
    height: 48px !important;
    object-fit: contain !important;
    /* Strafor ürünleri için ideal */
    border-radius: 8px;
    margin-right: 16px !important;
    background: #f1f5f9;
    padding: 4px;
    border: 1px solid #e2e8f0;
}

.sph-live-search-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sph-live-search-info h4 {
    margin: 0 0 4px 0 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    line-height: 1.3 !important;
}

.sph-live-search-price {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: var(--sph-accent, #e74c3c) !important;
}

.sph-live-search-arrow {
    margin-left: auto;
    color: #cbd5e1;
    transition: transform 0.2s ease, color 0.2s ease;
}

.sph-live-search-item>a:hover .sph-live-search-arrow {
    transform: translateX(4px);
    color: var(--sph-accent, #e74c3c);
}

.sph-live-search-footer {
    padding: 12px 20px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.sph-live-search-footer a {
    color: var(--sph-accent, #e74c3c);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sph-live-search-footer a:hover {
    color: color-mix(in srgb, var(--sph-accent, #e74c3c) 80%, #000);
}

@media (max-width: 480px) {
    .sph-inner {
        padding: 0 16px;
    }

    .sph-logo {
        margin-right: 0;
    }
}