/* ============================================================
   LUXORA — Premium Çiçekçi Teması
   Tamamen özel, bağımsız tasarım sistemi (lx- öneki)
   ============================================================ */

:root {
    /* Renk paleti — sıcak ivory + botanik yeşil + gül & altın aksanlar */
    --lx-ink: #1b1813;
    --lx-ink-soft: #5b5349;
    --lx-muted: #8c8377;
    --lx-cream: #f7f2ea;
    --lx-cream-2: #efe7da;
    --lx-paper: #ffffff;
    --lx-green: #1f6b50;
    --lx-green-deep: #7b4a37;
    --lx-green-soft: #eaf3ee;
    --lx-blush: #c98b7a;
    --lx-blush-soft: #f5e8e3;
    --lx-gold: #b8965a;
    --lx-gold-soft: #ede3cc;
    --lx-line: #e7dfd1;
    --lx-danger: #b4453b;

    --lx-shadow-sm: 0 2px 10px rgba(27, 24, 19, .06);
    --lx-shadow: 0 18px 50px -24px rgba(27, 24, 19, .35);
    --lx-shadow-lg: 0 40px 80px -40px rgba(27, 24, 19, .45);

    --lx-serif: "Cormorant Garamond", "Times New Roman", serif;
    --lx-sans: "Jost", -apple-system, "Segoe UI", sans-serif;

    --lx-radius: 18px;
    --lx-radius-sm: 12px;
    --lx-ease: cubic-bezier(.22, 1, .36, .58);
    --lx-ease-out: cubic-bezier(.16, 1, .3, 1);
    --lx-container: 1320px;
}

/* ---------- Reset / temel ---------- */
body.lx-body {
    margin: 0;
    font-family: var(--lx-sans);
    color: var(--lx-ink);
    background: var(--lx-cream);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

.lx-body * { box-sizing: border-box; }

.lx-body img { max-width: 100%; display: block; }

.lx-body a { color: inherit; text-decoration: none; transition: color .3s var(--lx-ease); }

.lx-body h1, .lx-body h2, .lx-body h3, .lx-body h4, .lx-body h5, .lx-body h6 {
    font-family: var(--lx-serif);
    font-weight: 600;
    line-height: 1.12;
    margin: 0;
    letter-spacing: .2px;
}

.lx-body ::selection { background: var(--lx-green); color: #fff; }

.lx-container {
    width: 100%;
    max-width: var(--lx-container);
    margin: 0 auto;
    padding: 0 28px;
}

.lx-eyebrow {
    font-family: var(--lx-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--lx-green);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.lx-eyebrow::before, .lx-eyebrow.lx-center::after {
    content: "";
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lx-gold));
    display: inline-block;
}

.lx-eyebrow.lx-center::before { background: linear-gradient(90deg, var(--lx-gold), transparent); }

/* ---------- Butonlar ---------- */
.lx-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--lx-sans);
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all .45s var(--lx-ease-out);
    background: var(--lx-green);
    color: #fff;
    white-space: nowrap;
}

.lx-btn svg { width: 17px; height: 17px; transition: transform .45s var(--lx-ease-out); }
.lx-btn:hover { background: var(--lx-green-deep); color: #fff; transform: translateY(-2px); box-shadow: 0 16px 30px -14px rgba(18, 80, 58, .7); }
.lx-btn:hover svg { transform: translateX(4px); }

.lx-btn--ghost { background: transparent; border-color: rgba(255, 255, 255, .55); color: #fff; }
.lx-btn--ghost:hover { background: #fff; color: var(--lx-ink); border-color: #fff; }

.lx-btn--outline { background: transparent; border-color: var(--lx-line); color: var(--lx-ink); }
.lx-btn--outline:hover { background: var(--lx-ink); border-color: var(--lx-ink); color: #fff; box-shadow: none; }

.lx-btn--gold { background: linear-gradient(120deg, var(--lx-gold), #cda86a); color: #fff; }
.lx-btn--gold:hover { box-shadow: 0 16px 30px -14px rgba(184, 150, 90, .8); }

/* ---------- Bölüm başlığı ---------- */
.lx-section { padding: 84px 0; }
.lx-section--tight { padding: 56px 0; }

.lx-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 46px;
    flex-wrap: wrap;
}

.lx-head__title {
    font-size: clamp(2rem, 1.4rem + 2.4vw, 3.2rem);
    color: var(--lx-ink);
    margin-top: 14px;
}

.lx-head__title em { font-style: italic; color: var(--lx-green); }

.lx-head.lx-center {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
}

.lx-head__lead { color: var(--lx-ink-soft); max-width: 540px; font-size: 15px; margin-top: 8px; }

.lx-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--lx-ink);
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--lx-gold);
}

.lx-link svg { width: 16px; height: 16px; transition: transform .4s var(--lx-ease-out); }
.lx-link:hover { color: var(--lx-green); }
.lx-link:hover svg { transform: translateX(5px); }

/* ============================================================
   ANNOUNCEMENT (üst şerit)
   ============================================================ */
.lx-announce {
    background: var(--lx-cream-2);
    color: var(--lx-ink-soft);
    font-size: 12.5px;
    letter-spacing: .5px;
    overflow: hidden;
    border-bottom: 1px solid var(--lx-line);
    max-height: 64px;
    transition: max-height .45s var(--lx-ease), opacity .35s var(--lx-ease);
}

.lx-announce__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    padding: 8px 4px;
    gap: 28px;
}

.lx-announce__marquee { display: flex; align-items: center; gap: 10px; overflow: hidden; flex: 1; }
.lx-announce__track { display: flex; gap: 46px; white-space: nowrap; animation: lx-marquee 28s linear infinite; }
.lx-announce__track span { display: inline-flex; align-items: center; gap: 9px; color: var(--lx-ink-soft); }
.lx-announce__track b { color: var(--lx-green); font-weight: 600; }
.lx-announce__links { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.lx-announce__links a { color: var(--lx-ink-soft); display: inline-flex; align-items: center; gap: 6px; font-weight: 500; padding: 4px 2px; }
.lx-announce__links a:hover { color: var(--lx-green); }
.lx-announce__links svg { width: 14px; height: 14px; }

@keyframes lx-marquee { to { transform: translateX(-50%); } }

/* ============================================================
   HEADER
   ============================================================ */
.lx-header { position: sticky; top: 0; z-index: 900; }

.lx-header__main {
    background: rgba(255, 252, 247, .92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--lx-line);
    transition: padding .4s var(--lx-ease), box-shadow .4s var(--lx-ease);
}

.lx-header.lx-scrolled .lx-header__main { box-shadow: var(--lx-shadow-sm); background: rgba(255, 253, 250, .97); }

/* 3 sütun: sol (arama) | orta (logo) | sağ (ikonlar) */
.lx-header__row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    padding: 20px 0;
    transition: padding .4s var(--lx-ease);
}

.lx-header.lx-scrolled .lx-header__row { padding: 9px 0; }

.lx-header__left { display: flex; align-items: center; gap: 10px; justify-self: start; min-width: 0; width: 100%; transition: opacity .35s var(--lx-ease), visibility .35s var(--lx-ease); }
.lx-header__right { display: flex; align-items: center; gap: 4px; justify-self: end; transition: opacity .35s var(--lx-ease), visibility .35s var(--lx-ease); }

/* ── Scroll'da kompakt header: üst şerit + kategori barı + sol/sağ gizlenir, ortada logo kalır ── */
.lx-header.lx-scrolled .lx-announce { max-height: 0; opacity: 0; border-bottom-color: transparent; }
.lx-header.lx-scrolled .lx-nav { max-height: 0; opacity: 0; overflow: hidden; border-bottom-color: transparent; }
/* scroll'da solda kompakt arama kalır (denge: arama | logo | sepet) */
.lx-header.lx-scrolled .lx-search { max-width: 300px; }
.lx-header.lx-scrolled .lx-search input { height: 42px; }
.lx-header.lx-scrolled .lx-search__btn { width: 36px; height: 36px; }
/* scroll'da sağda yalnızca sepet (son aksiyon) kalır; diğerleri + etiketler gizli */
.lx-header.lx-scrolled .lx-header__right .lx-action:not(:last-child) { opacity: 0; visibility: hidden; pointer-events: none; }
.lx-header.lx-scrolled .lx-header__right .lx-action__label { display: none; }
.lx-header.lx-scrolled .lx-header__right .lx-action:last-child { background: var(--lx-green-soft); }

/* Ortadaki logo */
.lx-logo { display: inline-flex; flex-direction: column; align-items: center; gap: 4px; justify-self: center; text-align: center; }
.lx-logo img { height: 144px; width: auto; transition: height .4s var(--lx-ease); }
.lx-header.lx-scrolled .lx-logo img { height: 44px; }
.lx-logo__text { font-family: var(--lx-serif); font-size: 30px; font-weight: 600; color: var(--lx-ink); letter-spacing: .5px; line-height: 1; }
.lx-logo__text span { color: var(--lx-green); font-style: italic; }
.lx-logo__tagline { font-size: 9.5px; letter-spacing: 4px; text-transform: uppercase; color: var(--lx-muted); }

/* Arama (sol) */
.lx-search { position: relative; width: 100%; max-width: 340px; }
.lx-search input {
    width: 100%;
    height: 48px;
    border: 1px solid var(--lx-line);
    background: var(--lx-paper);
    border-radius: 50px;
    padding: 0 50px 0 20px;
    font-family: var(--lx-sans);
    font-size: 14px;
    color: var(--lx-ink);
    outline: none;
    transition: border-color .35s var(--lx-ease), box-shadow .35s var(--lx-ease);
}
.lx-search input::placeholder { color: var(--lx-muted); }
.lx-search input:focus { border-color: var(--lx-green); box-shadow: 0 0 0 4px rgba(31, 107, 80, .08); }
.lx-search__btn {
    position: absolute; top: 50%; right: 5px; transform: translateY(-50%);
    width: 40px; height: 40px; border: none; border-radius: 50%;
    background: var(--lx-green); color: #fff; cursor: pointer;
    display: grid; place-items: center; transition: background .3s var(--lx-ease);
}
.lx-search__btn:hover { background: var(--lx-green-deep); }
.lx-search__btn svg { width: 18px; height: 18px; }

/* Aksiyonlar (sağ) */
.lx-actions { display: flex; align-items: center; gap: 4px; }
.lx-action {
    display: inline-flex; flex-direction: column; align-items: center; gap: 3px;
    padding: 8px 12px; border-radius: 14px; color: var(--lx-ink);
    position: relative; transition: background .3s var(--lx-ease), color .3s var(--lx-ease), opacity .35s var(--lx-ease), visibility .35s var(--lx-ease);
}
.lx-action:hover { background: var(--lx-green-soft); color: var(--lx-green); }
.lx-action__ico { position: relative; display: grid; place-items: center; }
.lx-action__ico svg { width: 23px; height: 23px; }
.lx-action__label { font-size: 11px; font-weight: 500; letter-spacing: .4px; }
.lx-action__badge {
    position: absolute; top: -8px; right: -10px; min-width: 19px; height: 19px;
    background: var(--lx-blush); color: #fff; border-radius: 50px; padding: 0 5px;
    font-size: 10.5px; font-weight: 600; display: grid; place-items: center;
    border: 2px solid var(--lx-paper);
}

.lx-burger { display: none; width: 46px; height: 46px; border: 1px solid var(--lx-line); background: var(--lx-paper); border-radius: 12px; cursor: pointer; color: var(--lx-ink); flex-shrink: 0; }
.lx-burger svg { width: 22px; height: 22px; margin: auto; }

/* Kategori navigasyonu — AÇIK (beyaz) zemin, koyu yazı */
.lx-nav { background: var(--lx-paper); border-bottom: 1px solid var(--lx-line); max-height: 80px; transition: max-height .45s var(--lx-ease), opacity .35s var(--lx-ease); }
.lx-nav__row { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 60px; }
.lx-nav__menu { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.lx-nav__menu > li > a {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--lx-ink-soft); font-size: 13px; font-weight: 500; letter-spacing: 1px;
    text-transform: uppercase; padding: 10px 15px; border-radius: 10px;
    position: relative; transition: color .3s var(--lx-ease);
}
.lx-nav__menu > li > a::after {
    content: ""; position: absolute; left: 15px; right: 15px; bottom: 8px; height: 1px;
    background: var(--lx-gold); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--lx-ease-out);
}
.lx-nav__menu > li > a:hover { color: var(--lx-green); }
.lx-nav__menu > li > a:hover::after { transform: scaleX(1); }
.lx-nav__menu .lx-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--lx-gold); opacity: .8; }
.lx-nav__menu > li { position: relative; }
.lx-sub-chev { width: 13px; height: 13px; opacity: .55; transition: transform .3s var(--lx-ease); }
.lx-nav__menu > li.has-children:hover .lx-sub-chev { transform: rotate(180deg); }

