:root {
    --ml-cream: #fdf6eb;
    --ml-cream-deep: #f3eadc;
    --ml-paper: #fffdf9;
    --ml-ink: #171512;
    --ml-muted: #756f67;
    --ml-line: rgba(23, 21, 18, .14);
    --ml-gold: #9c7444;
    --ml-red: #8e312b;
    --ml-shadow: 0 20px 60px rgba(40, 31, 20, .12);
    --ml-container: 1440px;
    --ml-header-height: 82px;
}

.ml-site,
.ml-site * {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.ml-site {
    margin: 0;
    min-width: 320px;
    background: var(--ml-paper);
    color: var(--ml-ink);
    font-family: Inter, "Helvetica Neue", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.ml-site.is-locked {
    overflow: hidden;
}

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

.ml-site a {
    color: inherit;
    text-decoration: none;
}

.ml-site button,
.ml-site input,
.ml-site select,
.ml-site textarea {
    font: inherit;
}

.ml-site button {
    color: inherit;
}

.ml-site ul,
.ml-site ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ml-site h1,
.ml-site h2,
.ml-site h3,
.ml-site h4,
.ml-site p {
    margin-top: 0;
}

.ml-site h1,
.ml-site h2,
.ml-site h3 {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -.025em;
}

.ml-container {
    width: min(calc(100% - 64px), var(--ml-container));
    margin-inline: auto;
}

.ml-skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 10000;
    padding: 10px 16px;
    background: var(--ml-ink);
    color: #fff !important;
    transform: translateY(-150%);
}

.ml-skip-link:focus {
    transform: none;
}

.ml-announcement {
    position: relative;
    z-index: 90;
    padding: 8px 0;
    background: var(--ml-ink);
    color: #fff;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.ml-announcement .ml-container {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.ml-header {
    position: sticky;
    top: 0;
    z-index: 80;
    height: var(--ml-header-height);
    border-bottom: 1px solid var(--ml-line);
    background: rgba(253, 246, 235, .95);
    backdrop-filter: blur(16px);
    transition: box-shadow .25s ease, height .25s ease, background-color .25s ease;
}

.ml-header.is-scrolled {
    background: #fdf6eb;
    backdrop-filter: none;
    box-shadow: 0 8px 30px rgba(34, 27, 18, .08);
}

.ml-header__row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    height: 100%;
    gap: 36px;
}

.ml-logo {
    display: inline-flex;
    align-items: center;
    width: 132px;
}

.ml-logo img {
    width: 100%;
    height: auto;
}

.ml-nav {
    justify-self: center;
}

.ml-nav > ul {
    display: flex;
    align-items: center;
    gap: clamp(16px, 1.65vw, 30px);
}

.ml-nav li {
    position: relative;
}

.ml-nav > ul > li > a {
    display: block;
    padding: 30px 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.ml-nav > ul > li > a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 23px;
    left: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}

.ml-nav > ul > li:hover > a::after,
.ml-nav > ul > li:focus-within > a::after {
    transform: scaleX(1);
    transform-origin: left;
}

.ml-nav .fa {
    display: none;
}

.ml-nav .dropdown-menu {
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    display: grid;
    min-width: 230px;
    padding: 18px 0;
    border: 1px solid var(--ml-line);
    background: var(--ml-paper);
    box-shadow: var(--ml-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition: .2s ease;
}

.ml-nav li:hover > .dropdown-menu,
.ml-nav li:focus-within > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.ml-nav .dropdown-menu a {
    display: block;
    padding: 8px 24px;
    font-size: 13px;
}

.ml-nav .dropdown-menu a:hover {
    background: var(--ml-cream);
}

.ml-header__actions {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ml-icon-button {
    position: relative;
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.ml-icon-button:hover,
.ml-icon-button:focus-visible {
    background: rgba(23, 21, 18, .06);
}

.ml-site svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ml-cart-count {
    position: absolute;
    top: 2px;
    right: 0;
    display: grid;
    min-width: 18px;
    height: 18px;
    place-items: center;
    padding: 0 4px;
    border-radius: 99px;
    background: var(--ml-ink);
    color: #fff;
    font-size: 10px;
    line-height: 1;
}

.ml-menu-toggle {
    display: none;
}

.ml-menu-toggle span {
    display: block;
    width: 20px;
    height: 1px;
    margin: 3px 0;
    background: currentColor;
}

.ml-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.ml-search-panel {
    position: fixed;
    inset: 0;
    z-index: 160;
    display: grid;
    place-items: center;
    padding: 32px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
}

.ml-search-panel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.ml-search-panel__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(20, 16, 12, .62);
    backdrop-filter: blur(5px);
    cursor: default;
}

.ml-search-dialog {
    position: relative;
    width: min(1180px, 100%);
    min-height: min(650px, calc(100vh - 64px));
    overflow: hidden;
    background: var(--ml-cream);
    box-shadow: 0 32px 100px rgba(14, 10, 6, .28);
    transform: translateY(20px) scale(.985);
    transition: transform .38s cubic-bezier(.2, .7, .2, 1);
}

.ml-search-panel.is-open .ml-search-dialog {
    transform: none;
}

.ml-search-dialog::after {
    position: absolute;
    inset: 0 0 0 auto;
    width: 37%;
    background:
        linear-gradient(90deg, var(--ml-cream) 0, rgba(253, 246, 235, .06) 24%),
        url('../images/brand/4-yeni.jpg') center / cover no-repeat;
    content: "";
}

.ml-search-dialog__top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 92px;
    padding: 16px 28px 16px 42px;
    border-bottom: 1px solid var(--ml-line);
}

.ml-search-dialog__top > img {
    width: 132px;
    height: auto;
}

.ml-search-close {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 0;
    background: rgba(253, 246, 235, .82);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
    cursor: pointer;
}

.ml-search-close svg {
    width: 18px;
    height: 18px;
}

.ml-search-dialog__content {
    position: relative;
    z-index: 1;
    width: 63%;
    padding: clamp(68px, 8vh, 104px) 56px 48px 72px;
}

.ml-search-dialog__content h2 {
    max-width: 620px;
    margin: 0 0 20px;
    font-size: clamp(48px, 5vw, 74px);
}

.ml-search-dialog__content > p:not(.ml-eyebrow) {
    margin-bottom: 42px;
    color: var(--ml-muted);
}

.ml-search-form {
    width: 100%;
    margin: 0;
}

.ml-search-form__line {
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid var(--ml-ink);
}

.ml-search-form__line > svg {
    flex: 0 0 auto;
    width: 25px;
    height: 25px;
}

.ml-search-form input {
    flex: 1;
    min-width: 0;
    padding: 16px 0 18px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ml-ink);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(23px, 2.2vw, 32px);
    box-shadow: none;
    -webkit-appearance: none;
}

.ml-search-form input:focus,
.ml-search-form input:focus-visible,
.ml-search-form__line:focus-within {
    outline: 0;
    box-shadow: none;
}

.ml-search-form input::placeholder {
    color: rgba(23, 21, 18, .38);
}

.ml-search-form button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 0 18px 20px;
    border: 0;
    background: transparent;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
}

.ml-search-form button svg {
    width: 17px;
    height: 17px;
}

.ml-search-suggestions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 22px;
    margin-top: 28px;
    color: var(--ml-muted);
    font-size: 12px;
}

.ml-search-suggestions > span {
    width: 100%;
    margin-bottom: 3px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.ml-search-suggestions a {
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
}

.ml-search-suggestions a:hover,
.ml-search-suggestions a:focus-visible {
    border-color: currentColor;
    color: var(--ml-ink);
}

.ml-mobile-menu,
.ml-drawer-backdrop {
    display: none;
}

.ml-hero {
    position: relative;
    height: clamp(560px, calc(100vh - 115px), 860px);
    min-height: 560px;
    overflow: hidden;
    background: #25221e;
}

.ml-hero__slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.02);
    transition: opacity .8s ease, visibility .8s ease, transform 1.2s ease;
}

.ml-hero__slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.ml-hero__image {
    min-width: 0;
    background-position: center;
    background-size: cover;
}

.ml-hero__image--single {
    grid-column: 1 / -1;
}

.ml-hero__slide:nth-child(3) .ml-hero__image {
    background-position: center 35%;
}

.ml-hero__veil {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(10, 8, 6, .08) 0, rgba(10, 8, 6, .34) 72%),
        linear-gradient(90deg, rgba(10, 8, 6, .42), rgba(10, 8, 6, .14) 48%, rgba(10, 8, 6, .44));
}

.ml-hero__content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(88%, 700px);
    padding: 36px 48px 42px;
    color: #fff;
    text-align: center;
    transform: translate(-50%, -50%);
    text-shadow: 0 3px 24px rgba(0, 0, 0, .62);
}

.ml-hero__content h1,
.ml-hero__content h2 {
    max-width: 680px;
    margin: 0 auto 18px;
    color: inherit;
    font-size: clamp(52px, 6.2vw, 102px);
}

.ml-hero__content p:not(.ml-eyebrow) {
    margin-bottom: 30px;
    font-size: clamp(15px, 1.3vw, 19px);
}

.ml-eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;
}

.ml-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border: 1px solid transparent;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.ml-button--light {
    border-color: #fff;
    background: #fff;
    color: var(--ml-ink) !important;
    text-shadow: none;
}

.ml-button--light:hover {
    background: transparent;
    color: #fff !important;
}

.ml-site .ml-button--dark {
    border-color: var(--ml-ink);
    background: var(--ml-ink);
    color: #fff;
}

.ml-site .ml-button--dark:hover {
    background: var(--ml-gold);
    border-color: var(--ml-gold);
}

.ml-button--outline {
    border-color: var(--ml-ink);
    background: transparent;
}

