html {
    scroll-behavior: smooth;
}

#urunlerimiz {
    scroll-margin-top: 0;
}

@media (max-width: 991.98px) {
    #urunlerimiz {
        scroll-margin-top: 0;
    }
}

.siteHeader {
    position: relative;
    z-index: 1000;
}

.siteHeader .navbar {
    background: transparent;
    padding: 20px 0;
}

.siteHeader .navbar-brand {
    text-decoration: none;
}

.logoMain {
    width: 150px;
    height: auto;
}

.logoSub {
    width: 85px;
    height: auto;
}

.logoDivider {
    display: block;
    width: 1px;
    height: 54px;
    background: linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0) 0%,
            rgb(51, 51, 51) 50%,
            rgba(255, 255, 255, 0) 100%
    );
    flex-shrink: 0;
    margin: 0 20px;
}

.siteHeader .nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    padding: 15px;
    border-radius: 999px;
    text-decoration: none;
    transition: color 0.28s ease, transform 0.28s ease;
    overflow: hidden;
    isolation: isolate;
}

.siteHeader .nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transform: scale(0.94);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: -1;
}

.siteHeader .nav-link:hover,
.siteHeader .nav-link:focus,
.siteHeader .nav-link.active {
    color: #111111;
}

.siteHeader .nav-link:hover::before,
.siteHeader .nav-link:focus::before,
.siteHeader .nav-link.active::before {
    opacity: 1;
    transform: scale(1);
}

.navLinkText {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    line-height: 1;
    text-align: center;
    transition: letter-spacing 0.28s ease, color 0.28s ease;
}

.navLinkText::before,
.navLinkText::after {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 10px;
    line-height: 1;
    opacity: 0;
    color: #ce0000;
    transition: opacity 0.28s ease, transform 0.28s ease;
    font-weight: 600;
}

.navLinkText::before {
    content: '{';
    transform: translateX(4px);
    font-size: 18px;
    font-weight: 600;
    margin-top: -1px;
}

.navLinkText::after {
    content: '}';
    transform: translateX(-4px);
    font-size: 18px;
    font-weight: 600;
    margin-top: -1px;
}

.siteHeader .nav-link:hover .navLinkText,
.siteHeader .nav-link:focus .navLinkText,
.siteHeader .nav-link.active .navLinkText {
    letter-spacing: 0.3px;
}

.siteHeader .nav-link:hover .navLinkText::before,
.siteHeader .nav-link:hover .navLinkText::after,
.siteHeader .nav-link:focus .navLinkText::before,
.siteHeader .nav-link:focus .navLinkText::after,
.siteHeader .nav-link.active .navLinkText::before,
.siteHeader .nav-link.active .navLinkText::after {
    opacity: 1;
    transform: translateX(0);
}

.headerToggler {
    position: relative;
    z-index: 1002;
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.headerToggler:hover {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.14);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.headerToggler:focus {
    box-shadow: none;
    outline: none;
}

.headerToggler:active {
    transform: scale(0.98);
}

.headerTogglerIcon {
    width: 18px;
    height: 14px;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.headerTogglerIcon span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #111111;
    transition: transform 0.28s ease, opacity 0.2s ease, width 0.28s ease;
    transform-origin: center;
}

.headerTogglerIcon span:nth-child(2) {
    width: 18px;
}

.headerToggler[aria-expanded="true"] .headerTogglerIcon span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.headerToggler[aria-expanded="true"] .headerTogglerIcon span:nth-child(2) {
    opacity: 0;
}

.headerToggler[aria-expanded="true"] .headerTogglerIcon span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

@keyframes mobileMenuFade {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991.98px) {
    .siteHeader .navbar-collapse {
        margin-top: 16px;
        padding: 16px 18px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.94);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
        position: relative;
        z-index: 1001;
        overflow: hidden;
        transform-origin: top;
        will-change: height, opacity, transform;
    }

    .siteHeader .navbar-collapse.collapsing {
        overflow: hidden;
        transition: height 0.42s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
        opacity: 0.96;
    }

    .siteHeader .navbar-collapse.show {
        animation: mobileMenuFade 0.34s cubic-bezier(0.22, 1, 0.36, 1);
        opacity: 1;
    }

    .siteHeader .navbar-collapse:not(.show) {
        opacity: 0;
    }

    .siteHeader .nav-link {
        width: 100%;
        justify-content: flex-start;
        padding: 12px 14px;
    }

    .siteHeader .nav-link:hover {
        transform: translateX(2px);
    }

    .siteHeader .navbar-nav {
        align-items: flex-start !important;
        gap: 6px;
    }

    .logoMain {
        width: 150px;
    }

    .logoSub {
        width: 82px;
    }

    .logoDivider {
        height: 44px;
    }
}

@media (max-width: 575.98px) {
    .siteHeader .navbar-brand {
        gap: 10px !important;
    }

    .logoMain {
        width: 120px;
    }

    .logoSub {
        width: 68px;
    }

    .logoDivider {
        height: 36px;
    }

    .headerToggler {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        border-radius: 11px;
    }
}

.footer {
    padding: 30px 0 60px 0;
}

.footerLogo {
    width: 140px;
}

.footerTitle {
    font-family: 'Gabarito', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #e53935;
}

.footerText {
    font-weight: 400;
    font-size: 13px;
    color: #a2a2a2;
}

.footerBrand {
    color: #444;
}

.footerCopy {
    font-size: 13px;
    font-weight: 400;
    color: #a2a2a2;
}

.footerList {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footerList li {
}

.footerList a {
    text-decoration: none;
    color: #a2a2a2;
    font-size: 13px;
    font-weight: 400;
    transition: 0.3s;
}

.footerList a:hover {
    color: #e53935;
}

.footerBtn {
    display: inline-block;
    background: #0a66c2;
    color: #fff;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 13px;
    text-decoration: none;
    transition: 0.3s;
}

.footerBtn:hover {
    background: #084c96;
    color: #fff;
}

.scrollTopBtn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #111;
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scrollTopBtn:hover {
    background: #000;
    transform: translateY(-3px);
}