/* Alt menü (üzerine gelince açılan dropdown) */
.lx-submenu {
    position: absolute; top: calc(100% + 16px); left: 0; z-index: 950;
    min-width: 224px; list-style: none; margin: 0; padding: 8px;
    background: var(--lx-paper); border: 1px solid var(--lx-line);
    border-radius: 14px; box-shadow: var(--lx-shadow-lg);
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: opacity .35s var(--lx-ease-out), transform .35s var(--lx-ease-out), visibility .35s;
}
/* görünmez köprü: link ile dropdown arasındaki boşlukta hover kopmasın */
.lx-submenu::before { content: ""; position: absolute; top: -16px; left: 0; right: 0; height: 16px; }
.lx-nav__menu > li.has-children:hover > .lx-submenu,
.lx-nav__menu > li.has-children:focus-within > .lx-submenu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.lx-submenu li { list-style: none; }
.lx-submenu a {
    display: flex; align-items: center; gap: 9px;
    padding: 11px 14px; border-radius: 9px;
    font-size: 13px; font-weight: 500; letter-spacing: .2px; text-transform: none;
    color: var(--lx-ink-soft); white-space: nowrap;
    transition: background .25s var(--lx-ease), color .25s var(--lx-ease), padding .25s var(--lx-ease);
}
.lx-submenu a::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--lx-gold); opacity: 0; flex-shrink: 0; transition: opacity .25s var(--lx-ease); }
.lx-submenu a:hover { background: var(--lx-green-soft); color: var(--lx-green); padding-left: 18px; }
.lx-submenu a:hover::before { opacity: 1; }

/* 6'dan fazla öğe: yana doğru, sütun başına 6 öğe (çok sütunlu) */
.lx-submenu--mega {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(6, auto);
    gap: 2px 10px;
    min-width: 0;
}
.lx-submenu--mega > li > a { min-width: 188px; }

/* Kategori mega dropdown */
.lx-nav__cat { position: relative; }
.lx-nav__cat-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--lx-green); color: #fff; border: none; cursor: pointer; border-radius: 10px;
    height: 44px; padding: 0 22px; font-family: var(--lx-sans);
    font-size: 13px; font-weight: 500; letter-spacing: 1.2px; text-transform: uppercase;
    transition: background .3s var(--lx-ease);
}
.lx-nav__cat-btn:hover { background: var(--lx-green-deep); }
.lx-nav__cat-btn svg { width: 18px; height: 18px; }
.lx-nav__cat-btn .lx-chev { transition: transform .35s var(--lx-ease); }
.lx-nav__cat.lx-open .lx-chev { transform: rotate(180deg); }
.lx-mega {
    position: absolute; top: calc(100% + 8px); left: 0; z-index: 950;
    width: min(760px, 86vw); background: var(--lx-paper);
    border: 1px solid var(--lx-line); border-radius: 0 0 var(--lx-radius) var(--lx-radius);
    box-shadow: var(--lx-shadow-lg); padding: 22px;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
    opacity: 0; visibility: hidden; transform: translateY(14px);
    transition: all .4s var(--lx-ease-out); max-height: 70vh; overflow-y: auto;
}
.lx-nav__cat.lx-open .lx-mega { opacity: 1; visibility: visible; transform: translateY(0); }
.lx-mega__item { display: flex; align-items: center; gap: 14px; padding: 12px 14px; border-radius: 12px; transition: background .3s var(--lx-ease); }
.lx-mega__item:hover { background: var(--lx-cream); }
.lx-mega__thumb { width: 46px; height: 46px; border-radius: 50%; background: var(--lx-green-soft); object-fit: cover; flex-shrink: 0; padding: 6px; }
.lx-mega__name { font-size: 14px; font-weight: 500; color: var(--lx-ink); }
.lx-mega__item:hover .lx-mega__name { color: var(--lx-green); }

/* İletişim hattı — kompakt, dikkat çeken yeşil CTA */
.lx-nav__phone {
    display: inline-flex; align-items: center; gap: 9px;
    background: linear-gradient(120deg, var(--lx-green), var(--lx-green-deep));
    color: #fff; padding: 5px 16px 5px 6px; border-radius: 50px;
    box-shadow: 0 8px 20px -12px rgba(18, 80, 58, .6);
    transition: transform .35s var(--lx-ease-out), box-shadow .35s var(--lx-ease-out);
    position: relative; flex-shrink: 0;
}
.lx-nav__phone:hover { transform: translateY(-2px); box-shadow: 0 14px 26px -12px rgba(18, 80, 58, .85); color: #fff; }
.lx-nav__phone-ico {
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(255, 255, 255, .2); color: #fff;
    display: grid; place-items: center; flex-shrink: 0; position: relative;
}
.lx-nav__phone-ico::after {
    content: ""; position: absolute; inset: 0; border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .55);
    animation: lx-ring 2.4s var(--lx-ease-out) infinite;
}
.lx-nav__phone-ico svg { width: 15px; height: 15px; position: relative; z-index: 1; }
.lx-nav__phone small { display: block; font-size: 9px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255, 255, 255, .82); }
.lx-nav__phone b { font-size: 13.5px; font-weight: 600; letter-spacing: .3px; color: #fff; }

@keyframes lx-ring {
    0% { transform: scale(1); opacity: .7; }
    70% { transform: scale(1.45); opacity: 0; }
    100% { opacity: 0; }
}

/* ============================================================
   HERO SLIDER — MATTED GALLERY FRAME (görsel-odaklı, çerçeveli kart)
   Yazı/buton yok; paspartulu çerçeve + ince altın iç çizgi + yumuşak gölge.
   JS sözleşmesi korunur: [data-lx-slider], .lx-hero__track, .lx-slide(.is-active),
   .lx-hero__nav--prev/--next, .lx-hero__dot.
   ============================================================ */
.lx-hero { position: relative; padding: clamp(22px, 4vw, 44px) 0 clamp(8px, 1.4vw, 14px); }

/* Mat: kâğıt zemin, ince keyline, yumuşak gölge, yuvarlak */
.lx-hero__frame {
    position: relative;
    background: var(--lx-paper);
    border: 1px solid var(--lx-line);
    border-radius: calc(var(--lx-radius) + 10px);          /* 28px — dış */
    padding: clamp(12px, 2vw, 22px);                       /* mat */
    box-shadow: var(--lx-shadow-lg);
}
/* Mat içinde yüzen ince altın çizgi — passe-partout */
.lx-hero__frame::after {
    content: "";
    position: absolute; inset: clamp(7px, 1.1vw, 10px);
    border: 1px solid var(--lx-gold-soft);
    border-radius: calc(var(--lx-radius) + 2px);
    pointer-events: none;
}

/* JS'in beklediği sarmalayıcı: track'i kırpar, baskı keyline'ı tutar */
.lx-hero__viewport {
    position: relative; overflow: hidden;
    border-radius: var(--lx-radius);                       /* 18px — iç */
    box-shadow: inset 0 0 0 1px var(--lx-line);
    background: var(--lx-cream-2);                          /* yüklenirken ton */
}

.lx-hero__track { display: flex; transition: transform 1s var(--lx-ease-out); will-change: transform; }

/* Slide = ölçülü, zarif, sadece görsel */
.lx-slide { position: relative; min-width: 100%; height: clamp(320px, 52vh, 600px); }
.lx-slide__bg { position: absolute; inset: 0; overflow: hidden; }
.lx-slide__bg img {
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.12);                                /* Ken-Burns başlangıç */
    transition: transform 7s ease, opacity .6s var(--lx-ease-out);
}
.lx-slide.is-active .lx-slide__bg img { transform: scale(1); }

/* Oklar — mat içinde, sağ altta, kâğıt çipler */
.lx-hero__nav {
    position: absolute; z-index: 5; bottom: clamp(22px, 3vw, 32px);
    width: 46px; height: 46px; border-radius: 50%;
    border: 1px solid var(--lx-line);
    background: var(--lx-paper); color: var(--lx-ink-soft);
    cursor: pointer; display: grid; place-items: center;
    box-shadow: var(--lx-shadow-sm);
    transition: background .35s var(--lx-ease-out), color .35s var(--lx-ease-out), border-color .35s var(--lx-ease-out), transform .35s var(--lx-ease-out);
}
.lx-hero__nav:hover { background: var(--lx-green); color: var(--lx-paper); border-color: var(--lx-green); transform: translateY(-2px); }
.lx-hero__nav svg { width: 20px; height: 20px; }
.lx-hero__nav--prev { right: 84px; }
.lx-hero__nav--next { right: 32px; }

/* Noktalar — alt mat bandında ince altın-çizgi satırı, ortalı */
.lx-hero__dots {
    position: absolute; z-index: 5; bottom: clamp(40px, 4.6vw, 50px);
    left: 50%; transform: translateX(-50%);
    display: flex; gap: 10px; align-items: center;
}
.lx-hero__dot {
    width: 26px; height: 3px; border: none; padding: 0; border-radius: 2px;
    background: var(--lx-line); cursor: pointer;
    transition: background .35s var(--lx-ease-out), width .35s var(--lx-ease-out);
}
.lx-hero__dot:hover { background: var(--lx-muted); }
.lx-hero__dot.is-active { width: 36px; background: var(--lx-gold); }

@media (max-width: 768px) {
    .lx-hero__frame { border-radius: 22px; }
    .lx-hero__frame::after { border-radius: 16px; }
    .lx-slide { height: clamp(260px, 46vh, 420px); }
    .lx-hero__nav { width: 40px; height: 40px; }
    .lx-hero__nav svg { width: 18px; height: 18px; }
    .lx-hero__nav--prev { right: 70px; }
    .lx-hero__nav--next { right: 18px; }
}

/* ============================================================
   GÜVEN ŞERİDİ
   ============================================================ */
