:root {
    --navy: #191F4C;
    --gold: #d8bd7c;
    --ice: #c9dceb;
    --cream: #fffdf4;
    --soft: #f4f7fb;
    --text: #191F4C;
    --sidebar: 280px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    color: var(--text);
    background: var(--navy)
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

button {
    font: inherit
}
.d-none{
    display: none;
}
.container {
    width: min(1420px, calc(100% - 120px));
    margin: auto
}

.page-content {
    margin-left: var(--sidebar);
    overflow: hidden
}

.sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: var(--sidebar);
    background: var(--navy);
    z-index: 1000;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 72px 42px 48px
}

.sidebar-logo {
    width: 190px;
    display: flex;
    justify-content: center;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 38px;
    margin-top: 110px;
    text-align: center;
    font-size: 18px;
    font-weight: 500
}

.sidebar-nav a {
    transition: .25s
}

.sidebar-nav a:hover {
    color: var(--gold)
}

.sidebar-bottom {
    margin-top: auto;
    width: 100%
}

.languages {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-bottom: 28px;
    font-size: 17px;
    font-weight: 500
}

.languages .active {
    color: var(--gold)
}

.gold-button {
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--navy);
    font-weight: 600;
    background: linear-gradient(#fff9df, #d0ae64);
    border-radius: 2px
}

.menu-close,
.mobile-menu-btn {
    display: none
}

.hero,
.hero-swiper,
.hero-slide {
    height: 100vh;
    min-height: 700px
}

.hero-slide {
    background-position: center;
    background-size: cover
}

.hero-title {
    position: absolute;
    top: 13%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: white;
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    line-height: .95;
    text-shadow: 0 2px 8px #0004
}

.hero-title span,
.hero-title strong {
    display: block
}

.circle-arrow {
    position: absolute;
    z-index: 5;
    border: 0;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 6px 18px #16204b24
}

.circle-arrow.light {
    background: #fffef1;
    color: #cfcaad
}

.hero-next {
    right: 4%;
    top: 50%
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 1
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--navy)
}

h2 {
    margin: 0
}

.section-title {
    text-align: center;
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 48px
}

.about-section {
    position: relative;
    background: var(--ice);
    padding: 150px 0 185px
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: center
}

.about-copy h2 {
    font-size: 43px;
    margin-bottom: 32px
}

.about-copy p {
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 28px;
    max-width: 690px
}

.about-image {
    width: 100%;
    /*max-height: 460px;*/
    object-fit: cover
}

.navy-button {
    display: inline-flex;
    background: var(--navy);
    color: #fff;
    font-weight: 700;
    padding: 15px 28px
}

.wave-bottom {
    position: relative;
    overflow: hidden;
}

/* Altın dalga kuşağı */
.wave-bottom::before {
    content: "";
    position: absolute;
    z-index: 1;
    left: -2%;
    right: -2%;
    bottom: -1px;
    height: 80px;
    pointer-events: none;
    background: var(--gold);

    /* Path kesinlikle tek satır olmalı */
    clip-path: path("M 0 55 Q 250 20 500 45 T 1000 48 T 1500 25 T 2000 55 L 2000 100 L 0 100 Z");
}

/* Altın kuşağın altındaki desenli soft alan */
.wave-bottom::after {
    content: "";
    position: absolute;
    z-index: 2;
    left: -2%;
    right: -2%;
    bottom: -1px;
    height: 80px;
    pointer-events: none;

    background-color: var(--soft);
    background-image:
        linear-gradient(
            rgba(244, 247, 251, 0.80),
            rgba(244, 247, 251, 0.80)
        ),
        url("../images/favicon.webp");

    background-repeat: repeat, repeat;
    background-size: auto, 82px 82px;
    background-position: center, center 0;

    opacity: 1;
    filter: none;

    /* Bu path de tek satır olmalı */
    clip-path: path("M 0 66 Q 250 31 500 56 T 1000 59 T 1500 36 T 2000 66 L 2000 100 L 0 100 Z");
}

.dealers-section {
    position: relative;
    z-index: 0;
    overflow: hidden;
    isolation: isolate;
    background: var(--soft);
    padding: 115px 0 150px;
}

/* Dealers bölümündeki devam eden desen */
.dealers-section::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    pointer-events: none;

    background-color: var(--soft);
    background-image:
        linear-gradient(
            rgba(244, 247, 251, 0.80),
            rgba(244, 247, 251, 0.80)
        ),
        url("../images/favicon.webp");

    background-repeat: repeat, repeat;
    background-size: auto, 82px 82px;
    background-position: center, center -80px;

    opacity: 1;
    filter: none;
    transform: none;
}

.dealers-section > .container {
    position: relative;
    z-index: 1;
}
.slider-block {
    position: relative
}

.dealer-swiper,
.product-swiper,
.recipe-swiper {
    width: calc(100% - 130px)
}

.dealer-card {
    height: 280px;
    background: #fff;
    border-radius: 17px;
    display: grid;
    place-items: center;
    padding: 36px;
    box-shadow: 0 8px 14px #25345f1c
}

.dealer-card img {
    max-height: 125px;
    object-fit: contain
}

.dealer-prev,
.product-prev,
.recipe-prev {
    left: 0;
    top: 57%
}

.dealer-next,
.product-next,
.recipe-next {
    right: 0;
    top: 57%
}


.recipes-section {
    background: var(--cream);
    padding: 125px 0 105px
}