.ml-button--outline:hover {
    background: var(--ml-ink);
    color: #fff;
}

.ml-hero__arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: grid;
    width: 60px;
    height: 60px;
    place-items: center;
    border: 1px solid rgba(23, 21, 18, .16);
    border-radius: 50%;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 10px 34px rgba(0, 0, 0, .24);
    color: var(--ml-ink);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.ml-hero__arrow:hover {
    background: var(--ml-ink);
    color: #fff;
    transform: translateY(-50%) scale(1.06);
}

.ml-hero__arrow svg { width: 24px; height: 24px; }

.ml-hero__arrow--prev { left: 28px; }
.ml-hero__arrow--next { right: 28px; }

.ml-hero__pagination {
    position: absolute;
    bottom: 28px;
    left: 50%;
    z-index: 5;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.ml-hero__pagination button {
    width: 36px;
    height: 3px;
    padding: 0;
    border: 0;
    background: rgba(255, 255, 255, .45);
    cursor: pointer;
}

.ml-hero__pagination button.is-active {
    background: #fff;
}

.ml-section {
    padding: clamp(72px, 8vw, 124px) 0;
}

.ml-section--soft {
    background: var(--ml-cream);
}

.ml-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: clamp(34px, 4vw, 58px);
}

.ml-section-heading--center {
    display: block;
    text-align: center;
}

.ml-section-heading h2 {
    margin-bottom: 0;
    font-size: clamp(36px, 4vw, 62px);
}

.ml-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 4px;
    border-bottom: 1px solid currentColor;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.ml-text-link svg,
.ml-collection-card__cta svg {
    width: 16px;
    height: 16px;
    transition: transform .2s ease;
}

.ml-text-link:hover svg,
.ml-collection-card:hover .ml-collection-card__cta svg {
    transform: translateX(4px);
}

.ml-collection-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(340px, .65fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 14px;
    min-height: clamp(600px, 52vw, 720px);
}

.ml-collection-card {
    position: relative;
    display: block;
    min-height: 0;
    overflow: hidden;
    background: #222;
    color: #fff;
}

.ml-collection-card:first-child {
    grid-row: 1 / 3;
}

.ml-collection-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(12, 10, 8, .08) 16%, rgba(12, 10, 8, .34) 55%, rgba(12, 10, 8, .93) 100%);
    transition: background .35s ease;
}

.ml-collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.2, .7, .2, 1);
}

.ml-collection-card:hover img {
    transform: scale(1.035);
}

.ml-collection-card:hover::after {
    background: linear-gradient(180deg, rgba(12, 10, 8, .05) 12%, rgba(12, 10, 8, .28) 50%, rgba(12, 10, 8, .9) 100%);
}

.ml-collection-card > div {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    max-width: 680px;
    padding: clamp(26px, 3vw, 48px);
    color: #fff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .56);
}

.ml-collection-card h3 {
    margin-bottom: 8px;
    color: inherit;
    font-size: clamp(30px, 3.4vw, 56px);
    line-height: 1.02;
}

.ml-collection-card:not(:first-child) h3 {
    font-size: clamp(28px, 2.4vw, 40px);
}

.ml-collection-card p {
    margin-bottom: 22px;
    color: rgba(255, 255, 255, .8);
}

.ml-collection-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff;
}

.ml-collection-card__count {
    display: block;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, .78);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.ml-collection-card__index {
    position: absolute;
    top: 24px;
    right: 28px;
    z-index: 3;
    color: rgba(255, 255, 255, .72);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 18px;
}

.ml-collections-heading {
    align-items: end;
}

.ml-collections-heading > p {
    max-width: 440px;
    margin: 0 0 6px;
    color: var(--ml-muted);
    font-size: 14px;
    line-height: 1.7;
}

.ml-product-grid,
.ml-product-grid.row,
.ml-product-grid .row,
.urunkat {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(24px, 2.5vw, 42px) 10px;
    width: 100%;
    margin: 0 !important;
}

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

.ml-pagination {
    display: flex !important;
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
    margin: clamp(44px, 6vw, 76px) 0 0;
    padding-top: clamp(24px, 3vw, 34px);
    border-top: 1px solid var(--ml-line);
}

.ml-pagination__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ml-pagination__item {
    display: block;
    margin: 0;
    padding: 0;
}

.ml-pagination__item > a {
    display: grid;
    min-width: 46px;
    height: 46px;
    place-items: center;
    padding: 0 13px;
    border: 1px solid var(--ml-line);
    background: transparent;
    color: var(--ml-ink);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.ml-pagination__item > a:hover,
.ml-pagination__item > a:focus-visible {
    border-color: var(--ml-gold);
    background: var(--ml-cream);
    color: var(--ml-gold);
    outline: 0;
}

.ml-pagination__item.active > a,
.ml-pagination__item.active > a:hover,
.ml-pagination__item.active > a:focus-visible {
    border-color: var(--ml-ink);
    background: var(--ml-ink);
    color: #fff;
}

.ml-pagination__item--arrow > a {
    font-size: 18px;
    font-weight: 400;
}

.ml-product-grid > .clearfix,
.ml-product-grid .clearfix:empty,
.urunkat > .clearfix {
    display: none !important;
}

.ml-product-cell,
.ml-product-grid .ml-product-cell,
.urunkat .ml-product-cell {
    float: none !important;
    width: auto !important;
    min-width: 0;
    margin: 0 !important;
    padding: 0 !important;
}

.ml-product-card {
    position: relative;
    min-width: 0;
}

.ml-product-card__media {
    position: relative;
    overflow: hidden;
    background: #f3f1ed;
}

.ml-card-gallery {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    outline: 0;
}

.ml-card-gallery:focus-visible {
    box-shadow: inset 0 0 0 2px var(--ml-ink);
}

.ml-card-gallery__link,
.ml-card-gallery__track,
.ml-card-gallery__slide {
    display: block;
    height: 100%;
}

.ml-card-gallery__track {
    display: flex;
    width: 100%;
    will-change: transform;
    transition: transform .42s cubic-bezier(.22, .72, .2, 1);
}

.ml-card-gallery__slide {
    flex: 0 0 100%;
    margin: 0;
    background: #f3f1ed;
}

.ml-card-gallery__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    color: transparent;
}

.ml-gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .12);
    opacity: 0;
    cursor: pointer;
    transform: translateY(-50%);
    transition: opacity .2s ease, background .2s ease;
}

.ml-gallery-arrow:hover {
    background: #fff;
}

.ml-gallery-arrow svg {
    width: 17px;
    height: 17px;
}

.ml-gallery-arrow--prev { left: 12px; }
.ml-gallery-arrow--next { right: 12px; }

.ml-product-card__media:hover .ml-gallery-arrow,
.ml-card-gallery:focus-within .ml-gallery-arrow {
    opacity: 1;
}

.ml-gallery-dots {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 4;
    display: flex;
    justify-content: center;
    gap: 5px;
    pointer-events: none;
}

.ml-gallery-dots i {
    width: 15px;
    height: 2px;
    background: rgba(255, 255, 255, .55);
    box-shadow: 0 1px 2px rgba(0, 0, 0, .25);
}

.ml-gallery-dots i.is-active {
    background: #fff;
}

.ml-card-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 6;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    pointer-events: none;
}

.ml-card-badges:empty {
    display: none;
}

.ml-card-badges span {
    padding: 6px 9px;
    border-radius: 99px;
    background: var(--ml-paper);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.ml-card-badges .ml-card-badge--sale {
    background: var(--ml-red);
    color: #fff;
}

.ml-card-badges .ml-card-badge--sold {
    background: var(--ml-ink);
    color: #fff;
}

.ml-quick-add {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 7;
    min-height: 46px;
    border: 0;
    background: rgba(23, 21, 18, .94);
    color: #fff !important;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: 0;
    cursor: pointer;
    transform: translateY(12px);
    transition: opacity .25s ease, transform .25s ease, background .2s ease;
}

a.ml-quick-add {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ml-product-card__media:hover .ml-quick-add,
.ml-product-card__media:focus-within .ml-quick-add {
    opacity: 1;
    transform: none;
}

.ml-quick-add:hover {
    background: var(--ml-gold);
}

.ml-product-card__media:has(.ml-gallery-dots) .ml-quick-add {
    bottom: 31px;
}

.ml-product-card__content {
    padding: 18px 3px 0;
}

.ml-product-card__brand {
    min-height: 16px;
    margin-bottom: 5px;
    color: var(--ml-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.ml-product-card__content h3 {
    min-height: 2.5em;
    margin-bottom: 10px;
    font-family: Inter, "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0;
}

.ml-product-card__content h3 a:hover {
    color: var(--ml-gold);
}

.ml-product-card__price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 7px;
    font-size: 13px;
}

.ml-price-old {
    color: var(--ml-muted);
    font-size: .9em;
    text-decoration: line-through;
}

.ml-price-old:empty,
.ml-price-old[data-oldprice="0"],
.ml-price-old[data-oldprice="0.00"] {
    display: none;
}

.ml-product-card__price strong {
    font-weight: 700;
}

.ml-price-pending {
    color: var(--ml-muted);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
}

.ml-purchase-pending {
    display: grid;
    grid-column: 1 / -1;
    gap: 6px;
    padding: 18px 20px;
    border: 1px solid var(--ml-line);
    background: #f7f1e8;
}

.ml-purchase-pending strong { font-size: 14px; }
.ml-purchase-pending span { color: var(--ml-muted); font-size: 12px; line-height: 1.55; }

.ml-empty-catalog {
    grid-column: 1 / -1;
    padding: 70px 20px;
    text-align: center;
}

.ml-empty-catalog h2 {
    margin-bottom: 12px;
    font-size: clamp(34px, 4vw, 52px);
}

.ml-empty-catalog p {
    margin-bottom: 24px;
    color: var(--ml-muted);
}

.ml-empty-catalog .ml-text-link {
    display: inline-flex;
}

.ml-campaign {
    position: relative;
    min-height: clamp(520px, 52vw, 760px);
    overflow: hidden;
    background: #221c18;
}

.ml-campaign > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ml-campaign__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 13, 10, .58), rgba(17, 13, 10, .08) 70%);
}