/* Slider'la aynı hizada, ona yakışır çerçeveli bilgilendirme kartı */
.lx-trust { background: var(--lx-cream); padding: clamp(8px, 1.4vw, 18px) 0 clamp(26px, 4vw, 56px); }
.lx-trust__card {
    background: var(--lx-paper);
    border: 1px solid var(--lx-line);
    border-radius: calc(var(--lx-radius) + 6px);
    box-shadow: var(--lx-shadow);
    overflow: hidden;
    position: relative;
}
/* üstte ince altın aksan çizgisi (slider'ın altın detayıyla uyumlu) */
.lx-trust__card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--lx-gold-soft) 18%, var(--lx-gold) 50%, var(--lx-gold-soft) 82%, transparent); opacity: .7; }
.lx-trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.lx-trust__item { display: flex; align-items: center; gap: 16px; padding: clamp(22px, 2.4vw, 34px) clamp(18px, 2vw, 30px); position: relative; transition: background .35s var(--lx-ease); }
.lx-trust__item:hover { background: var(--lx-green-soft); }
.lx-trust__item + .lx-trust__item::before { content: ""; position: absolute; left: 0; top: 22px; bottom: 22px; width: 1px; background: var(--lx-line); }
.lx-trust__ico { width: 52px; height: 52px; border-radius: 50%; background: var(--lx-green-soft); color: var(--lx-green); display: grid; place-items: center; flex-shrink: 0; transition: transform .4s var(--lx-ease-out); }
.lx-trust__item:hover .lx-trust__ico { transform: scale(1.08); }
.lx-trust__ico svg { width: 24px; height: 24px; }
.lx-trust__t { font-family: var(--lx-serif); font-size: 19px; font-weight: 600; color: var(--lx-ink); }
.lx-trust__s { font-size: 12.5px; color: var(--lx-muted); letter-spacing: .3px; }

/* ============================================================
   KATEGORİLER
   ============================================================ */
.lx-cats { background: var(--lx-cream); }

/* Yatay kaydırılabilir kategori şeridi — masaüstünde 4'erli görünür */
.lx-cats__scroller { position: relative; }
.lx-cats__track {
    display: flex;
    align-items: stretch;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 14px 4px 22px;
    margin: 0 -4px;
    cursor: grab;
}
.lx-cats__track::-webkit-scrollbar { display: none; }
.lx-cats__track.lx-dragging {
    cursor: grabbing;
    scroll-snap-type: none;          /* sürükleme sırasında serbest kaysın */
    user-select: none;
}
.lx-cats__track > .lx-cat {
    flex: 0 0 calc((100% - 3 * 22px) / 4);   /* 4 kart görünür */
    scroll-snap-align: start;
}
.lx-cats__track .lx-cat__img { -webkit-user-drag: none; user-select: none; }
.lx-cats__nav {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 6;
    width: 48px; height: 48px; border-radius: 50%;
    border: none; background: var(--lx-green); color: #fff;
    cursor: pointer; display: grid; place-items: center;
    box-shadow: 0 12px 26px -10px rgba(18, 80, 58, .6);
    transition: background .3s var(--lx-ease), transform .3s var(--lx-ease-out), box-shadow .3s var(--lx-ease);
}
.lx-cats__nav:hover { background: var(--lx-green-deep); transform: translateY(-50%) scale(1.08); box-shadow: 0 16px 32px -10px rgba(18, 80, 58, .75); }
.lx-cats__nav svg { width: 20px; height: 20px; }
.lx-cats__nav--prev { left: -26px; }
.lx-cats__nav--next { right: -26px; }
.lx-cats__nav.lx-hidden { opacity: 0; visibility: hidden; }

/* Her kategori = ayrı beyaz kart (görsel üstte, ad + adet altta) */
.lx-cat {
    display: flex; flex-direction: column; gap: 12px;
    background: var(--lx-paper); border: 1px solid var(--lx-line);
    border-radius: calc(var(--lx-radius) + 4px); box-shadow: var(--lx-shadow-sm);
    padding: 12px; text-align: center;
    transition: transform .5s var(--lx-ease-out), box-shadow .5s var(--lx-ease-out), border-color .5s var(--lx-ease-out);
}
.lx-cat:hover { transform: translateY(-6px); box-shadow: var(--lx-shadow); border-color: transparent; }
.lx-cat__media { position: relative; display: block; aspect-ratio: 3 / 4; border-radius: var(--lx-radius); overflow: hidden; background: var(--lx-cream-2); }
.lx-cat__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--lx-ease-out); }
.lx-cat:hover .lx-cat__img { transform: scale(1.05); }
.lx-cat__body { display: flex; flex-direction: column; gap: 6px; padding: 0 6px 8px; }
.lx-cat__name { font-family: var(--lx-serif); font-size: 19px; font-weight: 600; color: var(--lx-ink); line-height: 1.2; transition: color .35s var(--lx-ease); }
.lx-cat:hover .lx-cat__name { color: var(--lx-green); }
.lx-cat__go { display: inline-flex; align-items: center; justify-content: center; gap: 7px; font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--lx-green); }
.lx-cat__go svg { width: 14px; height: 14px; transition: transform .4s var(--lx-ease-out); }
.lx-cat:hover .lx-cat__go svg { transform: translateX(4px); }

/* ============================================================
   ÜRÜN KARTLARI
   ============================================================ */
.lx-products { background: var(--lx-cream); }
.lx-products--alt { background: var(--lx-paper); }
.lx-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.lx-grid--4 { grid-template-columns: repeat(4, 1fr); }

.lx-card {
    background: var(--lx-paper); border: 1px solid var(--lx-line); border-radius: var(--lx-radius);
    overflow: hidden; position: relative; display: flex; flex-direction: column;
    transition: transform .5s var(--lx-ease-out), box-shadow .5s var(--lx-ease-out), border-color .5s var(--lx-ease-out);
}
.lx-card:hover { transform: translateY(-6px); box-shadow: var(--lx-shadow); border-color: transparent; }

.lx-card__media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--lx-cream); display: block; }
.lx-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s var(--lx-ease-out), opacity .6s ease; }
/* kart hemen hover olur; görsel ~1 sn sonra yavaşça büyür (ayrılınca hemen geri döner) */
.lx-card:hover .lx-card__media img { transform: scale(1.045); transition-delay: .9s, 0s; }