.recipe-card {
    background: #fff;
    border-radius: 0 0 30px 30px;
    overflow: hidden;
    box-shadow: 0 8px 13px #26355e24;
    cursor: pointer;
}

.recipe-card img {
    width: 100%;
    height: 285px;
    object-fit: cover;
    border-radius: 30px
}

.recipe-card h3 {
    color: #050505;
    font-size: 24px;
    margin: 20px 30px 26px
}

.all-button {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 60px
}

.tips-section {
    background: #fff;
    padding: 120px 0 130px
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px
}

.tip-card {
    text-align: center;
    border-radius: 25px;
    box-shadow: 0 6px 18px #27345c1c;
    padding: 46px 22px 32px;
    min-height: 270px
}

.tip-card i {
    font-size: 30px;
    color: #c9c39f;
    background: #fffdf4;
    border-radius: 50%;
    padding: 14px
}

.tip-card h3 {
    font-size: 17px;
    margin: 22px 0 14px
}

.tip-card p {
    font-size: 13px;
    line-height: 1.35;
    color: #777;
    margin: 0
}
.quality-parallax {
    height: 80vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
}

/*
|--------------------------------------------------------------------------
| Üst krem dalga ve onu takip eden lacivert şerit
|--------------------------------------------------------------------------
*/

.quality-parallax::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    pointer-events: none;

    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% 100%;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23191F4C' d='M0 0H1440V48C1320 55 1250 82 1125 78C990 74 920 56 790 67C645 79 560 97 420 83C285 70 190 48 0 69V0Z'/%3E%3Cpath fill='%23FFFDF4' d='M0 0H1440V32C1320 39 1250 66 1125 62C990 58 920 40 790 51C645 63 560 81 420 67C285 54 190 32 0 53V0Z'/%3E%3C/svg%3E");
}

.quality-parallax::after {
    display: none;
}

.parallax-title {
    position: relative;
    z-index: 3;
    font-family: "Noteworthy", sans-serif;
    color: #fff;
    text-align: center;
    font-size: 72px;
    line-height: .75;
    text-shadow: 0 3px 9px #0008;
}
.footer {
    position: relative;
    background: var(--navy);
    color: #fff;
    padding: 110px 0 40px;
}

/* Yumuşak lacivert dalga ve onu takip eden altın çizgi */
.footer::before {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    top: -120px;
    width: 100%;
    height: 121px;
    pointer-events: none;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% 100%;
    /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23191F4C' d='M0 32C170 5 300 73 485 51C670 29 785 4 970 34C1155 64 1280 40 1440 18V120H0V32Z'/%3E%3Cpath fill='%23d8bd7c' d='M0 49C170 22 300 90 485 68C670 46 785 21 970 51C1155 81 1280 57 1440 35V120H0V49Z'/%3E%3Cpath fill='%23191F4C' d='M0 62C170 35 300 103 485 81C670 59 785 34 970 64C1155 94 1280 70 1440 48V120H0V62Z'/%3E%3C/svg%3E"); */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23d8bd7c' d='M0 32C170 5 300 73 485 51C670 29 785 4 970 34C1155 64 1280 40 1440 18V120H0V32Z'/%3E%3Cpath fill='%23191F4C' d='M0 49C170 22 300 90 485 68C670 46 785 21 970 51C1155 81 1280 57 1440 35V120H0V49Z'/%3E%3C/svg%3E");
}

.footer::after {
    display: none;
}



/* Footer içeriği dalganın üzerinde kalmalı */
.footer>* {
    position: relative;
    z-index: 3;
}

/* Yukarı çık butonu dalganın arkasında kalmasın */
.footer .back-top {
    position: absolute;
    z-index: 5;
    top: -92px;
    right: 10%;
}

.back-top {
    position: absolute;
    right: 10%;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--gold);
    display: grid;
    place-items: center;
    font-size: 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr .9fr 1.5fr;
    gap: 90px;
    align-items: center
}

.footer-brand img {
    width: 220px
}

.socials {
    display: flex;
    gap: 14px;
    margin-top: 65px
}

.socials a {
    width: 34px;
    height: 34px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px
}

.footer-links div {
    display: flex;
    flex-direction: column;
    gap: 22px;
    font-weight: 600
}

.contact-list {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 18px 30px;
    font-size: 14px
}

.contact-list a,
.contact-list p {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    margin: 0
}

.contact-list i {
    color: var(--gold);
    font-size: 19px
}

.contact-list p {
    grid-column: 1/-1
}

.footer-bottom {
    border-top: 1px solid #ffffff18;
    margin-top: 75px;
    padding-top: 35px;
    display: flex;
    justify-content: space-between;
    font-size: 12px
}

.footer-bottom div {
    display: flex;
    gap: 70px
}
@media (max-width: 600px) {
    .footer::before {
        top: -78px;
        height: 79px;
    }

    .footer .back-top {
        top: -62px;
        right: 24px;
    }
}
@media(max-width:1200px) {
    :root {
        --sidebar: 230px
    }

    .sidebar {
        padding-inline: 30px
    }

    .container {
        width: calc(100% - 60px)
    }

    .tips-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .footer-grid {
        gap: 40px
    }

    .hero-title {
        font-size: 32px
    }
}

