@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap");

/* =====================================================
   GENEL AYARLAR
===================================================== */

:root {
    --jewelry-pink: #ee9fbb;
    --jewelry-pink-dark: #d9789d;
    --jewelry-pink-light: #fff4f8;
    --jewelry-text: #a86b81;
    --jewelry-border: #f4d9e3;

    --black: #000000;
    --dark: #333333;
    --gray: #8e8e93;
    --light-gray: #f7f7f7;
    --white: #ffffff;

    --header-height: 92px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    background-color: var(--white);
    color: var(--black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

button,
input,
textarea,
select {
    font-family: inherit;
}

/* =====================================================
   HEADER
===================================================== */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    width: 100%;
    min-height: var(--header-height);

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    padding: 10px 40px;

    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--jewelry-border);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow: 0 5px 25px rgba(238, 159, 187, 0.1);
}

/* =====================================================
   LOGO
===================================================== */

.logo {
    justify-self: start;
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
}

/* Yuvarlak logo */

.navbar-logo {
    width: 72px;
    height: 72px;

    object-fit: cover;
    object-position: center;

    border-radius: 50%;
    border: 2px solid var(--jewelry-border);

    background-color: var(--white);

    box-shadow:
        0 5px 18px rgba(238, 159, 187, 0.2),
        0 0 0 5px rgba(255, 244, 248, 0.9);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.logo a:hover .navbar-logo {
    transform: scale(1.05);

    box-shadow:
        0 8px 24px rgba(238, 159, 187, 0.28),
        0 0 0 6px rgba(255, 244, 248, 1);
}

/* Logo resmi çalışmazsa kullanılabilecek yazı */

.logo-text {
    color: var(--jewelry-pink-dark);
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 2px;
    text-decoration: none;
}

/* =====================================================
   ORTA NAVİGASYON MENÜSÜ
===================================================== */

.nav-menu {
    justify-self: center;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.nav-menu a {
    position: relative;

    color: var(--jewelry-text);
    text-decoration: none;

    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.8px;

    transition: color 0.25s ease;
}

.nav-menu a::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: -8px;

    width: 0;
    height: 1px;

    background-color: var(--jewelry-pink);

    transform: translateX(-50%);
    transition: width 0.25s ease;
}

.nav-menu a:hover {
    color: var(--jewelry-pink-dark);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* =====================================================
   NAVBAR İKONLARI
===================================================== */

.nav-icons {
    position: relative;
    justify-self: end;

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

.icon-btn {
    width: 40px;
    height: 40px;

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

    padding: 6px;

    color: var(--jewelry-pink-dark);
    text-decoration: none;

    border: none;
    border-radius: 50%;

    background: transparent;
    cursor: pointer;

    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

.icon-btn svg {
    display: block;
}

.icon-btn:hover {
    color: var(--white);
    background-color: var(--jewelry-pink);
    transform: translateY(-2px);
}

/* =====================================================
   ARAMA ALANI
===================================================== */

.search-wrapper {
    position: relative;
}

.search-box {
    position: absolute;
    top: 52px;
    right: 0;
    z-index: 9999;

    display: none;
}

.search-box.active {
    display: block;
    animation: searchOpen 0.25s ease;
}

.search-box form {
    margin: 0;
}

.search-box input {
    width: 260px;
    height: 44px;

    padding: 0 18px;

    color: var(--jewelry-text);
    background-color: var(--white);

    border: 1px solid var(--jewelry-border);
    border-radius: 30px;
    outline: none;

    font-size: 13px;

    box-shadow: 0 10px 30px rgba(238, 159, 187, 0.18);

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.search-box input::placeholder {
    color: #c18ba0;
}

.search-box input:focus {
    border-color: var(--jewelry-pink);

    box-shadow:
        0 10px 30px rgba(238, 159, 187, 0.2),
        0 0 0 4px rgba(238, 159, 187, 0.12);
}

@keyframes searchOpen {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================
   KATEGORİ MENÜSÜ
===================================================== */

.category-menu {
    position: fixed;
    top: -500px;
    left: 0;
    z-index: 999;

    width: 100%;

    padding: 20px 40px;

    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--jewelry-border);

    box-shadow: 0 10px 30px rgba(238, 159, 187, 0.12);

    transition: top 0.4s ease;
}

.category-menu.active {
    top: var(--header-height);
}

.category-menu a {
    display: block;

    padding: 13px 0;

    color: var(--jewelry-text);
    text-align: center;
    text-decoration: none;

    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;

    border-bottom: 1px solid #faedf2;

    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.category-menu a:last-child {
    border-bottom: none;
}

.category-menu a:hover {
    color: var(--jewelry-pink-dark);
    background-color: var(--jewelry-pink-light);
}

/* =====================================================
   SEPET İKONU VE ADET
===================================================== */

.cart-icon {
    position: relative;

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

.cart-count {
    position: absolute;
    top: -3px;
    right: -4px;

    min-width: 17px;
    height: 17px;

    padding: 0 4px;

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

    color: var(--white);
    background-color: var(--jewelry-pink-dark);

    border: 2px solid var(--white);
    border-radius: 20px;

    font-size: 9px;
    font-weight: 600;
}

/* =====================================================
   HERO SLIDER
===================================================== */

.hero-slider {
    position: relative;

    width: 100%;
    height: calc(100vh - var(--header-height));
    min-height: 600px;

    margin-top: var(--header-height);

    overflow: hidden;
    background-color: var(--light-gray);
}

.slider-container {
    width: 100%;
    height: 100%;

    display: flex;

    transition: transform 0.8s ease-in-out;
}

.slide {
    min-width: 100%;
    width: 100%;
    height: 100%;

    position: relative;
}

.hero-bg {
    width: 100%;
    height: 100%;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.fallback-img {
    display: none;
}

/* Slider noktaları */

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    z-index: 10;

    display: flex;
    align-items: center;
    gap: 10px;

    transform: translateX(-50%);
}

.dot {
    width: 9px;
    height: 9px;

    padding: 0;

    border: 1px solid var(--jewelry-pink-dark);
    border-radius: 50%;

    background-color: transparent;
    cursor: pointer;

    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.dot:hover {
    transform: scale(1.2);
}

.dot.active {
    background-color: var(--jewelry-pink-dark);
}

/* =====================================================
   TEKLİ BÜYÜK BANNER
===================================================== */

.full-banner {
    padding: 60px 40px;

    background-color: var(--white);
}

.banner-image {
    width: 100%;
    height: 70vh;
    min-height: 500px;

    margin-bottom: 35px;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-content {
    max-width: 700px;

    margin: 0 auto;

    text-align: center;
}

.banner-content h2 {
    margin-bottom: 20px;

    color: var(--jewelry-text);

    font-size: 24px;
    font-weight: 400;
    letter-spacing: 3px;
}

.banner-content p {
    margin-bottom: 25px;

    color: #6e5a62;

    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

/* =====================================================
   ORTAK CTA LİNKİ
===================================================== */

.cta-link {
    display: inline-block;

    color: var(--jewelry-pink-dark);
    text-decoration: underline;
    text-underline-offset: 5px;

    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;

    transition:
        color 0.3s ease,
        opacity 0.3s ease;
}

.cta-link:hover {
    color: var(--jewelry-text);
    opacity: 0.7;
}

/* =====================================================
   ÜÇLÜ GRİD
===================================================== */

.triple-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;

    padding: 20px 40px 60px;

    background-color: var(--white);
}

.triple-grid .grid-item {
    display: flex;
    flex-direction: column;
}

.triple-grid .item-image {
    width: 100%;
    padding-bottom: 135%;

    margin-bottom: 25px;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.triple-grid .item-content {
    text-align: center;
}

.triple-grid h3 {
    margin-bottom: 15px;

    color: var(--jewelry-text);

    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
}

/* =====================================================
   İKİLİ GRİD
===================================================== */

.double-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;

    padding: 0 40px 80px;

    background-color: var(--white);
}

.double-grid .grid-item {
    display: flex;
    flex-direction: column;
}

.double-grid .item-image {
    width: 100%;
    padding-bottom: 110%;

    margin-bottom: 30px;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.double-grid .item-content {
    max-width: 500px;

    margin: 0 auto;

    text-align: center;
}

.double-grid h3 {
    margin-bottom: 20px;

    color: var(--jewelry-text);

    font-size: 22px;
    font-weight: 400;
    letter-spacing: 2px;
}

.double-grid p {
    margin-bottom: 20px;

    color: #6e5a62;

    font-size: 13px;
    font-weight: 300;
    line-height: 1.8;
}

/* =====================================================
   FOOTER
===================================================== */

.footer {
    margin-top: 80px;
    padding: 60px 40px 30px;

    background-color: var(--white);
    border-top: 1px solid var(--jewelry-border);
}

.footer-container {
    width: 100%;
    max-width: 1440px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h3 {
    margin-bottom: 15px;

    color: var(--jewelry-text);

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-col a {
    display: block;

    margin-bottom: 10px;

    color: var(--gray);
    text-decoration: none;

    font-size: 12px;

    transition: color 0.25s ease;
}

.footer-col a:hover {
    color: var(--jewelry-pink-dark);
}

.footer-col p {
    color: var(--gray);

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

.socials {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-top: 10px;

    font-size: 18px;
}

.socials a {
    width: 36px;
    height: 36px;

    margin: 0;

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

    color: var(--jewelry-pink-dark);

    border-radius: 50%;

    transition:
        color 0.25s ease,
        background-color 0.25s ease;
}

.socials a:hover {
    color: var(--white);
    background-color: var(--jewelry-pink);
}

.footer-bottom {
    margin-top: 40px;

    color: var(--gray);
    text-align: center;

    font-size: 12px;
}

/* =====================================================
   GENEL BUTON
===================================================== */

.btn-jewelry {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding: 0 24px;

    color: var(--white);
    background-color: var(--jewelry-pink);

    border: 1px solid var(--jewelry-pink);
    border-radius: 30px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;

    cursor: pointer;

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

.btn-jewelry:hover {
    color: var(--white);
    background-color: var(--jewelry-pink-dark);
    border-color: var(--jewelry-pink-dark);

    transform: translateY(-2px);
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 992px) {
    :root {
        --header-height: 82px;
    }

    .main-header {
        grid-template-columns: auto 1fr;

        padding: 8px 20px;
    }

    .navbar-logo {
        width: 62px;
        height: 62px;
    }

    .nav-menu {
        display: none;
    }

    .nav-icons {
        gap: 8px;
    }

    .triple-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =====================================================
   MOBİL
===================================================== */

@media (max-width: 768px) {
    .main-header {
        padding: 8px 16px;
    }

    .hero-slider {
        min-height: 500px;
    }

    .full-banner {
        padding: 40px 20px;
    }

    .banner-image {
        height: 55vh;
        min-height: 380px;
    }

    .triple-grid {
        padding: 20px 20px 50px;
    }

    .double-grid {
        padding: 0 20px 60px;
    }

    .footer {
        padding: 50px 20px 25px;
    }
}

@media (max-width: 576px) {
    :root {
        --header-height: 74px;
    }

    .main-header {
        padding: 7px 12px;
    }

    .navbar-logo {
        width: 54px;
        height: 54px;

        box-shadow:
            0 4px 14px rgba(238, 159, 187, 0.2),
            0 0 0 3px rgba(255, 244, 248, 0.9);
    }

    .nav-icons {
        gap: 2px;
    }

    .icon-btn {
        width: 34px;
        height: 34px;

        padding: 5px;
    }

    .icon-btn svg {
        width: 19px;
        height: 19px;
    }

    .search-box {
        position: fixed;
        top: calc(var(--header-height) + 8px);
        left: 12px;
        right: 12px;
    }

    .search-box input {
        width: 100%;
    }

    .category-menu {
        padding: 15px 20px;
    }

    .hero-slider {
        height: calc(100vh - var(--header-height));
        min-height: 450px;
    }

    .slider-dots {
        bottom: 20px;
    }

    .full-banner {
        padding: 35px 15px;
    }

    .banner-image {
        height: 50vh;
        min-height: 330px;

        margin-bottom: 25px;
    }

    .banner-content h2 {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .banner-content p {
        font-size: 13px;
    }

    .triple-grid {
        padding: 15px 15px 45px;
    }

    .double-grid {
        padding: 0 15px 50px;
    }

    .double-grid h3 {
        font-size: 19px;
    }

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

    .footer {
        margin-top: 50px;
        padding: 45px 20px 25px;
    }

    .footer-bottom {
        margin-top: 30px;
    }
}

/* =====================================================
   ÇOK KÜÇÜK EKRANLAR
===================================================== */

@media (max-width: 390px) {
    .main-header {
        padding-left: 8px;
        padding-right: 8px;
    }

    .navbar-logo {
        width: 50px;
        height: 50px;
    }

    .icon-btn {
        width: 31px;
        height: 31px;
    }

    .icon-btn svg {
        width: 18px;
        height: 18px;
    }

    .nav-icons {
        gap: 0;
    }
}

/* =====================================================
   DENİZE JEWELRY NAVBAR — SON HALİ
   BU KOD STYLE.CSS DOSYASININ EN ALTINDA OLMALI
===================================================== */

@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&family=Montserrat:wght@300;400;500;600&display=swap");
/* =========================================
   DENİZE JEWELRY NAVBAR DÜZELTME
========================================= */
/* =========================================
   NAVBAR KESİN DÜZELTME
========================================= */
/* =====================================================
   TEMİZ NAVBAR VE MOBİL MENÜ
===================================================== */

:root {
    --header-height: 76px;
    --nav-pink: #e996b4;
    --nav-pink-dark: #a97083;
    --nav-border: #f2dce4;
    --nav-soft: #fff7fa;
}

/* HEADER */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1100;

    width: 100%;
    height: var(--header-height);

    display: grid;
    grid-template-columns: 90px 1fr auto;
    align-items: center;

    padding: 0 32px;

    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--nav-border);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    box-shadow: 0 5px 25px rgba(169, 112, 131, 0.08);
}

/* LOGO */

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo a {
    width: 58px;
    height: 58px;

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

    overflow: hidden;

    background: #ffffff;
    border: 1px solid var(--nav-border);
    border-radius: 50%;

    box-shadow: 0 5px 16px rgba(169, 112, 131, 0.12);
}

.navbar-logo {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    border-radius: 50%;
    transform: scale(1.16);
}

/* MASAÜSTÜ KATEGORİ */

.desktop-category-menu {
    justify-self: center;
}

.desktop-category-menu .nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 28px;
}

.desktop-category-menu .nav-menu a {
    position: relative;

    color: var(--nav-pink-dark);
    text-decoration: none;

    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.4px;

    transition: color 0.25s ease;
}

.desktop-category-menu .nav-menu a::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: var(--nav-pink);

    transform: translateX(-50%);
    transition: width 0.25s ease;
}

.desktop-category-menu .nav-menu a:hover {
    color: var(--nav-pink);
}

.desktop-category-menu .nav-menu a:hover::after {
    width: 100%;
}

/* SAĞ İKONLAR */

.nav-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 5px;
}

.icon-btn,
.mobile-menu-btn {
    width: 39px;
    height: 39px;

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

    padding: 8px;

    color: var(--nav-pink-dark);
    background: transparent;

    border: none;
    border-radius: 50%;

    text-decoration: none;
    cursor: pointer;

    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

.icon-btn:hover,
.mobile-menu-btn:hover {
    color: #ffffff;
    background: var(--nav-pink);

    transform: translateY(-1px);
}

.icon-btn svg {
    width: 21px;
    height: 21px;
}

/* ARAMA */

.search-wrapper {
    position: relative;
}

.search-box {
    position: absolute;
    top: 52px;
    right: 0;
    z-index: 1200;

    display: none;
}

.search-box.active {
    display: block;

    animation: searchFade 0.2s ease;
}

.search-box input {
    width: 260px;
    height: 44px;

    padding: 0 18px;

    color: var(--nav-pink-dark);
    background: #ffffff;

    border: 1px solid var(--nav-border);
    border-radius: 24px;
    outline: none;

    font-size: 13px;

    box-shadow: 0 12px 35px rgba(169, 112, 131, 0.16);
}

.search-box input:focus {
    border-color: var(--nav-pink);

    box-shadow:
        0 12px 35px rgba(169, 112, 131, 0.16),
        0 0 0 4px rgba(233, 150, 180, 0.12);
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HAMBURGER */

.mobile-menu-btn {
    display: none;
    flex-direction: column;

    gap: 4px;
}

.mobile-menu-btn span {
    width: 19px;
    height: 1.5px;

    display: block;

    background: currentColor;
    border-radius: 20px;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

/* MOBİL MENÜ */

.mobile-navigation {
    position: fixed;
    top: 0;
    right: -360px;
    z-index: 1400;

    width: 340px;
    max-width: 88%;
    height: 100dvh;

    background: #ffffff;

    box-shadow: -12px 0 40px rgba(64, 38, 47, 0.15);

    visibility: hidden;

    transition:
        right 0.35s ease,
        visibility 0.35s ease;
}

.mobile-navigation.active {
    right: 0;
    visibility: visible;
}

.mobile-navigation-header {
    height: 72px;

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

    padding: 0 22px;

    border-bottom: 1px solid var(--nav-border);
}

.mobile-navigation-header > span {
    color: var(--nav-pink-dark);

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.mobile-menu-close {
    width: 38px;
    height: 38px;

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

    color: var(--nav-pink-dark);
    background: transparent;

    border: none;
    border-radius: 50%;

    cursor: pointer;
}

.mobile-menu-close:hover {
    color: #ffffff;
    background: var(--nav-pink);
}

.mobile-navigation-content {
    height: calc(100dvh - 72px);

    padding: 14px 22px 30px;

    overflow-y: auto;
}

.mobile-navigation-content > a,
.mobile-categories .nav-menu a {
    min-height: 54px;

    display: flex;
    align-items: center;

    padding: 0 6px;

    color: var(--nav-pink-dark);
    text-decoration: none;

    font-size: 14px;
    font-weight: 500;

    border-bottom: 1px solid #f6e8ed;

    transition:
        color 0.2s ease,
        padding-left 0.2s ease,
        background-color 0.2s ease;
}

.mobile-navigation-content > a:hover,
.mobile-categories .nav-menu a:hover {
    padding-left: 12px;

    color: var(--nav-pink);
    background: var(--nav-soft);
}

.mobile-categories .nav-menu {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: stretch;

    gap: 0;
}

.mobile-categories .nav-menu a::after {
    display: none;
}

/* Eğer component category-menu döndürüyorsa */

.mobile-categories .category-menu {
    position: static;

    width: 100%;

    display: block;

    padding: 0;

    background: transparent;
    border: none;
    box-shadow: none;
}

.mobile-categories .category-menu a {
    text-align: left;
}

/* OVERLAY */

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 1300;

    background: rgba(31, 21, 25, 0.35);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

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

body.mobile-menu-open {
    overflow: hidden;
}

/* HERO NAVBAR ALTINDA */

.hero-slider {
    margin-top: var(--header-height);
}

/* TABLET */

@media (max-width: 992px) {
    :root {
        --header-height: 70px;
    }

    .main-header {
        grid-template-columns: 70px 1fr;

        padding: 0 18px;
    }

    .logo a {
        width: 52px;
        height: 52px;
    }

    .desktop-category-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

/* MOBİL */

@media (max-width: 576px) {
    :root {
        --header-height: 64px;
    }

    .main-header {
        grid-template-columns: 58px 1fr;

        padding: 0 10px;
    }

    .logo a {
        width: 46px;
        height: 46px;
    }

    .nav-icons {
        gap: 1px;
    }

    .icon-btn,
    .mobile-menu-btn {
        width: 32px;
        height: 32px;

        padding: 6px;
    }

    .icon-btn svg {
        width: 18px;
        height: 18px;
    }

    .mobile-menu-btn span {
        width: 17px;
    }

    .search-box {
        position: fixed;
        top: calc(var(--header-height) + 8px);
        left: 12px;
        right: 12px;
    }

    .search-box input {
        width: 100%;
    }

    .mobile-navigation {
        width: 310px;
        max-width: 90%;
    }

    .mobile-navigation-header {
        height: 64px;

        padding: 0 18px;
    }

    .mobile-navigation-content {
        height: calc(100dvh - 64px);

        padding: 10px 18px 25px;
    }
}