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

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

:root {
    --jewelry-bg: #fbfaf8;
    --jewelry-white: #ffffff;

    --jewelry-soft: #f5f2ee;
    --jewelry-soft-2: #eee9e3;
    --jewelry-image-bg: #f7f4f0;

    --jewelry-text: #756f69;
    --jewelry-text-dark: #2f2b28;
    --jewelry-muted: #a39b94;

    --jewelry-border: #e8e2dc;

    --jewelry-accent: #9a8474;
    --jewelry-accent-dark: #746052;
    --jewelry-accent-light: #d7cbc1;

    --nav-text: #665a52;
    --nav-text-dark: #332e2a;
    --nav-accent: #8b7565;
    --nav-border: #e9e3dd;
    --nav-soft: #f7f4f0;

    --black: #1f1c1a;
    --dark: #3c3733;
    --gray: #938b85;
    --light-gray: #f7f5f2;
    --white: #ffffff;

    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    color: var(--black);
    background-color: var(--jewelry-bg);

    font-family: "Montserrat", sans-serif;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

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

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

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

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

    display: grid;
    grid-template-columns:
        minmax(250px, 1fr)
        auto
        minmax(220px, 1fr);

    align-items: center;

    padding: 0 32px;

    background: rgba(255, 255, 255, 0.97) !important;

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

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

    box-shadow: 0 5px 25px rgba(47, 43, 40, 0.06) !important;
}

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

.main-header .logo {
    min-width: 0;

    justify-self: start;

    display: flex;
    align-items: center;
}

.main-header .logo a {
    width: auto;
    height: auto;
    min-width: 0;

    display: inline-flex;
    align-items: center;

    gap: 12px;

    color: inherit;
    text-decoration: none;
}

.main-header .navbar-logo {
    width: 62px;
    height: 62px;
    flex-shrink: 0;

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

    background-color: var(--white);

    border: 1px solid var(--nav-border) !important;
    border-radius: 50%;

    box-shadow:
        0 5px 18px rgba(47, 43, 40, 0.1),
        0 0 0 4px rgba(247, 244, 240, 0.95) !important;

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

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

    box-shadow:
        0 8px 24px rgba(47, 43, 40, 0.14),
        0 0 0 5px rgba(247, 244, 240, 1) !important;
}

.main-header .navbar-brand-name {
    min-width: 0;

    display: inline-block;

    color: var(--nav-text-dark) !important;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    font-weight: 400;
    letter-spacing: 0.4px;

    white-space: nowrap;

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

.main-header .logo a:hover .navbar-brand-name {
    color: var(--nav-accent) !important;

    transform: translateX(2px);
}

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

.main-header .desktop-category-menu {
    min-width: 0;

    justify-self: center;
}

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

    gap: 28px;
}

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

    color: var(--nav-text) !important;

    text-decoration: none;

    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.55px;

    white-space: nowrap;

    transition: color 0.25s ease;
}

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

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

    width: 0;
    height: 1px;

    background-color: var(--nav-accent) !important;

    transform: translateX(-50%);

    transition: width 0.25s ease;
}

.main-header .nav-menu a:hover,
.main-header .desktop-category-menu .nav-menu a:hover,
.main-header .category-menu a:hover {
    color: var(--nav-accent) !important;
}

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

/* =====================================================
   SAĞ NAVBAR İKONLARI
===================================================== */

.main-header .nav-icons {
    position: relative;

    justify-self: end;

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

    gap: 4px;
}

.main-header .icon-btn,
.main-header .mobile-menu-btn {
    width: 39px;
    height: 39px;
    flex-shrink: 0;

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

    padding: 8px;

    color: var(--nav-text-dark) !important;
    background-color: transparent !important;

    border: none;
    border-radius: 50%;

    text-decoration: none;

    cursor: pointer;

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

.main-header .icon-btn:hover,
.main-header .mobile-menu-btn:hover {
    color: var(--white) !important;
    background-color: var(--nav-accent) !important;

    transform: translateY(-2px);
}

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

    display: block;
}

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