@media(max-width:900px) {
    .page-content {
        margin-left: 0
    }

    .sidebar {
        transform: translateX(-100%);
        transition: .35s;
        width: min(320px, 88vw)
    }

    .sidebar.open {
        transform: none
    }

    .sidebar-nav {
        margin-top: 55px;
        gap: 24px
    }

    .menu-close {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
        border: 0;
        background: none;
        color: white;
        font-size: 26px
    }

    .mobile-menu-btn {
        display: grid;
        place-items: center;
        position: fixed;
        right: 18px;
        top: 18px;
        width: 48px;
        height: 48px;
        border: 0;
        border-radius: 50%;
        background: var(--navy);
        color: #fff;
        z-index: 900;
        font-size: 20px
    }

    .menu-overlay {
        position: fixed;
        inset: 0;
        background: #0008;
        z-index: 950;
        opacity: 0;
        visibility: hidden;
        transition: .3s
    }

    .menu-overlay.show {
        opacity: 1;
        visibility: visible
    }

    .hero,
    .hero-swiper,
    .hero-slide {
        height: 78vh;
        min-height: 600px
    }

    .about-grid {
        grid-template-columns: 1fr
    }

    .about-section {
        padding: 90px 0 120px
    }

    .about-image {
        grid-row: 1
    }

    .tips-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .contact-list {
        grid-column: 1/-1
    }

    .product-tabs {
        overflow: auto;
        justify-content: flex-start;
        padding-bottom: 8px
    }

    .footer-bottom {
        gap: 25px;
        flex-direction: column
    }

    .quality-parallax {
        background-attachment: scroll
    }
}

@media(max-width:600px) {
    .container {
        width: calc(100% - 36px)
    }

    .hero,
    .hero-swiper,
    .hero-slide {
        height: 70vh;
        min-height: 520px
    }

    .hero-title {
        font-size: 24px;
        width: 85%;
        top: 16%
    }

    .circle-arrow {
        width: 52px;
        height: 52px;
        font-size: 20px
    }

    .section-title,
    .about-copy h2 {
        font-size: 32px
    }

    .about-copy p {
        font-size: 14px
    }

    .about-grid {
        gap: 25px
    }

    .dealer-swiper,
    .product-swiper,
    .recipe-swiper {
        width: 100%
    }

    .dealer-card {
        height: 210px
    }

    .dealer-prev,
    .product-prev,
    .recipe-prev {
        left: -12px
    }

    .dealer-next,
    .product-next,
    .recipe-next {
        right: -12px
    }

    .dealer-prev,
    .dealer-next {
        top: 62%
    }

    .product-image {
        height: 300px
    }

    .recipe-card img {
        height: 230px
    }

    .recipe-card h3 {
        font-size: 20px
    }

    .tips-grid {
        grid-template-columns: 1fr
    }

    .quality-parallax {
        height: 420px
    }

    .parallax-title {
        font-size: 48px
    }

    .footer {
        padding-top: 80px
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .footer-links,
    .contact-list {
        grid-column: auto
    }

    .contact-list {
        grid-template-columns: 1fr
    }

    .contact-list p {
        grid-column: auto
    }

    .footer-bottom div {
        gap: 20px;
        flex-direction: column
    }

    .footer-brand img {
        width: 190px
    }

    .socials {
        margin-top: 35px
    }
}

/* FINAL RESPONSIVE OVERRIDES */
:root {
    --navy: #191F4C;
    --ice: #BACDDF
}

body {
    overflow-x: hidden
}

.hero {
    position: relative;
    overflow: hidden
}

.hero-swiper {
    overflow: hidden
}

.hero-slide {
    background-repeat: no-repeat;
    will-change: background-position
}

.hero-next {
    display: none !important
}

.parallax-title {
    font-family: "Noteworthy", sans-serif
}

.about-grid {
    gap: clamp(30px, 5vw, 80px)
}

.dealer-swiper,
.product-swiper,
.recipe-swiper {
    width: calc(100% - 130px);
    padding: 26px 0 32px;
    margin-top: -26px;
    margin-bottom: -32px
}

.dealer-card,
.recipe-card {
    box-shadow: 0 8px 18px rgba(37, 52, 95, .14)
}

.dealer-prev,
.dealer-next,
.product-prev,
.product-next,
.recipe-prev,
.recipe-next {
    top: 0;
    display: grid;
    place-items: center;
    transform: translateY(-50%);
    z-index: 30;
    transition: transform .25s ease, box-shadow .25s ease
}

.dealer-prev,
.product-prev,
.recipe-prev {
    left: 0
}

.dealer-next,
.product-next,
.recipe-next {
    right: 0
}

.dealer-prev:hover,
.dealer-next:hover,
.product-prev:hover,
.product-next:hover,
.recipe-prev:hover,
.recipe-next:hover {
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 10px 24px rgba(25, 31, 76, .18)
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1);
    transition-delay: var(--reveal-delay, 0ms)
}

.reveal-left {
    transform: translateX(-28px)
}

.reveal-right {
    transform: translateX(28px)
}

.reveal-scale {
    transform: scale(.97)
}

.reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1)
}

.dealer-card,
.product-image,
.recipe-card,
.tip-card {
    transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease
}

.dealer-card:hover,
.product-item:hover .product-image,
.recipe-card:hover,
.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 13px 25px rgba(37, 52, 95, .15)
}

@media(max-width:1400px) {
    .container {
        width: min(1180px, calc(100% - 70px))
    }

    .sidebar {
        padding-inline: 34px
    }

    .sidebar-nav {
        margin-top: 70px;
        gap: 30px
    }

    .about-section {
        padding-block: 120px 160px
    }

    .tips-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .footer-grid {
        gap: 45px
    }
}