.ml-campaign__content {
    position: absolute;
    top: 50%;
    left: max(32px, calc((100% - min(calc(100% - 64px), var(--ml-container))) / 2));
    z-index: 2;
    max-width: 640px;
    color: #fff;
    transform: translateY(-50%);
}

.ml-campaign__content h2 {
    margin-bottom: 28px;
    color: inherit;
    font-size: clamp(48px, 6vw, 90px);
}

.ml-story__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    align-items: center;
    gap: clamp(48px, 8vw, 130px);
}

.ml-story__image {
    position: relative;
    padding: 7% 0 0 7%;
}

.ml-story__image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 72%;
    height: 74%;
    background: var(--ml-cream-deep);
}

.ml-story__image img {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 673 / 510;
    object-fit: cover;
    object-position: center;
}

.ml-story__content h2 {
    margin-bottom: 26px;
    font-size: clamp(42px, 5vw, 76px);
}

.ml-story__content > p:not(.ml-eyebrow) {
    max-width: 590px;
    margin-bottom: 28px;
    color: var(--ml-muted);
    font-size: 16px;
}

.ml-guide-links {
    border-top: 1px solid var(--ml-line);
}

.ml-guide-links a {
    display: grid;
    grid-template-columns: minmax(100px, .65fr) 1fr 20px;
    align-items: center;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid var(--ml-line);
    transition: padding-left .2s ease, color .2s ease;
}

.ml-guide-links a:hover {
    padding-left: 8px;
    color: var(--ml-gold);
}

.ml-guide-links span {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 20px;
}

.ml-guide-links small {
    color: var(--ml-muted);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ml-guide-links svg {
    width: 18px;
    height: 18px;
}

.ml-benefits {
    padding: 44px 0;
    border-top: 1px solid var(--ml-line);
    border-bottom: 1px solid var(--ml-line);
    background: var(--ml-paper);
}

.ml-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.ml-benefits__grid > div {
    display: grid;
    grid-template-columns: 34px 1fr;
    column-gap: 16px;
    padding: 5px 34px;
    border-right: 1px solid var(--ml-line);
}

.ml-benefits__grid > div:last-child {
    border-right: 0;
}

.ml-benefits svg {
    grid-row: 1 / 3;
    width: 28px;
    height: 28px;
}

.ml-benefits strong {
    font-size: 13px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.ml-benefits span {
    color: var(--ml-muted);
    font-size: 12px;
}

.ml-page-hero {
    padding-top: clamp(52px, 7vw, 100px);
    padding-bottom: 40px;
    border-bottom: 1px solid var(--ml-line);
}

.ml-page-hero h1,
.ml-page-hero h2,
.ml-page-hero .kat-title {
    margin: 0;
    font-size: clamp(42px, 6vw, 82px);
}

.ml-page-hero__row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
}

.ml-category-hero {
    padding-bottom: 34px;
}

.ml-category-hero__intro {
    max-width: 660px;
    margin: 24px 0 0;
    color: var(--ml-muted);
    font-size: 15px;
    line-height: 1.7;
}

.ml-category-controls {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-top: 32px;
}

.ml-category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ml-category-tabs a {
    padding: 10px 16px;
    border: 1px solid var(--ml-line);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ml-category-tabs a:hover,
.ml-category-tabs a.is-active {
    border-color: var(--ml-ink);
    background: var(--ml-ink);
    color: #fff;
}

.ml-perfume-filter-women .ml-catalog--collection .ml-product-cell:not([data-ml-product-family="women"]),
.ml-perfume-filter-men .ml-catalog--collection .ml-product-cell:not([data-ml-product-family="men"]),
.ml-perfume-filter-unisex .ml-catalog--collection .ml-product-cell:not([data-ml-product-family="unisex"]) {
    display: none;
}

.ml-category-sort-slot {
    display: flex;
    flex: 0 0 auto;
    align-items: flex-end;
    justify-content: flex-end;
    min-width: 180px;
}

.ml-category-sort-slot:empty {
    display: none;
}

.ml-category-sort-slot .katOrder {
    display: flex;
    justify-content: flex-end;
    margin: 0;
}

.ml-category-sort-slot .katOrder form,
.ml-category-sort-slot .katOrder table,
.ml-category-sort-slot .katOrder tbody,
.ml-category-sort-slot .katOrder tr {
    display: block;
    width: auto !important;
    margin: 0;
}

.ml-category-sort-slot .katOrder td {
    display: none;
    padding: 0;
}

.ml-category-sort-slot .katOrder td:nth-last-child(2) {
    display: block;
}

.ml-category-sort-slot .katOrder select {
    min-width: 180px;
    min-height: 38px;
    padding: 8px 36px 8px 12px;
    border: 1px solid var(--ml-line);
    border-radius: 0;
    background: var(--ml-paper);
    color: var(--ml-ink);
    font-size: 11px;
}

.ml-category-sort-slot #orderBy {
    width: auto !important;
    margin: 0 !important;
    border-radius: 0 !important;
}

.ml-category-sort-slot .item-order-line {
    display: none;
}

.ml-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: var(--ml-muted);
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.ml-breadcrumb > *::before {
    content: "/";
    margin-right: 8px;
}

.ml-breadcrumb > a:first-child::before {
    display: none;
}

.ml-breadcrumb > li {
    display: contents;
    list-style: none;
}

.ml-breadcrumb > li::before {
    content: none;
}

.ml-breadcrumb > li > a::before {
    content: "/";
    margin-right: 8px;
}

.ml-breadcrumb ol,
.ml-breadcrumb ul {
    display: contents;
}

.ml-catalog {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: clamp(34px, 5vw, 78px);
    padding-top: 44px;
    padding-bottom: 100px;
}

.ml-filters {
    min-width: 0;
}

.ml-filter-block {
    padding: 24px 0;
    border-bottom: 1px solid var(--ml-line);
}

.ml-filter-block:first-child {
    padding-top: 0;
}

.ml-filter-block h2,
.ml-filter-block .widget-title,
.ml-filter-block .page-title {
    margin: 0 0 18px;
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.ml-filter-block li {
    margin-bottom: 8px;
    font-size: 13px;
}

.ml-filter-block label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ml-filter-block input[type="checkbox"] {
    accent-color: var(--ml-ink);
}

.ml-filter-block .page-inner-content,
.ml-filter-block .widget-content,
.ml-filter-block table,
.ml-filter-block tbody,
.ml-filter-block tr,
.ml-filter-block td {
    display: block;
    width: 100% !important;
    padding: 0 !important;
    border: 0 !important;
}

.ml-catalog__content {
    min-width: 0;
}

.ml-catalog--collection {
    display: block;
    padding-top: 28px;
}

.ml-catalog--collection .ml-product-grid--catalog .page-inner-content {
    display: contents;
}

.ml-catalog--collection .ml-product-grid--catalog.is-normalized {
    grid-auto-flow: row;
}

.ml-catalog--collection .ml-product-grid--catalog.is-normalized > .page-inner-content {
    display: none !important;
}

.ml-catalog--collection .ml-product-grid--catalog.is-normalized > .ml-product-cell {
    grid-column: auto !important;
}

.ml-catalog--collection .ml-product-grid--catalog > .page-inner-content:first-of-type {
    display: none;
}

.ml-catalog--collection .katOrder {
    display: flex;
    grid-column: 1 / -1;
    justify-content: flex-end;
    margin: 0 0 22px;
}

.ml-catalog--collection .katOrder form,
.ml-catalog--collection .katOrder table,
.ml-catalog--collection .katOrder tbody,
.ml-catalog--collection .katOrder tr {
    display: block;
    width: auto !important;
}

.ml-catalog--collection .katOrder td {
    display: none;
}

.ml-catalog--collection .katOrder td:nth-last-child(2) {
    display: block;
}

.ml-catalog--collection .katOrder select {
    min-width: 180px;
}

.ml-catalog--collection .item-order-line {
    display: none;
}

.ml-filter-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding: 10px 16px;
    border: 1px solid var(--ml-line);
    background: transparent;
}

.ml-filter-toggle svg {
    width: 17px;
    height: 17px;
}

.ml-catalog .page-title,
.ml-catalog .katBaslik,
.ml-catalog .katDesc:empty,
.ml-catalog .clearfix {
    display: none;
}

.ml-catalog .page-inner-content,
.ml-catalog .katOrder {
    grid-column: 1 / -1;
}

.ml-catalog .katOrder {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 24px;
}

.ml-catalog select {
    min-height: 42px;
    padding: 8px 36px 8px 12px;
    border: 1px solid var(--ml-line);
    border-radius: 0;
    background: var(--ml-paper);
}

.ml-detail-shell {
    padding-top: 28px;
    padding-bottom: 100px;
}

.ml-detail-shell > .ml-breadcrumb {
    margin-bottom: 30px;
}

.ml-product-detail__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(340px, .72fr);
    gap: clamp(38px, 4.5vw, 76px);
    align-items: start;
}

.ml-product-detail__info {
    position: sticky;
    top: calc(var(--ml-header-height) + 24px);
    padding-top: 8px;
}

.ml-product-detail__info h1 {
    margin: 0 0 14px;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.02;
}