.main-header .search-wrapper {
    position: relative;
}

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

    display: none;
}

.main-header .search-box.active {
    display: block;

    animation: searchFade 0.22s ease;
}

.main-header .search-box form {
    margin: 0;
}

.main-header .search-box input {
    width: 270px;
    height: 45px;

    padding: 0 18px;

    color: var(--nav-text-dark) !important;
    background-color: var(--white) !important;

    border: 1px solid var(--nav-border) !important;
    border-radius: 3px;
    outline: none;

    font-size: 12px;

    box-shadow: 0 14px 38px rgba(47, 43, 40, 0.1);

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

.main-header .search-box input::placeholder {
    color: var(--jewelry-muted);
}

.main-header .search-box input:focus {
    border-color: var(--jewelry-accent) !important;

    box-shadow:
        0 14px 38px rgba(47, 43, 40, 0.1),
        0 0 0 4px rgba(154, 132, 116, 0.1) !important;
}

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

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

/* =====================================================
   SEPET
===================================================== */

.main-header .cart-icon {
    position: relative;

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

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

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

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

    padding: 0 4px;

    color: var(--white) !important;
    background-color: var(--jewelry-accent-dark) !important;

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

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

/* =====================================================
   HAMBURGER
===================================================== */

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

    gap: 4px;
}

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

    display: block;

    background-color: 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-color: var(--white) !important;

    box-shadow: -12px 0 40px rgba(47, 43, 40, 0.14);

    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) !important;
}

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

    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

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

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

    padding: 8px;

    color: var(--nav-text-dark) !important;
    background-color: transparent !important;

    border: none;
    border-radius: 50%;

    cursor: pointer;

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

.mobile-menu-close svg {
    width: 22px;
    height: 22px;
}

.mobile-menu-close:hover {
    color: var(--white) !important;
    background-color: var(--nav-accent) !important;
}

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

    padding: 14px 22px 30px;

    overflow-y: auto;
}

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

    display: flex;
    align-items: center;

    padding: 0 6px;

    color: var(--nav-text) !important;
    background-color: transparent;

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

    text-align: left;
    text-decoration: none;

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

    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,
.mobile-categories .category-menu a:hover {
    padding-left: 12px;

    color: var(--nav-accent) !important;
    background-color: var(--nav-soft) !important;
}

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

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

    gap: 0;
}

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

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

    width: 100%;

    display: block;

    padding: 0;

    background-color: transparent;

    border: none;
    box-shadow: none;
}

/* =====================================================
   MOBİL MENÜ OVERLAY
===================================================== */

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

    background-color: rgba(31, 28, 26, 0.38);

    opacity: 0;
    visibility: hidden;

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

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

/* =====================================================
   TEMP DATA BİLDİRİMİ
===================================================== */

.site-toast-wrapper {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;

    width: min(370px, calc(100% - 30px));

    animation: toastOpen 0.35s ease;
}

.site-toast-wrapper.closing {
    animation: toastClose 0.3s ease forwards;
}