@media(max-width:1100px) {
    :root {
        --sidebar: 220px
    }

    .container {
        width: calc(100% - 50px)
    }

    .sidebar {
        padding: 48px 28px 36px
    }

    .sidebar-logo {
        width: 160px
    }

    .sidebar-nav {
        font-size: 15px;
        gap: 24px;
        margin-top: 55px
    }

    .about-copy p {
        font-size: 14px
    }

    .footer-grid {
        grid-template-columns: .8fr 1fr
    }

    .contact-list {
        grid-column: 1/-1
    }

    .quality-parallax {
        height: 65vh;
        min-height: 520px
    }
}

@media(max-width:900px) {
    .page-content {
        margin-left: 0
    }

    .sidebar {
        width: min(320px, 88vw);
        transform: translateX(-100%);
        transition: transform .35s cubic-bezier(.22, 1, .36, 1);
        box-shadow: 15px 0 45px rgba(0, 0, 0, .2)
    }

    .sidebar.open {
        transform: none
    }

    .menu-close {
        display: grid;
        place-items: center;
        position: absolute;
        right: 18px;
        top: 18px;
        width: 42px;
        height: 42px;
        border: 0;
        background: none;
        color: #fff;
        font-size: 25px
    }

    .mobile-menu-btn {
        display: grid;
        place-items: center;
        position: fixed;
        right: 18px;
        top: 18px;
        width: 48px;
        height: 48px;
        border: 0;
        border-radius: 50%;
        background: var(--navy);
        color: #fff;
        z-index: 900;
        font-size: 19px;
        box-shadow: 0 7px 20px rgba(0, 0, 0, .18)
    }

    .menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .55);
        z-index: 950;
        opacity: 0;
        visibility: hidden;
        transition: .3s
    }

    .menu-overlay.show {
        opacity: 1;
        visibility: visible
    }

    .hero,
    .hero-swiper,
    .hero-slide {
        height: 75svh;
        min-height: 560px
    }

    .about-grid {
        grid-template-columns: 1fr
    }

    .about-image {
        grid-row: 1;
        max-height: 390px
    }

    .about-copy {
        text-align: center
    }

    .about-copy p {
        max-width: none
    }

    .dealers-section,
    .products-section,
    .recipes-section,
    .tips-section {
        padding-block: 90px
    }

    .tips-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .contact-list {
        grid-template-columns: 1fr 1fr
    }

    .contact-list p {
        grid-column: 1/-1
    }

    .footer-bottom {
        flex-direction: column;
        gap: 25px
    }

    .quality-parallax {
        background-attachment: scroll
    }
}

@media(max-width:600px) {
    .container {
        width: calc(100% - 36px)
    }

    .hero,
    .hero-swiper,
    .hero-slide {
        height: 68svh;
        min-height: 480px
    }

    .about-section {
        padding: 70px 0 110px
    }

    .about-copy h2,
    .section-title {
        font-size: 31px
    }

    .about-copy p {
        font-size: 14px;
        line-height: 1.7
    }

    .about-image {
        max-height: 290px
    }

    .dealers-section,
    .products-section,
    .recipes-section,
    .tips-section {
        padding-block: 70px
    }

    .dealer-swiper,
    .product-swiper,
    .recipe-swiper {
        width: calc(100% - 40px);
        padding: 22px 0 28px;
        margin-top: -22px;
        margin-bottom: -28px
    }

    .circle-arrow {
        width: 46px;
        height: 46px;
        font-size: 17px
    }

    .dealer-prev,
    .product-prev,
    .recipe-prev {
        left: -5px
    }

    .dealer-next,
    .product-next,
    .recipe-next {
        right: -5px
    }

    .dealer-card {
        height: 220px
    }

    .product-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        gap: 10px;
        padding: 0 2px 10px;
        margin-bottom: 28px;
        scrollbar-width: none
    }

    .product-tabs::-webkit-scrollbar {
        display: none
    }

    .product-tabs button {
        flex: 0 0 auto;
        min-width: auto;
        padding: 9px 18px;
        font-size: 13px
    }

    .product-image {
        height: 290px
    }

    .recipe-card img {
        height: 225px
    }

    .recipe-card h3 {
        font-size: 19px;
        margin: 18px 20px 22px
    }

    .tips-grid {
        grid-template-columns: 1fr
    }

    .tip-card {
        min-height: auto;
        padding: 35px 24px 30px
    }

    .quality-parallax {
        height: 470px;
        min-height: 0
    }

    .parallax-title {
        font-size: 46px;
        line-height: .9;
        padding-inline: 22px
    }

    .footer {
        padding: 80px 0 35px
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 45px
    }

    .contact-list {
        grid-column: auto;
        grid-template-columns: 1fr
    }

    .contact-list p {
        grid-column: auto
    }

    .footer-bottom {
        margin-top: 50px;
        font-size: 11px;
        line-height: 1.7
    }

    .footer-bottom div {
        flex-direction: column;
        gap: 12px
    }

    .back-top {
        right: 24px;
        top: -45px;
        width: 55px;
        height: 55px
    }
}

@media(max-width:380px) {
    .container {
        width: calc(100% - 28px)
    }

    .hero,
    .hero-swiper,
    .hero-slide {
        min-height: 440px
    }

    .section-title,
    .about-copy h2 {
        font-size: 28px
    }

    .dealer-swiper,
    .product-swiper,
    .recipe-swiper {
        width: calc(100% - 30px)
    }

    .circle-arrow {
        width: 40px;
        height: 40px
    }

    .product-image {
        height: 255px
    }

    .footer-links {
        gap: 20px
    }

    .contact-list {
        font-size: 12px
    }
}