.ml-product-detail__meta {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
    border-top: 1px solid var(--ml-line);
    border-bottom: 1px solid var(--ml-line);
    color: var(--ml-muted);
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.ml-stock-state {
    color: #486047;
}

.ml-product-detail__price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 22px 0;
}

.ml-product-detail__price strong {
    font-size: 24px;
}

.ml-product-detail__summary {
    max-width: 520px;
    color: var(--ml-muted);
    font-size: 14px;
    font-style: italic;
    font-weight: 600;
    line-height: 1.55;
}

.ml-product-detail__variants {
    margin: 22px 0;
}

.ml-product-detail__variants table,
.ml-product-detail__variants tbody,
.ml-product-detail__variants tr,
.ml-product-detail__variants td {
    display: block;
    width: 100% !important;
}

.ml-product-detail__variants ul.urunSecim {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ml-product-detail__variants ul.urunSecim li {
    min-width: 42px;
    padding: 10px 13px;
    border: 1px solid var(--ml-line);
    text-align: center;
    cursor: pointer;
}

.ml-product-detail__variants ul.urunSecim li:hover,
.ml-product-detail__variants ul.urunSecim li.selected,
.ml-product-detail__variants ul.urunSecim li.active {
    border-color: var(--ml-ink);
    background: var(--ml-ink);
    color: #fff;
}

.ml-product-detail__purchase {
    display: grid;
    grid-template-columns: 112px minmax(220px, 1fr);
    gap: 12px;
    align-items: end;
}

.ml-quantity label {
    display: block;
    margin-bottom: 5px;
    color: var(--ml-muted);
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.ml-quantity select,
.ml-quantity input {
    width: 100% !important;
    height: 48px;
    border: 1px solid var(--ml-line);
    background: transparent;
    text-align: center;
}

.ml-quantity input[type="number"] {
    padding: 0 12px;
    border-color: var(--ml-ink);
    border-radius: 0;
    background: #fff;
    color: var(--ml-ink);
    font-size: 15px;
    font-weight: 700;
    box-shadow: none;
}

.ml-product-detail__purchase .ml-add-to-cart {
    width: 100%;
    min-height: 48px;
    padding-inline: 32px;
    white-space: nowrap;
}

.ml-sticky-cart {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 74;
    border-top: 1px solid var(--ml-line);
    background: rgba(255, 253, 249, .98);
    box-shadow: 0 -14px 38px rgba(34, 27, 18, .1);
    backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(calc(100% + 18px));
    transition: opacity .28s ease, visibility .28s ease, transform .36s cubic-bezier(.22, .72, .2, 1);
}

.ml-sticky-cart.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
}

.ml-sticky-cart__inner {
    display: grid;
    grid-template-columns: 66px minmax(220px, 1fr) auto minmax(230px, 320px);
    align-items: center;
    gap: clamp(16px, 2vw, 30px);
    width: min(calc(100% - 64px), var(--ml-container));
    min-height: 88px;
    margin-inline: auto;
    padding: 10px 0;
}

.ml-sticky-cart__image {
    width: 66px;
    height: 66px;
    overflow: hidden;
    background: var(--ml-cream-deep);
}

.ml-sticky-cart__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ml-sticky-cart__info {
    min-width: 0;
}

.ml-sticky-cart__info p {
    margin: 0 0 2px;
    color: var(--ml-muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.ml-sticky-cart__info h2 {
    margin: 0;
    overflow: hidden;
    font-size: clamp(19px, 1.7vw, 25px);
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ml-sticky-cart__price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    white-space: nowrap;
}

.ml-sticky-cart__price strong {
    font-size: 17px;
}

.ml-sticky-cart__button {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
}

.ml-sticky-cart__button small {
    font-size: inherit;
}

/* Search results */
.ml-search-results-page {
    padding: 34px 0 clamp(90px, 10vw, 150px);
    background: #fffdf9;
}

.ml-search-results-hero {
    padding-bottom: clamp(48px, 7vw, 90px);
}

.ml-search-results-hero .ml-breadcrumb {
    margin-bottom: clamp(46px, 6vw, 76px);
}

.ml-search-results-hero > div {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(300px, .6fr);
    align-items: end;
    gap: clamp(36px, 6vw, 90px);
}

.ml-search-results-hero .ml-eyebrow {
    grid-column: 1 / -1;
    margin-bottom: -18px;
}

.ml-search-results-hero h1 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(50px, 6.3vw, 92px);
    line-height: .98;
}

.ml-search-results-hero > div > p:last-child {
    margin: 0 0 8px;
    color: var(--ml-muted);
    font-size: 15px;
    line-height: 1.75;
}

.ml-advanced-search-form {
    display: grid;
    grid-template-columns: minmax(240px, 1.55fr) minmax(180px, .85fr) minmax(140px, .6fr) minmax(140px, .6fr) auto;
    align-items: end;
    gap: 1px;
    padding: 1px;
    border: 1px solid var(--ml-line);
    background: var(--ml-line);
}

.ml-search-field {
    min-width: 0;
    padding: 16px 18px 14px;
    background: var(--ml-cream);
}

.ml-search-field label {
    display: block;
    margin-bottom: 7px;
    color: var(--ml-muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.ml-search-field input,
.ml-search-field select {
    width: 100%;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: var(--ml-ink);
    font-family: Inter, Arial, sans-serif;
    font-size: 13px;
    box-shadow: none;
}

.ml-search-field input:focus,
.ml-search-field select:focus {
    outline: 0;
    box-shadow: none;
}

.ml-advanced-search-form > .ml-button {
    min-width: 166px;
    min-height: 81px;
    gap: 12px;
    border: 0;
}

.ml-advanced-search-form > .ml-button svg {
    width: 18px;
    height: 18px;
}

.ml-search-results-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin: clamp(58px, 7vw, 96px) 0 42px;
    padding-bottom: 26px;
    border-bottom: 1px solid var(--ml-line);
}

.ml-search-results-heading h2 {
    max-width: 880px;
    margin: 0;
    font-size: clamp(36px, 4.5vw, 64px);
    line-height: 1.06;
}

.ml-search-results-heading > span {
    flex: 0 0 auto;
    margin-bottom: 8px;
    color: var(--ml-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.ml-search-empty {
    padding: clamp(58px, 8vw, 100px);
    background: var(--ml-cream);
    text-align: center;
}

.ml-search-empty h2 {
    margin: 0 0 14px;
    font-size: clamp(38px, 5vw, 62px);
}

.ml-search-empty > p:not(.ml-eyebrow) {
    margin: 0 0 28px;
    color: var(--ml-muted);
}

.ml-favorite {
    width: 48px;
    height: 48px;
    border: 1px solid var(--ml-line);
    background: transparent;
    font-size: 24px;
    cursor: pointer;
}

.ml-product-assurances {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 26px 0;
    padding: 18px 0;
    border-top: 1px solid var(--ml-line);
    border-bottom: 1px solid var(--ml-line);
}

.ml-product-assurances > div {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--ml-muted);
    font-size: 11px;
}

.ml-product-assurances i {
    display: grid;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    place-items: center;
    border: 1px solid var(--ml-line);
    border-radius: 50%;
    color: var(--ml-ink);
    font-style: normal;
}

.ml-product-assurances strong {
    display: block;
    color: var(--ml-ink);
    font-size: 10px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.ml-product-accordions details {
    border-bottom: 1px solid var(--ml-line);
}

.ml-product-accordions {
    border-top: 1px solid var(--ml-line);
}

.ml-product-accordions summary {
    position: relative;
    padding: 18px 28px 18px 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    list-style: none;
}

.ml-product-accordions summary::-webkit-details-marker {
    display: none;
}

.ml-product-accordions summary::after {
    content: "+";
    position: absolute;
    right: 2px;
    font-size: 20px;
    font-weight: 300;
}

.ml-product-accordions details[open] summary::after {
    content: "−";
}

.ml-richtext {
    padding: 0 0 20px;
    color: var(--ml-muted);
    font-size: 13px;
}

.ml-richtext img,
.ml-richtext table {
    max-width: 100%;
}

.ml-detail-gallery__main {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f3f1ed;
}

.ml-detail-gallery__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    cursor: zoom-in;
    transition: opacity .35s ease;
}

.ml-detail-gallery__slide::after {
    content: "Görseli büyüt  ↗";
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 9px 13px;
    background: rgba(23, 21, 18, .88);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    opacity: 0;
    pointer-events: none;
    text-transform: uppercase;
    transform: translateY(5px);
    transition: opacity .22s ease, transform .22s ease;
}

.ml-detail-gallery__slide:hover::after,
.ml-detail-gallery__slide:focus-visible::after {
    opacity: 1;
    transform: none;
}

.ml-detail-gallery__slide:focus-visible {
    outline: 1px solid var(--ml-ink);
    outline-offset: -5px;
}

.ml-detail-gallery__slide.is-active {
    opacity: 1;
    visibility: visible;
}

.ml-detail-gallery__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ml-detail-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.ml-detail-gallery__thumbs button {
    aspect-ratio: 1;
    padding: 0;
    overflow: hidden;
    border: 1px solid transparent;
    background: #f3f1ed;
    opacity: .65;
    cursor: pointer;
}

.ml-detail-gallery__thumbs button.is-active {
    border-color: var(--ml-ink);
    opacity: 1;
}

.ml-detail-gallery__thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ml-lightbox[hidden] {
    display: none;
}

.ml-lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    min-width: 320px;
    padding: 0 clamp(20px, 3vw, 54px) 22px;
    background: rgba(18, 16, 13, .97);
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity .26s ease, visibility .26s ease;
}

.ml-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.ml-lightbox__topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    min-height: 84px;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.ml-lightbox__topbar > div {
    min-width: 0;
}

.ml-lightbox__topbar > div span {
    display: block;
    margin-bottom: 2px;
    color: #c5a77c;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.ml-lightbox__topbar strong {
    display: block;
    overflow: hidden;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ml-lightbox__count {
    color: rgba(255, 255, 255, .68);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
}

.ml-lightbox__close,
.ml-lightbox__arrow,
.ml-lightbox__thumbs button {
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.ml-lightbox__close {
    display: inline-flex;
    align-items: center;
    justify-self: end;
    gap: 12px;
    min-height: 44px;
    padding: 0;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.ml-lightbox__close svg,
.ml-lightbox__arrow svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.4;
}

.ml-lightbox__close:focus-visible,
.ml-lightbox__arrow:focus-visible,
.ml-lightbox__thumbs button:focus-visible {
    outline: 1px solid #fff;
    outline-offset: 4px;
}

.ml-lightbox__stage {
    position: relative;
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr) 62px;
    align-items: center;
    min-height: 0;
    padding: 20px 0 16px;
}

.ml-lightbox__stage figure {
    display: grid;
    width: 100%;
    height: 100%;
    min-height: 0;
    margin: 0;
    place-items: center;
}

.ml-lightbox__stage img {
    width: 100%;
    max-width: min(100%, 1040px);
    height: 100%;
    max-height: calc(100vh - 190px);
    object-fit: contain;
    opacity: 1;
    transform: scale(1);
    transition: opacity .18s ease, transform .26s ease;
}

.ml-lightbox__stage img.is-loading {
    opacity: .18;
    transform: scale(.992);
}

.ml-lightbox__arrow {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: 50%;
    transition: border-color .2s ease, background-color .2s ease;
}

.ml-lightbox__arrow:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .08);
}

.ml-lightbox__arrow--prev {
    justify-self: start;
}

.ml-lightbox__arrow--next {
    justify-self: end;
}

.ml-lightbox__thumbs {
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    overflow-x: auto;
    padding: 5px 4px 1px;
    scrollbar-width: thin;
}

.ml-lightbox__thumbs button {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    padding: 3px;
    border: 1px solid transparent;
    opacity: .48;
    transition: border-color .2s ease, opacity .2s ease;
}

.ml-lightbox__thumbs button:hover,
.ml-lightbox__thumbs button.is-active {
    border-color: rgba(255, 255, 255, .86);
    opacity: 1;
}

.ml-lightbox__thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.urunDetay_benzer {
    margin-top: clamp(72px, 8vw, 120px);
    padding-top: 48px;
    border-top: 1px solid var(--ml-line);
}

.urunDetay_benzer .container,
.urunDetay_benzer .product-wrap {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.urunDetay_benzer .title-wrap {
    margin-bottom: 34px;
}

.urunDetay_benzer .section-title {
    margin: 0;
    font-size: clamp(32px, 4vw, 52px);
}

.urunDetay_benzer .section-title span {
    background: transparent !important;
}

.urunDetay_benzer .product-slider {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 36px 10px;
}

.urunDetay_benzer .owl-stage-outer,
.urunDetay_benzer .owl-stage {
    display: contents;
}

.ml-content-page {
    min-height: 55vh;
    padding-top: 32px;
    padding-bottom: 100px;
}

.ml-content-page > .ml-breadcrumb {
    margin-bottom: 32px;
}

.ml-content-page .page-title,
.ml-content-page h1 {
    font-size: clamp(40px, 5vw, 70px);
}

.ml-content-page input[type="text"],
.ml-content-page input[type="email"],
.ml-content-page input[type="password"],
.ml-content-page input[type="tel"],
.ml-content-page input[type="number"],
.ml-content-page select,
.ml-content-page textarea {
    max-width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid var(--ml-line);
    border-radius: 0;
    background: #fff;
}

.ml-content-page input[type="submit"],
.ml-content-page button,
.ml-content-page .button,
.ml-content-page .formGonderButton {
    min-height: 44px;
    padding: 10px 22px;
    border: 1px solid var(--ml-ink);
    background: var(--ml-ink);
    color: #fff;
    cursor: pointer;
}

.ml-content-page table {
    max-width: 100%;
}

/* Service pages */
.ml-service-page {
    padding: 34px 0 clamp(88px, 10vw, 150px);
    background: #fffdf9;
}

.ml-service-hero {
    padding-top: 10px;
    padding-bottom: clamp(50px, 7vw, 92px);
}

.ml-service-hero .ml-breadcrumb {
    margin-bottom: clamp(48px, 6vw, 78px);
}

.ml-service-hero > h1,
.ml-faq-hero h1 {
    max-width: 1000px;
    margin: 0 0 22px;
    font-size: clamp(50px, 6.6vw, 96px);
    line-height: .98;
}

.ml-service-hero > p:not(.ml-eyebrow),
.ml-faq-hero > div > p {
    max-width: 650px;
    margin: 0;
    color: var(--ml-muted);
    font-size: 16px;
    line-height: 1.75;
}

.ml-track-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
    align-items: stretch;
    min-height: 640px;
}

.ml-track-visual {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    background: #26211c;
}

.ml-track-visual::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(13, 10, 7, .82));
    content: "";
}