.site-toast {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 34px;
    align-items: center;

    gap: 13px;

    padding: 16px;

    color: var(--jewelry-text-dark);
    background: rgba(255, 255, 255, 0.97);

    border: 1px solid var(--jewelry-border);
    border-left: 3px solid var(--jewelry-accent-dark);
    border-radius: 5px;

    box-shadow: 0 18px 45px rgba(47, 43, 40, 0.15);

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

.site-toast-icon {
    width: 42px;
    height: 42px;

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

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

    border-radius: 50%;

    font-size: 18px;
}

.site-toast-content {
    min-width: 0;
}

.site-toast-content strong {
    display: block;

    margin-bottom: 4px;

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

    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    font-weight: 400;
}

.site-toast-content span {
    display: block;

    color: var(--jewelry-text);

    font-size: 10px;
    line-height: 1.6;
}

.site-toast-close {
    width: 32px;
    height: 32px;

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

    color: var(--jewelry-muted);
    background: transparent;

    border: none;
    border-radius: 50%;

    cursor: pointer;

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

.site-toast-close:hover {
    color: var(--jewelry-text-dark);
    background: var(--jewelry-soft);
}

@keyframes toastOpen {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

@keyframes toastClose {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(30px);
    }
}

/* =====================================================
   ANA SAYFA
===================================================== */

.jewelry-home {
    width: 100%;

    overflow: hidden;

    background-color: var(--jewelry-bg);
}

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

.jewelry-hero-split {
    width: 100%;
    min-height: calc(100vh - var(--header-height));

    display: grid;
    grid-template-columns: 42% 58%;

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

    background-color: var(--jewelry-soft);
}

.hero-split-content {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 80px 7vw;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(154, 132, 116, 0.12),
            transparent 35%
        ),
        var(--jewelry-soft);
}

.hero-split-content::after {
    content: "";

    position: absolute;
    top: 10%;
    right: 0;

    width: 1px;
    height: 80%;

    background-color: var(--jewelry-border);
}

.hero-split-eyebrow {
    display: block;

    margin-bottom: 23px;

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

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;

    text-transform: uppercase;
}

.hero-split-content h1 {
    max-width: 550px;

    margin-bottom: 27px;

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

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(54px, 6vw, 92px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -3px;
}

.hero-split-content h1 em {
    display: block;

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

    font-weight: 400;
}

.hero-split-content p {
    max-width: 440px;

    margin-bottom: 38px;

    color: var(--jewelry-text);

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

.hero-split-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 25px;
}

.hero-main-button {
    min-height: 52px;

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

    padding: 0 30px;

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

    border: 1px solid var(--jewelry-accent-dark);
    border-radius: 3px;

    text-decoration: none;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;

    text-transform: uppercase;

    box-shadow: 0 9px 24px rgba(47, 43, 40, 0.1);

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

.hero-main-button:hover {
    color: var(--white);
    background-color: var(--jewelry-text-dark);
    border-color: var(--jewelry-text-dark);

    box-shadow: 0 13px 30px rgba(47, 43, 40, 0.15);

    transform: translateY(-2px);
}

.hero-text-link {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    padding-bottom: 5px;

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

    border-bottom: 1px solid var(--jewelry-accent-light);

    text-decoration: none;

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

    transition:
        color 0.25s ease,
        gap 0.25s ease;
}

.hero-text-link svg {
    width: 18px;
    height: 18px;
}

.hero-text-link:hover {
    color: var(--jewelry-text-dark);

    gap: 15px;
}

.hero-split-note {
    position: absolute;
    left: 7vw;
    bottom: 35px;

    display: flex;
    align-items: center;

    gap: 10px;

    color: var(--jewelry-muted);

    font-size: 9px;
    font-weight: 500;
    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.hero-split-note span {
    width: 35px;
    height: 1px;

    background-color: var(--jewelry-accent);
}

.hero-split-visual {
    position: relative;

    min-height: calc(100vh - var(--header-height));

    overflow: hidden;

    background-color: var(--jewelry-soft-2);
}

.hero-split-image {
    position: absolute;
    inset: 0;

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

    transition: transform 1.2s ease;
}

.hero-split-visual:hover .hero-split-image {
    transform: scale(1.025);
}

.hero-image-badge {
    position: absolute;
    right: 32px;
    bottom: 30px;

    width: 115px;
    height: 115px;

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

    color: var(--jewelry-text-dark);
    background-color: rgba(255, 255, 255, 0.9);

    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 50%;

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

    box-shadow: 0 15px 40px rgba(47, 43, 40, 0.14);
}

.hero-image-badge strong {
    margin-bottom: 4px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    font-weight: 400;
}

.hero-image-badge span {
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 1.5px;

    text-transform: uppercase;
}

/* =====================================================
   MARKA GİRİŞİ
===================================================== */

.brand-introduction {
    max-width: 850px;

    margin: 0 auto;
    padding: 110px 30px 95px;

    text-align: center;
}

.section-eyebrow {
    display: block;

    margin-bottom: 18px;

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

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;

    text-transform: uppercase;
}

.brand-introduction h2,
.section-heading h2,
.featured-content h2 {
    color: var(--jewelry-text-dark);

    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

.brand-introduction h2 {
    margin-bottom: 23px;

    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.15;
}

.brand-introduction p {
    max-width: 650px;

    margin: 0 auto;

    color: var(--jewelry-text);

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

/* =====================================================
   KOLEKSİYONLAR
===================================================== */

.collection-section {
    max-width: 1500px;

    margin: 0 auto;
    padding: 0 40px 120px;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 36px;
}

.section-heading h2 {
    font-size: clamp(31px, 3vw, 45px);
}

.section-link {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    padding-bottom: 6px;

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

    border-bottom: 1px solid var(--jewelry-accent-light);

    text-decoration: none;

    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.7px;

    transition:
        color 0.25s ease,
        gap 0.25s ease;
}

.section-link svg {
    width: 18px;
    height: 18px;
}

.section-link:hover {
    color: var(--jewelry-text-dark);

    gap: 15px;
}

.collection-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    grid-template-rows: repeat(2, 370px);

    gap: 20px;
}

.collection-card {
    position: relative;

    min-height: 370px;

    display: block;

    overflow: hidden;

    color: var(--white);
    background-color: var(--jewelry-soft-2);

    text-decoration: none;
}

.collection-card-large {
    grid-row: span 2;
}

.collection-image {
    position: absolute;
    inset: 0;

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

    transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.collection-card:hover .collection-image {
    transform: scale(1.06);
}

.collection-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(20, 18, 16, 0.02) 20%,
            rgba(20, 18, 16, 0.7) 100%
        );
}

.collection-content {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 32px;
    z-index: 2;
}

.collection-content span {
    display: block;

    margin-bottom: 8px;

    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2px;

    text-transform: uppercase;
}

.collection-content h3 {
    margin-bottom: 18px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(27px, 3vw, 42px);
    font-weight: 400;
}

.collection-button {
    display: inline-flex;

    padding-bottom: 5px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.75);

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

    text-transform: uppercase;
}

/* =====================================================
   ÖZEL KOLEKSİYON
===================================================== */

.featured-collection {
    max-width: 1440px;

    margin: 0 auto;
    padding: 30px 60px 140px;

    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;

    gap: 100px;
}

.featured-image-wrapper {
    position: relative;

    min-height: 700px;
}

.featured-main-image {
    width: 82%;
    height: 650px;

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

.featured-small-image {
    position: absolute;
    right: 0;
    bottom: -25px;

    width: 42%;
    height: 340px;

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

    border: 12px solid var(--white);

    box-shadow: 0 14px 38px rgba(47, 43, 40, 0.1);
}

.featured-label {
    position: absolute;
    top: 42px;
    right: 18px;

    padding: 16px 20px;

    color: var(--jewelry-accent-dark);
    background-color: var(--jewelry-soft);

    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;

    writing-mode: vertical-rl;
}

.featured-content {
    max-width: 500px;
}

.featured-content h2 {
    margin-bottom: 25px;

    font-size: clamp(38px, 4vw, 60px);
    line-height: 1.12;
}

.featured-content > p {
    margin-bottom: 30px;

    color: var(--jewelry-text);

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

.featured-features {
    margin: 0 0 38px;
    padding: 0;

    list-style: none;
}

.featured-features li {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-bottom: 14px;

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

    font-size: 12px;
}

.featured-features li span {
    width: 6px;
    height: 6px;
    flex-shrink: 0;

    background-color: var(--jewelry-accent);
    border-radius: 50%;
}

/* =====================================================
   EDİTORYAL BANNER
===================================================== */

.editorial-banner {
    position: relative;

    min-height: 660px;

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

    overflow: hidden;

    text-align: center;
}

.editorial-background {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center 38%;
    background-repeat: no-repeat;

    transition: transform 1s ease;
}

.editorial-banner:hover .editorial-background {
    transform: scale(1.03);
}

.editorial-overlay {
    position: absolute;
    inset: 0;

    background-color: rgba(30, 27, 25, 0.48);
}

.editorial-content {
    position: relative;
    z-index: 2;

    max-width: 730px;

    padding: 60px 25px;

    color: var(--white);
}

.editorial-content > span {
    display: block;

    margin-bottom: 20px;

    font-size: 10px;
    font-weight: 500;
    letter-spacing: 4px;
}

.editorial-content h2 {
    margin-bottom: 22px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(43px, 5vw, 72px);
    font-weight: 400;
    line-height: 1.05;
}

.editorial-content p {
    max-width: 530px;

    margin: 0 auto 32px;

    color: rgba(255, 255, 255, 0.86);

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

.editorial-button {
    min-height: 50px;

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

    gap: 12px;

    padding: 0 28px;

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

    text-decoration: none;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;

    text-transform: uppercase;

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

.editorial-button svg {
    width: 18px;
    height: 18px;
}

.editorial-button:hover {
    color: var(--white);
    background-color: var(--jewelry-accent-dark);

    gap: 17px;
}

/* =====================================================
   AVANTAJLAR
===================================================== */

.service-benefits {
    max-width: 1440px;

    margin: 0 auto;
    padding: 75px 40px;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

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

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 16px;

    padding: 10px 28px;

    border-right: 1px solid var(--jewelry-border);
}

.benefit-item:last-child {
    border-right: none;
}

.benefit-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;

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

    color: var(--jewelry-accent-dark);
}

.benefit-icon svg {
    width: 31px;
    height: 31px;
}

.benefit-item h3 {
    margin-bottom: 6px;

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

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.benefit-item p {
    color: var(--jewelry-muted);

    font-size: 10px;
    line-height: 1.5;
}

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

.btn-jewelry {
    min-height: 46px;

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

    padding: 0 24px;

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

    border: 1px solid var(--jewelry-accent-dark);
    border-radius: 3px;

    text-decoration: none;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.7px;

    cursor: pointer;

    box-shadow: 0 8px 22px rgba(47, 43, 40, 0.09);

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

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

    box-shadow: 0 11px 28px rgba(47, 43, 40, 0.14);

    transform: translateY(-2px);
}

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

.footer {
    margin-top: 0;

    padding: 65px 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, minmax(0, 1fr));

    gap: 40px;
}

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

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

    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    font-weight: 400;
}

.footer-col a {
    display: block;

    margin-bottom: 10px;

    color: var(--gray);

    text-decoration: none;

    font-size: 11px;

    transition: color 0.25s ease;
}

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

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

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

.socials {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-top: 12px;

    font-size: 18px;
}

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

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

    margin: 0;

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

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

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

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

.footer-bottom {
    margin-top: 42px;
    padding-top: 25px;

    color: var(--gray);

    border-top: 1px solid var(--jewelry-border);

    text-align: center;

    font-size: 10px;
}

.footer-bottom p {
    margin: 0;
}

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

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

    .main-header {
        grid-template-columns: minmax(0, 1fr) auto;

        padding: 0 16px;
    }

    .main-header .logo a {
        width: auto;
        height: auto;

        gap: 10px;
    }

    .main-header .navbar-logo {
        width: 54px;
        height: 54px;
    }

    .main-header .navbar-brand-name {
        max-width: 180px;

        overflow: hidden;

        font-size: 20px;

        text-overflow: ellipsis;
        white-space: nowrap;
    }

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

    .main-header .nav-icons {
        justify-self: end;
    }

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

    .jewelry-hero-split {
        grid-template-columns: 46% 54%;
    }

    .hero-split-content {
        padding: 70px 45px;
    }

    .hero-split-content h1 {
        font-size: 62px;
    }

    .hero-split-note {
        left: 45px;
    }

    .collection-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 570px 420px;
    }

    .collection-card-large {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .featured-collection {
        padding: 30px 35px 120px;

        grid-template-columns: 1fr;

        gap: 75px;
    }

    .featured-image-wrapper {
        max-width: 760px;
    }

    .featured-content {
        max-width: 680px;

        margin: 0 auto;

        text-align: center;
    }

    .featured-features {
        display: inline-block;

        text-align: left;
    }

    .service-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .benefit-item:nth-child(2) {
        border-right: none;
    }

    .benefit-item:nth-child(-n + 2) {
        padding-bottom: 35px;

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

    .benefit-item:nth-child(n + 3) {
        padding-top: 35px;
    }

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

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

@media (max-width: 768px) {
    .jewelry-hero-split {
        min-height: auto;

        grid-template-columns: 1fr;
    }

    .hero-split-visual {
        min-height: 58vh;

        grid-row: 1;
    }

    .hero-split-content {
        min-height: auto;

        padding: 55px 24px 70px;

        grid-row: 2;
    }

    .hero-split-content::after {
        display: none;
    }

    .hero-split-content h1 {
        font-size: clamp(48px, 15vw, 68px);
    }

    .hero-split-content p {
        max-width: 100%;
    }

    .hero-split-note {
        position: static;

        margin-top: 38px;
    }

    .hero-image-badge {
        right: 18px;
        bottom: 18px;

        width: 90px;
        height: 90px;
    }

    .hero-image-badge strong {
        font-size: 19px;
    }

    .brand-introduction {
        padding: 80px 22px 70px;
    }

    .collection-section {
        padding: 0 18px 85px;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;

        gap: 17px;
    }

    .collection-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;

        gap: 14px;
    }

    .collection-card,
    .collection-card-large {
        min-height: 520px;

        grid-column: auto;
        grid-row: auto;
    }

    .collection-content {
        left: 24px;
        right: 24px;
        bottom: 25px;
    }

    .featured-collection {
        padding: 10px 20px 95px;

        gap: 60px;
    }

    .featured-image-wrapper {
        min-height: 560px;
    }

    .featured-main-image {
        width: 88%;
        height: 520px;
    }

    .featured-small-image {
        width: 45%;
        height: 250px;

        border-width: 8px;
    }

    .featured-label {
        top: 30px;
        right: 5px;
    }

    .featured-content {
        text-align: left;
    }

    .editorial-banner {
        min-height: 580px;
    }

    .editorial-background {
        background-position: 60% center;
    }

    .service-benefits {
        padding: 50px 20px;

        grid-template-columns: 1fr;
    }

    .benefit-item {
        justify-content: flex-start;

        padding: 25px 5px;

        border-right: none;
        border-bottom: 1px solid var(--jewelry-border);
    }

    .benefit-item:nth-child(-n + 2),
    .benefit-item:nth-child(n + 3) {
        padding: 25px 5px;
    }

    .benefit-item:last-child {
        border-bottom: none;
    }

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

    .site-toast-wrapper {
        right: 15px;
        bottom: 15px;
    }
}

/* =====================================================
   KÜÇÜK MOBİL
===================================================== */

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

    .main-header {
        grid-template-columns: minmax(0, 1fr) auto;

        padding: 0 8px;
    }

    .main-header .logo {
        min-width: 0;
    }

    .main-header .logo a {
        width: auto;
        height: auto;
        min-width: 0;

        gap: 8px;
    }

    .main-header .navbar-logo {
        width: 48px;
        height: 48px;

        flex-shrink: 0;

        box-shadow:
            0 4px 14px rgba(47, 43, 40, 0.1),
            0 0 0 3px rgba(247, 244, 240, 0.95) !important;
    }

    .main-header .navbar-brand-name {
        max-width: 125px;

        overflow: hidden;

        font-size: 17px;

        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .main-header .nav-icons {
        gap: 1px;
    }

    .main-header .icon-btn,
    .main-header .mobile-menu-btn {
        width: 33px;
        height: 33px;

        padding: 6px;
    }

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

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

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

    .main-header .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;
    }

    .hero-split-visual {
        min-height: 52vh;
    }

    .hero-split-content {
        padding: 45px 18px 55px;
    }

    .hero-split-actions {
        align-items: stretch;
        flex-direction: column;

        gap: 20px;
    }

    .hero-main-button {
        width: 100%;
    }

    .hero-text-link {
        align-self: flex-start;
    }

    .collection-card,
    .collection-card-large {
        min-height: 440px;
    }

    .featured-image-wrapper {
        min-height: 470px;
    }

    .featured-main-image {
        height: 430px;
    }

    .featured-small-image {
        height: 205px;
    }

    .featured-label {
        display: none;
    }

    .editorial-content h2 {
        font-size: 42px;
    }

    .footer-container {
        grid-template-columns: 1fr;

        gap: 30px;
    }

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

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

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

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

    .main-header .logo a {
        gap: 6px;
    }

    .main-header .navbar-logo {
        width: 43px;
        height: 43px;
    }

    .main-header .navbar-brand-name {
        max-width: 94px;

        font-size: 15px;
    }

    .main-header .nav-icons {
        gap: 0;
    }

    .main-header .icon-btn,
    .main-header .mobile-menu-btn {
        width: 31px;
        height: 31px;

        padding: 5px;
    }

    .main-header .icon-btn svg {
        width: 17px;
        height: 17px;
    }

    .hero-split-content h1 {
        font-size: 43px;
    }

    .brand-introduction {
        padding-right: 18px;
        padding-left: 18px;
    }

    .collection-section {
        padding-right: 12px;
        padding-left: 12px;
    }

    .collection-card,
    .collection-card-large {
        min-height: 400px;
    }

    .featured-collection {
        padding-right: 14px;
        padding-left: 14px;
    }

    .site-toast {
        grid-template-columns: 38px minmax(0, 1fr) 30px;

        gap: 10px;

        padding: 13px;
    }

    .site-toast-icon {
        width: 38px;
        height: 38px;
    }
}

/* =====================================================
   SABİT BİZE ULAŞIN BUTONU
===================================================== */

.floating-contact-button {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1250;

    min-height: 50px;

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

    gap: 10px;

    padding: 0 20px;

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

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

    text-decoration: none;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;

    box-shadow: 0 12px 30px rgba(47, 43, 40, 0.18);

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

.floating-contact-button i {
    font-size: 17px;
}

.floating-contact-button:hover {
    color: var(--jewelry-accent-dark);
    background-color: var(--white);
    border-color: var(--jewelry-accent-dark);

    box-shadow: 0 16px 36px rgba(47, 43, 40, 0.22);

    transform: translateY(-3px);
}

/* Toast açıkken butonun üstüne binmesin */
body:has(.site-toast-wrapper) .floating-contact-button {
    bottom: 115px;
}

@media (max-width: 576px) {
    .floating-contact-button {
        right: 15px;
        bottom: 15px;

        width: 52px;
        height: 52px;
        min-height: 52px;

        padding: 0;

        border-radius: 50%;
    }

    .floating-contact-button span {
        display: none;
    }

    .floating-contact-button i {
        font-size: 19px;
    }

    body:has(.site-toast-wrapper) .floating-contact-button {
        bottom: 100px;
    }
}