@media(max-height:760px) and (min-width:901px) {
    .sidebar {
        padding-block: 35px
    }

    .sidebar-logo {
        width: 150px
    }

    .sidebar-nav {
        margin-top: 75px;
        gap: 33px;
        font-size: 14px
    }

    .languages {
        margin-bottom: 15px
    }

    .gold-button {
        height: 42px
    }

    .hero,
    .hero-swiper,
    .hero-slide {
        min-height: 620px
    }

}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    *,
    *:before,
    *:after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}







.recipe-swiper .swiper-wrapper {
    align-items: stretch;
}

.recipe-swiper .swiper-slide {
    height: auto;
}

.recipe-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 370px;
    background: #fff;
    border-radius: 0 0 30px 30px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(37, 52, 95, 0.14);
}

.recipe-card img {
    display: block;
    width: 100%;
    height: 285px;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 30px;
}

.recipe-card h3 {
    display: flex;
    align-items: center;
    flex: 1;
    min-height: 82px;
    margin: 0;
    padding: 20px 30px 26px;
    color: #050505;
    font-size: 24px;
    line-height: 1.25;
}









.product-gallery-main {
    width: 100%;
    min-height: 520px;
    display: grid;
    place-items: center;
}

.product-gallery-main img {
    width: 100%;
    height: 520px;
    object-fit: contain;
}

.product-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
}

.product-gallery-thumb {
    width: 100%;
    aspect-ratio: 1;
    padding: 6px;
    border: 1px solid #dfe3ea;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.product-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-gallery-thumb.active {
    border-color: var(--navy);
    box-shadow: 0 0 0 2px rgba(25, 31, 76, .1);
}

.product-brand {
    display: block;
    margin: 8px 0 0;
    color: #7d8498;
    font-size: 14px;
}

.product-specifications-section {
    background: var(--soft);
}

.product-specifications-table-wrap {
    overflow-x: auto;
    border: 1px solid #e3e7ef;
    border-radius: 16px;
    background: #fff;
}

.product-specifications-table {
    width: 100%;
    border-collapse: collapse;
}

.product-specifications-table th,
.product-specifications-table td {
    width: 50%;
    padding: 17px 22px;
    border-bottom: 1px solid #e9ecf2;
    text-align: left;
    vertical-align: middle;
}

.product-specifications-table th {
    color: var(--navy);
    font-weight: 600;
    background: #fafbfc;
}

.product-specifications-table td {
    color: var(--text);
}

.product-specifications-table tr:last-child th,
.product-specifications-table tr:last-child td {
    border-bottom: 0;
}

.product-empty-state {
    padding: 50px 20px;
    border: 1px dashed #d8dce5;
    border-radius: 16px;
    text-align: center;
    color: #7d8498;
}

.pagination .disabled {
    opacity: .4;
    pointer-events: none;
}

@media (max-width: 991px) {

    .product-gallery-main,
    .product-gallery-main img {
        min-height: 420px;
        height: 420px;
    }
}

@media (max-width: 575px) {

    .product-gallery-main,
    .product-gallery-main img {
        min-height: 320px;
        height: 320px;
    }

    .product-gallery-thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .product-specifications-table th,
    .product-specifications-table td {
        padding: 13px 14px;
        font-size: 13px;
    }
}

/* =========================================================
   RESPONSIVE COLLAPSIBLE SIDEBAR
   ========================================================= */
:root {
    --sidebar-expanded: 280px;
    --sidebar-collapsed: 88px;
    --sidebar-current: var(--sidebar-expanded);
}

html.sidebar-collapsed {
    --sidebar-current: var(--sidebar-collapsed);
}

.page-content {
    margin-left: var(--sidebar-current);
    transition: margin-left .34s cubic-bezier(.22, 1, .36, 1);
}

.sidebar {
    width: var(--sidebar-current);
    padding: 34px 24px 30px;
    align-items: stretch;
    overflow: hidden;
    transition: width .34s cubic-bezier(.22, 1, .36, 1),
        padding .34s cubic-bezier(.22, 1, .36, 1);
}

.sidebar-header {
    position: relative;
    flex: 0 0 auto;
    min-height: 116px;
    display: block;
    padding-top: 42px;
    overflow: visible;
}

.sidebar-logo {
    width: 190px;
    min-width: 0;
    height: 70px;
    margin: 0 auto;
    display: grid;
    place-items: center;
}

.sidebar-logo img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

.sidebar-logo-compact {
    display: none;
    width: 46px;
    height: 46px;
}

.sidebar-toggle {
    position: absolute;
    right: 0;
    top: 0;
    bottom: auto;
    width: 36px;
    height: 36px;
    padding: 0;
    display: grid;
    place-items: center;
    border: 1px solid rgba(216, 189, 124, .42);
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    color: var(--gold);
    cursor: pointer;
    font-size: 13px;
    transition: color .2s ease, background .2s ease;
}

.sidebar-toggle:hover,
.sidebar-toggle:focus-visible {
    background: var(--gold);
    color: var(--navy);
    outline: none;
}

.sidebar-nav {
    min-height: 0;
    flex: 1 1 auto;
    margin: 42px -10px 24px 0;
    padding: 4px 10px 4px 0;
    gap: 8px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(216, 189, 124, .8) rgba(255, 255, 255, .07);
}