.ml-track-visual > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ml-track-visual > div {
    position: absolute;
    right: clamp(28px, 4vw, 58px);
    bottom: clamp(30px, 4vw, 54px);
    left: clamp(28px, 4vw, 58px);
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    color: #fff;
}

.ml-track-visual span {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 24px;
}

.ml-track-visual p { max-width: 430px; margin: 0; font-size: 15px; line-height: 1.7; }

.ml-track-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(44px, 6vw, 92px);
    background: var(--ml-cream);
}

.ml-track-card h2 {
    margin: 0 0 14px;
    font-size: clamp(38px, 4vw, 58px);
}

.ml-track-card__intro { max-width: 480px; margin: 0 0 42px; color: var(--ml-muted); line-height: 1.7; }
.ml-track-card .page-inner-content { margin: 0 !important; padding: 0 !important; }
html body .ml-track-card form.generatedForm { display: block !important; width: 100% !important; margin: 0 !important; }
html body .ml-track-card form.generatedForm .sf-form-container { width: 100% !important; margin: 0 !important; padding: 0 !important; border: 0 !important; background: transparent !important; box-shadow: none !important; }
html body .ml-track-card form.generatedForm ul { display: grid !important; gap: 22px; margin: 0 !important; padding: 0 !important; }
html body .ml-track-card form.generatedForm li { width: 100% !important; margin: 0 !important; padding: 0 !important; list-style: none !important; }
html body .ml-track-card form.generatedForm li > div { width: 100% !important; }
html body .ml-track-card form.generatedForm label.sf-text-label { display: block !important; margin: 0 0 9px !important; color: var(--ml-ink) !important; font-size: 10px !important; font-weight: 700 !important; letter-spacing: .12em; text-transform: uppercase; }
html body .ml-track-card form.generatedForm input.sf-form-input { width: 100% !important; max-width: none !important; height: 58px !important; padding: 0 16px !important; border: 0 !important; border-bottom: 1px solid var(--ml-ink) !important; border-radius: 0 !important; background: rgba(255, 255, 255, .48) !important; box-shadow: none !important; }
html body .ml-track-card form.generatedForm input.sf-button { width: auto !important; min-width: 190px; min-height: 52px !important; padding: 0 28px !important; border: 1px solid var(--ml-ink) !important; border-radius: 0 !important; background: var(--ml-ink) !important; color: #fff !important; font-size: 10px !important; font-weight: 700 !important; letter-spacing: .13em; text-transform: uppercase; }
.ml-track-card > small { display: block; max-width: 470px; margin-top: 34px; color: var(--ml-muted); font-size: 11px; line-height: 1.65; }

.ml-faq-hero > div {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
    align-items: end;
    gap: 60px;
}

.ml-faq-hero h1 { margin-bottom: 0; }
.ml-faq-layout { display: grid; grid-template-columns: minmax(260px, .48fr) minmax(0, 1.52fr); gap: clamp(54px, 8vw, 130px); }
.ml-faq-layout > aside { align-self: start; padding: 34px; border-top: 1px solid var(--ml-ink); background: var(--ml-cream); }
.ml-faq-layout > aside > span { font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.ml-faq-layout > aside h2 { margin: 28px 0 16px; font-size: clamp(30px, 3vw, 44px); }
.ml-faq-layout > aside p { margin: 0 0 28px; color: var(--ml-muted); line-height: 1.7; }
.ml-faq-list .page-inner-content { margin: 0 !important; padding: 0 !important; }
.ml-faq-list .sss { border-top: 1px solid var(--ml-line); }
.ml-faq-list .sss .soru {
    position: relative;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 28px 58px 28px 0 !important;
    border: 0 !important;
    border-bottom: 1px solid var(--ml-line) !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--ml-ink) !important;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(23px, 2.2vw, 32px) !important;
    font-weight: 400 !important;
    line-height: 1.25;
    box-shadow: none !important;
}
.ml-faq-list .sss .soru:hover { background: transparent !important; color: var(--ml-gold) !important; transform: none !important; }
.ml-faq-list .sss .sss-icon { position: absolute !important; top: 50% !important; right: 4px !important; left: auto !important; display: grid !important; width: 34px !important; height: 34px !important; place-items: center; margin: 0 !important; border: 1px solid var(--ml-line); border-radius: 50%; color: var(--ml-ink) !important; font-size: 12px !important; transform: translateY(-50%); }
.ml-faq-list .sss .cevap { margin: 0 !important; padding: 24px 70px 30px 0 !important; border: 0 !important; border-bottom: 1px solid var(--ml-line) !important; border-radius: 0 !important; background: transparent !important; color: var(--ml-muted) !important; font-size: 15px !important; line-height: 1.85 !important; box-shadow: none !important; }

.ml-page-sepet .ml-content-page > h1.page-title:nth-of-type(n+2),
.ml-page-sepet .ml-content-page > h1.page-title:nth-of-type(n+2) + .page-inner-content,
.ml-page-arama .ml-content-page > h1.page-title:nth-of-type(n+2),
.ml-page-arama .ml-content-page > h1.page-title:nth-of-type(n+2) + .page-inner-content {
    display: none !important;
}

.ml-footer {
    padding-top: 74px;
    background: var(--ml-cream);
}

.ml-footer__top {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: clamp(30px, 5vw, 80px);
    padding-bottom: 64px;
}

.ml-footer__brand img {
    width: 150px;
    margin-bottom: 20px;
}

.ml-footer__brand p {
    max-width: 340px;
    color: var(--ml-muted);
}

.ml-footer h2 {
    margin-bottom: 20px;
    font-family: Inter, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.ml-footer li,
.ml-footer__contact > * {
    display: block;
    margin-bottom: 9px;
    color: var(--ml-muted);
    font-size: 13px;
}

.ml-footer a:hover {
    color: var(--ml-ink);
}

.ml-socials {
    display: flex;
    gap: 18px;
    margin-top: 24px;
}

.ml-socials a {
    color: var(--ml-ink);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ml-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid var(--ml-line);
    color: var(--ml-muted);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ml-footer__credits { display: flex; align-items: center; gap: 22px; }
.ml-footer__credits a { color: var(--ml-ink); }
.ml-footer__credits strong { font-weight: 800; letter-spacing: .1em; }

.ml-mobile-bar {
    display: none;
}

@media (min-width: 801px) {
    .ml-detail-gallery__main {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 4px;
        aspect-ratio: auto;
        overflow: visible;
        background: transparent;
    }

    .ml-detail-gallery__slide,
    .ml-detail-gallery__slide.is-active {
        position: relative;
        inset: auto;
        display: block;
        aspect-ratio: 1;
        overflow: hidden;
        background: #f3f1ed;
        opacity: 1;
        visibility: visible;
    }

    .ml-detail-gallery__thumbs {
        display: none;
    }
}

@media (max-width: 1180px) {
    .ml-container { width: min(calc(100% - 40px), var(--ml-container)); }
    .ml-nav { display: none; }
    .ml-menu-toggle { display: inline-grid; }
    .ml-header__row { grid-template-columns: auto 1fr auto; }
    .ml-logo { justify-self: center; }
    .ml-mobile-menu {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        z-index: 110;
        display: block;
        width: min(88vw, 390px);
        padding: 22px 26px 40px;
        overflow-y: auto;
        background: var(--ml-cream);
        box-shadow: var(--ml-shadow);
        visibility: hidden;
        transform: translateX(-105%);
        transition: transform .32s ease, visibility .32s ease;
    }
    .ml-mobile-menu.is-open { visibility: visible; transform: none; }
    .ml-mobile-menu__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
    .ml-mobile-menu__head img { width: 130px; }
    .ml-mobile-menu nav > ul > li { border-bottom: 1px solid var(--ml-line); }
    .ml-mobile-menu nav > ul > li > a,
    .ml-mobile-menu nav > ul > li > span { display: block; padding: 15px 0; font-family: "Playfair Display", Georgia, serif; font-size: 24px; }
    .ml-mobile-menu nav ul ul { padding: 0 0 12px 15px; }
    .ml-mobile-menu nav ul ul a { display: block; padding: 5px 0; color: var(--ml-muted); font-size: 13px; }
    .ml-drawer-backdrop {
        position: fixed;
        inset: 0;
        z-index: 100;
        display: block;
        border: 0;
        background: rgba(14, 11, 8, .46);
        opacity: 0;
        visibility: hidden;
        transition: .3s ease;
    }
    .ml-drawer-backdrop.is-open { opacity: 1; visibility: visible; }
    .ml-product-grid,
    .ml-product-grid.row,
    .ml-product-grid .row,
    .urunkat { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .ml-product-grid--catalog { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .ml-product-detail__purchase { grid-template-columns: 104px minmax(0, 1fr); }
    .ml-sticky-cart__inner {
        grid-template-columns: 60px minmax(180px, 1fr) auto minmax(200px, 260px);
        width: min(calc(100% - 40px), var(--ml-container));
    }
    .ml-sticky-cart__image { width: 60px; height: 60px; }
    .ml-search-results-hero > div { grid-template-columns: 1fr; }
    .ml-search-results-hero .ml-eyebrow { margin-bottom: 0; }
    .ml-advanced-search-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ml-advanced-search-form > .ml-button { min-height: 64px; }
    .urunDetay_benzer .product-slider { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 800px) {
    :root { --ml-header-height: 68px; }
    body.ml-site { padding-bottom: 64px; }
    .ml-container { width: min(calc(100% - 28px), var(--ml-container)); }
    .ml-announcement { font-size: 9px; text-align: center; }
    .ml-announcement .ml-container { display: block; }
    .ml-announcement__secondary { display: none; }
    .ml-header__row { gap: 8px; }
    .ml-logo { width: 112px; }
    .ml-header__actions { gap: 0; }
    .ml-header__actions .ml-account-link { display: none; }
    .ml-icon-button { width: 38px; height: 38px; }
    .ml-search-panel { padding: 0; }
    .ml-search-dialog {
        width: 100%;
        min-height: 100%;
        box-shadow: none;
    }
    .ml-search-dialog::after { display: none; }
    .ml-search-dialog__top { min-height: 76px; padding: 10px 16px 10px 20px; }
    .ml-search-dialog__top > img { width: 116px; }
    .ml-search-close span { display: none; }
    .ml-search-dialog__content { width: 100%; padding: 64px 22px 40px; }
    .ml-search-dialog__content h2 { font-size: clamp(43px, 13vw, 60px); }
    .ml-search-dialog__content > p:not(.ml-eyebrow) { margin-bottom: 34px; }
    .ml-search-form__line { gap: 10px; }
    .ml-search-form__line > svg { width: 21px; height: 21px; }
    .ml-search-form input { padding: 14px 0 16px; font-size: 21px; }
    .ml-search-form button { padding-left: 10px; }
    .ml-search-suggestions { gap: 12px 20px; }
    .ml-hero { height: 68vh; min-height: 540px; }
    .ml-hero__slide { grid-template-columns: 1fr; }
    .ml-hero__slide .ml-hero__image:nth-child(2) { display: none; }
    .ml-hero__content { width: calc(100% - 36px); padding: 28px 16px 32px; }
    .ml-hero__content h1,
    .ml-hero__content h2 { font-size: clamp(45px, 14vw, 68px); }
    .ml-hero__arrow { top: auto; bottom: 16px; width: 40px; height: 40px; transform: none; }
    .ml-hero__arrow--prev { left: 14px; }
    .ml-hero__arrow--next { right: 14px; }
    .ml-hero__pagination { bottom: 34px; }
    .ml-section { padding: 68px 0; }
    .ml-section-heading { align-items: start; }
    .ml-section-heading h2 { font-size: 42px; }
    .ml-collections-heading { display: block; }
    .ml-collections-heading > p { margin-top: 18px; }
    .ml-collection-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        min-height: 0;
    }
    .ml-collection-card,
    .ml-collection-card:first-child { grid-row: auto; min-height: min(78vw, 520px); }
    .ml-collection-card:not(:first-child) { min-height: min(64vw, 420px); }
    .ml-product-grid,
    .ml-product-grid.row,
    .ml-product-grid .row,
    .urunkat,
    .ml-product-grid--catalog { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 8px; }
    .ml-pagination { margin-top: 42px; padding-top: 22px; }
    .ml-pagination__list { gap: 6px; }
    .ml-pagination__item > a { min-width: 40px; height: 40px; padding: 0 10px; }
    .ml-quick-add { display: none; }
    .ml-gallery-arrow { opacity: 1; width: 34px; height: 34px; }
    .ml-gallery-arrow--prev { left: 7px; }
    .ml-gallery-arrow--next { right: 7px; }
    .ml-product-card__content { padding-top: 12px; }
    .ml-product-card__brand { font-size: 9px; }
    .ml-product-card__content h3 { font-size: 12px; }
    .ml-product-card__price { display: block; font-size: 12px; }
    .ml-price-old { margin-right: 5px; }
    .ml-campaign { min-height: 620px; }
    .ml-campaign > img { object-position: 43% center; }
    .ml-campaign__content { right: 28px; left: 28px; }
    .ml-campaign__content h2 { font-size: 56px; }
    .ml-story__grid { grid-template-columns: 1fr; }
    .ml-story__content h2 { font-size: 48px; }
    .ml-benefits__grid { grid-template-columns: 1fr; }
    .ml-benefits__grid > div { padding: 16px 0; border-right: 0; border-bottom: 1px solid var(--ml-line); }
    .ml-benefits__grid > div:last-child { border-bottom: 0; }
    .ml-page-hero__row { display: block; }
    .ml-page-hero .ml-breadcrumb { margin-top: 18px; }
    .ml-category-controls { align-items: stretch; flex-direction: column; gap: 14px; margin-top: 28px; }
    .ml-category-sort-slot { justify-content: stretch; width: 100%; }
    .ml-category-sort-slot .katOrder,
    .ml-category-sort-slot .katOrder form,
    .ml-category-sort-slot .katOrder table,
    .ml-category-sort-slot .katOrder tbody,
    .ml-category-sort-slot .katOrder tr,
    .ml-category-sort-slot .katOrder td:nth-last-child(2),
    .ml-category-sort-slot .katOrder select,
    .ml-category-sort-slot #orderBy { width: 100% !important; }
    .ml-catalog { grid-template-columns: 1fr; padding-top: 24px; }
    .ml-filter-toggle { display: inline-flex; }
    .ml-filters {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 115;
        width: min(88vw, 380px);
        padding: 32px 24px;
        overflow-y: auto;
        background: var(--ml-paper);
        box-shadow: var(--ml-shadow);
        visibility: hidden;
        transform: translateX(105%);
        transition: .3s ease;
    }
    .ml-filters.is-open { visibility: visible; transform: none; }
    .ml-product-detail__layout { grid-template-columns: 1fr; }
    .ml-product-detail__info { position: static; padding-top: 0; }
    .ml-product-detail__info h1 { font-size: 46px; }
    .ml-product-detail__purchase { grid-template-columns: 96px minmax(0, 1fr); }
    .ml-sticky-cart { bottom: 64px; }
    .ml-sticky-cart__inner {
        grid-template-columns: 50px minmax(0, 1fr) minmax(136px, 40vw);
        gap: 10px;
        width: calc(100% - 24px);
        min-height: 72px;
        padding: 8px 0;
    }
    .ml-sticky-cart__image { width: 50px; height: 50px; }
    .ml-sticky-cart__info p { font-size: 8px; }
    .ml-sticky-cart__info h2 { font-family: Inter, "Helvetica Neue", Arial, sans-serif; font-size: 13px; font-weight: 600; }
    .ml-sticky-cart__price { display: none; }
    .ml-sticky-cart__button { min-height: 48px; padding-inline: 14px; font-size: 9px; }
    .ml-search-results-page { padding-top: 18px; }
    .ml-search-results-hero .ml-breadcrumb { margin-bottom: 38px; }
    .ml-advanced-search-form { grid-template-columns: 1fr; }
    .ml-advanced-search-form > .ml-button { min-height: 56px; }
    .ml-search-results-heading { align-items: flex-start; flex-direction: column; }
    .ml-detail-gallery__thumbs { grid-template-columns: repeat(5, 1fr); }
    .ml-lightbox {
        padding: 0 16px 14px;
    }
    .ml-lightbox__topbar {
        grid-template-columns: minmax(0, 1fr) auto;
        min-height: 68px;
    }
    .ml-lightbox__topbar > div span,
    .ml-lightbox__close span {
        display: none;
    }
    .ml-lightbox__topbar strong {
        font-size: 16px;
    }
    .ml-lightbox__count {
        position: absolute;
        bottom: 94px;
        left: 50%;
        z-index: 1;
        padding: 6px 9px;
        border-radius: 20px;
        background: rgba(18, 16, 13, .72);
        transform: translateX(-50%);
    }
    .ml-lightbox__close {
        grid-column: 2;
        grid-row: 1;
    }
    .ml-lightbox__stage {
        grid-template-columns: 42px minmax(0, 1fr) 42px;
        padding: 12px 0 8px;
    }
    .ml-lightbox__stage img {
        max-height: calc(100vh - 170px);
    }
    .ml-lightbox__arrow {
        width: 38px;
        height: 38px;
        border-color: rgba(255, 255, 255, .46);
    }
    .ml-lightbox__arrow svg {
        width: 18px;
        height: 18px;
    }
    .ml-lightbox__thumbs {
        justify-content: flex-start;
    }
    .urunDetay_benzer .product-slider { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 8px; }
    .ml-footer { padding-top: 54px; }
    .ml-footer__top { grid-template-columns: 1fr 1fr; }
    .ml-footer__brand { grid-column: 1 / -1; }
    .ml-footer__contact { grid-column: 1 / -1; }
    .ml-footer__bottom { display: block; text-align: center; }
    .ml-footer__bottom span { display: block; margin: 4px 0; }
    .ml-mobile-bar {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 75;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        min-height: 64px;
        border-top: 1px solid var(--ml-line);
        background: rgba(253, 246, 235, .97);
        backdrop-filter: blur(14px);
    }
    .ml-mobile-bar a,
    .ml-mobile-bar button {
        position: relative;
        display: grid;
        place-items: center;
        align-content: center;
        gap: 2px;
        padding: 5px;
        border: 0;
        background: transparent;
        font-size: 9px;
    }
    .ml-mobile-bar svg { width: 20px; height: 20px; }
    .ml-mobile-bar b { position: absolute; top: 5px; left: 55%; display: grid; min-width: 16px; height: 16px; place-items: center; border-radius: 50%; background: var(--ml-ink); color: #fff; font-size: 8px; }
}

@media (max-width: 480px) {
    .ml-section-heading { display: block; }
    .ml-section-heading .ml-text-link { margin-top: 20px; }
    .ml-collection-card,
    .ml-collection-card:first-child,
    .ml-collection-card:not(:first-child) { min-height: 92vw; }
    .ml-collection-card > div { padding: 24px; }
    .ml-collection-card h3 { font-size: 34px; }
    .ml-product-card__content h3 { min-height: 3em; }
    .ml-product-detail__purchase { grid-template-columns: 88px minmax(0, 1fr); }
    .ml-product-detail__purchase .ml-button { padding-inline: 14px; font-size: 9px; }
    .ml-sticky-cart__inner { grid-template-columns: 44px minmax(0, 1fr) minmax(126px, 41vw); gap: 8px; }
    .ml-sticky-cart__image { width: 44px; height: 44px; }
    .ml-product-assurances { grid-template-columns: 1fr; }
    .ml-footer__top { grid-template-columns: 1fr; }
    .ml-footer__brand,
    .ml-footer__contact { grid-column: auto; }
}

.ml-niche-showcase {
    --ml-niche-ink: #111;
    min-height: 100vh;
    padding-top: 28px;
    background: var(--ml-cream);
    color: var(--ml-niche-ink);
}

.ml-niche-collections {
    align-items: stretch;
    border-bottom: 1px solid rgba(17, 17, 17, .22);
    display: flex;
    gap: 0;
    max-width: 100vw;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 0 4vw;
    cursor: grab;
    scrollbar-width: none;
    touch-action: pan-y;
    user-select: none;
}

.ml-niche-collections::-webkit-scrollbar {
    display: none;
}

.ml-niche-collections.is-dragging,
.ml-niche-collections.is-dragging button {
    cursor: grabbing;
}

.ml-niche-collections button {
    align-items: center;
    align-self: stretch;
    appearance: none;
    background: transparent;
    border: 0;
    color: rgba(17, 17, 17, .62);
    cursor: pointer;
    display: flex;
    flex: 0 0 auto;
    font: 700 clamp(13px, 1.15vw, 17px)/1.2 "Playfair Display", Georgia, serif;
    gap: 11px;
    letter-spacing: .01em;
    min-height: 62px;
    padding: 13px clamp(18px, 1.8vw, 28px);
    position: relative;
    transition: background-color .25s ease, color .25s ease;
    white-space: nowrap;
}

.ml-niche-collections button::after {
    background: #111;
    bottom: -1px;
    content: "";
    height: 2px;
    left: clamp(18px, 1.8vw, 28px);
    position: absolute;
    right: clamp(18px, 1.8vw, 28px);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .3s ease;
}

.ml-niche-collections button:hover,
.ml-niche-collections button:focus-visible {
    background: rgba(17, 17, 17, .035);
    color: #111;
}

.ml-niche-collections button:focus-visible {
    outline: 1px solid #111;
    outline-offset: -5px;
}

.ml-niche-collection-index {
    color: rgba(17, 17, 17, .45);
    font: 700 9px/1 Arial, sans-serif;
    letter-spacing: .12em;
}

.ml-niche-collections button[aria-current="true"] {
    background: transparent;
    color: #111;
    box-shadow: none;
}

.ml-niche-collections button[aria-current="true"]::after {
    transform: scaleX(1);
}

.ml-niche-collections button[aria-current="true"] .ml-niche-collection-index {
    color: #111;
}

.ml-niche-slider {
    position: relative;
    min-height: calc(100vh - 150px);
    overscroll-behavior: contain;
    overflow: hidden;
}

.ml-niche-slide {
    display: grid;
    grid-template-columns: 62% 38%;
    grid-template-rows: 50% 50%;
    height: calc(100vh - 150px);
    min-height: 620px;
    overflow: hidden;
}

.ml-niche-slide[hidden] {
    display: none;
}

.ml-niche-slide.is-active {
    position: relative;
    z-index: 2;
}

.ml-niche-slide.is-outgoing {
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
}

.ml-niche-slide.is-transitioning[data-transition-direction="next"] {
    animation: ml-ivy-slide-from-bottom 1s ease both;
}

.ml-niche-slide.is-transitioning[data-transition-direction="previous"] {
    animation: ml-ivy-slide-from-top 1s ease both;
}

.ml-niche-slide.is-outgoing[data-transition-direction="next"] {
    animation: ml-ivy-slide-to-top 1s ease both;
}

.ml-niche-slide.is-outgoing[data-transition-direction="previous"] {
    animation: ml-ivy-slide-to-bottom 1s ease both;
}

.ml-niche-slide.is-transitioning[data-transition-direction="next"] .ml-niche-frame {
    animation: ml-ivy-frame-from-bottom 1s ease both;
}

.ml-niche-slide.is-transitioning[data-transition-direction="next"] .ml-niche-copy {
    animation: ml-ivy-copy-from-bottom 1s ease both;
}

.ml-niche-slide.is-transitioning[data-transition-direction="next"] .ml-niche-image {
    animation: ml-ivy-image-from-top 1s ease both;
}

.ml-niche-slide.is-transitioning[data-transition-direction="previous"] .ml-niche-frame {
    animation: ml-ivy-frame-from-top 1s ease both;
}

.ml-niche-slide.is-transitioning[data-transition-direction="previous"] .ml-niche-copy {
    animation: ml-ivy-copy-from-top 1s ease both;
}

.ml-niche-slide.is-transitioning[data-transition-direction="previous"] .ml-niche-image {
    animation: ml-ivy-image-from-bottom 1s ease both;
}

.ml-niche-slide.is-outgoing[data-transition-direction="next"] .ml-niche-frame {
    animation: ml-ivy-frame-to-top 1s ease both;
}

.ml-niche-slide.is-outgoing[data-transition-direction="next"] .ml-niche-copy {
    animation: ml-ivy-copy-to-top 1s ease both;
}

.ml-niche-slide.is-outgoing[data-transition-direction="next"] .ml-niche-image {
    animation: ml-ivy-image-to-bottom 1s ease both;
}

.ml-niche-slide.is-outgoing[data-transition-direction="previous"] .ml-niche-frame {
    animation: ml-ivy-frame-to-bottom 1s ease both;
}

.ml-niche-slide.is-outgoing[data-transition-direction="previous"] .ml-niche-copy {
    animation: ml-ivy-copy-to-bottom 1s ease both;
}

.ml-niche-slide.is-outgoing[data-transition-direction="previous"] .ml-niche-image {
    animation: ml-ivy-image-to-top 1s ease both;
}

@keyframes ml-ivy-slide-from-bottom { from { transform: translateY(100%); } }
@keyframes ml-ivy-slide-from-top { from { transform: translateY(-100%); } }
@keyframes ml-ivy-slide-to-top { to { transform: translateY(-100%); } }
@keyframes ml-ivy-slide-to-bottom { to { transform: translateY(100%); } }
@keyframes ml-ivy-frame-from-top { from { transform: translateY(-100%); } }
@keyframes ml-ivy-copy-from-top { from { transform: translateY(-70%); } }
@keyframes ml-ivy-image-from-bottom { from { transform: translateY(100%); } }
@keyframes ml-ivy-frame-from-bottom { from { transform: translateY(100%); } }
@keyframes ml-ivy-copy-from-bottom { from { transform: translateY(70%); } }
@keyframes ml-ivy-image-from-top { from { transform: translateY(-100%); } }
@keyframes ml-ivy-frame-to-bottom { to { transform: translateY(100%); } }
@keyframes ml-ivy-copy-to-bottom { to { transform: translateY(70%); } }
@keyframes ml-ivy-image-to-top { to { transform: translateY(-100%); } }
@keyframes ml-ivy-frame-to-top { to { transform: translateY(-100%); } }
@keyframes ml-ivy-copy-to-top { to { transform: translateY(-70%); } }
@keyframes ml-ivy-image-to-bottom { to { transform: translateY(100%); } }

.ml-niche-left {
    position: relative;
    grid-row: 1 / 3;
    padding: 8vh 8vw;
    padding-left: 14vw;
}

.ml-niche-eyebrow,
.ml-niche-brand {
    position: absolute;
    left: 4vw;
    font: 500 13px/1.2 Arial, sans-serif;
    letter-spacing: .04em;
}

.ml-niche-eyebrow {
    top: 2vh;
}

.ml-niche-brand {
    bottom: 4vh;
}

.ml-niche-eyebrow::before,
.ml-niche-brand::before {
    display: inline-block;
    width: 64px;
    height: 1px;
    margin-right: 12px;
    background: #111;
    vertical-align: middle;
    content: "";
}

.ml-niche-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 480px;
    padding: clamp(20px, 4vw, 55px);
    border: 50px solid transparent;
    border-image: var(--ml-frame-image) 80 stretch;
}

.ml-niche-copy {
    max-width: 560px;
    text-align: center;
}

.ml-niche-copy .ml-niche-product-title {
    margin: 0 0 30px;
    color: #111;
    font: 700 clamp(32px, 4vw, 64px)/1.05 "Playfair Display", Georgia, serif;
    text-transform: uppercase;
}

.ml-niche-copy p {
    margin: 0 auto 30px;
    font: 400 clamp(14px, 1.2vw, 18px)/1.7 Arial, sans-serif;
}

.ml-niche-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 13px 22px;
}

.ml-niche-actions a {
    padding: 8px 0;
    border-bottom: 2px solid currentColor;
    color: #111;
    font: 700 13px/1.2 Arial, sans-serif;
    text-transform: uppercase;
}

.ml-niche-actions .ml-niche-shop {
    padding: 11px 18px;
    border: 1px solid #111;
    background: #111;
    color: #fff;
}

.ml-niche-image {
    display: block;
    overflow: hidden;
    background: #ddd;
}

.ml-niche-image span {
    display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    transition: transform .6s ease;
}

.ml-niche-image:hover span,
.ml-niche-image:focus-visible span {
    transform: scale(1.025);
}

.ml-site .ml-niche-arrow {
    position: absolute;
    z-index: 4;
    top: calc(50% - 29px);
    display: flex;
    width: 48px;
    height: 58px;
    align-items: center;
    justify-content: center;
    border: 0;
    background: rgba(17, 17, 17, .72);
    color: #fff;
    font: 300 38px/1 Arial, sans-serif;
    cursor: pointer;
}

.ml-niche-arrow--previous {
    left: 0;
}

.ml-niche-arrow--next {
    right: 0;
}

.ml-niche-counter {
    position: absolute;
    bottom: 20px;
    left: 4vw;
    font: 700 14px/1 Arial, sans-serif;
    letter-spacing: .1em;
}

.ml-niche-empty {
    min-height: 50vh;
    padding: 10vh 5vw;
    background: var(--ml-cream);
    text-align: center;
}

@media (max-width: 900px) {
    .ml-niche-showcase {
        padding-top: 18px;
    }

    .ml-niche-collections {
        padding: 0 20px;
    }

    .ml-niche-collections button {
        font-size: 13px;
        gap: 8px;
        min-height: 52px;
        padding: 11px 16px;
    }

    .ml-niche-collections button::after {
        left: 16px;
        right: 16px;
    }

    .ml-niche-collection-index {
        font-size: 8px;
    }

    .ml-niche-slide {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto auto;
        height: auto;
        min-height: 0;
    }

    .ml-niche-slider {
        min-height: 0;
        overflow: hidden;
    }

    .ml-niche-left {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 68vh;
        padding: 48px 16px 28px;
    }

    .ml-niche-frame {
        min-height: 58vh;
        padding: 18px;
        border-width: 28px;
    }

    .ml-niche-eyebrow,
    .ml-niche-brand {
        left: 20px;
    }

    .ml-niche-image {
        height: 50vw;
        min-height: 180px;
    }

    .ml-niche-counter {
        top: 18px;
        bottom: auto;
        left: 20px;
    }

    .ml-niche-arrow {
        width: 40px;
        height: 50px;
        top: 31vh;
    }

    .ml-niche-copy .ml-niche-product-title {
        margin-bottom: 20px;
        font-size: clamp(28px, 10vw, 42px);
    }

    .ml-niche-copy p {
        margin-bottom: 20px;
        font-size: 13px;
        line-height: 1.55;
    }

    .ml-niche-actions {
        gap: 10px 16px;
    }

    .ml-niche-actions a {
        font-size: 11px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .ml-niche-frame,
    .ml-niche-copy,
    .ml-niche-image,
    .ml-niche-slide.is-active,
    .ml-niche-slide.is-outgoing { animation: none !important; }
    .ml-site *,
    .ml-site *::before,
    .ml-site *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* Powered by Drafts — footer imzası (anilgroup.com.tr referansı).
   Ölçü ve zamanlama referansla aynı; renk krem zeminde okunur bronz
   (--ml-gold 10px metinde kontrastı düşük kalıyor).
   Seçiciler `.ml-footer__credits` altında: `.ml-footer__credits a`
   tek sınıflı `.drafts-signature`i eziyor. `.ml-footer__bottom`
   uppercase uyguladığı için imzada text-transform sıfırlanıyor —
   yazma animasyonunun 6ch çerçevesi karışık kasa metne göre ölçülü. */
.ml-footer__credits .drafts-signature {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #7a5c33;
    font-size: 11px;
    letter-spacing: 0;
    line-height: 1;
    text-transform: none;
    text-decoration: none;
    transition: color .2s ease;
}

.ml-footer__credits .drafts-powered {
    color: var(--ml-muted);
    line-height: 1;
    transition: color .2s ease;
}

.ml-footer__credits .drafts-signature:hover .drafts-powered {
    color: var(--ml-ink);
}

.ml-footer__credits .drafts-word-frame {
    display: inline-flex;
    align-items: center;
    width: 6ch;
    height: 1em;
    text-align: left;
    transform: translateY(1px);
}

.ml-footer__credits .drafts-typing {
    display: inline-block;
    width: 0;
    max-width: 6ch;
    overflow: hidden;
    white-space: nowrap;
    color: #7a5c33;
    line-height: 1;
    border-right: 1px solid rgba(122, 92, 51, .78);
    animation:
        drafts-type-cycle 4.2s steps(6, end) infinite,
        drafts-caret-blink 720ms steps(1, end) infinite;
}

.ml-footer__credits .drafts-favicon {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    border-radius: 4px;
    opacity: .9;
    transition: opacity .2s ease, transform .2s ease;
}

.ml-footer__credits .drafts-signature:hover .drafts-favicon {
    opacity: 1;
    transform: translateY(-1px);
}

@keyframes drafts-type-cycle {
    0%, 12% { width: 0; }
    38%, 64% { width: 6ch; }
    90%, 100% { width: 0; }
}

@keyframes drafts-caret-blink {
    0%, 48% { border-color: rgba(122, 92, 51, .78); }
    49%, 100% { border-color: transparent; }
}

@media (prefers-reduced-motion: reduce) {
    .ml-footer__credits .drafts-typing {
        animation: none;
        width: 6ch;
        border-right: 0;
    }
}