.lx-card__badges { position: absolute; top: 14px; left: 14px; display: flex; flex-direction: column; gap: 7px; z-index: 3; }
.lx-badge { font-size: 10.5px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 6px 12px; border-radius: 50px; color: #fff; backdrop-filter: blur(2px); }
.lx-badge--prem { background: linear-gradient(120deg, var(--lx-gold), #cca766); }
.lx-badge--sale { background: var(--lx-danger); }
.lx-badge--new { background: var(--lx-green); }

.lx-card__fav {
    position: absolute; top: 12px; right: 12px; z-index: 3;
    width: 42px; height: 42px; border-radius: 50%; border: none; cursor: pointer;
    background: rgba(255, 255, 255, .92); color: var(--lx-ink);
    display: grid; place-items: center; opacity: 0; transform: translateY(-6px) scale(.9);
    transition: all .4s var(--lx-ease-out); box-shadow: var(--lx-shadow-sm);
}
.lx-card:hover .lx-card__fav { opacity: 1; transform: translateY(0) scale(1); }
.lx-card__fav:hover { background: var(--lx-blush); color: #fff; }
.lx-card__fav svg { width: 19px; height: 19px; }

.lx-card__quick {
    position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 3;
    display: flex; align-items: center; justify-content: center; gap: 9px;
    background: var(--lx-ink); color: #fff; height: 48px; border-radius: 12px;
    font-size: 12px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
    opacity: 0; transform: translateY(16px); transition: all .45s var(--lx-ease-out);
}
.lx-card__quick svg { width: 17px; height: 17px; }
.lx-card:hover .lx-card__quick { opacity: 1; transform: translateY(0); }
.lx-card__quick:hover { background: var(--lx-green); }

.lx-card__body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.lx-card__cat { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--lx-green); margin-bottom: 7px; }
.lx-card__title { font-family: var(--lx-serif); font-size: 19px; font-weight: 600; color: var(--lx-ink); line-height: 1.25; min-height: 2.5em; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.lx-card__title a:hover { color: var(--lx-green); }
.lx-card__rating { display: flex; align-items: center; gap: 5px; margin: 10px 0 12px; font-size: 12.5px; color: var(--lx-muted); }
.lx-card__rating svg { width: 14px; height: 14px; color: var(--lx-gold); }
.lx-card__foot { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; }
.lx-price { display: flex; flex-direction: column; line-height: 1.1; }
.lx-price__now { font-family: var(--lx-serif); font-size: 24px; font-weight: 600; color: var(--lx-ink); }
.lx-price__now small { font-size: 12px; font-family: var(--lx-sans); color: var(--lx-muted); font-weight: 400; }
.lx-price__old { font-size: 13px; color: var(--lx-muted); text-decoration: line-through; }
.lx-price__store { font-family: var(--lx-serif); font-size: 17px; color: var(--lx-green); font-style: italic; }
.lx-card__add {
    width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--lx-line);
    background: var(--lx-cream); color: var(--lx-ink); cursor: pointer;
    display: grid; place-items: center; flex-shrink: 0; transition: all .35s var(--lx-ease); text-decoration: none;
}
.lx-card__add:hover { background: var(--lx-green); color: #fff; border-color: var(--lx-green); }
.lx-card__add svg { width: 20px; height: 20px; }

/* ============================================================
   PREMIUM ÜRÜNLER — animasyonlu, sürüklenebilir carousel
   ============================================================ */
.lx-carousel { position: relative; }
.lx-carousel__track {
    display: flex; gap: 22px; overflow-x: auto;
    scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none;
    padding: 12px 2px 20px; margin: 0 -2px; cursor: grab;
}
.lx-carousel__track::-webkit-scrollbar { display: none; }
.lx-carousel__track.lx-dragging { cursor: grabbing; scroll-snap-type: none; user-select: none; }
.lx-carousel__track > .lx-citem {
    flex: 0 0 calc((100% - 3 * 22px) / 4);   /* 4 kart görünür */
    scroll-snap-align: start;
}
.lx-carousel__track .lx-card__media img,
.lx-carousel__track .lx-citem img { -webkit-user-drag: none; }

/* Kartların animasyonlu girişi (JS varsa gizli başlar; translate/scale ayrı özellik → hover transform'u bozmaz) */
.lx-js .lx-carousel__track > .lx-citem { opacity: 0; }
.lx-js .lx-carousel__track > .lx-citem.lx-in { animation: lx-citem-in .75s var(--lx-ease-out) forwards; }
@keyframes lx-citem-in {
    from { opacity: 0; translate: 70px 0; scale: .9; }
    to   { opacity: 1; translate: 0 0; scale: 1; }
}

/* Yan ok butonları */
.lx-carousel__nav {
    position: absolute; top: calc(50% - 4px); transform: translateY(-50%); z-index: 6;
    width: 52px; height: 52px; border-radius: 50%;
    border: 1px solid var(--lx-line); background: var(--lx-paper); color: var(--lx-ink);
    cursor: pointer; display: grid; place-items: center; box-shadow: var(--lx-shadow);
    transition: all .3s var(--lx-ease);
}
.lx-carousel__nav:hover { background: var(--lx-green); color: #fff; border-color: var(--lx-green); transform: translateY(-50%) scale(1.06); }
.lx-carousel__nav svg { width: 21px; height: 21px; }
.lx-carousel__nav--prev { left: -16px; }
.lx-carousel__nav--next { right: -16px; }
.lx-carousel__nav.lx-hidden { opacity: 0; visibility: hidden; }

/* İpucu */
.lx-carousel__hint {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 6px; font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
    color: var(--lx-muted);
}
.lx-carousel__hint svg { width: 16px; height: 16px; color: var(--lx-green); }

/* ============================================================
   ŞERİT BANNER (CTA)
   ============================================================ */
.lx-cta { position: relative; overflow: hidden; background: var(--lx-green-deep); }
.lx-cta__inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 70px 0; flex-wrap: wrap; }
.lx-cta__deco { position: absolute; inset: 0; opacity: .14; background-image: radial-gradient(circle at 12% 20%, #fff 0, transparent 38%), radial-gradient(circle at 88% 84%, var(--lx-gold) 0, transparent 42%); }
.lx-cta__t { color: #fff; }
.lx-cta__t .lx-eyebrow { color: #e9d9bd; }
.lx-cta__t .lx-eyebrow::before { background: linear-gradient(90deg, transparent, var(--lx-gold)); }
.lx-cta__t h2 { font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem); color: #fff; margin: 12px 0 6px; }
.lx-cta__t p { color: rgba(255, 255, 255, .78); max-width: 460px; }

/* ============================================================
   FOOTER
   ============================================================ */
/* Botanik yeşil zemin + altın aksanlar (tasarımla uyumlu, premium) */
.lx-footer { position: relative; background: linear-gradient(180deg, var(--lx-green-deep) 0%, #0e3d2c 100%); color: #aec5b9; }
.lx-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--lx-gold-soft) 22%, var(--lx-gold) 50%, var(--lx-gold-soft) 78%, transparent); opacity: .55; }
.lx-footer__top { padding: 78px 0 52px; }
.lx-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 44px; }
.lx-footer h5 { font-family: var(--lx-serif); font-size: 21px; color: #fff; margin-bottom: 22px; font-weight: 600; letter-spacing: .3px; }
.lx-footer__brand img { height: 50px; width: auto; margin-bottom: 20px; }
.lx-footer__brand-name { font-family: var(--lx-serif); font-size: 28px; color: #fff; margin-bottom: 18px; }
.lx-footer__brand-name span { color: var(--lx-gold); font-style: italic; }
.lx-footer__about { font-size: 14px; line-height: 1.8; color: #9bb4a6; margin-bottom: 24px; max-width: 330px; }
.lx-footer__contact { display: flex; flex-direction: column; gap: 14px; }
.lx-footer__contact a, .lx-footer__contact span { display: inline-flex; align-items: center; gap: 13px; font-size: 14px; color: #bdd1c6; }
.lx-footer__contact a:hover { color: #fff; }
.lx-footer__contact .lx-ci { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .14); background: rgba(255, 255, 255, .04); display: grid; place-items: center; flex-shrink: 0; color: var(--lx-gold); transition: all .35s var(--lx-ease); }
.lx-footer__contact a:hover .lx-ci { background: var(--lx-gold); color: var(--lx-green-deep); border-color: var(--lx-gold); }
.lx-footer__contact .lx-ci svg { width: 17px; height: 17px; }
.lx-footer__menu { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 13px; }
.lx-footer__menu a { font-size: 14px; color: #9bb4a6; display: inline-flex; align-items: center; gap: 9px; transition: color .3s var(--lx-ease); }
.lx-footer__menu a::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--lx-gold); opacity: 0; transform: translateX(-6px); transition: all .35s var(--lx-ease); }
.lx-footer__menu a:hover { color: #fff; }
.lx-footer__menu a:hover::before { opacity: 1; transform: translateX(0); }

.lx-newsletter p { font-size: 14px; color: #9bb4a6; margin-bottom: 18px; line-height: 1.7; }
.lx-newsletter__form { position: relative; }
.lx-newsletter__form input { width: 100%; height: 52px; border-radius: 50px; border: 1px solid rgba(255, 255, 255, .16); background: rgba(255, 255, 255, .05); padding: 0 58px 0 22px; color: #fff; font-family: var(--lx-sans); font-size: 14px; outline: none; transition: border-color .35s var(--lx-ease), background .35s var(--lx-ease); }
.lx-newsletter__form input::placeholder { color: #7f988a; }
.lx-newsletter__form input:focus { border-color: var(--lx-gold); background: rgba(255, 255, 255, .08); }
.lx-newsletter__form button { position: absolute; top: 6px; right: 6px; width: 42px; height: 40px; border: none; border-radius: 50px; background: var(--lx-gold); color: var(--lx-green-deep); cursor: pointer; display: grid; place-items: center; transition: background .35s var(--lx-ease); }
.lx-newsletter__form button:hover { background: #cda869; }
.lx-newsletter__form button svg { width: 18px; height: 18px; }
.lx-socials { display: flex; gap: 11px; margin-top: 24px; }
.lx-socials a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .16); display: grid; place-items: center; color: #bdd1c6; transition: all .35s var(--lx-ease); }
.lx-socials a:hover { background: var(--lx-gold); color: var(--lx-green-deep); border-color: var(--lx-gold); transform: translateY(-3px); }
.lx-socials svg { width: 18px; height: 18px; }

.lx-footer__bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding: 22px 0; background: rgba(0, 0, 0, .12); }
.lx-footer__bottom-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: 13px; color: #8fa89a; }
.lx-footer__bottom-row a { color: var(--lx-gold); }
.lx-footer__pay img { height: 26px; opacity: .9; border-radius: 4px; }

/* ============================================================
   YARDIMCI / DAVRANIŞ
   ============================================================ */
/* Reveal yalnızca JS aktifse gizlenir; JS yüklenmezse içerik görünür kalır (boş sayfa riski yok) */
.lx-js .lx-reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--lx-ease-out), transform .9s var(--lx-ease-out); }
.lx-js .lx-reveal.is-in { opacity: 1; transform: translateY(0); }
.lx-reveal[data-d="1"] { transition-delay: .08s; }
.lx-reveal[data-d="2"] { transition-delay: .16s; }
.lx-reveal[data-d="3"] { transition-delay: .24s; }
.lx-reveal[data-d="4"] { transition-delay: .32s; }
.lx-reveal[data-d="5"] { transition-delay: .4s; }

/* Lazy görsel fade */
.lx-body img.lazy { opacity: 0; }
.lx-body img.lazyloaded { opacity: 1; transition: opacity .7s var(--lx-ease); }

/* Scroll top */
.lx-totop {
    position: fixed; bottom: 28px; right: 28px; z-index: 800;
    width: 52px; height: 52px; border-radius: 50%; border: none; cursor: pointer;
    background: var(--lx-green); color: #fff; display: grid; place-items: center;
    opacity: 0; visibility: hidden; transform: translateY(16px); transition: all .45s var(--lx-ease-out);
    box-shadow: var(--lx-shadow);
}
.lx-totop.is-show { opacity: 1; visibility: visible; transform: translateY(0); }
.lx-totop:hover { background: var(--lx-green-deep); }
.lx-totop svg { width: 22px; height: 22px; }

/* Mobil menü panel */
.lx-mobile { position: fixed; inset: 0; z-index: 1000; visibility: hidden; }
.lx-mobile.is-open { visibility: visible; }
.lx-mobile__overlay { position: absolute; inset: 0; background: rgba(20, 18, 14, .5); opacity: 0; transition: opacity .4s var(--lx-ease); }
.lx-mobile.is-open .lx-mobile__overlay { opacity: 1; }
.lx-mobile__panel { position: absolute; top: 0; left: 0; bottom: 0; width: min(360px, 86vw); background: var(--lx-cream); transform: translateX(-100%); transition: transform .45s var(--lx-ease-out); display: flex; flex-direction: column; padding: 24px; overflow-y: auto; }
.lx-mobile.is-open .lx-mobile__panel { transform: translateX(0); }
.lx-mobile__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.lx-mobile .lx-search { display: block; max-width: none; margin-bottom: 20px; }
.lx-mobile__close { width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--lx-line); background: var(--lx-paper); cursor: pointer; }
.lx-mobile__close svg { width: 20px; height: 20px; margin: auto; }
.lx-mobile__list { list-style: none; padding: 0; margin: 0; }
.lx-mobile__list a { display: block; padding: 14px 6px; border-bottom: 1px solid var(--lx-line); font-size: 15px; letter-spacing: .5px; color: var(--lx-ink); }
.lx-mobile__list a:hover { color: var(--lx-green); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
    .lx-grid { grid-template-columns: repeat(4, 1fr); }
    .lx-footer__grid { grid-template-columns: 1.4fr 1fr 1.2fr; }
    .lx-newsletter { grid-column: 1 / -1; }
}

@media (max-width: 991px) {
    .lx-section { padding: 64px 0; }
    .lx-header__row { gap: 12px; padding: 14px 0; }
    .lx-search { display: none; }
    .lx-nav { display: none; }
    .lx-burger { display: grid; place-items: center; }
    .lx-action__label { display: none; }
    .lx-action { padding: 8px; }
    /* mobilde scroll'da menü (burger) + tüm aksiyonlar erişilebilir kalsın */
    .lx-header.lx-scrolled .lx-header__left,
    .lx-header.lx-scrolled .lx-header__right,
    .lx-header.lx-scrolled .lx-header__right .lx-action { opacity: 1; visibility: visible; pointer-events: auto; }
    .lx-logo img { height: 44px; }
    .lx-logo__text { font-size: 23px; }
    .lx-logo__tagline { display: none; }
    .lx-trust__grid { grid-template-columns: repeat(2, 1fr); }
    .lx-trust__item:nth-child(2)::before { display: none; }
    .lx-cats__track > .lx-cat { flex-basis: calc((100% - 22px) / 2 - 18px); }  /* ~2.5 kart görünür */
    .lx-cats__nav { display: none; }
    .lx-carousel__track > .lx-citem { flex-basis: calc((100% - 22px) / 2 - 18px); }  /* ~2.5 kart */
    .lx-carousel__nav { display: none; }
    .lx-grid, .lx-grid--4 { grid-template-columns: repeat(3, 1fr); }
    .lx-footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .lx-section { padding: 52px 0; }
    .lx-container { padding: 0 18px; }
    .lx-head { margin-bottom: 32px; }
    .lx-grid, .lx-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .lx-cats__track > .lx-cat { flex-basis: 62%; }   /* ~1.6 kart görünür */
    .lx-carousel__track > .lx-citem { flex-basis: 62%; }   /* ~1.6 kart */
    .lx-trust__item + .lx-trust__item::before { display: none; }
    .lx-card__quick { display: none; }
    .lx-card__fav { opacity: 1; transform: none; }
    .lx-announce__links { display: none; }
    .lx-footer__grid { grid-template-columns: 1fr; gap: 34px; }
    .lx-cta__inner { padding: 50px 0; }
}

@media (max-width: 479px) {
    .lx-cats__track > .lx-cat { flex-basis: 78%; }   /* ~1.2 kart görünür */
    .lx-carousel__track > .lx-citem { flex-basis: 80%; }   /* ~1.15 kart */
    .lx-grid, .lx-grid--4 { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .lx-card__body { padding: 14px; }
    .lx-card__title { font-size: 16px; }
    .lx-price__now { font-size: 19px; }
    .lx-card__foot { flex-wrap: wrap; gap: 8px; }
    .lx-card__add { width: 40px; height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
    .lx-body *, .lx-reveal { transition: none !important; animation: none !important; }
    .lx-js .lx-reveal, .lx-reveal { opacity: 1 !important; transform: none !important; translate: none !important; scale: none !important; }
}

/* ============================================================
   LUXORA — Le Défilé Stage (sabit sahne, scroll'a bağlı geçiş)
   Ürünler aynı yerde durur; aşağı kaydırdıkça aktif ürün KENDİ
   tarafına (sol→sola, sağ→sağa) opacity ile silinir, yenisi gelir.
   Sticky pin + scroll ilerlemesi (JS sürer). .lx-js gizli durumu
   kapılar; img opaklığı global lazy-loader'a aittir.
   ============================================================ */
.lx-catalog {
  position: relative;
  background: radial-gradient(120% 60% at 50% -10%, var(--lx-cream-2) 0%, var(--lx-cream) 55%, var(--lx-paper) 100%);
}
/* --lx-step: tasarım başına scroll mesafesi (küçült = tek harekette direkt geçiş). Anlık (cut) geçiş için kısa tutuldu. */
.lx-js .lx-catalog { height: calc(100vh + (var(--lx-count, 8) - 1) * var(--lx-step, 50vh)); }

.lx-catalog__pin { position: relative; padding: clamp(48px, 7vw, 96px) 0; overflow: hidden; background: radial-gradient(120% 90% at 50% 0%, var(--lx-cream-2) 0%, var(--lx-cream) 58%, var(--lx-paper) 100%); }
.lx-js .lx-catalog__pin { position: sticky; top: 0; height: 100vh; padding: 0; }

/* yumuşak galeri kenarları */
.lx-catalog__edge { position: absolute; top: 0; bottom: 0; width: clamp(70px, 11vw, 190px); pointer-events: none; z-index: 4; }
.lx-catalog__edge--l { left: 0; background: linear-gradient(90deg, rgba(27,24,19,.10) 0%, rgba(27,24,19,.04) 38%, transparent 100%); }
.lx-catalog__edge--r { right: 0; background: linear-gradient(270deg, rgba(27,24,19,.10) 0%, rgba(27,24,19,.04) 38%, transparent 100%); }

.lx-catalog__inner { position: relative; z-index: 3; }
.lx-js .lx-catalog__inner { height: 100%; display: flex; flex-direction: column; padding-top: clamp(60px, 8vh, 104px); padding-bottom: clamp(30px, 5vh, 64px); }

/* başlık + sayaç (pin'de hep görünür) */
.lx-catalog__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(22px, 3.5vh, 44px); }
/* başlık her zaman ekranda sabit (asla küçülmez/kaybolmaz) */
.lx-js .lx-catalog__head { flex: 0 0 auto; }
.lx-catalog__counter { display: none; align-items: baseline; gap: 6px; font-family: var(--lx-serif); color: var(--lx-muted); line-height: 1; }
.lx-js .lx-catalog__counter { display: flex; }
.lx-catalog__counter-cur { font-size: clamp(30px, 4vw, 46px); font-weight: 600; color: var(--lx-green-deep); }
.lx-catalog__counter-sep { font-size: 20px; }
.lx-catalog__counter-total { font-size: 20px; }

/* deck: sabit alan, içinde üst üste duran ürünler */
.lx-catalog__deck { position: relative; }
.lx-js .lx-catalog__deck { flex: 1; min-height: 0; perspective: 1600px; perspective-origin: 50% 48%; }
/* görsel ve yazı ayrı anime edilir; görsele 3B perspektif geçsin diye satır preserve-3d */
.lx-js .lx-catalog__media { opacity: 0; backface-visibility: hidden; will-change: transform, opacity, filter; }
.lx-js .lx-catalog__panel { opacity: 0; will-change: transform, opacity; }

/* ROW */
.lx-catalog__row { position: relative; display: grid; align-items: center; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(28px, 5vw, 76px); }
.lx-catalog__row + .lx-catalog__row { margin-top: clamp(56px, 8vw, 110px); }
.lx-js .lx-catalog__row { position: absolute; inset: 0; margin: 0; align-content: center; transform-style: preserve-3d; }
.lx-catalog__row[data-side="right"] .lx-catalog__media { order: 2; }
.lx-catalog__row[data-side="right"] .lx-catalog__panel { order: 1; text-align: right; }

/* MEDYA / FRAME */
.lx-catalog__media { position: relative; display: block; aspect-ratio: 4 / 5; border-radius: var(--lx-radius); }
/* daha küçük, zarif portre görsel — sütununda ortalı (daha premium boşluk) */
.lx-js .lx-catalog__media { width: min(100%, 430px); max-height: 52vh; justify-self: center; }
.lx-catalog__index { position: absolute; z-index: 1; top: -.42em; pointer-events: none; user-select: none; font-family: var(--lx-serif); font-weight: 600; line-height: 1; font-size: clamp(90px, 12vw, 190px); color: var(--lx-ink); opacity: .08; }
.lx-catalog__row[data-side="left"]  .lx-catalog__index { left: -.16em; }
.lx-catalog__row[data-side="right"] .lx-catalog__index { right: -.16em; }
.lx-catalog__frame { position: absolute; inset: 0; z-index: 2; overflow: hidden; border-radius: var(--lx-radius); box-shadow: var(--lx-shadow-lg); background: var(--lx-cream-2); }
.lx-catalog__frame img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.2s var(--lx-ease-out); }
.lx-catalog__media:hover .lx-catalog__frame img { transform: scale(1.05); }
.lx-catalog__badges { position: absolute; left: 14px; top: 14px; z-index: 3; display: flex; flex-direction: column; gap: 8px; }

/* PANEL */
.lx-catalog__panel { position: relative; z-index: 3; max-width: 500px; }
.lx-catalog__row[data-side="right"] .lx-catalog__panel { margin-left: auto; }
.lx-catalog__eyebrow { display: inline-block; font: 600 12px/1 var(--lx-sans); letter-spacing: 2.4px; text-transform: uppercase; color: var(--lx-gold); margin-bottom: 14px; }
.lx-catalog__title { font-family: var(--lx-serif); font-weight: 600; font-size: clamp(26px, 3.4vw, 46px); line-height: 1.05; color: var(--lx-ink); margin: 0 0 16px; }
.lx-catalog__title a { color: inherit; background-image: linear-gradient(var(--lx-gold), var(--lx-gold)); background-size: 0% 1px; background-position: 0 100%; background-repeat: no-repeat; transition: background-size .5s var(--lx-ease-out); }
.lx-catalog__row[data-side="right"] .lx-catalog__title a { background-position: 100% 100%; }
.lx-catalog__title a:hover { background-size: 100% 1px; }
.lx-catalog__rule { display: block; height: 1px; width: 86px; margin: 0 0 18px; background: linear-gradient(90deg, var(--lx-gold), rgba(184,150,90,.12)); }
.lx-catalog__row[data-side="right"] .lx-catalog__rule { margin-left: auto; background: linear-gradient(270deg, var(--lx-gold), rgba(184,150,90,.12)); }
.lx-catalog__desc { font: 400 15.5px/1.7 var(--lx-sans); color: var(--lx-ink-soft); margin: 0 0 18px; max-width: 46ch; }
.lx-catalog__row[data-side="right"] .lx-catalog__desc { margin-left: auto; }
.lx-catalog__meta { display: inline-flex; align-items: center; gap: 7px; color: var(--lx-muted); font: 500 13px/1 var(--lx-sans); margin-bottom: 18px; }
.lx-catalog__meta svg { width: 16px; height: 16px; color: var(--lx-gold); }
.lx-catalog__price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 24px; font-family: var(--lx-serif); }
.lx-catalog__row[data-side="right"] .lx-catalog__price { justify-content: flex-end; }
.lx-catalog__price .now { font-size: 30px; font-weight: 600; color: var(--lx-green-deep); }
.lx-catalog__price .now small { font-size: .55em; color: var(--lx-muted); font-family: var(--lx-sans); }
.lx-catalog__price .old { font-size: 18px; color: var(--lx-muted); text-decoration: line-through; }
.lx-catalog__price .store { font: italic 600 18px/1 var(--lx-serif); color: var(--lx-green); }

/* ilerleme çubuğu */
.lx-catalog__progress { display: none; height: 2px; margin-top: clamp(18px, 3vh, 34px); background: var(--lx-line); border-radius: 2px; overflow: hidden; }
.lx-js .lx-catalog__progress { display: block; }
.lx-catalog__progress span { display: block; height: 100%; width: 100%; transform: scaleX(0); transform-origin: left center; background: linear-gradient(90deg, var(--lx-gold), var(--lx-green)); }

/* Responsive <=767px: sabitlemeyi bırak, normal dikey akış */
@media (max-width: 767px) {
  .lx-js .lx-catalog { height: auto; }
  .lx-js .lx-catalog__pin { position: relative; height: auto; padding: clamp(44px, 9vw, 70px) 0; overflow: visible; }
  .lx-js .lx-catalog__inner { display: block; height: auto; padding: 0; }
  .lx-js .lx-catalog__row { position: relative; inset: auto; opacity: 1 !important; transform: none !important; }
  .lx-js .lx-catalog__media, .lx-js .lx-catalog__panel { opacity: 1 !important; transform: none !important; filter: none !important; }
  .lx-js .lx-catalog__row + .lx-catalog__row { margin-top: clamp(48px, 12vw, 84px); }
  .lx-js .lx-catalog__media { height: auto; aspect-ratio: 4 / 3.4; }
  .lx-catalog__row,
  .lx-catalog__row[data-side="right"] { grid-template-columns: 1fr; gap: 22px; }
  .lx-catalog__row[data-side="right"] .lx-catalog__media,
  .lx-catalog__row[data-side="right"] .lx-catalog__panel { order: initial; text-align: left; }
  .lx-catalog__row[data-side="right"] .lx-catalog__panel,
  .lx-catalog__row[data-side="right"] .lx-catalog__desc { margin-left: 0; }
  .lx-catalog__row[data-side="right"] .lx-catalog__price { justify-content: flex-start; }
  .lx-catalog__row[data-side="right"] .lx-catalog__rule { margin-left: 0; background: linear-gradient(90deg, var(--lx-gold), rgba(184,150,90,.12)); }
  .lx-catalog__panel { max-width: none; }
  .lx-catalog__index { font-size: clamp(80px, 26vw, 150px); }
  .lx-catalog__counter, .lx-catalog__progress { display: none !important; }
}

/* Reduced motion: sabit & dikey akış, hareket yok */
@media (prefers-reduced-motion: reduce) {
  .lx-js .lx-catalog { height: auto !important; }
  .lx-js .lx-catalog__pin { position: relative !important; height: auto !important; overflow: visible !important; padding: clamp(48px, 7vw, 96px) 0 !important; }
  .lx-js .lx-catalog__inner { display: block !important; height: auto !important; padding: 0 !important; }
  .lx-js .lx-catalog__row { position: relative !important; inset: auto !important; opacity: 1 !important; transform: none !important; }
  .lx-js .lx-catalog__media, .lx-js .lx-catalog__panel { opacity: 1 !important; transform: none !important; filter: none !important; }
  .lx-js .lx-catalog__row + .lx-catalog__row { margin-top: clamp(56px, 8vw, 110px); }
  .lx-js .lx-catalog__media { height: auto !important; aspect-ratio: 4 / 5; }
  .lx-catalog__frame img { transition: none !important; }
  .lx-catalog__counter, .lx-catalog__progress { display: none !important; }
}

/* ============================================================
   LUXORA — Yatay Kayan Premium Galeri (dikey büyük resimli kartlar)
   Sayfa aşağı kaydıkça bölüm sabitlenir (sticky pin), kartlar
   sağdan sola yatay kayar; başlık kayarken hep görünür.
   ============================================================ */
.lx-hgal { position: relative; background: var(--lx-cream); }
/* --lx-hstep: kart başına dikey scroll mesafesi (büyüt = daha yavaş yatay kayma) */
.lx-js .lx-hgal { height: calc(100vh + var(--lx-hcount, 10) * var(--lx-hstep, 30vh)); }

.lx-hgal__pin { position: relative; padding: clamp(44px, 6vw, 80px) 0; }
/* Pin tam ekranı kaplar (top:0, 100vh) → üstte/altta başka bölüm (kategori vb.) görünmez.
   Kart, viewport'u sabit küçük boşlukla DOLDURUR (kocaman boşluk da yok, kırpılma da). */
.lx-js .lx-hgal__pin { position: sticky; top: 0; height: 100vh; padding: 0; display: flex; flex-direction: column; overflow: hidden; }

.lx-hgal__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; padding-bottom: clamp(20px, 3vh, 40px); }
.lx-js .lx-hgal__head { flex: 0 0 auto; padding-top: 28px; }
.lx-hgal__progress { display: none; width: 170px; height: 2px; background: var(--lx-line); border-radius: 2px; overflow: hidden; }
.lx-js .lx-hgal__progress { display: block; }
.lx-hgal__progress span { display: block; height: 100%; width: 100%; transform: scaleX(0); transform-origin: left center; background: linear-gradient(90deg, var(--lx-gold), var(--lx-green)); }

.lx-hgal__viewport { position: relative; }
.lx-js .lx-hgal__viewport { flex: 1; min-height: 0; display: flex; align-items: center; overflow: hidden; }
.lx-hgal__track { display: flex; gap: clamp(18px, 2vw, 30px); padding: 4px clamp(20px, 5vw, 80px); will-change: transform; }
/* başlangıç boşluğu: girişte sol taraf boş, ilk kart en sağda; kaydırınca kartlar sağdan akar */
.lx-hgal__lead { display: none; }
.lx-js .lx-hgal__lead { display: block; flex: 0 0 clamp(0px, 62vw, 940px); }

/* dikey büyük resimli ÜRÜN KARTI — görsel üstte, isim + fiyat altta */
.lx-hgal__card { position: relative; flex: 0 0 clamp(320px, 29vw, 480px); height: clamp(360px, calc(100vh - 270px), 760px); border-radius: var(--lx-radius); overflow: hidden; background: var(--lx-paper); border: 1px solid var(--lx-line); box-shadow: var(--lx-shadow-sm); display: flex; flex-direction: column; transition: transform .6s var(--lx-ease-out), box-shadow .6s var(--lx-ease-out), border-color .6s var(--lx-ease-out); }
.lx-hgal__card:hover { transform: translateY(-4px); box-shadow: var(--lx-shadow); border-color: transparent; }
.lx-hgal__media { position: relative; flex: 1; min-height: 0; overflow: hidden; background: var(--lx-cream-2); display: block; }
/* hover'da görsel hafifçe ve yavaşça büyür (ani değil, yumuşak) */
.lx-hgal__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s var(--lx-ease-out); }
/* kart hemen hover olur; görsel ~1 sn sonra yavaşça büyür (ayrılınca hemen geri döner) */
.lx-hgal__card:hover .lx-hgal__img { transform: scale(1.045); transition-delay: .9s; }
.lx-hgal__badges { position: absolute; top: 14px; left: 14px; z-index: 2; display: flex; flex-direction: column; gap: 8px; }
.lx-hgal__body { flex: 0 0 auto; padding: 16px 18px 20px; text-align: center; display: flex; flex-direction: column; gap: 7px; }
.lx-hgal__cat { font: 600 10.5px/1 var(--lx-sans); letter-spacing: 1.8px; text-transform: uppercase; color: var(--lx-green); }
.lx-hgal__title { font-family: var(--lx-serif); font-weight: 600; font-size: 20px; line-height: 1.2; color: var(--lx-ink); display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.4em; transition: color .35s var(--lx-ease); }
.lx-hgal__card:hover .lx-hgal__title { color: var(--lx-green); }
.lx-hgal__price { display: flex; align-items: baseline; justify-content: center; gap: 8px; font-family: var(--lx-serif); }
.lx-hgal__price .now { font-size: 22px; font-weight: 600; color: var(--lx-green-deep); }
.lx-hgal__price .old { font-size: 15px; color: var(--lx-muted); text-decoration: line-through; }
.lx-hgal__price .store { font-style: italic; font-size: 17px; color: var(--lx-green); }

.lx-hgal__hint { display: none; }
/* ipucu artık akışta, kartların ALTINDA kendi alanında (fiyatın üstüne binmez) */
.lx-js .lx-hgal__hint { display: inline-flex; align-self: center; align-items: center; gap: 8px; flex: 0 0 auto; margin: 28px 0 22px; font: 600 11px/1 var(--lx-sans); letter-spacing: 1.5px; text-transform: uppercase; color: var(--lx-muted); }
.lx-hgal__hint svg { width: 16px; height: 16px; color: var(--lx-green); }

/* Mobil: sabitleme yok, doğal yatay kaydırma (parmakla) */
@media (max-width: 767px) {
  .lx-js .lx-hgal { height: auto; }
  .lx-js .lx-hgal__pin { position: relative; height: auto; display: block; overflow: visible; padding: clamp(40px, 8vw, 64px) 0; }
  .lx-js .lx-hgal__head { padding-top: 0; }
  .lx-js .lx-hgal__viewport { display: block; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .lx-hgal__viewport::-webkit-scrollbar { display: none; }
  .lx-hgal__track { transform: none !important; padding: 0 18px; }
  .lx-hgal__lead { display: none !important; }
  .lx-hgal__card { flex-basis: 78vw; height: clamp(380px, 64vh, 560px); scroll-snap-align: center; }
  .lx-hgal__progress, .lx-hgal__hint { display: none !important; }
}

/* Reduced motion: doğal yatay kaydırma, hareket yok */
@media (prefers-reduced-motion: reduce) {
  .lx-js .lx-hgal { height: auto !important; }
  .lx-js .lx-hgal__pin { position: relative !important; height: auto !important; display: block !important; overflow: visible !important; }
  .lx-js .lx-hgal__viewport { display: block !important; overflow-x: auto !important; }
  .lx-hgal__track { transform: none !important; }
  .lx-hgal__lead { display: none !important; }
  .lx-hgal__img { transition: none !important; }
}

/* ============================================================
   CTA BUTONLARI — modern, şık (etiket + dairesel ok rozeti)
   ============================================================ */
.lx-cbtn {
    display: inline-flex; align-items: center; gap: 14px;
    padding: 7px 8px 7px 28px;
    border-radius: 50px;
    font-family: var(--lx-sans); font-size: 13px; font-weight: 600;
    letter-spacing: 1.4px; text-transform: uppercase;
    cursor: pointer; position: relative; border: 1px solid transparent;
    white-space: nowrap; text-decoration: none;
    transition: transform .45s var(--lx-ease-out), box-shadow .45s var(--lx-ease-out), background .4s var(--lx-ease-out), color .4s var(--lx-ease-out);
}
.lx-cbtn__label { line-height: 1; }
.lx-cbtn__ico {
    width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
    display: grid; place-items: center;
    transition: transform .5s var(--lx-ease-out), background .4s var(--lx-ease-out), color .4s var(--lx-ease-out);
}
.lx-cbtn__ico svg { width: 18px; height: 18px; transition: transform .5s var(--lx-ease-out); }
.lx-cbtn:hover { transform: translateY(-3px); }
.lx-cbtn:hover .lx-cbtn__ico svg { transform: translateX(3px); }

/* açık varyant — koyu yeşil zemin için (CTA bandı) */
.lx-cbtn--light { background: var(--lx-cream); color: var(--lx-green-deep); box-shadow: 0 16px 34px -18px rgba(0, 0, 0, .55); }
.lx-cbtn--light .lx-cbtn__ico { background: var(--lx-green-deep); color: var(--lx-gold); }
.lx-cbtn--light:hover { box-shadow: 0 24px 46px -18px rgba(0, 0, 0, .65); }
.lx-cbtn--light:hover .lx-cbtn__ico { background: var(--lx-gold); color: var(--lx-green-deep); }

/* yeşil varyant — açık/krem zemin için (Öne Çıkan Tasarımlar) */
.lx-cbtn--green { background: var(--lx-green); color: #fff; box-shadow: 0 16px 34px -18px rgba(18, 80, 58, .7); }
.lx-cbtn--green .lx-cbtn__ico { background: rgba(255, 255, 255, .16); color: #fff; }
.lx-cbtn--green:hover { background: var(--lx-green-deep); box-shadow: 0 24px 46px -18px rgba(18, 80, 58, .85); }
.lx-cbtn--green:hover .lx-cbtn__ico { background: var(--lx-gold); color: var(--lx-green-deep); }

/* katalog giriş animasyonu hover lift'i ezmesin */
.lx-catalog__row.is-in .lx-cbtn:hover { transform: translateY(-3px); }

/* ============================================================
   ════════════════════════════════════════════════════════════
   LUXORA — İÇ SAYFALAR (inner pages) ortak bileşenleri
   Anasayfayla aynı tasarım dili: krem zemin, serif başlık,
   botanik yeşil + altın aksan, geniş köşe, yumuşak gölge.
   Tüm iç sayfalar (kategori, ürün, sepet, hesap, statik) bunu kullanır.
   ════════════════════════════════════════════════════════════
   ============================================================ */

/* ---------- Sayfa kabuğu ---------- */
.lx-page { background: var(--lx-cream); min-height: 40vh; }
.lx-pagesec { padding: clamp(40px, 5vw, 72px) 0; }
.lx-pagesec--tight { padding: clamp(28px, 3.5vw, 48px) 0; }
.lx-narrow { max-width: 920px; margin: 0 auto; }
.lx-narrow--sm { max-width: 680px; margin: 0 auto; }

/* ---------- Breadcrumb / Sayfa başlığı (premium hero band) ---------- */
.lx-breadcrumb {
    position: relative;
    background:
        radial-gradient(120% 130% at 100% 0%, var(--lx-green-soft) 0%, transparent 46%),
        radial-gradient(120% 130% at 0% 100%, var(--lx-gold-soft) 0%, transparent 42%),
        var(--lx-cream-2);
    border-bottom: 1px solid var(--lx-line);
    overflow: hidden;
}
.lx-breadcrumb::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--lx-gold-soft) 22%, var(--lx-gold) 50%, var(--lx-gold-soft) 78%, transparent);
    opacity: .55;
}
.lx-breadcrumb__inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 18px 28px; flex-wrap: wrap; padding: clamp(26px, 3.6vw, 44px) 0;
}
.lx-breadcrumb__title { font-size: clamp(1.7rem, 1.2rem + 1.9vw, 2.7rem); color: var(--lx-ink); line-height: 1.1; }
.lx-breadcrumb__title em { font-style: italic; color: var(--lx-green); }
.lx-breadcrumb__sub { margin-top: 8px; color: var(--lx-ink-soft); font-size: 14.5px; max-width: 560px; }
.lx-crumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; font-size: 13px; color: var(--lx-muted); }
.lx-crumbs a { color: var(--lx-ink-soft); display: inline-flex; align-items: center; gap: 6px; transition: color .3s var(--lx-ease); }
.lx-crumbs a:hover { color: var(--lx-green); }
.lx-crumbs svg { width: 14px; height: 14px; }
.lx-crumbs__sep { color: var(--lx-line); display: inline-flex; }
.lx-crumbs__sep svg { width: 14px; height: 14px; }
.lx-crumbs__cur { color: var(--lx-green); font-weight: 500; }

/* ---------- Genel başlık küçük ---------- */
.lx-mini-head { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.lx-mini-head__t { font-family: var(--lx-serif); font-size: clamp(1.3rem, 1rem + 1vw, 1.9rem); color: var(--lx-ink); }
.lx-mini-head__t em { font-style: italic; color: var(--lx-green); }
.lx-mini-head__rule { flex: 1; height: 1px; background: linear-gradient(90deg, var(--lx-gold), transparent); }

/* ---------- Panel / yüzey ---------- */
.lx-panel {
    background: var(--lx-paper); border: 1px solid var(--lx-line);
    border-radius: calc(var(--lx-radius) + 4px); box-shadow: var(--lx-shadow-sm);
    overflow: hidden;
}
.lx-panel--pad { padding: clamp(20px, 2.5vw, 34px); }
.lx-panel__head { padding: 20px 24px; border-bottom: 1px solid var(--lx-line); display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.lx-panel__head h3, .lx-panel__head h2 { font-family: var(--lx-serif); font-size: 21px; color: var(--lx-ink); }
.lx-panel__body { padding: clamp(18px, 2.2vw, 28px); }
.lx-panel__ico { width: 44px; height: 44px; border-radius: 50%; background: var(--lx-green-soft); color: var(--lx-green); display: grid; place-items: center; flex-shrink: 0; }
.lx-panel__ico svg { width: 22px; height: 22px; }

/* ---------- Zengin metin (statik içerik / sözleşme / blog) ---------- */
.lx-prose { color: var(--lx-ink-soft); font-size: 15.5px; line-height: 1.85; }
.lx-prose > *:first-child { margin-top: 0; }
.lx-prose h1, .lx-prose h2, .lx-prose h3, .lx-prose h4 { font-family: var(--lx-serif); color: var(--lx-ink); margin: 1.6em 0 .6em; line-height: 1.2; }
.lx-prose h2 { font-size: 1.7rem; } .lx-prose h3 { font-size: 1.35rem; } .lx-prose h4 { font-size: 1.15rem; }
.lx-prose p { margin: 0 0 1.1em; }
.lx-prose a { color: var(--lx-green); border-bottom: 1px solid var(--lx-gold-soft); }
.lx-prose a:hover { border-bottom-color: var(--lx-gold); }
.lx-prose ul, .lx-prose ol { margin: 0 0 1.2em; padding-left: 1.3em; }
.lx-prose li { margin-bottom: .5em; }
.lx-prose ul li::marker { color: var(--lx-gold); }
.lx-prose img { border-radius: var(--lx-radius); margin: 1.2em 0; box-shadow: var(--lx-shadow-sm); }
.lx-prose blockquote { margin: 1.4em 0; padding: 16px 22px; border-left: 3px solid var(--lx-gold); background: var(--lx-green-soft); border-radius: 0 12px 12px 0; color: var(--lx-ink); font-style: italic; }
.lx-prose table { width: 100%; border-collapse: collapse; margin: 1.2em 0; }
.lx-prose th, .lx-prose td { border: 1px solid var(--lx-line); padding: 11px 14px; text-align: left; }
.lx-prose th { background: var(--lx-cream); font-family: var(--lx-sans); }

/* ---------- Formlar ---------- */
.lx-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.lx-label { font-size: 13px; font-weight: 500; letter-spacing: .4px; color: var(--lx-ink); }
.lx-label .req { color: var(--lx-danger); }
.lx-input, .lx-textarea, .lx-select {
    width: 100%; font-family: var(--lx-sans); font-size: 14.5px; color: var(--lx-ink);
    background: var(--lx-paper); border: 1px solid var(--lx-line); border-radius: 12px;
    padding: 0 16px; height: 52px; outline: none;
    transition: border-color .3s var(--lx-ease), box-shadow .3s var(--lx-ease), background .3s var(--lx-ease);
}
.lx-textarea { height: auto; min-height: 130px; padding: 14px 16px; resize: vertical; line-height: 1.6; }
.lx-select { appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 42px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%238c8377' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center; }
.lx-input::placeholder, .lx-textarea::placeholder { color: var(--lx-muted); }
.lx-input:focus, .lx-textarea:focus, .lx-select:focus { border-color: var(--lx-green); box-shadow: 0 0 0 4px rgba(31,107,80,.08); background: var(--lx-paper); }
.lx-input--lg { height: 58px; font-size: 15.5px; }
.lx-form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 22px; }
.lx-form-grid .lx-field--full { grid-column: 1 / -1; }
.lx-check, .lx-radio { display: inline-flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 14px; color: var(--lx-ink-soft); user-select: none; }
.lx-check input, .lx-radio input { width: 19px; height: 19px; accent-color: var(--lx-green); margin-top: 1px; flex-shrink: 0; cursor: pointer; }
.lx-field-hint { font-size: 12.5px; color: var(--lx-muted); }

/* ---------- Buton ek varyantları ---------- */
.lx-btn--block { display: flex; width: 100%; justify-content: center; }
.lx-btn--sm { padding: 11px 22px; font-size: 12px; }
.lx-btn--lg { padding: 18px 38px; font-size: 14.5px; }
.lx-btn--gold { background: linear-gradient(120deg, var(--lx-gold), #cda86a); color: #fff; }
.lx-btn--blush { background: var(--lx-blush); color: #fff; }
.lx-btn--blush:hover { background: #b97a69; color: #fff; }
.lx-btn--soft { background: var(--lx-green-soft); color: var(--lx-green); }
.lx-btn--soft:hover { background: var(--lx-green); color: #fff; }
.lx-btn[disabled], .lx-btn.is-disabled { opacity: .5; pointer-events: none; }

/* ---------- Miktar seçici ---------- */
.lx-qty { display: inline-flex; align-items: center; border: 1px solid var(--lx-line); border-radius: 50px; background: var(--lx-paper); overflow: hidden; }
.lx-qty__btn { width: 44px; height: 46px; border: none; background: transparent; color: var(--lx-ink); cursor: pointer; display: grid; place-items: center; transition: background .25s var(--lx-ease), color .25s var(--lx-ease); }
.lx-qty__btn:hover { background: var(--lx-green-soft); color: var(--lx-green); }
.lx-qty__btn svg { width: 16px; height: 16px; }
.lx-qty__input { width: 46px; height: 46px; border: none; text-align: center; font-family: var(--lx-serif); font-size: 18px; font-weight: 600; color: var(--lx-ink); background: transparent; outline: none; -moz-appearance: textfield; }
.lx-qty__input::-webkit-outer-spin-button, .lx-qty__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* ---------- Chip / etiket ---------- */
.lx-chip { display: inline-flex; align-items: center; gap: 7px; padding: 7px 14px; border-radius: 50px; border: 1px solid var(--lx-line); background: var(--lx-paper); font-size: 12.5px; font-weight: 500; color: var(--lx-ink-soft); transition: all .25s var(--lx-ease); }
.lx-chip:hover { border-color: var(--lx-green); color: var(--lx-green); }
.lx-chip.is-active { background: var(--lx-green); border-color: var(--lx-green); color: #fff; }
.lx-chip svg { width: 14px; height: 14px; }

/* ---------- Boş durum ---------- */
.lx-empty { text-align: center; padding: clamp(48px, 7vw, 90px) 24px; }
.lx-empty__ico { width: 92px; height: 92px; margin: 0 auto 24px; border-radius: 50%; background: var(--lx-green-soft); color: var(--lx-green); display: grid; place-items: center; }
.lx-empty__ico svg { width: 44px; height: 44px; }
.lx-empty__title { font-family: var(--lx-serif); font-size: 26px; color: var(--lx-ink); margin-bottom: 10px; }
.lx-empty__text { color: var(--lx-ink-soft); max-width: 420px; margin: 0 auto 26px; font-size: 15px; }

/* ---------- Sayfalama ---------- */
.lx-pager { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 48px; flex-wrap: wrap; }
.lx-pager__item { min-width: 46px; height: 46px; padding: 0 14px; border-radius: 12px; border: 1px solid var(--lx-line); background: var(--lx-paper); color: var(--lx-ink-soft); display: inline-flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 500; cursor: pointer; transition: all .3s var(--lx-ease); }
.lx-pager__item:hover { border-color: var(--lx-green); color: var(--lx-green); }
.lx-pager__item.is-active { background: var(--lx-green); border-color: var(--lx-green); color: #fff; }
.lx-pager__item svg { width: 18px; height: 18px; }

/* ---------- Not / uyarı ---------- */
.lx-note { display: flex; align-items: flex-start; gap: 13px; padding: 15px 18px; border-radius: 14px; background: var(--lx-green-soft); border: 1px solid rgba(31,107,80,.16); color: var(--lx-ink); font-size: 14px; line-height: 1.55; }
.lx-note svg { width: 20px; height: 20px; color: var(--lx-green); flex-shrink: 0; margin-top: 1px; }
.lx-note--gold { background: var(--lx-gold-soft); border-color: rgba(184,150,90,.3); }
.lx-note--gold svg { color: var(--lx-gold); }
.lx-note--blush { background: var(--lx-blush-soft); border-color: rgba(201,139,122,.3); }
.lx-note--blush svg { color: var(--lx-blush); }

/* ---------- Akordeon (SSS) ---------- */
.lx-acc { display: flex; flex-direction: column; gap: 14px; }
.lx-acc__item { border: 1px solid var(--lx-line); border-radius: var(--lx-radius); background: var(--lx-paper); overflow: hidden; transition: box-shadow .35s var(--lx-ease), border-color .35s var(--lx-ease); }
.lx-acc__item.is-open { box-shadow: var(--lx-shadow); border-color: transparent; }
.lx-acc__head { display: flex; align-items: center; gap: 16px; padding: 20px 24px; cursor: pointer; list-style: none; }
.lx-acc__head::-webkit-details-marker { display: none; }
.lx-acc__q { flex: 1; font-family: var(--lx-serif); font-size: 18.5px; font-weight: 600; color: var(--lx-ink); }
.lx-acc__sign { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--lx-line); display: grid; place-items: center; color: var(--lx-green); flex-shrink: 0; transition: all .35s var(--lx-ease); }
.lx-acc__item.is-open .lx-acc__sign { background: var(--lx-green); border-color: var(--lx-green); color: #fff; transform: rotate(180deg); }
.lx-acc__sign svg { width: 18px; height: 18px; }
.lx-acc__body { max-height: 0; overflow: hidden; transition: max-height .4s var(--lx-ease); }
.lx-acc__body-inner { padding: 0 24px 22px; color: var(--lx-ink-soft); font-size: 15px; line-height: 1.8; }

/* ---------- Sekmeler ---------- */
.lx-tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--lx-line); margin-bottom: 28px; overflow-x: auto; scrollbar-width: none; }
.lx-tabs::-webkit-scrollbar { display: none; }
.lx-tab { padding: 14px 22px; font-size: 14px; font-weight: 500; letter-spacing: .4px; color: var(--lx-muted); cursor: pointer; border: none; background: none; position: relative; white-space: nowrap; transition: color .3s var(--lx-ease); }
.lx-tab::after { content: ""; position: absolute; left: 16px; right: 16px; bottom: -1px; height: 2px; background: var(--lx-green); transform: scaleX(0); transition: transform .35s var(--lx-ease-out); }
.lx-tab:hover { color: var(--lx-ink); }
.lx-tab.is-active { color: var(--lx-green); }
.lx-tab.is-active::after { transform: scaleX(1); }
.lx-tabpane { display: none; } .lx-tabpane.is-active { display: block; }

/* ---------- Tablo (sepet / sipariş) ---------- */
.lx-table { width: 100%; border-collapse: collapse; }
.lx-table th { text-align: left; font-size: 11.5px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--lx-muted); font-weight: 600; padding: 14px 16px; border-bottom: 1px solid var(--lx-line); }
.lx-table td { padding: 18px 16px; border-bottom: 1px solid var(--lx-line); vertical-align: middle; color: var(--lx-ink-soft); }
.lx-table tr:last-child td { border-bottom: none; }

/* ---------- Bilgi satırları ---------- */
.lx-info { display: flex; flex-direction: column; }
.lx-info__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px dashed var(--lx-line); font-size: 14.5px; }
.lx-info__row:last-child { border-bottom: none; }
.lx-info__row dt, .lx-info__row .k { color: var(--lx-muted); }
.lx-info__row dd, .lx-info__row .v { margin: 0; color: var(--lx-ink); font-weight: 500; text-align: right; }
.lx-info__total { font-family: var(--lx-serif); font-size: 24px; font-weight: 600; color: var(--lx-green-deep); }

/* ---------- Durum rozeti ---------- */
.lx-status { display: inline-flex; align-items: center; gap: 7px; padding: 6px 14px; border-radius: 50px; font-size: 12px; font-weight: 600; letter-spacing: .3px; }
.lx-status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.lx-status--ok { background: var(--lx-green-soft); color: var(--lx-green); }
.lx-status--wait { background: var(--lx-gold-soft); color: #97742f; }
.lx-status--cancel { background: var(--lx-blush-soft); color: var(--lx-danger); }
.lx-status--info { background: #e6eef5; color: #2c5f86; }

/* ---------- Hesap / kullanıcı düzeni (sidebar + içerik) ---------- */
.lx-account { display: grid; grid-template-columns: 290px 1fr; gap: 28px; align-items: start; }
.lx-account__side { position: sticky; top: 110px; }
.lx-account__user { display: flex; align-items: center; gap: 14px; padding: 22px; border-bottom: 1px solid var(--lx-line); }
.lx-account__avatar { width: 54px; height: 54px; border-radius: 50%; background: linear-gradient(135deg, var(--lx-green), var(--lx-green-deep)); color: #fff; display: grid; place-items: center; font-family: var(--lx-serif); font-size: 22px; font-weight: 600; flex-shrink: 0; }
.lx-account__name { font-family: var(--lx-serif); font-size: 18px; color: var(--lx-ink); line-height: 1.2; }
.lx-account__mail { font-size: 12.5px; color: var(--lx-muted); }
.lx-account__nav { padding: 12px; display: flex; flex-direction: column; gap: 3px; }
.lx-account__link { display: flex; align-items: center; gap: 13px; padding: 13px 16px; border-radius: 12px; color: var(--lx-ink-soft); font-size: 14.5px; font-weight: 500; transition: all .28s var(--lx-ease); cursor: pointer; }
.lx-account__link svg { width: 20px; height: 20px; color: var(--lx-muted); transition: color .28s var(--lx-ease); }
.lx-account__link:hover { background: var(--lx-cream); color: var(--lx-green); }
.lx-account__link:hover svg { color: var(--lx-green); }
.lx-account__link.is-active { background: var(--lx-green-soft); color: var(--lx-green); }
.lx-account__link.is-active svg { color: var(--lx-green); }
.lx-account__link--danger:hover { background: var(--lx-blush-soft); color: var(--lx-danger); }
.lx-account__link--danger:hover svg { color: var(--lx-danger); }

/* ---------- Listeleme araç çubuğu (sonuç sayısı) ---------- */
.lx-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.lx-toolbar__count { font-size: 14px; color: var(--lx-ink-soft); }
.lx-toolbar__count b { color: var(--lx-green); font-weight: 600; }

/* ============================================================
   YATAY FİLTRE BAR (hf-*) — Luxora teması
   Class adları/JS korunur; yalnızca görsel Luxora'ya uyarlanır.
   ============================================================ */
.hf-bar { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; padding: 6px 0 4px; position: relative; z-index: 10; }
.hf-item { position: relative; }
.hf-toggle {
    display: inline-flex; align-items: center; gap: 8px; padding: 11px 20px;
    border: 1px solid var(--lx-line); border-radius: 50px; background: var(--lx-paper);
    font-family: var(--lx-sans); font-size: 13.5px; font-weight: 500; color: var(--lx-ink-soft);
    cursor: pointer; transition: all .25s var(--lx-ease); white-space: nowrap; user-select: none;
}
.hf-toggle:hover { border-color: var(--lx-green); color: var(--lx-green); }
.hf-toggle.active, .hf-toggle.has-selection { border-color: var(--lx-green); color: var(--lx-green); background: var(--lx-green-soft); }
.hf-toggle .hf-arrow { transition: transform .25s var(--lx-ease); font-size: 10px; }
.hf-toggle.active .hf-arrow { transform: rotate(180deg); }
.hf-toggle .hf-badge { display: inline-flex; align-items: center; justify-content: center; min-width: 20px; height: 20px; padding: 0 6px; border-radius: 10px; background: var(--lx-green); color: #fff; font-size: 11px; font-weight: 600; }
.hf-dropdown { display: none; position: absolute; top: calc(100% + 10px); left: 0; min-width: 280px; background: var(--lx-paper); border: 1px solid var(--lx-line); border-radius: var(--lx-radius); box-shadow: var(--lx-shadow-lg); padding: 18px; z-index: 1000; }
.hf-dropdown.show { display: block; animation: hfSlideDown .22s var(--lx-ease-out) forwards; }
@keyframes hfSlideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.hf-search {
    width: 100%; padding: 10px 14px 10px 38px; border: 1px solid var(--lx-line); border-radius: 10px;
    font-size: 13.5px; font-family: var(--lx-sans); outline: none; margin-bottom: 12px; transition: border-color .25s var(--lx-ease);
    background: var(--lx-paper) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%238c8377' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E") 12px center no-repeat;
}
.hf-search:focus { border-color: var(--lx-green); }
.hf-list { max-height: 250px; overflow-y: auto; margin: 0; padding: 0; list-style: none; }
.hf-list::-webkit-scrollbar { width: 5px; }
.hf-list::-webkit-scrollbar-thumb { background: var(--lx-line); border-radius: 4px; }
.hf-list li { display: flex; align-items: center; gap: 11px; padding: 9px 8px; border-radius: 9px; cursor: pointer; transition: background .15s var(--lx-ease); font-size: 14px; color: var(--lx-ink-soft); }
.hf-list li:hover { background: var(--lx-green-soft); }
.hf-list li input[type="checkbox"] { width: 18px; height: 18px; border-radius: 5px; accent-color: var(--lx-green); cursor: pointer; flex-shrink: 0; }
.hf-list li label { cursor: pointer; flex: 1; margin: 0; }
.hf-color-grid { display: flex; flex-wrap: wrap; gap: 11px; padding: 4px 0; }
.hf-color-item { position: relative; cursor: pointer; }
.hf-color-item input { position: absolute; opacity: 0; width: 100%; height: 100%; cursor: pointer; z-index: 2; }
.hf-color-swatch { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--lx-line); transition: all .2s var(--lx-ease); position: relative; display: block; }
.hf-color-item input:checked + .hf-color-swatch { border-color: var(--lx-green); box-shadow: 0 0 0 3px rgba(31,107,80,.22); transform: scale(1.1); }
.hf-color-item input:checked + .hf-color-swatch::after { content: '✓'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 14px; font-weight: 700; color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,.45); }
.hf-price-row { display: flex; align-items: center; gap: 11px; }
.hf-price-input { flex: 1; padding: 11px 13px; border: 1px solid var(--lx-line); border-radius: 10px; font-size: 14px; font-family: var(--lx-sans); outline: none; text-align: center; transition: border-color .2s var(--lx-ease); }
.hf-price-input:focus { border-color: var(--lx-green); }
.hf-price-sep { color: var(--lx-muted); font-weight: 500; }
.hf-apply-btn { display: block; width: 100%; margin-top: 14px; padding: 12px 0; background: var(--lx-green); color: #fff; border: none; border-radius: 10px; font-size: 13.5px; font-weight: 600; letter-spacing: .5px; cursor: pointer; transition: background .25s var(--lx-ease); font-family: var(--lx-sans); }
.hf-apply-btn:hover { background: var(--lx-green-deep); }
.hf-sort-wrapper { margin-left: auto; display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--lx-muted); white-space: nowrap; }
.hf-sort-wrapper svg { width: 16px; height: 16px; }
.hf-sort-select { padding: 11px 36px 11px 16px; border: 1px solid var(--lx-line); border-radius: 50px; background: var(--lx-paper); font-family: var(--lx-sans); font-size: 13.5px; color: var(--lx-ink-soft); outline: none; cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%238c8377' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.hf-sort-select:focus { border-color: var(--lx-green); }
.hf-overlay { display: none; position: fixed; inset: 0; z-index: 999; }
.hf-overlay.show { display: block; }
.hf-active-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 14px 0 0; list-style: none; padding: 0; }
.hf-active-tags li a { display: inline-flex; align-items: center; gap: 5px; padding: 6px 13px; border: 1px solid var(--lx-line); border-radius: 50px; font-size: 12px; color: var(--lx-ink-soft); text-decoration: none; transition: all .2s var(--lx-ease); background: var(--lx-paper); }
.hf-active-tags li a:hover { background: var(--lx-green-soft); border-color: var(--lx-green); color: var(--lx-green); }
.hf-active-tags li a.tag-clear { border-color: var(--lx-danger); color: var(--lx-danger); }
.hf-active-tags li a.tag-clear:hover { background: var(--lx-danger); color: #fff; }
.hf-active-tags li a .tag-x { font-size: 13px; line-height: 1; }
@media (max-width: 768px) {
    .hf-bar { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 12px; -webkit-overflow-scrolling: touch; }
    .hf-bar::-webkit-scrollbar { display: none; }
    .hf-sort-wrapper { margin-left: 0; }
    .hf-dropdown { position: fixed; top: auto; bottom: 0; left: 0; right: 0; min-width: 100%; max-height: 72vh; border-radius: 20px 20px 0 0; animation-name: hfSlideUp; }
    @keyframes hfSlideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
}

/* ---------- Kategori şeridi (alt kategori pill'leri) ---------- */
.lx-subcats { display: flex; gap: 10px; overflow-x: auto; padding: 4px 0 8px; scrollbar-width: none; }
.lx-subcats::-webkit-scrollbar { display: none; }
.lx-subcats a { flex-shrink: 0; display: inline-flex; align-items: center; gap: 9px; padding: 8px 8px 8px 8px; border: 1px solid var(--lx-line); border-radius: 50px; background: var(--lx-paper); color: var(--lx-ink-soft); font-size: 13.5px; font-weight: 500; transition: all .28s var(--lx-ease); }
.lx-subcats a:hover { border-color: var(--lx-green); color: var(--lx-green); transform: translateY(-2px); box-shadow: var(--lx-shadow-sm); }
.lx-subcats img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; background: var(--lx-green-soft); }
.lx-subcats span { padding-right: 8px; }

/* ============================================================
   İÇ SAYFA — RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .lx-account { grid-template-columns: 1fr; }
    .lx-account__side { position: static; }
}
@media (max-width: 767px) {
    .lx-form-grid { grid-template-columns: 1fr; }
    .lx-breadcrumb__inner { padding: 24px 0; }
    .lx-info__row dd, .lx-info__row .v { text-align: right; }
}