.sidebar-nav::-webkit-scrollbar {
    width: 6px;
}

.sidebar-nav::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .07);
    border-radius: 20px;
}

.sidebar-nav::-webkit-scrollbar-thumb {
    min-height: 36px;
    border-radius: 20px;
    background: linear-gradient(180deg, #fff4c8, var(--gold));
}

.sidebar-nav::-webkit-scrollbar-thumb:hover {
    background: #ecd58f;
}

.sidebar-nav a {
    position: relative;
    min-height: 51px;
    padding: 9px 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 12px;
    text-align: left;
    white-space: nowrap;
    transition: color .22s ease, background .22s ease, transform .22s ease;
}

.sidebar-nav a i {
    width: 31px;
    flex: 0 0 31px;
    color: var(--gold);
    font-size: 23px;
    text-align: center;
}

.sidebar-nav a span,
.gold-button span {
    overflow: hidden;
    opacity: 1;
    transition: opacity .18s ease;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    color: #fff;
    background: rgba(255, 255, 255, .08);
}

.sidebar-nav a.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 3px;
    border-radius: 0 4px 4px 0;
    background: var(--gold);
}

.sidebar-bottom {
    flex: 0 0 auto;
}

.gold-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
    overflow: hidden;
}

.gold-button i {
    flex: 0 0 auto;
    font-size: 17px;
}

.sidebar.is-collapsed {
    padding-inline: 14px;
}

.sidebar.is-collapsed .sidebar-logo-full {
    display: none;
}

.sidebar.is-collapsed .sidebar-logo-compact {
    display: block;
}

.sidebar.is-collapsed .sidebar-toggle {
    right: 50%;
    transform: translateX(50%);
}

.sidebar.is-collapsed .sidebar-nav {
    margin-right: 0;
    padding-right: 0;
    scrollbar-width: none;
}

.sidebar.is-collapsed .sidebar-nav::-webkit-scrollbar {
    display: none;
}

.sidebar.is-collapsed .sidebar-nav a {
    width: 60px;
    min-height: 55px;
    justify-content: center;
    padding-inline: 0;
    gap: 0;
}

.sidebar.is-collapsed .sidebar-nav a i {
    width: auto;
    flex-basis: auto;
}

.sidebar.is-collapsed .sidebar-nav a span,
.sidebar.is-collapsed .gold-button span {
    width: 0;
    opacity: 0;
}

.sidebar.is-collapsed .sidebar-nav a.active::before {
    top: 10px;
    bottom: 10px;
}

.sidebar.is-collapsed .languages {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 12px;
}

.sidebar.is-collapsed .gold-button {
    width: 52px;
    margin-inline: auto;
    padding: 0;
}

/* Eski offcanvas kontrolleri artık kullanılmaz. */
.mobile-menu-btn,
.menu-close,
.menu-overlay {
    display: none !important;
}

@media (max-width: 1200px) {
    :root {
        --sidebar-expanded: 250px;
        --sidebar-collapsed: 82px;
    }

    .sidebar {
        padding-inline: 20px;
    }

    .sidebar.is-collapsed {
        padding-inline: 11px;
    }

    .sidebar-nav a {
        font-size: 15px;
    }
}

@media (max-width: 900px) {
    :root {
        --sidebar-expanded: 250px;
        --sidebar-collapsed: 74px;
    }

    .page-content {
        margin-left: var(--sidebar-current);
    }

    .sidebar,
    .sidebar.open,
    .sidebar.is-collapsed {
        transform: none;
        box-shadow: 8px 0 24px rgba(0, 0, 0, .12);
    }

    .sidebar {
        padding: 22px 18px 22px;
    }

    .sidebar.is-collapsed {
        padding-inline: 7px;
    }

    .sidebar-logo,
    .sidebar-header {
        min-height: 104px;
        height: 104px;
    }

    .sidebar-header {
        padding-top: 42px;
    }

    .sidebar-logo {
        height: 62px;
    }

    .sidebar-logo-compact {
        width: 42px;
        height: 42px;
    }

    .sidebar-nav {
        margin-top: 20px;
        gap: 6px;
    }

    .sidebar.is-collapsed .sidebar-nav a {
        width: 60px;
    }
}

@media (max-width: 600px) {
    :root {
        --sidebar-expanded: min(240px, calc(100vw - 54px));
        --sidebar-collapsed: 68px;
    }

    /* Dar ekranda açılan panel içeriği ezmeden onun üzerinde genişler;
       ikon şeridi ise her zaman görünür kalır. */
    .page-content {
        margin-left: var(--sidebar-collapsed);
    }

    .sidebar {
        padding-inline: 14px;
    }

    .sidebar.is-collapsed {
        padding-inline: 4px;
    }

    .sidebar.is-collapsed .sidebar-nav a {
        width: 60px;
    }

    .sidebar-nav a {
        min-height: 49px;
        font-size: 14px;
    }

    .sidebar-nav a i {
        font-size: 21px;
    }

    .sidebar-toggle {
        right: 0;
    }

    .sidebar.is-collapsed .sidebar-toggle {
        right: 50%;
    }
}

@media (max-height: 720px) {

    .sidebar,
    .sidebar.is-collapsed {
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .sidebar-header,
    .sidebar-logo {
        min-height: 92px;
        height: 92px;
    }

    .sidebar-header {
        padding-top: 38px;
    }

    .sidebar-logo {
        min-height: 54px;
        height: 54px;
    }

    .sidebar-logo img {
        max-height: 82px;
    }

    .sidebar-nav {
        margin-top: 18px;
        margin-bottom: 14px;
        gap: 3px;
    }

    .sidebar-nav a {
        min-height: 45px;
        padding-block: 7px;
    }

    .languages {
        margin-bottom: 12px;
    }

    .gold-button {
        height: 42px;
    }
}
.products-section {
    background: #fff;
    padding: 130px 0 145px;
}

/*
|--------------------------------------------------------------------------
| CATEGORY FILTER
|--------------------------------------------------------------------------
*/

.product-tabs {
    position: relative;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    margin: -25px 0 42px;
}

.product-tab-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 140px;
    min-height: 41px;
    padding: 9px 20px;
    border: 1px solid #d8dce5;
    border-radius: 30px;
    color: var(--navy);
    background: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 21px;
    cursor: pointer;
    transition:
        color .2s ease,
        background-color .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

.product-tab-button:hover,
.product-tab-button.active {
    color: var(--gold);
    background: var(--navy);
    border-color: var(--navy);
}

.product-tab-dropdown {
    position: relative;
}

.product-tab-dropdown-toggle i {
    font-size: 9px;
    transition: transform .2s ease;
}

.product-tab-dropdown.is-open
.product-tab-dropdown-toggle i {
    transform: rotate(180deg);
}

.product-tab-dropdown-menu {
    position: absolute;
    top: calc(100% + 11px);
    left: 50%;
    width: 235px;
    padding: 8px;
    visibility: hidden;
    opacity: 0;
    border: 1px solid rgba(25, 31, 76, .1);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(25, 31, 76, .14);
    transform: translate(-50%, 8px);
    transition:
        visibility .2s ease,
        opacity .2s ease,
        transform .2s ease;
}

.product-tab-dropdown.is-open
.product-tab-dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
}

.product-tab-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    width: 12px;
    height: 12px;
    border-top: 1px solid rgba(25, 31, 76, .1);
    border-left: 1px solid rgba(25, 31, 76, .1);
    background: #fff;
    transform: translateX(-50%) rotate(45deg);
}

.product-tab-dropdown-menu button {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    align-items: center;
    gap: 8px;
    padding: 11px 12px;
    padding-left: calc(
        12px + (var(--category-depth, 0) * 14px)
    );
    border: 0;
    border-radius: 9px;
    color: var(--navy);
    background: transparent;
    text-align: left;
    font-size: 12px;
    font-weight: 650;
    cursor: pointer;
    transition:
        color .2s ease,
        background-color .2s ease;
}

.product-tab-dropdown-menu button:first-child {
    display: block;
    margin-bottom: 5px;
    border-bottom: 1px solid #edf0f4;
}

.product-tab-dropdown-menu button small {
    display: block;
    margin-top: 2px;
    color: #9699a6;
    font-size: 9px;
}

.product-tab-dropdown-menu button > i {
    color: var(--gold);
    font-size: 8px;
    transform: rotate(90deg);
}

.product-tab-dropdown-menu button:hover,
.product-tab-dropdown-menu button.active {
    color: var(--gold);
    background: var(--navy);
}

.product-tab-dropdown-menu button:hover small,
.product-tab-dropdown-menu button.active small {
    color: rgba(255, 255, 255, .7);
}

/*
|--------------------------------------------------------------------------
| ORIGINAL PRODUCT CARD
|--------------------------------------------------------------------------
*/

.home-product-slider-area {
    position: relative;
}

.product-image {
    height: 320px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 7px 13px #20305d26;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
}

.product-image img {
    height: 100%;
    object-fit: contain;
}

.product-item h3 {
    text-align: center;
    font-size: 17px;
    color: #101010;
    margin: 30px 0 0;
}

/*
|--------------------------------------------------------------------------
| EMPTY STATE
|--------------------------------------------------------------------------
*/

.home-product-empty {
    padding: 50px 20px;
    border: 1px dashed #d8dce5;
    border-radius: 15px;
    color: #888b99;
    text-align: center;
    background: #fff;
}

.home-product-empty i {
    display: block;
    margin-bottom: 12px;
    color: var(--gold);
    font-size: 34px;
}

.home-product-empty[hidden],
.product-swiper[hidden],
.product-prev[hidden],
.product-next[hidden] {
    display: none !important;
}

/*
|--------------------------------------------------------------------------
| RESPONSIVE
|--------------------------------------------------------------------------
*/

@media (max-width: 991px) {
    .product-tab-dropdown-menu {
        right: 0;
        left: auto;
        transform: translate(0, 8px);
    }

    .product-tab-dropdown.is-open
    .product-tab-dropdown-menu {
        transform: translate(0, 0);
    }

    .product-tab-dropdown-menu::before {
        right: 30px;
        left: auto;
        transform: rotate(45deg);
    }
}

@media (max-width: 767px) {
    .products-section {
        padding: 90px 0 100px;
    }

    .product-tabs {
        display: grid;
        grid-template-columns: repeat(
            2,
            minmax(0, 1fr)
        );
        margin-top: -15px;
    }

    .product-tab-button,
    .product-tab-dropdown {
        width: 100%;
    }

    .product-tab-dropdown-menu {
        width: 100%;
        min-width: 210px;
    }

    .product-image {
        height: 290px;
    }
}

@media (max-width: 575px) {
    .product-tabs {
        grid-template-columns: 1fr;
    }

    .product-tab-dropdown-menu {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        margin-top: 7px;
        transform: none;
    }

    .product-tab-dropdown.is-open
    .product-tab-dropdown-menu {
        transform: none;
    }

    .product-tab-dropdown-menu::before {
        display: none;
    }

    .product-image {
        height: 320px;
    }
}





.home-product-slider-area {
    --product-card-image-height: 320px;
    position: relative;
}

.home-product-slider-area .product-image {
    height: var(--product-card-image-height);
}


.home-product-slider-area {
    position: relative;
}

/*
 * Yatay konumlara dokunmuyoruz.
 * Mevcut left: 0 ve right: 0 değerleri korunuyor.
 * Yalnızca okları görsel alanının ortasına çıkarıyoruz.
 */
.products-section .product-prev,
.products-section .product-next {
    top: 190px !important;
    bottom: auto;
    transform: translateY(-50%);
}

/* Mevcut yatay açıklık */
.products-section .product-prev {
    left: 0;
}

.products-section .product-next {
    right: 0;
}

.products-section .product-prev:hover,
.products-section .product-next:hover {
    transform: translateY(-50%) scale(1.06);
}

@media (max-width: 767px) {
    .products-section .product-prev,
    .products-section .product-next {
        top: 145px;
    }
}

@media (max-width: 575px) {
    .products-section .product-prev,
    .products-section .product-next {
        top: 160px;
    }
}

/*
|--------------------------------------------------------------------------
| MOBILE FINAL OVERRIDES
|--------------------------------------------------------------------------
| Dosyanın önceki bölümlerindeki 75svh / 68svh tanımlarını geçersiz kılar.
*/

@media (max-width: 900px) {
    .hero,
    .hero-swiper,
    .hero-swiper .swiper-wrapper,
    .hero-slide {
        width: 100%;
        height: 100vh;
        height: 100svh;
        height: 100dvh;
        min-height: 100vh;
        min-height: 100svh;
        min-height: 100dvh;
    }

    .hero-slide {
        background-attachment: scroll;
        background-position: center center;
        background-size: cover;
    }
}

@media (max-width: 767px) {
    .products-section {
        overflow: visible;
    }

    .product-tabs {
        position: relative;
        z-index: 30;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        width: 100%;
        margin: -12px 0 38px;
        padding: 10px;
        overflow: visible;
        border: 1px solid rgba(25, 31, 76, .09);
        border-radius: 18px;
        background: rgba(244, 247, 251, .92);
        box-shadow: 0 12px 30px rgba(25, 31, 76, .08);
    }

    .product-tab-button,
    .product-tab-dropdown {
        width: 100%;
        min-width: 0;
    }

    .product-tab-button {
        min-height: 44px;
        padding: 9px 12px;
        border-color: rgba(25, 31, 76, .12);
        border-radius: 12px;
        font-size: 12px;
        line-height: 1.25;
    }

    .product-tab-dropdown {
        position: static;
    }

    .product-tab-dropdown-toggle {
        justify-content: space-between;
    }

    .product-tab-dropdown-menu {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        left: 0;
        width: 100%;
        min-width: 0;
        max-height: min(46dvh, 360px);
        margin: 0;
        padding: 8px;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        border-radius: 14px;
        box-shadow: 0 18px 45px rgba(25, 31, 76, .2);
        transform: translateY(8px);
    }

    .product-tab-dropdown.is-open .product-tab-dropdown-menu {
        transform: translateY(0);
    }

    .product-tab-dropdown-menu::before {
        display: none;
    }

    .product-tab-dropdown-menu button {
        min-height: 43px;
        padding-top: 9px;
        padding-bottom: 9px;
        border-radius: 9px;
        font-size: 12px;
    }

    .product-tab-dropdown-menu button + button {
        margin-top: 3px;
    }
}

@media (max-width: 420px) {
    .product-tabs {
        gap: 8px;
        padding: 8px;
    }

    .product-tab-button {
        padding-inline: 9px;
        font-size: 11px;
    }
}

/*
|--------------------------------------------------------------------------
| SIDEBAR TOGGLE – KESİN SON KONUM
|--------------------------------------------------------------------------
| Buton için sidebarın en üstünde ayrı bir satır ayrılır.
| Logo ve favicon bu satırın altında başladığı için üst üste binemez.
*/

.sidebar .sidebar-header {
    min-height: 128px !important;
    height: 128px !important;
    padding: 52px 0 0 !important;
}

.sidebar .sidebar-toggle,
.sidebar.is-collapsed .sidebar-toggle {
    top: 0 !important;
    right: auto !important;
    bottom: auto !important;
    left: 50% !important;
    width: 36px !important;
    height: 36px !important;
    margin: 0 !important;
    transform: translateX(-50%) !important;
}

.sidebar .sidebar-logo {
    width: 190px;
    height: 76px !important;
    min-height: 76px !important;
    margin: 0 auto !important;
}

.sidebar.is-collapsed .sidebar-logo {
    width: 48px;
}

@media (max-width: 900px) {
    .sidebar .sidebar-header {
        min-height: 116px !important;
        height: 116px !important;
        padding-top: 48px !important;
    }

    .sidebar .sidebar-logo {
        height: 68px !important;
        min-height: 68px !important;
    }
}

@media (max-height: 720px) {
    .sidebar .sidebar-header {
        min-height: 102px !important;
        height: 102px !important;
        padding-top: 42px !important;
    }

    .sidebar .sidebar-logo {
        height: 60px !important;
        min-height: 60px !important;
    }
}








