/* ============================================================
   Radisyon tan?t?m ? adisyon fi?i motifi
   M?rekkep + ka??t, tipografi odakl?, sade y?zeyler.
   ============================================================ */

:root {
    --rt-ink: #1a0d12;
    --rt-body: #4a3840;
    --rt-muted: #8b7681;
    --rt-paper: #fbf9fa;
    --rt-panel: #ffffff;
    --rt-line: #e9dee3;
    --rt-bordo: #7b1e3a;
    --rt-bordo-deep: #521226;
    --rt-rose: #f7ecef;
    --rt-ok: #1a7f45;
    --rt-max: 1080px;
    --rt-radius: 8px;
    --rt-radius-sm: 6px;
    --rt-radius-lg: 12px;
    --rt-radius-xl: 16px;
    --rt-font: "Open Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
    --rt-font-serif: "Times New Roman", Times, Georgia, "Noto Serif", serif;
    --rt-mono: ui-monospace, "Cascadia Mono", "Roboto Mono", Consolas, monospace;
    --rt-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

body {
    margin: 0;
    font-family: var(--rt-font);
    font-size: 16.5px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--rt-body);
    background: var(--rt-paper);
    -webkit-font-smoothing: antialiased;
}

html.rt-scroll-lock {
    overflow: hidden;
}

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

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

h1, h2, h3 {
    margin: 0;
    color: var(--rt-bordo);
    font-family: var(--rt-font-serif);
    font-weight: 700;
    letter-spacing: 0;
    text-wrap: balance;
}

p {
    margin: 0;
}

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

.rt-page {
    overflow-x: clip;
}

.rt-shell {
    width: 100%;
    max-width: var(--rt-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Ortak par?alar ---------- */

.rt-kicker {
    font-size: 13px;
    font-weight: 500;
    color: var(--rt-muted);
}

.rt-kicker--rose {
    color: #d4a8b8;
}

.rt-section-head {
    position: relative;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.rt-section-head h2 {
    font-size: clamp(26px, 3.8vw, 36px);
    line-height: 1.15;
}

.rt-section-head > *,
.rt-app-copy > *,
.rt-mobile-copy > *,
.rt-pricing-copy > * {
    position: relative;
    z-index: 1;
}

.rt-app-copy,
.rt-mobile-copy,
.rt-pricing-copy {
    position: relative;
}

.rt-section-head[data-rt-word]::before,
.rt-app-copy[data-rt-word]::before,
.rt-mobile-copy[data-rt-word]::before,
.rt-pricing-copy[data-rt-word]::before {
    content: attr(data-rt-word);
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 0;
    transform: translateY(-54%);
    font-size: clamp(56px, 8vw, 128px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.01em;
    white-space: nowrap;
    color: transparent;
    -webkit-text-stroke: 1px var(--rt-line);
    pointer-events: none;
    user-select: none;
}

.rt-section-head--ondark[data-rt-word]::before,
.rt-app-copy[data-rt-word]::before {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.18);
}

@supports not (-webkit-text-stroke: 1px black) {
    .rt-section-head[data-rt-word]::before,
    .rt-app-copy[data-rt-word]::before,
    .rt-mobile-copy[data-rt-word]::before,
    .rt-pricing-copy[data-rt-word]::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .rt-section-head[data-rt-word]::before,
    .rt-app-copy[data-rt-word]::before,
    .rt-mobile-copy[data-rt-word]::before,
    .rt-pricing-copy[data-rt-word]::before {
        display: none;
    }
}

.rt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: var(--rt-radius);
    font-size: 14.5px;
    font-weight: 500;
    letter-spacing: 0;
    transition: background 0.18s var(--rt-ease), color 0.18s var(--rt-ease), border-color 0.18s var(--rt-ease);
}

.rt-btn-solid {
    background: var(--rt-bordo);
    color: #fff;
}

.rt-btn-solid:hover {
    background: var(--rt-bordo-deep);
}

.rt-btn-line {
    border: 1px solid var(--rt-line);
    background: var(--rt-panel);
    color: var(--rt-ink);
}

.rt-btn-line:hover {
    border-color: var(--rt-bordo);
    color: var(--rt-bordo);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 2px solid var(--rt-bordo);
    outline-offset: 3px;
}

/* ---------- Header ---------- */

.rt-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    background: rgba(251, 249, 250, 0.88);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(14px) saturate(1.1);
    -webkit-backdrop-filter: blur(14px) saturate(1.1);
    transition:
        background 0.28s var(--rt-ease),
        border-color 0.28s var(--rt-ease),
        box-shadow 0.28s var(--rt-ease),
        color 0.28s var(--rt-ease);
}

.rt-header.is-scrolled {
    border-bottom-color: var(--rt-line);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 30px rgba(26, 13, 18, 0.06);
}

.rt-header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 72px;
}

.rt-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    transition: opacity 0.2s var(--rt-ease);
}

.rt-brand strong {
    font-family: var(--rt-font-serif);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--rt-bordo);
}

.rt-brand-mark {
    width: 10px;
    height: 26px;
    background: var(--rt-bordo);
    border-radius: var(--rt-radius-sm);
    transition: background 0.2s var(--rt-ease);
}

/* Logo slotu: screens/logo.png yuklenince metin marka yerine logo gorunur */

.rt-brand-logo {
    display: none;
    height: 46px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
}

.rt-brand-logo--paper {
    display: none;
}

.rt-footer-brand .rt-brand-logo {
    height: 56px;
    max-width: 260px;
}

.rt-brand.has-logo .rt-brand-logo--ink,
.rt-brand.has-logo > .rt-brand-logo:not(.rt-brand-logo--paper) {
    display: block;
}

.rt-brand.has-logo .rt-brand-logo--paper {
    display: none;
}

.rt-brand.has-logo .rt-brand-mark,
.rt-brand.has-logo strong {
    display: none;
}

.rt-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    font-size: 14px;
    font-weight: 500;
    color: var(--rt-body);
}

.rt-nav-label,
.rt-nav-note {
    display: none;
}

.rt-nav-links,
.rt-nav-foot {
    display: contents;
}

.rt-nav a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 999px;
    transition: color 0.15s, background 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.rt-nav-ico {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    display: block;
    fill: none;
    stroke: var(--rt-muted);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.15s, color 0.15s, background 0.15s;
}

svg.rt-nav-ico {
    position: relative;
    top: 0;
}

.rt-nav a:not(.rt-nav-cta):hover {
    color: var(--rt-bordo);
    background: var(--rt-rose);
}

.rt-nav a:not(.rt-nav-cta):hover .rt-nav-ico {
    stroke: var(--rt-bordo);
}

.rt-nav-cta {
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--rt-bordo);
    color: #fff;
    box-shadow: 0 6px 16px rgba(123, 30, 58, 0.22);
}

.rt-nav-cta .rt-nav-ico {
    stroke: rgba(255, 255, 255, 0.85);
}

.rt-nav-cta:hover {
    background: var(--rt-bordo-deep);
    box-shadow: 0 8px 20px rgba(82, 18, 38, 0.28);
}

.rt-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0 10px;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius);
    background: var(--rt-panel);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.rt-burger span {
    display: block;
    height: 2px;
    background: var(--rt-ink);
    transition: transform 0.2s var(--rt-ease), opacity 0.2s, background 0.2s;
}
/* ---------- Hero ---------- */

.rt-hero {
    padding: 132px 0 64px;
    background: var(--rt-bordo-deep);
    overflow: clip;
}

.rt-hero-shell {
    position: relative;
}

/* Marka filigran? ? footer'daki dev "RAD?SYON" imzas?yla akraba, sessiz bir a??l??-kapan?? e?le?mesi. */
.rt-hero-mark {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 420px;
    max-width: 38%;
    height: auto;
    opacity: 0.1;
    filter: brightness(0) invert(1);
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.rt-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 620px;
}

@media (max-width: 1023px) {
    .rt-hero-mark {
        display: none;
    }
}

/* ---------- Kendi markan?z ---------- */

.rt-brand-own {
    padding: 72px 0;
    border-top: 1px solid var(--rt-line);
    border-bottom: 1px solid var(--rt-line);
    background: var(--rt-panel);
}

.rt-brand-own-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.rt-brand-own-card {
    padding: 26px 24px;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius-xl);
    background: var(--rt-paper);
}

.rt-brand-own-no {
    display: block;
    margin-bottom: 12px;
    font-family: var(--rt-mono);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--rt-bordo);
}

.rt-brand-own-card h3 {
    margin: 0 0 8px;
    font-size: 16.5px;
}

.rt-brand-own-card > p {
    margin: 0;
    font-size: 13.5px;
    color: var(--rt-body);
}

.rt-brand-own-visual {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding: 7px 13px;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius-lg);
    background: var(--rt-panel);
    font-family: var(--rt-mono);
    font-size: 12px;
    font-weight: 500;
    color: var(--rt-body);
}

.rt-brand-own-visual .rt-browser-dots {
    display: flex;
    gap: 4px;
}

.rt-brand-own-visual .rt-browser-dots i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--rt-line);
}

.rt-brand-own-visual svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--rt-bordo);
}

@media (max-width: 1023px) {
    .rt-brand-own-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .rt-brand-own-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- Bize g?venen i?letmeler (tam geni?lik logo ?eridi) ----------
   Ger?ek logo eklenene kadar [hidden] kal?r (bkz. main.js). Eklenince tam
   geni?likte, sessizce kayan, kenarlarda solukla?an bir ?erit olarak a??l?r. */

.rt-trust {
    width: 100%;
    overflow: hidden;
    padding: 36px 0;
    border-bottom: 1px solid var(--rt-line);
    background: var(--rt-panel);
}

.rt-trust[hidden] {
    display: none;
}

.rt-trust-label {
    margin: 0 0 20px;
    text-align: center;
    font-family: var(--rt-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--rt-muted);
}

.rt-trust-track-wrap {
    position: relative;
    width: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 72px, #000 calc(100% - 72px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 72px, #000 calc(100% - 72px), transparent 100%);
}

.rt-trust-track {
    display: flex;
    width: max-content;
    animation: rt-trust-scroll 34s linear infinite;
}

.rt-trust:hover .rt-trust-track {
    animation-play-state: paused;
}

.rt-trust-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.rt-trust-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 168px;
    height: 60px;
    padding: 0 22px;
}

.rt-trust-logo img {
    display: block;
    max-width: 100%;
    max-height: 34px;
    width: auto;
    filter: grayscale(1);
    opacity: 0.5;
    transition: filter 0.2s var(--rt-ease), opacity 0.2s var(--rt-ease);
}

.rt-trust-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

@keyframes rt-trust-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .rt-trust-track {
        animation: none;
    }
}

.rt-hero-eyebrow {
    margin: 0 0 14px;
    font-size: 13px;
    color: #d4a8b8;
}

.rt-hero-title {
    font-size: clamp(30px, 4.6vw, 46px);
    line-height: 1.18;
    color: #fff;
}

.rt-hero-title em {
    font-style: normal;
    color: #f3dfe6;
}

.rt-hero-lead {
    margin: 18px 0 0;
    max-width: 50ch;
    font-size: 16px;
    line-height: 1.65;
    color: #e5cdd6;
}

.rt-hero-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 22px;
    margin-top: 28px;
}

.rt-hero-ghost {
    font-size: 14.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.35);
    text-underline-offset: 3px;
    transition: color 0.15s var(--rt-ease), text-decoration-color 0.15s var(--rt-ease);
}

.rt-hero-ghost:hover {
    color: #fff;
    text-decoration-color: #fff;
}

.rt-hero-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: 44px 0 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.rt-hero-metrics > div {
    padding: 0 16px;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.rt-hero-metrics > div:first-child {
    padding-left: 0;
    border-left: 0;
}

.rt-hero-metrics dt {
    font-family: var(--rt-mono);
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    font-variant-numeric: tabular-nums;
}

.rt-hero-metrics dd {
    margin: 6px 0 0;
    font-size: 12.5px;
    color: #d4a8b8;
}

/* ---------- Telefon mock (mobil b?l?m vb.) ---------- */

.rt-phone {
    margin: 0;
    width: min(270px, 74vw);
    border: 1px solid var(--rt-line);
    border-radius: 36px;
    padding: 14px 12px;
    background: var(--rt-panel);
    position: relative;
    z-index: 2;
}

.rt-phone-speaker {
    position: absolute;
    top: 9px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 5px;
    border-radius: var(--rt-radius);
    background: var(--rt-line);
}

.rt-phone-screen {
    border: 1px solid var(--rt-line);
    border-radius: 24px;
    overflow: hidden;
    background: var(--rt-paper);
    display: flex;
    flex-direction: column;
}

.rt-mock-bar {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 16px 16px 12px;
    background: var(--rt-bordo);
    color: #fff;
}

.rt-mock-bar strong {
    font-size: 15px;
    font-weight: 600;
}

.rt-mock-bar span {
    font-family: var(--rt-mono);
    font-size: 10.5px;
    letter-spacing: 0.08em;
    opacity: 0.85;
}

.rt-mock-tabs {
    display: flex;
    gap: 6px;
    padding: 12px 14px 4px;
    font-size: 11.5px;
    font-weight: 500;
    color: var(--rt-muted);
    overflow-x: auto;
    scrollbar-width: none;
}

.rt-mock-tabs::-webkit-scrollbar {
    display: none;
}

.rt-mock-tabs button,
.rt-mock-tabs i {
    font: inherit;
    font-style: normal;
    cursor: pointer;
    padding: 5px 10px;
    border: 1px solid var(--rt-line);
    border-radius: 999px;
    background: var(--rt-panel);
    white-space: nowrap;
    color: inherit;
}

.rt-mock-tabs button.is-on,
.rt-mock-tabs i.is-on {
    background: var(--rt-rose);
    border-color: transparent;
    color: var(--rt-bordo);
    font-weight: 600;
}

.rt-mock-list {
    display: flex;
    flex-direction: column;
    padding: 8px 14px 14px;
}

.rt-mock-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 2px;
    border-bottom: 1px dashed var(--rt-line);
    font-size: 13.5px;
    color: var(--rt-ink);
}

.rt-mock-list li button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding: 0;
    border: 0;
    background: none;
    font: inherit;
    color: inherit;
    text-align: left;
    cursor: pointer;
}

.rt-mock-list li button:hover {
    color: var(--rt-bordo);
}

.rt-mock-list li.is-picked button {
    color: var(--rt-bordo);
}

.rt-mock-list li.is-picked .rt-mock-qty {
    display: inline-flex;
}

.rt-mock-list li:last-child {
    border-bottom: 0;
}

.rt-mock-list b {
    font-family: var(--rt-mono);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    color: var(--rt-bordo);
}

.rt-mock-qty {
    display: none;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--rt-bordo);
    color: #fff;
    font-family: var(--rt-mono);
    font-size: 10px;
    font-weight: 600;
    margin-right: 6px;
}

.rt-mock-cart {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 14px 14px;
    padding: 12px 14px;
    border-radius: var(--rt-radius);
    background: var(--rt-ink);
    color: #fff;
    font-size: 12.5px;
    font-weight: 500;
}

.rt-mock-cart b {
    font-family: var(--rt-mono);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.rt-mock-cart b {
    font-family: var(--rt-mono);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.rt-mock-send {
    display: block;
    width: calc(100% - 28px);
    margin: 0 14px 14px;
    padding: 12px 14px;
    border: 0;
    border-radius: var(--rt-radius);
    background: var(--rt-bordo);
    color: #fff;
    font: inherit;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.15s var(--rt-ease), background 0.15s var(--rt-ease);
}

.rt-mock-send:disabled {
    opacity: 0.38;
    cursor: default;
}

.rt-mock-send:not(:disabled):hover {
    background: var(--rt-bordo-deep);
}

/* Telefonda "sipari? mutfakta" bildirimi */

.rt-phone-screen {
    position: relative;
}

.rt-mock-toast {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 64px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid rgba(26, 127, 69, 0.35);
    border-radius: var(--rt-radius-lg);
    background: #f2faf5;
    color: #14532d;
    font-size: 11.5px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.25s var(--rt-ease), transform 0.25s var(--rt-ease);
}

.rt-mock-toast.is-show {
    opacity: 1;
    transform: translateY(0);
}

.rt-mock-toast[hidden] {
    display: none;
}

.rt-mock-toast i {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--rt-ok);
}

@keyframes rt-toast-cycle {
    0%, 8% { opacity: 0; transform: translateY(8px); }
    14%, 42% { opacity: 1; transform: translateY(0); }
    50%, 100% { opacity: 0; transform: translateY(-6px); }
}

.rt-chip {
    position: absolute;
    z-index: 3;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius);
    background: var(--rt-panel);
    font-size: 12.5px;
    font-weight: 500;
    color: var(--rt-ink);
}

.rt-chip-ticket {
    top: 8%;
    right: max(2%, 8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 10px 16px;
    border-color: var(--rt-bordo);
}

.rt-chip-ticket span {
    font-family: var(--rt-mono);
    font-size: 10px;
    color: var(--rt-muted);
}

.rt-chip-ticket b {
    font-family: var(--rt-mono);
    font-size: 26px;
    font-weight: 600;
    line-height: 1.1;
    color: var(--rt-bordo);
    font-variant-numeric: tabular-nums;
}

.rt-chip-kds {
    bottom: 10%;
    left: max(0%, 4px);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
}

.rt-chip-kds.is-alert .rt-dot {
    animation: rt-dot-pulse-fast 0.9s ease-in-out infinite;
}

.rt-chip-kds.is-alert {
    border-color: rgba(26, 127, 69, 0.45);
    box-shadow: 0 0 0 2px rgba(26, 127, 69, 0.12);
}

@keyframes rt-dot-pulse-fast {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.35; transform: scale(1.25); }
}

@keyframes rt-dot-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.45; transform: scale(0.8); }
}

.rt-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--rt-ok);
}

/* ---------- ?ki mod (koyu bant) ---------- */

.rt-modes {
    padding: 88px 0;
    background: var(--rt-bordo-deep);
    color: #f3dfe6;
}

.rt-section-head--ondark h1,
.rt-section-head--ondark h2 {
    color: #fff;
}

.rt-modes-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.rt-mode-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 30px 28px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--rt-radius);
    background: rgba(255, 255, 255, 0.045);
}

/* Mod kart? foto slotu: mod-masali.png / mod-tezgah.png y?klenince kart ?st?nde g?r?n?r */

.rt-mode-photo {
    display: none;
    margin: -30px -28px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--rt-radius) var(--rt-radius) 0 0;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.rt-mode-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rt-mode-card.has-photo .rt-mode-photo {
    display: block;
}

.rt-mode-tag {
    font-size: 12px;
    font-weight: 500;
    color: #d4a8b8;
}

.rt-mode-card h3 {
    color: #fff;
    font-size: 22px;
}

.rt-mode-card > p {
    font-size: 15px;
    color: #e5cdd6;
}

.rt-mode-card ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 6px;
    padding-top: 16px;
    border-top: 1px dashed rgba(255, 255, 255, 0.18);
    font-size: 14px;
    color: #f3dfe6;
}

.rt-mode-card li {
    position: relative;
    padding-left: 18px;
}

.rt-mode-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 8px;
    height: 8px;
    border: 1px solid #e9b9c7;
    border-radius: var(--rt-radius-sm);
}

/* ---------- Panel vitrini ---------- */

.rt-panel {
    padding: 88px 0 72px;
    border-bottom: 1px solid var(--rt-line);
}

.rt-panel-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(240px, 0.82fr);
    gap: 32px;
    align-items: start;
}

.rt-browser {
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius-lg);
    overflow: hidden;
    background: var(--rt-panel);
}

.rt-panel-demo {
    margin: 0;
    min-width: 0;
}

.rt-panel-demo-desc {
    margin: 10px 2px 0;
    font-size: 12.5px;
    line-height: 1.45;
    color: var(--rt-muted);
    text-align: left;
}

.rt-browser-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--rt-line);
    background: var(--rt-paper);
}

.rt-browser-dots {
    display: flex;
    gap: 5px;
}

.rt-browser-dots i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--rt-line);
}

.rt-browser-url {
    font-family: var(--rt-mono);
    font-size: 11.5px;
    letter-spacing: 0.04em;
    color: var(--rt-muted);
}

.rt-browser-body {
    display: flex;
    flex-direction: column;
    width: 100%;
    container-type: inline-size;
    container-name: rt-adm;
}

/* Panel demosu: sabit ekran-benzeri oran (viewport'a g?re s?n?rl? y?kseklik). */
.rt-panel-demo .rt-browser-body {
    aspect-ratio: 16 / 10;
    max-height: min(52vh, 500px);
    min-height: 320px;
}

/* Mutfak (KDS) ve sihirbaz demolar?: oran kilidi yok ? geni?lik kutuyu (max-width)
   doldurur, y?kseklik i?eri?e g?re do?al olu?ur. aspect-ratio burada geni?li?i
   viewport-y?ksekli?inden t?retip kutuyu dar b?rak?yordu. */
.rt-flow-demo .rt-browser-body,
.rt-wizard-demo .rt-browser-body {
    min-height: 320px;
}

/* Panel ger?ek ekran g?r?nt?s?: panel-ekran.png y?klenince CSS ?izimin yerine ge?er */

.rt-browser-shot {
    display: none;
    width: 100%;
    height: auto;
}

.rt-browser.has-shot .rt-browser-shot {
    display: block;
}

.rt-browser.has-shot .rt-adm-app {
    display: none;
}

/* Mini adisyon prototipi ? ger?ek adisyon ak???na yak?n */

.rt-adm-app {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    background: #f6f7fa;
    font-variant-numeric: tabular-nums;
}

.rt-adm-app.is-pick-table .rt-adm-side {
    display: none;
}

.rt-adm-topbar {
    position: relative;
    flex-shrink: 0;
    background: var(--rt-panel);
    border-bottom: 1px solid var(--rt-line);
}

.rt-adm-topbar-accent {
    height: 2px;
    background: linear-gradient(90deg, var(--rt-bordo) 0%, var(--rt-bordo-deep) 100%);
}

.rt-adm-topbar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 6px 10px;
}

.rt-adm-back {
    flex-shrink: 0;
    border: 1px solid var(--rt-line);
    background: var(--rt-paper);
    color: var(--rt-bordo);
    font-family: inherit;
    font-size: 10.5px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: var(--rt-radius-sm);
    cursor: pointer;
}

.rt-adm-back:hover {
    border-color: var(--rt-bordo);
}

.rt-adm-topbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.rt-adm-mark {
    width: 3px;
    height: 20px;
    border-radius: var(--rt-radius-sm);
    background: var(--rt-bordo);
    flex-shrink: 0;
}

.rt-adm-topbar-brand b {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--rt-ink);
    line-height: 1.15;
}

.rt-adm-topbar-brand span {
    display: block;
    font-family: var(--rt-mono);
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rt-muted);
    line-height: 1.15;
}

.rt-adm-stats {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.rt-adm-stat {
    font-size: 10px;
    color: var(--rt-muted);
    padding: 3px 7px;
    border-radius: var(--rt-radius-sm);
    background: var(--rt-paper);
    border: 1px solid var(--rt-line);
}

.rt-adm-stat em {
    font-style: normal;
    font-weight: 600;
    color: var(--rt-ink);
}

.rt-adm-stat.is-warn em {
    color: var(--rt-bordo);
}

.rt-adm-floor-toolbar {
    display: none;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.rt-adm-app.is-pick-table .rt-adm-floor-toolbar {
    display: flex;
}

.rt-adm-floor-btn {
    border: 1px solid var(--rt-line);
    background: var(--rt-panel);
    color: var(--rt-body);
    font-family: inherit;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 9px;
    border-radius: var(--rt-radius-sm);
    cursor: pointer;
}

.rt-adm-floor-btn:hover {
    border-color: var(--rt-bordo);
    color: var(--rt-bordo);
}

.rt-adm-floor-btn.is-active,
.rt-adm-floor-btn.is-primary {
    background: var(--rt-bordo);
    border-color: var(--rt-bordo);
    color: #fff;
}

.rt-adm-app.is-floor-edit .rt-adm-floor-btn#rt-adm-floor-edit {
    display: none;
}

.rt-adm-app.is-floor-edit .rt-adm-floor-btn#rt-adm-floor-align,
.rt-adm-app.is-floor-edit .rt-adm-floor-btn#rt-adm-floor-save,
.rt-adm-app.is-floor-edit .rt-adm-floor-btn#rt-adm-floor-cancel {
    display: inline-flex;
}

.rt-adm-topbar-end {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    flex-shrink: 0;
}

.rt-adm-day {
    font-family: var(--rt-mono);
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: var(--rt-radius-sm);
    background: rgba(26, 127, 69, 0.1);
    color: var(--rt-ok);
}

.rt-adm-sum {
    font-size: 11px;
    color: var(--rt-muted);
}

.rt-adm-sum em {
    font-style: normal;
    font-family: var(--rt-mono);
    font-weight: 600;
    color: var(--rt-ink);
}

.rt-adm-workspace {
    display: grid;
    grid-template-columns: minmax(0, 1.62fr) minmax(200px, 1fr);
    flex: 1;
    min-height: 0;
}

.rt-adm-workspace.is-pick-table {
    grid-template-columns: minmax(0, 1fr);
}

.rt-adm-col--main {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 0;
    border-right: 1px solid var(--rt-line);
}

.rt-adm-workspace.is-pick-table .rt-adm-col--main {
    border-right: 0;
}

.rt-adm-col--main.is-pick-mode .rt-adm-cats,
.rt-adm-col--main.is-pick-mode .rt-adm-products {
    display: none !important;
}

.rt-adm-col--main:not(.is-pick-mode) .rt-adm-floor-tabs,
.rt-adm-col--main:not(.is-pick-mode) .rt-adm-floor-wrap {
    display: none !important;
}

.rt-adm-col--main:not(.is-pick-mode) .rt-adm-floor {
    display: none;
}

.rt-adm-floor-tabs {
    display: flex;
    gap: 4px;
    padding: 8px 10px 0;
    flex-shrink: 0;
}

.rt-adm-floor-tabs button {
    border: 1px solid var(--rt-line);
    background: var(--rt-panel);
    color: var(--rt-muted);
    font-family: inherit;
    font-size: 10.5px;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: var(--rt-radius-sm) var(--rt-radius-sm) 0 0;
    cursor: pointer;
}

.rt-adm-floor-tabs button.is-active {
    color: var(--rt-bordo);
    border-color: var(--rt-bordo);
    border-bottom-color: transparent;
    background: #f6f7fa;
}

.rt-adm-cats {
    flex-shrink: 0;
    padding: 6px 10px;
    border-bottom: 1px solid var(--rt-line);
    background: rgba(255, 255, 255, 0.94);
}

.rt-adm-cats-list {
    display: flex;
    gap: 2px;
    overflow-x: auto;
    scrollbar-width: none;
}

.rt-adm-cats-list::-webkit-scrollbar {
    display: none;
}

.rt-adm-cat {
    flex-shrink: 0;
    border: 0;
    border-bottom: 2px solid transparent;
    background: transparent;
    color: var(--rt-muted);
    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 10px;
    cursor: pointer;
}

.rt-adm-cat.is-active {
    color: var(--rt-bordo);
    border-bottom-color: var(--rt-bordo);
}

.rt-adm-floor-wrap {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.rt-adm-floor {
    position: relative;
    flex: 1;
    min-height: 0;
    overflow: auto;
    background-color: #f6f7fa;
    background-image:
        linear-gradient(rgba(123, 30, 58, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(123, 30, 58, 0.04) 1px, transparent 1px);
    background-size: 18px 18px;
}

.rt-adm-floor.is-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
    align-content: start;
}

.rt-adm-floor.is-canvas {
    min-height: 220px;
    padding: 0;
}

.rt-adm-floor.is-canvas .rt-floor-card {
    position: absolute;
    min-height: 0;
    margin: 0;
}

.rt-adm-floor.is-edit-mode {
    cursor: default;
}

.rt-adm-floor.is-edit-mode .rt-floor-card {
    cursor: grab;
    touch-action: none;
}

.rt-adm-floor.is-edit-mode .rt-floor-card.is-dragging {
    cursor: grabbing;
    opacity: 0.88;
    z-index: 3;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
}

.rt-adm-products {
    flex: 1 1 auto;
    min-height: 0;
    overflow: auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
    gap: 8px;
    padding: 8px 10px 10px;
    align-content: start;
    align-items: start;
    justify-content: start;
    background: #f6f7fa;
}

.rt-adm-col--main:not(.is-pick-mode) .rt-adm-products {
    display: grid !important;
}

.rt-floor-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 6px;
    min-height: 68px;
    padding: 8px 10px;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius-lg);
    background: var(--rt-panel);
    text-align: left;
    font-family: inherit;
    cursor: pointer;
    transition: border-color 0.12s var(--rt-ease), box-shadow 0.12s var(--rt-ease);
}

.rt-floor-card:hover {
    border-color: rgba(123, 30, 58, 0.35);
}

.rt-floor-card.is-open {
    border-color: rgba(26, 127, 69, 0.45);
    background: linear-gradient(180deg, #f0fdf4 0%, #dcfce7 100%);
}

.rt-floor-card.is-active {
    outline: 2px solid var(--rt-bordo);
    outline-offset: 1px;
}

.rt-floor-card.is-package {
    border-style: dashed;
    border-color: rgba(180, 130, 20, 0.45);
    background: #fffbeb;
}

.rt-floor-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 6px;
}

.rt-floor-head b {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--rt-ink);
    line-height: 1.2;
}

.rt-floor-badge {
    font-family: var(--rt-mono);
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 2px 5px;
    border-radius: var(--rt-radius-sm);
    background: var(--rt-paper);
    color: var(--rt-muted);
    font-style: normal;
    flex-shrink: 0;
}

.rt-floor-badge.is-open {
    background: rgba(26, 127, 69, 0.12);
    color: var(--rt-ok);
}

.rt-floor-badge.is-package {
    background: rgba(180, 130, 20, 0.12);
    color: #a16207;
}

.rt-floor-meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 6px;
    font-family: var(--rt-mono);
    font-size: 9px;
    color: var(--rt-muted);
}

.rt-floor-meta em {
    font-style: normal;
    font-weight: 600;
    color: #dc2626;
    font-size: 10px;
}

.rt-floor-meta u {
    text-decoration: none;
}

.rt-floor-meta.is-empty {
    font-family: var(--rt-font);
    font-size: 10px;
}

.rt-adm-prod {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 6px;
    min-height: 72px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--rt-radius-sm);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
    text-align: left;
    font-family: inherit;
    cursor: pointer;
    transition: border-color 0.1s, transform 0.1s;
}

.rt-adm-prod:active {
    transform: translateY(1px);
}

.rt-adm-prod strong {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--rt-ink);
    line-height: 1.25;
}

.rt-adm-prod > span:not(.rt-adm-prod-qty) {
    font-size: 12px;
    font-weight: 600;
    color: var(--rt-bordo);
}

.rt-adm-prod.is-picked {
    border-color: rgba(123, 30, 58, 0.35);
    box-shadow: 0 0 0 1px rgba(123, 30, 58, 0.12);
}

.rt-adm-prod-qty {
    position: absolute;
    top: 6px;
    right: 6px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--rt-bordo);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.rt-adm-side {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 0;
    background: var(--rt-panel);
}

.rt-adm-bill-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px 8px;
    border-bottom: 1px solid var(--rt-line);
    position: relative;
    flex-shrink: 0;
}

.rt-adm-bill-head-main {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    padding-left: 8px;
}

.rt-adm-bill-back {
    flex-shrink: 0;
    border: 1px solid var(--rt-line);
    background: var(--rt-paper);
    color: var(--rt-bordo);
    font-family: inherit;
    font-size: 10px;
    font-weight: 600;
    padding: 5px 8px;
    border-radius: var(--rt-radius-sm);
    cursor: pointer;
}

.rt-adm-bill-head::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 3px;
    border-radius: 0 var(--rt-radius-sm) var(--rt-radius-sm) 0;
    background: var(--rt-bordo);
}

.rt-adm-bill-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--rt-ink);
    padding-left: 0;
}

.rt-adm-bill-sub {
    font-family: var(--rt-mono);
    font-size: 9px;
    letter-spacing: 0.04em;
    color: var(--rt-muted);
    padding-left: 0;
}

.rt-adm-bill-wrap {
    position: relative;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.rt-adm-bill-body {
    flex: 1;
    min-height: 0;
    overflow: auto;
    padding: 8px 10px;
    background: #fcfcfd;
}

.rt-adm-cart {
    margin-bottom: 8px;
    padding: 8px;
    border: 1px dashed rgba(123, 30, 58, 0.28);
    border-radius: var(--rt-radius-sm);
    background: rgba(123, 30, 58, 0.04);
}

.rt-adm-cart-title {
    display: block;
    margin-bottom: 6px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--rt-bordo);
}

.rt-adm-cart-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 11px;
    padding: 4px 0;
}

.rt-adm-cart-row + .rt-adm-cart-row {
    border-top: 1px solid rgba(123, 30, 58, 0.1);
}

.rt-adm-cart-row strong {
    font-weight: 500;
    color: var(--rt-ink);
}

.rt-adm-cart-row em {
    font-style: normal;
    font-family: var(--rt-mono);
    font-weight: 600;
    color: var(--rt-ink);
}

.rt-adm-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rt-adm-line {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    padding: 7px 8px;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius-sm);
    background: var(--rt-panel);
    font-size: 11px;
    color: var(--rt-body);
}

.rt-adm-line-name {
    min-width: 0;
    line-height: 1.25;
}

.rt-adm-line em {
    font-style: normal;
    font-family: var(--rt-mono);
    font-weight: 600;
    color: var(--rt-ink);
    flex-shrink: 0;
}

.rt-adm-kitchen-note {
    margin: 8px 0 0;
    padding: 7px 8px;
    border-radius: var(--rt-radius-sm);
    background: rgba(123, 30, 58, 0.06);
    border: 1px solid rgba(123, 30, 58, 0.12);
    font-size: 10px;
    color: var(--rt-bordo);
    line-height: 1.3;
}

.rt-adm-line--pending {
    border-style: dashed;
    border-color: rgba(123, 30, 58, 0.28);
    background: rgba(123, 30, 58, 0.04);
}

.rt-adm-lines-title {
    display: block;
    margin: 0 0 6px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--rt-muted);
}

.rt-adm-bill-foot {
    flex-shrink: 0;
    padding: 10px;
    border-top: 1px solid var(--rt-line);
    background: var(--rt-panel);
}

.rt-adm-summary {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}

.rt-adm-summary-row,
.rt-adm-total-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    font-size: 11px;
    color: var(--rt-body);
}

.rt-adm-summary-row i,
.rt-adm-total-row i {
    font-style: normal;
}

.rt-adm-summary-row em {
    font-style: normal;
    font-family: var(--rt-mono);
    font-weight: 600;
    color: var(--rt-ink);
}

.rt-adm-total-row {
    font-weight: 600;
    color: var(--rt-ink);
    padding-top: 4px;
    border-top: 1px dashed var(--rt-line);
}

.rt-adm-total-row.is-due em {
    color: #dc2626;
}

.rt-adm-total-row.is-paid em {
    color: var(--rt-ok);
}

.rt-adm-total-row em {
    font-style: normal;
    font-family: var(--rt-mono);
    font-size: 14px;
    font-weight: 600;
    color: var(--rt-bordo);
}

.rt-adm-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 8px;
}

.rt-adm-tool {
    font-size: 9px;
    font-weight: 500;
    padding: 4px 7px;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius);
    background: var(--rt-paper);
    color: var(--rt-muted);
}

.rt-adm-actions {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 6px;
}

.rt-adm-btn {
    min-height: 36px;
    border-radius: var(--rt-radius-sm);
    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.12s var(--rt-ease), border-color 0.12s var(--rt-ease), opacity 0.12s;
}

.rt-adm-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.rt-adm-btn--ghost {
    border: 1px solid var(--rt-line);
    background: var(--rt-panel);
    color: var(--rt-ink);
}

.rt-adm-btn--ghost:not(:disabled):hover,
.rt-adm-btn--ghost.is-add-active {
    border-color: var(--rt-ok);
    color: var(--rt-ok);
    background: rgba(26, 127, 69, 0.06);
}

.rt-adm-btn--primary {
    border: 1px solid var(--rt-bordo);
    background: var(--rt-bordo);
    color: #fff;
}

.rt-adm-btn--primary:not(:disabled):hover {
    background: var(--rt-bordo-deep);
    border-color: var(--rt-bordo-deep);
}

.rt-adm-empty {
    padding: 16px 8px;
    text-align: center;
    font-size: 11px;
    color: var(--rt-muted);
    line-height: 1.4;
}

.rt-adm-mobile-tabs {
    display: none;
    flex-shrink: 0;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--rt-line);
    background: var(--rt-panel);
}

.rt-adm-mobile-tabs button {
    min-height: 42px;
    border: 0;
    border-bottom: 2px solid transparent;
    background: transparent;
    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    color: var(--rt-muted);
    cursor: pointer;
}

.rt-adm-mobile-tabs button.is-active {
    color: var(--rt-bordo);
    border-bottom-color: var(--rt-bordo);
}

.rt-adm-mobile-tabs button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

@container rt-adm (max-width: 640px) {
    .rt-adm-topbar {
        display: none;
    }

    .rt-adm-mobile-tabs {
        display: grid;
    }

    .rt-adm-workspace,
    .rt-adm-workspace.is-pick-table {
        grid-template-columns: 1fr;
    }

    .rt-adm-col--main {
        border-right: 0;
    }

    .rt-adm-app:not(.is-pick-table) .rt-adm-col--main:not(.is-mobile-active),
    .rt-adm-app:not(.is-pick-table) .rt-adm-side:not(.is-mobile-active) {
        display: none !important;
    }

    .rt-adm-app.is-pick-table .rt-adm-side {
        display: none !important;
    }

    .rt-adm-floor.is-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rt-adm-floor-toolbar {
        display: none !important;
    }

    .rt-adm-stats,
    .rt-adm-tools {
        display: none;
    }

    .rt-adm-back {
        display: none !important;
    }

    .rt-adm-bill-back {
        display: inline-flex !important;
    }

    .rt-adm-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rt-adm-side.is-mobile-active {
        display: flex !important;
        max-height: none;
        flex: 1;
        min-height: 0;
    }

    .rt-adm-col--main.is-mobile-active {
        display: flex !important;
        flex: 1;
        min-height: 0;
    }
}

.rt-panel-points {
    display: flex;
    flex-direction: column;
}

.rt-panel-points li {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 0 20px 22px;
    border-left: 1px solid var(--rt-line);
    position: relative;
}

.rt-panel-points li::before {
    content: "";
    position: absolute;
    left: -5px;
    top: 27px;
    width: 9px;
    height: 9px;
    background: var(--rt-bordo);
    border-radius: var(--rt-radius-sm);
}

.rt-panel-points h3 {
    font-size: 17px;
}

.rt-panel-points p {
    font-size: 14.5px;
    color: var(--rt-body);
    max-width: 38ch;
}

/* ---------- Ak?? ---------- */

.rt-flow {
    padding: 88px 0;
}

.rt-flow-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius);
    background: var(--rt-panel);
    counter-reset: none;
}

.rt-flow-grid li {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 28px 24px;
    border-right: 1px solid var(--rt-line);
}

/* Ad?mlar aras? ok (ger?ek s?ralamay? vurgular) */

.rt-flow-grid li:not(:last-child)::after {
    content: "?";
    position: absolute;
    right: -9px;
    top: 26px;
    z-index: 1;
    font-family: var(--rt-mono);
    font-size: 13px;
    line-height: 1;
    color: var(--rt-bordo);
    background: var(--rt-panel);
    padding: 2px 1px;
}

.rt-flow-grid li:last-child {
    border-right: 0;
}

.rt-flow-no {
    font-family: var(--rt-mono);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--rt-bordo);
}

.rt-flow-grid h3 {
    font-size: 17.5px;
}

.rt-flow-grid p {
    font-size: 14px;
    color: var(--rt-body);
}

.rt-flow-demo {
    margin: 36px 0 0;
}

.rt-flow-demo .rt-browser {
    max-width: 1100px;
}

/* ---------- Mutfak ekran? (KDS) ?nizleme ---------- */

.rt-kds-app {
    display: flex;
    flex-direction: column;
    min-height: 280px;
    background: var(--rt-paper);
}

.rt-kds-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--rt-line);
    background: var(--rt-ink);
    color: #fff;
}

.rt-kds-top-brand {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rt-kds-top-brand b {
    font-size: 13px;
    font-weight: 600;
}

.rt-kds-top-brand span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

.rt-kds-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(26, 127, 69, 0.22);
    color: #9fe0bb;
    font-family: var(--rt-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rt-kds-live i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--rt-ok);
    animation: rt-dot-pulse 2.2s ease-in-out infinite;
}

.rt-kds-board {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    flex: 1;
    min-height: 240px;
}

.rt-kds-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 10px;
    border-right: 1px solid var(--rt-line);
    min-height: 100%;
}

.rt-kds-col:last-child {
    border-right: 0;
}

.rt-kds-col-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 0 4px 8px;
    border-bottom: 1px dashed var(--rt-line);
    margin-bottom: 4px;
}

.rt-kds-col-head b {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--rt-ink);
}

.rt-kds-col-head em {
    font-style: normal;
    font-family: var(--rt-mono);
    font-size: 10px;
    font-weight: 600;
    color: var(--rt-muted);
    font-variant-numeric: tabular-nums;
}

.rt-kds-col--wait .rt-kds-col-head b { color: var(--rt-bordo); }
.rt-kds-col--prep .rt-kds-col-head b { color: #9a6b00; }
.rt-kds-col--ready .rt-kds-col-head b { color: var(--rt-ok); }

.rt-kds-cards {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.rt-kds-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius);
    background: var(--rt-panel);
    text-align: left;
    cursor: pointer;
    transition: border-color 0.15s var(--rt-ease), box-shadow 0.15s var(--rt-ease);
}

.rt-kds-card:hover {
    border-color: var(--rt-bordo);
    box-shadow: 0 2px 0 rgba(123, 30, 58, 0.08);
}

.rt-kds-card-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
}

.rt-kds-card-top b {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--rt-ink);
}

.rt-kds-card-top em {
    font-style: normal;
    font-family: var(--rt-mono);
    font-size: 10px;
    font-weight: 600;
    color: var(--rt-muted);
    font-variant-numeric: tabular-nums;
}

.rt-kds-card ul {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 11.5px;
    color: var(--rt-body);
}

.rt-kds-card-hint {
    font-size: 10px;
    color: var(--rt-muted);
    margin-top: 2px;
}

.rt-kds-card--wait { border-left: 3px solid var(--rt-bordo); }
.rt-kds-card--prep { border-left: 3px solid #d4a017; }
.rt-kds-card--ready { border-left: 3px solid var(--rt-ok); }

/* ---------- Kurulum sihirbaz? ?nizleme ---------- */

.rt-wizard {
    padding: 88px 0;
    border-top: 1px solid var(--rt-line);
    background: var(--rt-paper);
}

.rt-section-lead {
    margin-top: 12px;
    max-width: 52ch;
    font-size: 15px;
    line-height: 1.55;
    color: var(--rt-body);
}

.rt-wizard-demo {
    margin: 28px 0 0;
}

.rt-wizard-demo .rt-browser {
    max-width: 1100px;
}

.rt-wiz-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    flex: 1;
    min-height: 0;
}

.rt-wiz-summary {
    display: flex;
    flex-direction: column;
    padding: 22px 20px;
    border-left: 1px solid var(--rt-line);
    background: var(--rt-paper);
}

.rt-wiz-summary-label {
    margin: 0 0 16px;
    font-family: var(--rt-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rt-muted);
}

.rt-wiz-summary-row {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px dashed var(--rt-line);
}

.rt-wiz-summary-row span {
    font-size: 11px;
    color: var(--rt-muted);
}

.rt-wiz-summary-row b {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--rt-ink);
    line-height: 1.3;
}

.rt-wiz-summary-swatch {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: var(--rt-radius-sm);
    border: 1px solid var(--rt-line);
    flex-shrink: 0;
    background: var(--rt-bordo);
}

.rt-wiz-summary-foot {
    margin-top: auto;
    padding-top: 4px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
}

.rt-wiz-summary-foot span {
    font-family: var(--rt-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rt-muted);
}

.rt-wiz-summary-foot strong {
    font-family: var(--rt-mono);
    font-size: 22px;
    font-weight: 600;
    color: var(--rt-bordo);
    font-variant-numeric: tabular-nums;
}

.rt-wiz-summary-foot strong i {
    font-style: normal;
    font-size: 11px;
    font-weight: 500;
    color: var(--rt-muted);
    margin-left: 2px;
}

.rt-wiz-app {
    display: flex;
    flex-direction: column;
    min-height: 340px;
    background: var(--rt-panel);
}

.rt-wiz-progress {
    height: 3px;
    background: var(--rt-line);
}

.rt-wiz-progress-fill {
    display: block;
    height: 100%;
    width: 25%;
    background: var(--rt-bordo);
    transition: width 0.3s var(--rt-ease);
}

.rt-wiz-steps {
    display: flex;
    gap: 0;
    padding: 14px 16px 0;
    list-style: none;
    border-bottom: 1px solid var(--rt-line);
}

.rt-wiz-steps li {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 8px 12px;
    font-size: 10.5px;
    font-weight: 500;
    color: var(--rt-muted);
    text-align: center;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

.rt-wiz-steps li.is-done,
.rt-wiz-steps li.is-active {
    color: var(--rt-ink);
}

.rt-wiz-steps li.is-active {
    border-bottom-color: var(--rt-bordo);
    font-weight: 600;
}

.rt-wiz-steps li span {
    font-family: var(--rt-mono);
    font-size: 9.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rt-muted);
}

.rt-wiz-steps li.is-active span {
    color: var(--rt-bordo);
}

.rt-wiz-body {
    flex: 1;
    padding: 20px 18px;
    min-height: 220px;
}

.rt-wiz-pane-title {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 600;
    color: var(--rt-ink);
}

.rt-wiz-pane-desc {
    margin: 0 0 16px;
    font-size: 13.5px;
    color: var(--rt-body);
}

.rt-wiz-choices {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.rt-wiz-choice {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 12px;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius);
    background: var(--rt-paper);
    text-align: left;
    cursor: pointer;
    font: inherit;
    color: inherit;
    transition: border-color 0.15s var(--rt-ease), background 0.15s var(--rt-ease);
}

.rt-wiz-choice:hover {
    border-color: var(--rt-bordo);
}

.rt-wiz-choice.is-picked {
    border-color: var(--rt-bordo);
    background: var(--rt-rose);
}

.rt-wiz-choice b {
    font-size: 13px;
    font-weight: 600;
}

.rt-wiz-choice span {
    font-size: 11.5px;
    color: var(--rt-body);
}

.rt-wiz-themes {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.rt-wiz-theme {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius);
    background: var(--rt-paper);
    cursor: pointer;
    font: inherit;
    text-align: left;
    transition: border-color 0.15s var(--rt-ease);
}

.rt-wiz-theme.is-picked {
    border-color: var(--rt-bordo);
    box-shadow: 0 0 0 2px rgba(123, 30, 58, 0.1);
}

.rt-wiz-theme-swatch {
    height: 36px;
    border-radius: var(--rt-radius-sm);
    border: 1px solid var(--rt-line);
}

.rt-wiz-theme b {
    font-size: 11px;
    font-weight: 600;
}

.rt-wiz-products {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rt-wiz-product {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius);
    background: var(--rt-paper);
    cursor: pointer;
    font: inherit;
    text-align: left;
}

.rt-wiz-product.is-on {
    border-color: var(--rt-bordo);
    background: var(--rt-rose);
}

.rt-wiz-product span {
    font-size: 13px;
    font-weight: 500;
}

.rt-wiz-product em {
    font-style: normal;
    font-family: var(--rt-mono);
    font-size: 11px;
    font-weight: 600;
    color: var(--rt-bordo);
}

.rt-wiz-done {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 0 4px;
    text-align: center;
}

.rt-wiz-done-mark {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 127, 69, 0.12);
    color: var(--rt-ok);
    font-size: 26px;
    font-weight: 600;
    line-height: 1;
}

.rt-wiz-done h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.rt-wiz-done p {
    margin: 0;
    font-size: 13.5px;
    color: var(--rt-body);
    max-width: 32ch;
}

.rt-wiz-done-time {
    margin-top: 6px;
    font-family: var(--rt-mono);
    font-size: 32px;
    font-weight: 600;
    color: var(--rt-bordo);
    font-variant-numeric: tabular-nums;
}

.rt-wiz-done-time i {
    font-style: normal;
    font-size: 14px;
    font-weight: 500;
    color: var(--rt-muted);
    margin-left: 4px;
}

.rt-wiz-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding: 12px 16px 16px;
    border-top: 1px solid var(--rt-line);
}

.rt-wiz-btn {
    padding: 10px 18px;
    border-radius: var(--rt-radius);
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--rt-line);
    background: var(--rt-panel);
    color: var(--rt-ink);
    transition: background 0.15s var(--rt-ease), border-color 0.15s var(--rt-ease);
}

.rt-wiz-btn--ghost:hover {
    border-color: var(--rt-bordo);
}

.rt-wiz-btn--primary {
    border-color: var(--rt-bordo);
    background: var(--rt-bordo);
    color: #fff;
}

.rt-wiz-btn--primary:hover {
    background: var(--rt-bordo-deep);
}

.rt-wiz-btn--primary:disabled {
    opacity: 0.4;
    cursor: default;
}

/* ---------- ?zellikler ---------- */

.rt-features {
    padding: 24px 0 88px;
}

.rt-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.rt-feature-grid article {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 22px 20px;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius);
    background: var(--rt-panel);
    transition: border-color 0.18s var(--rt-ease);
}

.rt-feature-grid article:hover {
    border-color: var(--rt-bordo);
}

.rt-feature-ic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 4px;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius);
    background: var(--rt-paper);
    color: var(--rt-bordo);
}

.rt-feature-ic svg {
    width: 18px;
    height: 18px;
    display: block;
}

.rt-feature-grid article:hover .rt-feature-ic {
    border-color: var(--rt-bordo);
}

.rt-feature-tag {
    font-style: normal;
    font-size: 12px;
    font-weight: 500;
    color: var(--rt-bordo);
}

.rt-feature-grid h3 {
    font-size: 16px;
}

.rt-feature-grid p {
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--rt-body);
}

/* ---------- Masadan sipari? & garson ---------- */

.rt-order {
    padding: 0 0 88px;
}

.rt-order-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 44px;
    align-items: start;
}

.rt-order-timeline {
    position: relative;
    margin: 0;
    padding: 4px 0 0;
    list-style: none;
}

.rt-order-timeline::before {
    content: "";
    position: absolute;
    left: 23px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(180deg, var(--rt-bordo) 0%, var(--rt-line) 18%, var(--rt-line) 82%, var(--rt-bordo) 100%);
}

.rt-order-step {
    position: relative;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding-bottom: 20px;
}

.rt-order-step:last-child {
    padding-bottom: 0;
}

.rt-order-step-marker {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    padding-top: 0;
}

.rt-order-step-no {
    display: block;
    margin-bottom: 6px;
    font-family: var(--rt-mono);
    font-size: 11px;
    font-weight: 600;
    color: var(--rt-bordo);
}

.rt-order-step-node {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border: 2px solid var(--rt-panel);
    border-radius: var(--rt-radius);
    background: var(--rt-panel);
    color: var(--rt-bordo);
    box-shadow: 0 0 0 1px var(--rt-line);
    transition: border-color 0.18s var(--rt-ease), background 0.18s var(--rt-ease), box-shadow 0.18s var(--rt-ease);
}

.rt-order-step-node svg {
    width: 19px;
    height: 19px;
    display: block;
}

.rt-order-step:hover .rt-order-step-node {
    border-color: var(--rt-bordo);
    background: var(--rt-rose);
    box-shadow: 0 0 0 1px var(--rt-bordo);
}

.rt-order-step-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px 20px;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius-lg);
    background: var(--rt-panel);
    transition: border-color 0.18s var(--rt-ease);
}

.rt-order-step:hover .rt-order-step-body {
    border-color: rgba(123, 30, 58, 0.28);
}

.rt-order-step-body h3 {
    font-size: 19px;
}

.rt-order-step-body p {
    margin: 0;
    font-size: 15px;
    line-height: 1.58;
    color: var(--rt-body);
    max-width: none;
}

.rt-secure {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 30px 28px;
    border: 1px solid var(--rt-bordo);
    border-radius: var(--rt-radius);
    background: var(--rt-rose);
}

.rt-secure-tag {
    font-size: 12px;
    font-weight: 500;
    color: var(--rt-bordo);
}

.rt-secure h3 {
    font-size: 21px;
}

.rt-secure > p {
    font-size: 15px;
    color: var(--rt-body);
}

.rt-secure-chips {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 4px 0;
}

.rt-secure-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    padding: 7px 13px;
    border: 1px solid var(--rt-line);
    border-radius: 999px;
    background: var(--rt-panel);
    font-family: var(--rt-mono);
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--rt-body);
}

.rt-secure-chip::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.rt-secure-chip b {
    font-weight: 600;
    color: var(--rt-bordo);
}

.rt-secure-chip.is-ok::before {
    background: var(--rt-ok);
}

.rt-secure-chip.is-no::before {
    background: var(--rt-bordo);
}

.rt-secure ul {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-top: 4px;
    padding-top: 16px;
    border-top: 1px dashed rgba(123, 30, 58, 0.28);
    font-size: 14px;
    color: var(--rt-body);
}

.rt-secure li {
    position: relative;
    padding-left: 18px;
}

.rt-secure li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 8px;
    height: 8px;
    background: var(--rt-bordo);
    border-radius: var(--rt-radius-sm);
}

/* ---------- Kampanya & bildirim ---------- */

.rt-camp {
    padding: 0 0 88px;
}

.rt-camp-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

/* Ger?ek bir telefon bildirimi anatomisi: ikon+uygulama+zaman sat?r?, kal?n
   ba?l?k, g?vde ? y?zen kart g?lgesiyle. */

.rt-push {
    display: flex;
    flex-direction: column;
    gap: 7px;
    max-width: 300px;
    margin-bottom: 48px;
    padding: 14px 16px 16px;
    border-radius: 18px;
    background: var(--rt-panel);
    box-shadow: 0 16px 32px -14px rgba(26, 13, 18, 0.32), 0 2px 6px rgba(26, 13, 18, 0.05);
}

.rt-push-top {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rt-push-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--rt-bordo), var(--rt-bordo-deep));
}

.rt-push-appname {
    font-family: var(--rt-mono);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--rt-muted);
}

.rt-push-time {
    margin-left: auto;
    font-family: var(--rt-mono);
    font-size: 10.5px;
    color: var(--rt-muted);
}

.rt-push-title {
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--rt-ink);
}

.rt-push-body {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    color: var(--rt-body);
}

/* Kampanya sat?rlar?ndaki kendine ?zg? k???k g?rsel ipu?lar? (tekrarlanan
   ikon-kutusu de?il ? her sat?r kendi somut ?rne?ini g?sterir). */

.rt-camp-visual {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 14px;
    padding: 6px 11px;
    border: 1px solid var(--rt-line);
    border-radius: 999px;
    background: var(--rt-paper);
    font-family: var(--rt-mono);
    font-size: 11.5px;
    font-weight: 500;
    color: var(--rt-body);
}

.rt-camp-visual i {
    font-style: normal;
}

.rt-camp-visual b {
    font-weight: 600;
    color: var(--rt-bordo);
}

.rt-camp-visual--soon {
    border-style: dashed;
    color: var(--rt-muted);
}

.rt-camp-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--rt-ok);
    animation: rt-dot-pulse 2.2s ease-in-out infinite;
}

.rt-camp-visual svg {
    width: 28px;
    height: 14px;
    color: var(--rt-bordo);
}

.rt-camp-visual svg rect {
    fill: currentColor;
}

.rt-camp-visual svg rect:nth-child(1) { opacity: 0.4; }
.rt-camp-visual svg rect:nth-child(2) { opacity: 0.6; }
.rt-camp-visual svg rect:nth-child(3) { opacity: 0.8; }

/* Kampanya spesifikasyon tablosu ? ayr? kartlar yerine tek g?vde, kesikli i?
   ?izgilerle b?l?nm?? (fi?/men? motifiyle tutarl?). */

.rt-camp-board {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius-lg);
    background: var(--rt-panel);
    overflow: hidden;
}

.rt-camp-row {
    display: flex;
    gap: 16px;
    padding: 28px 26px;
    border-bottom: 1px dashed var(--rt-line);
    transition: background 0.15s var(--rt-ease);
}

.rt-camp-row:nth-child(odd) {
    border-right: 1px dashed var(--rt-line);
}

.rt-camp-row:nth-last-child(-n+2) {
    border-bottom: 0;
}

.rt-camp-row:hover {
    background: var(--rt-paper);
}

.rt-camp-tag {
    flex-shrink: 0;
    padding-top: 3px;
    font-family: var(--rt-mono);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--rt-bordo);
}

.rt-camp-row-body h3 {
    margin: 0 0 6px;
    font-size: 17px;
}

.rt-camp-row-body p {
    margin: 0;
    font-size: 14.5px;
    color: var(--rt-body);
    max-width: 46ch;
}

/* ---------- Men? i?eri?i & mevzuat ---------- */

.rt-camp-ai {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-left: 4px;
    padding: 3px 10px 3px 7px;
    vertical-align: middle;
    border: 1px solid rgba(123, 30, 58, 0.3);
    border-radius: 999px;
    background: var(--rt-rose);
    font-family: var(--rt-mono);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--rt-bordo);
}

.rt-camp-ai::before {
    content: "";
    width: 8px;
    height: 8px;
    background: currentColor;
    clip-path: polygon(50% 0%, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0% 50%, 40% 40%);
}

.rt-content {
    padding: 88px 0;
    border-top: 1px solid var(--rt-line);
    background: var(--rt-paper);
}

.rt-content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.rt-content-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 30px 28px;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius-xl);
    background: var(--rt-panel);
    overflow: hidden;
    transition: transform 0.2s var(--rt-ease), box-shadow 0.2s var(--rt-ease);
}

.rt-content-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 36px -22px rgba(26, 13, 18, 0.28);
}

.rt-content-card > * {
    position: relative;
    z-index: 1;
}

.rt-content-card > .rt-content-card-icon {
    position: absolute;
    z-index: 0;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    fill: rgba(123, 30, 58, 0.55);
}

.rt-content-card-tag {
    font-family: var(--rt-mono);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--rt-bordo);
}

.rt-content-card h3 {
    margin: 0;
    font-size: 18px;
}

.rt-content-card > p {
    margin: 0;
    font-size: 14.5px;
    color: var(--rt-body);
}

.rt-content-card .rt-camp-visual {
    margin-top: 4px;
    align-self: flex-start;
}

.rt-content-card.is-ai {
    border-color: rgba(123, 30, 58, 0.22);
    background: var(--rt-rose);
}

.rt-content-card.is-ai::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--rt-bordo);
}

.rt-content-card.is-soon {
    opacity: 0.62;
}

.rt-content-card.is-soon .rt-content-card-tag {
    color: var(--rt-muted);
}

@media (max-width: 767px) {
    .rt-content-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- Kar??la?t?rma ---------- */

.rt-compare {
    padding: 0 0 88px;
}

.rt-compare-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.rt-compare-grid::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 12%;
    bottom: 12%;
    width: 1px;
    transform: translateX(-50%);
    background: var(--rt-line);
}

.rt-compare-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 28px 26px;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius);
    background: var(--rt-panel);
}

.rt-compare-card--new {
    border-color: var(--rt-bordo);
}

.rt-compare-tag {
    font-size: 12px;
    font-weight: 500;
    color: var(--rt-muted);
}

.rt-compare-card--new .rt-compare-tag {
    color: var(--rt-bordo);
}

.rt-compare-card ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 15px;
    color: var(--rt-body);
}

.rt-compare-card li {
    position: relative;
    padding-left: 26px;
}

.rt-compare-card--old li {
    color: var(--rt-muted);
}

.rt-compare-card--old li::before,
.rt-compare-card--old li::after {
    content: "";
    position: absolute;
    left: 3px;
    top: 0.62em;
    width: 11px;
    height: 1.5px;
    background: var(--rt-muted);
}

.rt-compare-card--old li::before {
    transform: rotate(45deg);
}

.rt-compare-card--old li::after {
    transform: rotate(-45deg);
}

.rt-compare-card--new li {
    color: var(--rt-ink);
}

.rt-compare-card--new li::before {
    content: "";
    position: absolute;
    left: 1px;
    top: 0.34em;
    width: 9px;
    height: 5px;
    border-left: 2px solid var(--rt-bordo);
    border-bottom: 2px solid var(--rt-bordo);
    transform: rotate(-45deg);
}

/* ---------- iOS & Android uygulamas? (yak?nda) ---------- */

.rt-app {
    padding: 88px 0;
    background: var(--rt-bordo-deep);
    color: #f3dfe6;
}

.rt-app h2 {
    color: #fff;
}

.rt-app-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 48px;
    align-items: center;
}

.rt-app-copy {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rt-app-copy h2 {
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.12;
}

.rt-app-lead {
    max-width: 48ch;
    font-size: 16px;
    color: #e5cdd6;
}

.rt-app-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 2px 0 0;
    font-size: 15px;
    color: #f3dfe6;
}

.rt-app-points li {
    position: relative;
    padding-left: 20px;
}

.rt-app-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.42em;
    width: 9px;
    height: 9px;
    background: #e9b9c7;
    border-radius: var(--rt-radius-sm);
}

.rt-app-platforms {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.rt-app-platform {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    font-family: var(--rt-mono);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.rt-app-note {
    max-width: 48ch;
    font-size: 13px;
    color: #d4a8b8;
}

.rt-app-stage {
    display: flex;
    justify-content: center;
}

.rt-app-stage .rt-device {
    max-width: 230px;
}

.rt-device-screen--soon {
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 320px;
    padding: 24px 20px;
    text-align: center;
    background:
        linear-gradient(rgba(123, 30, 58, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(123, 30, 58, 0.05) 1px, transparent 1px);
    background-size: 16px 16px;
}

.rt-device-screen--soon b {
    font-size: 15px;
    font-weight: 600;
    color: var(--rt-ink);
}

.rt-device-screen--soon > span {
    font-family: var(--rt-mono);
    font-size: 10.5px;
    letter-spacing: 0.08em;
    color: var(--rt-muted);
}

.rt-app-soon-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--rt-bordo), var(--rt-bordo-deep));
    box-shadow: 0 12px 22px -12px rgba(123, 30, 58, 0.55);
}

.rt-app-soon-mark::before {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 5px;
    background: #fff;
}

@media (max-width: 1023px) {
    .rt-app-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .rt-app-stage {
        order: -1;
    }
}

@media (max-width: 767px) {
    .rt-app {
        padding-top: 64px;
        padding-bottom: 64px;
    }
}

/* ---------- Ekran g?r?nt?leri ---------- */

.rt-shots {
    padding: 88px 0;
    border-top: 1px solid var(--rt-line);
}

.rt-shots-label {
    font-family: var(--rt-mono);
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--rt-muted);
    margin: 0 0 14px;
}

.rt-shots-desktop {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 40px;
}

.rt-shot {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.rt-shot--wide {
    grid-column: 1 / -1;
}

.rt-shot-frame {
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius-lg);
    background: var(--rt-panel);
    overflow: hidden;
}

.rt-shot-bar {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 9px 12px;
    border-bottom: 1px solid var(--rt-line);
    background: var(--rt-paper);
}

.rt-shot-bar i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--rt-line);
}

.rt-shot-body {
    position: relative;
    background: var(--rt-paper);
}

.rt-shot--desktop .rt-shot-body {
    aspect-ratio: 1440 / 900;
}

.rt-shot--wide .rt-shot-body {
    aspect-ratio: 1440 / 640;
}

.rt-shot-body img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    opacity: 0;
    transition: opacity 0.35s var(--rt-ease);
}

.rt-shot.has-img .rt-shot-body img {
    opacity: 1;
}

.rt-shot-ph {
    position: absolute;
    inset: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px dashed var(--rt-line);
    border-radius: var(--rt-radius-sm);
    text-align: center;
    padding: 10px;
}

.rt-shot-ph::before {
    content: "";
    width: 26px;
    height: 26px;
    margin-bottom: 4px;
    border: 1px solid var(--rt-muted);
    border-radius: var(--rt-radius);
    background:
        linear-gradient(to top right, transparent calc(50% - 1px), var(--rt-muted) calc(50% - 1px), var(--rt-muted) calc(50% + 0.5px), transparent calc(50% + 0.5px)) no-repeat 0 100% / 100% 55%,
        radial-gradient(circle at 30% 30%, var(--rt-muted) 3px, transparent 3.5px);
    opacity: 0.55;
}

.rt-shot-ph b {
    font-size: 13px;
    font-weight: 600;
    color: var(--rt-ink);
}

.rt-shot-ph span {
    font-family: var(--rt-mono);
    font-size: 10.5px;
    letter-spacing: 0.05em;
    color: var(--rt-muted);
    word-break: break-all;
}

.rt-shot.has-img .rt-shot-ph {
    display: none;
}

.rt-shot figcaption {
    font-family: var(--rt-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rt-muted);
}

/* Mobil ?er?eveler */

.rt-shots-mobile {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.rt-shot--mobile .rt-shot-frame {
    border-radius: 28px;
    padding: 10px 8px;
    position: relative;
}

.rt-shot-notch {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 5px;
    border-radius: var(--rt-radius);
    background: var(--rt-line);
    z-index: 2;
}

.rt-shot--mobile .rt-shot-body {
    aspect-ratio: 390 / 844;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius-xl);
    overflow: hidden;
}

.rt-shot--mobile .rt-shot-ph {
    inset: 8px;
}

.rt-shot--mobile figcaption {
    text-align: center;
}

/* ---------- Kimler i?in ---------- */

.rt-who {
    padding: 40px 0;
    border-top: 1px solid var(--rt-line);
    background: var(--rt-panel);
}

.rt-who-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rt-who-inner > .rt-kicker {
    flex-shrink: 0;
}

.rt-who-scroll {
    min-width: 0;
    flex: 1;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
}

.rt-who-track {
    display: flex;
    width: max-content;
    animation: rt-who-marquee 32s linear infinite;
}

.rt-who:hover .rt-who-track {
    animation-play-state: paused;
}

@keyframes rt-who-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.rt-who-chips {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    flex-shrink: 0;
    padding-right: 8px;
    margin: 0;
    list-style: none;
}

.rt-who-chips li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding: 8px 16px;
    border: 1px solid var(--rt-line);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: var(--rt-ink);
    white-space: nowrap;
    background: var(--rt-panel);
}

.rt-who-chips li::before {
    content: "";
    width: 7px;
    height: 7px;
    background: var(--rt-bordo);
    border-radius: var(--rt-radius-sm);
}

@media (prefers-reduced-motion: reduce) {
    .rt-who-track {
        animation: none;
    }

    .rt-who-scroll {
        overflow-x: auto;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .rt-who-chips[aria-hidden="true"] {
        display: none;
    }

    .rt-who-chips {
        flex-wrap: wrap;
        padding-right: 0;
    }
}

/* ---------- CTA band? ---------- */

.rt-cta {
    position: relative;
    overflow: hidden;
    padding: 88px 0;
    background: var(--rt-ink);
    color: #e8dbe1;
}

/* CTA arka plan foto slotu: cta-arkaplan.jpg y?klenince soluk fon olur */

.rt-cta-bg {
    display: none;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    filter: saturate(0.55);
}

.rt-cta.has-bg .rt-cta-bg {
    display: block;
}

.rt-cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.rt-cta h2 {
    color: #fff;
    font-size: clamp(30px, 4.6vw, 50px);
    line-height: 1.08;
}

.rt-cta p {
    max-width: 52ch;
    font-size: 17px;
}

.rt-cta-actions {
    margin-top: 8px;
}

.rt-btn-paper {
    background: #fff;
    color: var(--rt-ink);
}

.rt-btn-paper:hover {
    background: var(--rt-rose);
    color: var(--rt-bordo);
}

.rt-cta-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    font-size: 13px;
    color: #b79aa6;
}

.rt-cta-facts li {
    position: relative;
    padding-left: 16px;
}

.rt-cta-facts li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.42em;
    width: 7px;
    height: 7px;
    background: var(--rt-bordo);
    border-radius: var(--rt-radius-sm);
}

/* ---------- Mobil ---------- */

.rt-mobile {
    padding: 88px 0;
    border-top: 1px solid var(--rt-line);
}

.rt-mobile-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 48px;
    align-items: center;
}

.rt-mobile-copy {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rt-mobile-copy h2 {
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.12;
}

.rt-mobile-lead {
    font-size: 16.5px;
    max-width: 46ch;
}

.rt-mobile-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 6px;
    font-size: 15px;
    color: var(--rt-ink);
}

.rt-mobile-points li {
    position: relative;
    padding-left: 20px;
}

.rt-mobile-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.42em;
    width: 9px;
    height: 9px;
    background: var(--rt-bordo);
    border-radius: var(--rt-radius-sm);
}

/* 11 haz?r men? tasar?m? ?eridi */

.rt-themes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
    padding: 16px 18px;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius);
    background: var(--rt-panel);
    max-width: 460px;
}

.rt-themes-swatches {
    display: flex;
    gap: 5px;
}

.rt-themes-swatches i {
    width: 18px;
    height: 18px;
    border-radius: var(--rt-radius-sm);
    border: 1px solid rgba(26, 13, 18, 0.12);
}

.rt-themes-swatches i:nth-child(1) { background: #7b1e3a; }
.rt-themes-swatches i:nth-child(2) { background: #0f766e; }
.rt-themes-swatches i:nth-child(3) { background: #1a0d12; }
.rt-themes-swatches i:nth-child(4) { background: #b45309; }
.rt-themes-swatches i:nth-child(5) { background: #1d4ed8; }
.rt-themes-swatches i:nth-child(6) { background: #4d7c0f; }
.rt-themes-swatches i:nth-child(7) { background: #9d174d; }
.rt-themes-swatches i:nth-child(8) { background: #a16207; }
.rt-themes-swatches i:nth-child(9) { background: #374151; }
.rt-themes-swatches i:nth-child(10) { background: #7c2d12; }
.rt-themes-swatches i:nth-child(11) { background: #f7ecef; }

.rt-themes p {
    font-size: 14px;
    color: var(--rt-body);
}

.rt-themes p b {
    font-weight: 600;
    color: var(--rt-ink);
}

.rt-mobile-stage {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 12px;
    min-height: 360px;
    padding: 12px 8px 4px;
}

.rt-device-scene {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius);
    background: var(--rt-panel);
}

.rt-device-arc,
.rt-device-pulse {
    display: none;
}

.rt-device {
    position: relative;
    z-index: 1;
    margin: 0;
    flex: 1 1 0;
    max-width: 196px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rt-device--kds {
    max-width: 214px;
    transform: translateY(-18px);
    z-index: 3;
}

.rt-device figcaption {
    font-size: 12px;
    font-weight: 500;
    color: var(--rt-muted);
    text-align: center;
}

.rt-device-shell {
    border: 1px solid var(--rt-line);
    background: var(--rt-panel);
}

.rt-device-shell--phone {
    position: relative;
    border-radius: 34px;
    padding: 16px 10px 20px;
    border: none;
    background: var(--rt-ink);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        0 22px 40px -20px rgba(26, 13, 18, 0.5);
}

.rt-device-shell--phone .rt-device-screen {
    border: none;
    border-radius: 22px;
}

.rt-device-shell--phone::before {
    content: "";
    position: absolute;
    z-index: 2;
    bottom: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
}

.rt-device-shell--phone::after {
    content: "";
    position: absolute;
    top: 92px;
    right: -2px;
    width: 2px;
    height: 44px;
    border-radius: 0 2px 2px 0;
    background: var(--rt-ink);
}

.rt-device-shell--tablet {
    border-radius: var(--rt-radius-lg);
    padding: 9px;
}

.rt-device-shell--pos {
    border-radius: var(--rt-radius-lg);
    padding: 8px;
}

.rt-device-notch {
    position: absolute;
    z-index: 2;
    top: 9px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 15px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
}

.rt-device-screen {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius-xl);
    background: var(--rt-paper);
}

.rt-device-shell--tablet .rt-device-screen {
    border-radius: var(--rt-radius-lg);
}

.rt-device-shell--pos .rt-device-screen {
    border-radius: var(--rt-radius-sm);
}

.rt-device-screen--dark {
    background: var(--rt-ink);
    border-color: rgba(255, 255, 255, 0.08);
    color: #f0e6ea;
}

/* Telefon ? QR men? */

.rt-dev-bar {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 14px 12px 10px;
    background: var(--rt-bordo);
    color: #fff;
}

.rt-dev-bar strong {
    font-size: 12px;
    font-weight: 600;
}

.rt-dev-bar span {
    font-size: 9px;
    letter-spacing: 0.06em;
    opacity: 0.85;
}

.rt-dev-tabs {
    display: flex;
    gap: 4px;
    padding: 8px 10px 4px;
    overflow: hidden;
}

.rt-dev-tabs span {
    padding: 3px 7px;
    border: 1px solid var(--rt-line);
    border-radius: 999px;
    background: var(--rt-panel);
    font-size: 8.5px;
    font-weight: 500;
    color: var(--rt-muted);
    white-space: nowrap;
}

.rt-dev-tabs span.is-on {
    background: var(--rt-rose);
    border-color: transparent;
    color: var(--rt-bordo);
    font-weight: 600;
}

.rt-dev-list {
    display: flex;
    flex-direction: column;
    padding: 4px 10px 6px;
}

.rt-dev-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    padding: 7px 0;
    border-bottom: 1px dashed var(--rt-line);
    font-size: 10px;
    color: var(--rt-ink);
}

.rt-dev-list li:last-child {
    border-bottom: 0;
}

.rt-dev-list li.is-picked {
    color: var(--rt-bordo);
    font-weight: 600;
}

.rt-dev-list em {
    font-style: normal;
    font-family: var(--rt-mono);
    font-size: 9.5px;
    font-weight: 600;
    color: var(--rt-bordo);
    font-variant-numeric: tabular-nums;
}

.rt-dev-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin: 0 10px;
    padding: 8px 10px;
    border-radius: var(--rt-radius);
    background: var(--rt-ink);
    color: #fff;
    font-size: 9.5px;
}

.rt-dev-foot b {
    font-family: var(--rt-mono);
    font-size: 10px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.rt-dev-cta {
    margin: 8px 10px 10px;
    padding: 8px;
    border-radius: var(--rt-radius);
    background: var(--rt-bordo);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    text-align: center;
}

/* Tablet ? mutfak */

.rt-dev-kds-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rt-dev-kds-head > b {
    font-size: 11.5px;
    font-weight: 600;
}

.rt-dev-live {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(26, 127, 69, 0.22);
    color: #9fe0bb;
    font-size: 8.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rt-dev-live i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--rt-ok);
    animation: rt-dot-pulse 2s ease-in-out infinite;
}

.rt-dev-kds-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 10px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 3px solid #d4a017;
    border-radius: var(--rt-radius);
    background: rgba(255, 255, 255, 0.04);
}

.rt-dev-kds-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
}

.rt-dev-kds-top b {
    font-family: var(--rt-mono);
    font-size: 14px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.rt-dev-kds-top em {
    font-style: normal;
    font-size: 9px;
    color: rgba(240, 230, 234, 0.65);
}

.rt-dev-kds-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 10px;
    color: rgba(240, 230, 234, 0.9);
}

.rt-dev-kds-lines li span {
    display: inline-block;
    min-width: 18px;
    font-family: var(--rt-mono);
    font-weight: 600;
    color: #e9b9c7;
}

.rt-dev-kds-badge {
    align-self: flex-start;
    padding: 3px 7px;
    border-radius: var(--rt-radius-sm);
    background: rgba(212, 160, 23, 0.2);
    color: #f0d78a;
    font-size: 8.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
    animation: rt-kds-badge-pulse 2.4s ease-in-out infinite;
}

@keyframes rt-kds-badge-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.65; }
}

.rt-dev-kds-btn {
    display: block;
    margin: 4px 10px 10px;
    padding: 9px;
    border-radius: var(--rt-radius);
    background: var(--rt-ok);
    color: #fff;
    font-size: 10.5px;
    font-weight: 600;
    text-align: center;
}

/* Kasa ? dokunmatik POS */

.rt-dev-pos-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 10px;
    background: var(--rt-ink);
    color: #fff;
}

.rt-dev-pos-bar b {
    font-size: 10.5px;
    font-weight: 600;
}

.rt-dev-day {
    padding: 2px 6px;
    border-radius: var(--rt-radius-sm);
    background: rgba(26, 127, 69, 0.25);
    color: #9fe0bb;
    font-size: 7.5px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.rt-dev-pos-body {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 6px;
    padding: 8px;
}

.rt-dev-pos-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    align-content: start;
}

.rt-dev-pos-grid i {
    display: flex;
    flex-direction: column;
    gap: 1px;
    padding: 5px 4px;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius-sm);
    background: var(--rt-panel);
    font-style: normal;
    font-size: 8px;
    font-weight: 500;
    color: var(--rt-ink);
    line-height: 1.2;
}

.rt-dev-pos-grid em {
    font-style: normal;
    font-family: var(--rt-mono);
    font-size: 7.5px;
    font-weight: 600;
    color: var(--rt-bordo);
    font-variant-numeric: tabular-nums;
}

.rt-dev-pos-cart {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 6px 5px;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius-sm);
    background: var(--rt-panel);
}

.rt-dev-pos-cart b {
    font-size: 9px;
    font-weight: 600;
    color: var(--rt-ink);
}

.rt-dev-pos-cart span {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 4px;
    font-size: 8px;
    color: var(--rt-body);
}

.rt-dev-pos-cart span i {
    font-style: normal;
}

.rt-dev-pos-cart span em {
    font-style: normal;
    font-family: var(--rt-mono);
    font-size: 8px;
    font-weight: 600;
    color: var(--rt-bordo);
    font-variant-numeric: tabular-nums;
}

.rt-dev-pos-change em {
    color: var(--rt-ok);
}

.rt-dev-pos-cart u {
    margin-top: auto;
    padding: 6px 4px;
    border-radius: var(--rt-radius-sm);
    background: var(--rt-bordo);
    color: #fff;
    font-size: 8px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
}


/* Immersive header ? koyu hero uzerinde (fiyatlandirma) */

.rt-header--onhero:not(.is-scrolled) {
    background: linear-gradient(180deg, rgba(26, 8, 14, 0.35) 0%, rgba(82, 18, 38, 0.08) 100%);
    border-bottom-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
    backdrop-filter: blur(10px) saturate(1.05);
    -webkit-backdrop-filter: blur(10px) saturate(1.05);
}

.rt-header--onhero:not(.is-scrolled)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    pointer-events: none;
}

.rt-header--onhero:not(.is-scrolled) .rt-brand strong {
    color: #fff;
}

.rt-header--onhero:not(.is-scrolled) .rt-brand-mark {
    background: #f3e6eb;
}

.rt-header--onhero:not(.is-scrolled) .rt-brand.has-logo .rt-brand-logo--ink,
.rt-header--onhero:not(.is-scrolled) .rt-brand.has-logo > .rt-brand-logo:not(.rt-brand-logo--paper) {
    display: none;
}

.rt-header--onhero:not(.is-scrolled) .rt-brand.has-logo .rt-brand-logo--paper {
    display: block;
}

.rt-header--onhero:not(.is-scrolled) .rt-nav {
    color: rgba(243, 230, 235, 0.88);
}

.rt-header--onhero:not(.is-scrolled) .rt-nav a:not(.rt-nav-cta) .rt-nav-ico {
    stroke: rgba(243, 230, 235, 0.7);
}

.rt-header--onhero:not(.is-scrolled) .rt-nav a:not(.rt-nav-cta):hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.rt-header--onhero:not(.is-scrolled) .rt-nav a:not(.rt-nav-cta):hover .rt-nav-ico {
    stroke: #fff;
}

.rt-header--onhero:not(.is-scrolled) .rt-nav-cta {
    background: #fff;
    color: var(--rt-bordo);
    box-shadow: 0 8px 22px rgba(26, 13, 18, 0.22);
}

.rt-header--onhero:not(.is-scrolled) .rt-nav-cta .rt-nav-ico {
    stroke: var(--rt-bordo);
}

.rt-header--onhero:not(.is-scrolled) .rt-nav-cta:hover {
    background: #fff;
    color: var(--rt-bordo-deep);
    box-shadow: 0 10px 26px rgba(26, 13, 18, 0.28);
}

.rt-header--onhero:not(.is-scrolled) .rt-nav-cta.is-current {
    box-shadow: 0 8px 22px rgba(26, 13, 18, 0.22), inset 0 0 0 1px rgba(123, 30, 58, 0.12);
}

.rt-header--onhero:not(.is-scrolled) .rt-burger {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.12);
}

.rt-header--onhero:not(.is-scrolled) .rt-burger span {
    background: #fff;
}

.rt-header--onhero.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
}

.rt-page--pricing .rt-price-hero {
    padding-top: 132px;
}

/* ---------- Fiyatland?rma ---------- */

.rt-pricing {
    padding: 96px 0;
    border-top: 1px solid var(--rt-line);
    background-color: var(--rt-paper);
    background-image:
        linear-gradient(rgba(123, 30, 58, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(123, 30, 58, 0.035) 1px, transparent 1px);
    background-size: 24px 24px;
}

.rt-pricing-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
    gap: 56px;
    align-items: start;
}

.rt-pricing-copy {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 96px;
}

.rt-pricing-copy h2 {
    font-size: clamp(30px, 4.4vw, 46px);
    line-height: 1.08;
}

.rt-pricing-copy > p {
    max-width: 46ch;
    font-size: 16.5px;
}

.rt-pricing-note {
    font-size: 14px;
    color: var(--rt-muted);
}

/* Fi? kart? */

.rt-receipt {
    position: relative;
    padding: 34px 26px 34px;
    border: 1px solid var(--rt-line);
    border-bottom: 0;
    border-radius: var(--rt-radius) var(--rt-radius) 0 0;
    background: var(--rt-panel);
    font-family: var(--rt-mono);
}

/* ?st perforasyon: fi? rulodan kopmu? hissi */

.rt-receipt::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 26px;
    right: 26px;
    height: 0;
    border-top: 2px dotted var(--rt-line);
}

/* Barkod */

.rt-receipt-barcode {
    height: 34px;
    margin-top: 16px;
    background: repeating-linear-gradient(
        90deg,
        var(--rt-ink) 0 2px,
        transparent 2px 5px,
        var(--rt-ink) 5px 6px,
        transparent 6px 11px,
        var(--rt-ink) 11px 14px,
        transparent 14px 17px
    );
    opacity: 0.82;
}

.rt-receipt-head {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.rt-receipt-head b {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--rt-ink);
}

.rt-receipt-head span {
    font-size: 11px;
    letter-spacing: 0.14em;
    color: var(--rt-muted);
}

.rt-receipt-sep {
    height: 0;
    border-top: 1px dashed var(--rt-line);
    margin: 18px 0;
}

.rt-receipt-lines {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rt-receipt-lines li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    font-size: 13px;
    color: var(--rt-body);
}

.rt-receipt-lines span {
    flex: 1;
    min-width: 0;
}

.rt-receipt-lines b {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--rt-ok);
    white-space: nowrap;
}

.rt-receipt-total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    color: var(--rt-ink);
}

.rt-receipt-total span {
    font-size: 13px;
    letter-spacing: 0.14em;
}

.rt-receipt-total b {
    font-size: 34px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    color: var(--rt-bordo);
}

.rt-receipt-cta {
    width: 100%;
    margin-top: 22px;
    font-family: var(--rt-font);
}

.rt-receipt-foot {
    margin-top: 12px;
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--rt-muted);
}

.rt-receipt-foot a {
    color: var(--rt-bordo);
    letter-spacing: 0.06em;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Fi? kopma kenar? (zigzag) */

.rt-receipt-tear {
    position: absolute;
    left: -1px;
    right: -1px;
    bottom: -12px;
    height: 12px;
    background:
        linear-gradient(-45deg, transparent 8px, var(--rt-panel) 0) 0 0 / 16px 12px repeat-x,
        linear-gradient(45deg, transparent 8px, var(--rt-panel) 0) 8px 0 / 16px 12px repeat-x;
    filter: drop-shadow(0 1px 0 var(--rt-line));
}

/* ---------- SSS ---------- */

.rt-faq {
    padding: 8px 0 96px;
}

.rt-faq-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 48px;
    align-items: start;
}

.rt-faq .rt-section-head {
    margin-bottom: 0;
    position: sticky;
    top: 96px;
    align-self: start;
}

.rt-faq-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--rt-line);
}

.rt-faq-list details {
    border-bottom: 1px solid var(--rt-line);
}

.rt-faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 2px;
    cursor: pointer;
    list-style: none;
    font-size: 17px;
    font-weight: 500;
    color: var(--rt-ink);
}

.rt-faq-list summary::-webkit-details-marker {
    display: none;
}

.rt-faq-list summary::after {
    content: "+";
    font-family: var(--rt-mono);
    font-size: 20px;
    color: var(--rt-bordo);
    transition: transform 0.2s var(--rt-ease);
}

.rt-faq-list details[open] summary::after {
    transform: rotate(45deg);
}

.rt-faq-list details p {
    padding: 0 2px 20px;
    max-width: 62ch;
    font-size: 15px;
    color: var(--rt-body);
}

/* ---------- SSS arama kutusu ---------- */

.rt-faq-search {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 28px;
    max-width: 420px;
}

.rt-faq-search-ic {
    position: absolute;
    left: 15px;
    width: 17px;
    height: 17px;
    color: var(--rt-muted);
    pointer-events: none;
}

.rt-faq-search input {
    width: 100%;
    height: 48px;
    padding: 0 14px 0 42px;
    border: 1.5px solid var(--rt-line);
    border-radius: var(--rt-radius);
    background: var(--rt-panel);
    font-family: var(--rt-font);
    font-size: 14.5px;
    color: var(--rt-ink);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    transition: border-color 0.15s var(--rt-ease), box-shadow 0.15s var(--rt-ease);
}

.rt-faq-search input::placeholder {
    color: var(--rt-muted);
}

.rt-faq-search input:focus {
    border-color: var(--rt-bordo);
    box-shadow: 0 0 0 3px rgba(123, 30, 58, 0.1);
}

.rt-faq-search input::-webkit-search-cancel-button {
    cursor: pointer;
}

.rt-faq-search-count {
    margin: 10px 0 0;
    min-height: 1.2em;
    font-family: var(--rt-mono);
    font-size: 11.5px;
    letter-spacing: 0.04em;
    color: var(--rt-muted);
}

.rt-faq-list details[hidden] {
    display: none;
}

.rt-faq-empty {
    display: none;
    padding: 28px 2px;
    font-size: 14.5px;
    color: var(--rt-muted);
}

.rt-faq-empty.is-visible {
    display: block;
}

.rt-faq-empty a {
    color: var(--rt-bordo);
    text-decoration: underline;
    text-decoration-color: var(--rt-line);
    text-underline-offset: 2px;
}

/* ---------- Footer ---------- */

.rt-footer {
    background: var(--rt-bordo-deep);
}

.rt-footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
    padding-top: 56px;
    padding-bottom: 40px;
}

.rt-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rt-footer-brand p {
    font-size: 14.5px;
    color: #d4a8b8;
    max-width: 30ch;
}

.rt-footer-brand strong {
    color: #fff;
}

.rt-footer-address {
    opacity: 0.85;
}

.rt-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    margin-top: 4px;
}

.rt-footer-social a {
    font-size: 13px;
    font-weight: 500;
    color: #f3dfe6;
}

.rt-footer-social a:hover {
    color: #fff;
}

.rt-footer-label {
    font-family: var(--rt-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #d4a8b8;
    margin-bottom: 12px;
}

.rt-footer-contact,
.rt-footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 15px;
    color: #f3dfe6;
}

.rt-footer-contact a:hover,
.rt-footer-nav a:hover {
    color: #fff;
}

/* Dev tipografik imza */

.rt-footer-sign {
    overflow: hidden;
    text-align: center;
    font-size: clamp(64px, 13.5vw, 176px);
    font-weight: 600;
    line-height: 0.82;
    letter-spacing: 0.04em;
    white-space: nowrap;
    user-select: none;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.16);
    transform: translateY(8%);
}

@supports not (-webkit-text-stroke: 1px black) {
    .rt-footer-sign {
        color: rgba(255, 255, 255, 0.08);
    }
}

.rt-footer-base {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 18px;
    padding-bottom: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 13px;
    color: #d4a8b8;
    background: var(--rt-bordo-deep);
}

.rt-footer-price {
    font-family: var(--rt-mono);
    letter-spacing: 0.04em;
}

.rt-footer-base-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 16px;
}

.rt-footer-legal {
    opacity: 0.55;
}

.rt-footer-kunye {
    font-size: 12.5px;
    opacity: 0.7;
}

/* ---------- G?ncellemeler (blog tarz? liste) ---------- */

.rt-blog-hero {
    position: relative;
    overflow: hidden;
    padding: 148px 0 64px;
    background: var(--rt-bordo-deep);
}

.rt-blog-hero-bg {
    display: none;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.22;
    filter: saturate(0.6);
}

.rt-blog-hero.has-bg .rt-blog-hero-bg {
    display: block;
}

.rt-blog-hero-inner {
    position: relative;
    z-index: 1;
}

.rt-blog-hero .rt-kicker {
    color: #d4a8b8;
}

.rt-blog-hero .rt-section-lead {
    color: #e5cdd6;
}

.rt-blog-list {
    padding: 56px 0 96px;
}

.rt-blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 48px;
    align-items: start;
}

.rt-blog-main {
    min-width: 0;
}

.rt-blog-sidebar {
    position: sticky;
    top: 96px;
    padding: 22px 24px;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius-lg);
    background: var(--rt-panel);
}

.rt-blog-sidebar-label {
    margin: 0 0 12px;
    font-family: var(--rt-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rt-bordo);
}

.rt-blog-sidebar-list {
    display: flex;
    flex-direction: column;
}

.rt-blog-sidebar-list li {
    border-bottom: 1px dashed var(--rt-line);
}

.rt-blog-sidebar-list li:last-child {
    border-bottom: 0;
}

.rt-blog-sidebar-list a {
    display: block;
    padding: 11px 2px;
    font-size: 13.5px;
    line-height: 1.4;
    color: var(--rt-body);
    transition: color 0.15s;
}

.rt-blog-sidebar-list a:hover {
    color: var(--rt-bordo);
}

@media (max-width: 900px) {
    .rt-blog-layout {
        grid-template-columns: 1fr;
    }

    .rt-blog-sidebar {
        position: static;
    }
}

.rt-blog-search {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 420px;
    margin-bottom: 8px;
}

.rt-blog-search-ic {
    position: absolute;
    left: 15px;
    width: 17px;
    height: 17px;
    color: var(--rt-muted);
    pointer-events: none;
}

.rt-blog-search input {
    width: 100%;
    height: 48px;
    padding: 0 14px 0 42px;
    border: 1.5px solid var(--rt-line);
    border-radius: var(--rt-radius-lg);
    background: var(--rt-panel);
    font-family: var(--rt-font);
    font-size: 14.5px;
    color: var(--rt-ink);
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.rt-blog-search input::placeholder {
    color: var(--rt-muted);
}

.rt-blog-search input:focus {
    border-color: var(--rt-bordo);
    box-shadow: 0 0 0 3px rgba(123, 30, 58, 0.1);
}

.rt-blog-search input::-webkit-search-cancel-button {
    cursor: pointer;
}

.rt-blog-search-count {
    margin: 10px 0 32px;
    min-height: 1.2em;
    font-family: var(--rt-mono);
    font-size: 11.5px;
    letter-spacing: 0.04em;
    color: var(--rt-muted);
}

.rt-blog-timeline {
    position: relative;
}

.rt-blog-timeline::before {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 66px;
    width: 1px;
    background: var(--rt-line);
}

.rt-blog-entry {
    position: relative;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px dashed var(--rt-line);
}

.rt-blog-entry[hidden] {
    display: none;
}

.rt-blog-entry:first-child {
    padding-top: 0;
}

.rt-blog-entry:last-child {
    border-bottom: 0;
}

.rt-blog-entry::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 62px;
    z-index: 1;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--rt-bordo);
    box-shadow: 0 0 0 3px var(--rt-paper);
}

.rt-blog-date {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-orientation: mixed;
    margin: 0;
    font-family: var(--rt-mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    color: var(--rt-muted);
    white-space: nowrap;
}

.rt-blog-entry-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rt-blog-entry-top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.rt-blog-cover {
    display: none;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius-lg);
    object-fit: cover;
}

.rt-blog-entry.has-cover .rt-blog-cover {
    display: block;
}

.rt-blog-entry-heading {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.rt-blog-tag {
    display: inline-flex;
    align-self: flex-start;
    padding: 4px 12px;
    border: 1px solid var(--rt-line);
    border-radius: 999px;
    background: var(--rt-paper);
    font-family: var(--rt-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--rt-bordo);
}

.rt-blog-entry-heading h2 {
    margin: 0;
    font-size: 21px;
}

.rt-blog-entry-body > p {
    margin: 0;
    font-size: 15px;
    color: var(--rt-body);
    max-width: 62ch;
}

.rt-blog-empty {
    display: none;
    padding: 28px 2px;
    font-size: 14.5px;
    color: var(--rt-muted);
}

.rt-blog-empty.is-visible {
    display: block;
}

@media (max-width: 640px) {
    .rt-blog-timeline::before {
        left: 40px;
    }

    .rt-blog-entry {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 14px;
        padding: 22px 0;
    }

    .rt-blog-entry::before {
        left: 36px;
        width: 8px;
        height: 8px;
    }

    .rt-blog-date {
        font-size: 9.5px;
    }

    .rt-blog-entry-top {
        gap: 10px;
    }

    .rt-blog-cover {
        width: 44px;
        height: 44px;
    }
}

/* ---------- K?lavuz listesi (d?k?man motifi, minimal) ---------- */

.rt-guide-search-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
    margin-bottom: 28px;
}

.rt-guide-select {
    position: relative;
}

.rt-guide-select-trigger {
    display: inline-flex;
    align-items: center;
    height: 48px;
    gap: 10px;
    padding: 0 14px 0 16px;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius-lg);
    background: var(--rt-panel);
    font-family: var(--rt-font);
    font-size: 14.5px;
    font-weight: 500;
    color: var(--rt-ink);
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.rt-guide-select-trigger:hover {
    border-color: var(--rt-bordo);
}

.rt-guide-select.is-open .rt-guide-select-trigger {
    border-color: var(--rt-bordo);
    box-shadow: 0 0 0 3px rgba(123, 30, 58, 0.1);
}

.rt-guide-select-count {
    padding: 1px 8px;
    border-radius: 999px;
    background: rgba(123, 30, 58, 0.08);
    font-size: 11px;
    color: var(--rt-bordo);
}

.rt-guide-select-arrow {
    width: 13px;
    height: 13px;
    margin-left: 2px;
    color: var(--rt-muted);
    transition: transform 0.18s var(--rt-ease);
}

.rt-guide-select.is-open .rt-guide-select-arrow {
    transform: rotate(180deg);
}

.rt-guide-select-panel {
    position: absolute;
    z-index: 20;
    top: calc(100% + 8px);
    left: 0;
    min-width: 260px;
    max-width: min(340px, calc(100vw - 48px));
    margin: 0;
    padding: 6px;
    list-style: none;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius-lg);
    background: var(--rt-panel);
    box-shadow: 0 16px 40px rgba(30, 10, 18, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px) scale(0.98);
    transform-origin: top left;
    pointer-events: none;
    transition: opacity 0.15s var(--rt-ease), transform 0.15s var(--rt-ease), visibility 0s linear 0.15s;
}

.rt-guide-select.is-open .rt-guide-select-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    transition: opacity 0.15s var(--rt-ease), transform 0.15s var(--rt-ease);
}

.rt-guide-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: var(--rt-radius);
    font-family: var(--rt-font);
    font-size: 14px;
    font-weight: 500;
    color: var(--rt-body);
    cursor: pointer;
    transition: background 0.12s;
}

.rt-guide-option:hover {
    background: var(--rt-paper);
}

.rt-guide-option.is-active {
    color: var(--rt-bordo);
}

.rt-guide-option-check {
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: transparent;
}

.rt-guide-option.is-active .rt-guide-option-check {
    background: var(--rt-bordo);
}

.rt-guide-option-label {
    flex: 1;
    min-width: 0;
}

.rt-guide-option .rt-guide-select-count {
    background: var(--rt-paper);
    color: var(--rt-muted);
}

.rt-guide-option.is-active .rt-guide-select-count {
    background: rgba(123, 30, 58, 0.08);
    color: var(--rt-bordo);
}

.rt-guide-group {
    margin-bottom: 40px;
}

.rt-guide-group:last-child {
    margin-bottom: 0;
}

.rt-guide-group[hidden] {
    display: none;
}

.rt-guide-cat-heading {
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--rt-line);
    font-family: var(--rt-mono);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--rt-bordo);
}

.rt-guide-empty {
    display: none;
    padding: 28px 2px;
    font-size: 14.5px;
    color: var(--rt-muted);
}

.rt-guide-empty.is-visible {
    display: block;
}

.rt-guide-grid {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius-lg);
    overflow: hidden;
}

.rt-guide-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--rt-line);
    background: var(--rt-panel);
    color: inherit;
    transition: background 0.15s var(--rt-ease);
}

.rt-guide-card:last-child {
    border-bottom: 0;
}

.rt-guide-card[hidden] {
    display: none;
}

.rt-guide-card:hover {
    background: var(--rt-paper);
}

.rt-guide-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--rt-muted);
    stroke-width: 1.4;
    stroke-linejoin: round;
    stroke-linecap: round;
}

.rt-guide-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.rt-guide-no {
    font-family: var(--rt-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--rt-muted);
}

.rt-guide-card h3 {
    margin: 0;
    font-size: 17px;
}

.rt-guide-body > p {
    margin: 0;
    font-size: 13.5px;
    color: var(--rt-body);
}

.rt-guide-cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--rt-mono);
    font-size: 11.5px;
    font-weight: 500;
    color: var(--rt-muted);
}

.rt-guide-cta svg {
    width: 12px;
    height: 12px;
    transition: transform 0.15s;
}

.rt-guide-card:hover .rt-guide-cta {
    color: var(--rt-bordo);
}

.rt-guide-card:hover .rt-guide-cta svg {
    transform: translateX(3px);
}

/* Kenar ?ubu?u "T?m k?lavuzlar" butonu */
.rt-guide-all-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding: 11px 16px;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius-lg);
    background: var(--rt-panel);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--rt-body);
    transition: border-color 0.15s, color 0.15s;
}

.rt-guide-all-btn:hover {
    border-color: var(--rt-bordo);
    color: var(--rt-bordo);
}

.rt-guide-all-btn i {
    font-size: 12px;
}

/* Font Awesome (<i>) ikon uyarlamalar? ? SVG kurallar? <i>ye uygulanmaz */
i.rt-guide-icon {
    width: auto;
    height: auto;
    font-size: 17px;
    color: var(--rt-muted);
    transition: color 0.15s;
}

.rt-guide-card:hover i.rt-guide-icon {
    color: var(--rt-bordo);
}

.rt-guide-cat-heading i {
    margin-right: 8px;
    font-size: 12px;
}

.rt-guide-cta i {
    font-size: 11px;
    transition: transform 0.15s;
}

.rt-guide-card:hover .rt-guide-cta i {
    transform: translateX(3px);
}

i.rt-blog-search-ic {
    width: auto;
    height: auto;
    font-size: 15px;
}

i.rt-guide-select-arrow {
    width: auto;
    height: auto;
    font-size: 12px;
}

i.rt-nav-ico {
    width: auto;
    height: auto;
    font-size: 13.5px;
    color: var(--rt-muted);
    transition: color 0.15s;
}

.rt-nav a:not(.rt-nav-cta):hover i.rt-nav-ico {
    color: var(--rt-bordo);
}

.rt-nav-cta i.rt-nav-ico {
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 640px) {
    .rt-guide-card {
        align-items: flex-start;
        gap: 12px;
    }

    .rt-guide-cta span {
        display: none;
    }
}

/* ---------- Blog mod?l? etiketleri (kategori linki, meta, ilgili yaz?lar, i?erik) ---------- */

.rt-blog-entry-heading h2 a {
    color: inherit;
}

.rt-blog-entry-heading h2 a:hover {
    text-decoration: underline;
    text-decoration-color: var(--rt-line);
    text-underline-offset: 3px;
}

.rt-blog-hero .rt-kicker a {
    color: inherit;
}

.rt-blog-hero .rt-kicker a:hover {
    color: #fff;
}

.blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.blog-meta-chip {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    font-size: 12.5px;
    color: #f3dfe6;
}

.blog-meta-chip--muted {
    color: #d4a8b8;
}

.blog-meta-label {
    font-family: var(--rt-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #d4a8b8;
}

.blog-meta-category-link {
    color: #fff;
    font-weight: 600;
}

.rt-blog-prose {
    max-width: 68ch;
    font-size: 16px;
    line-height: 1.7;
    color: var(--rt-body);
}

.rt-blog-prose h2,
.rt-blog-prose h3 {
    margin: 32px 0 12px;
}

.rt-blog-prose p {
    margin: 0 0 18px;
}

.rt-blog-prose ul {
    margin: 0 0 18px;
    padding-left: 22px;
    list-style: disc;
}

.rt-blog-prose ol {
    margin: 0 0 18px;
    padding-left: 22px;
    list-style: decimal;
}

.rt-blog-prose li {
    margin-bottom: 6px;
}

.rt-blog-prose a {
    color: var(--rt-bordo);
    text-decoration: underline;
    text-decoration-color: var(--rt-line);
    text-underline-offset: 2px;
}

.rt-blog-prose blockquote {
    margin: 24px 0;
    padding: 4px 0 4px 20px;
    border-left: 3px solid var(--rt-bordo);
    color: var(--rt-muted);
    font-style: italic;
}

.rt-blog-prose img {
    margin: 20px 0;
    max-width: 100%;
    border-radius: var(--rt-radius-lg);
}

/* Kilavuz altinda yayinlayan solda, son guncelleme saginda, minimal */
.rt-guide-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px 16px;
    margin-top: 32px;
    padding-top: 16px;
    border-top: 1px solid var(--rt-line);
    font-size: 12.5px;
    color: var(--rt-muted);
}

.rt-guide-meta-author {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.rt-guide-meta-author i {
    font-size: 12px;
    color: var(--rt-bordo);
}

/* ---------- K?lavuz i?erik bile?enleri (rt-gd-*) ----------
   Sanitizer yaln?zca div[class]/span[class] b?rakt??? i?in t?m g?rseller
   pseudo-element ile CSS'ten ?izilir; i?erik HTML'i d?z kal?r. */

/* Ad?m kartlar? ? numara CSS sayac?ndan gelir */
.rt-blog-prose .rt-gd-steps {
    counter-reset: rt-gd-step;
    display: flex;
    flex-direction: column;
    margin: 20px 0 24px;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius-lg);
    background: var(--rt-panel);
    overflow: hidden;
}

.rt-blog-prose .rt-gd-step {
    position: relative;
    padding: 16px 20px 16px 62px;
    border-bottom: 1px solid var(--rt-line);
}

.rt-blog-prose .rt-gd-step:last-child {
    border-bottom: 0;
}

.rt-blog-prose .rt-gd-step::before {
    counter-increment: rt-gd-step;
    content: counter(rt-gd-step);
    position: absolute;
    left: 18px;
    top: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: var(--rt-rose);
    color: var(--rt-bordo);
    font-family: var(--rt-mono);
    font-size: 12.5px;
    font-weight: 600;
}

.rt-blog-prose .rt-gd-step strong {
    display: block;
    margin-bottom: 2px;
    color: var(--rt-ink);
    font-weight: 600;
}

.rt-blog-prose .rt-gd-step p {
    margin: 0;
    font-size: 14.5px;
}

/* Bilgi kutular?: not / ipucu / dikkat */
.rt-blog-prose .rt-gd-note,
.rt-blog-prose .rt-gd-tip,
.rt-blog-prose .rt-gd-warn {
    margin: 20px 0 24px;
    padding: 14px 18px;
    border: 1px solid var(--rt-line);
    border-left-width: 3px;
    border-radius: var(--rt-radius);
    background: var(--rt-panel);
    font-size: 14.5px;
}

.rt-blog-prose .rt-gd-note p,
.rt-blog-prose .rt-gd-tip p,
.rt-blog-prose .rt-gd-warn p {
    margin: 0 0 10px;
}

.rt-blog-prose .rt-gd-note p:last-child,
.rt-blog-prose .rt-gd-tip p:last-child,
.rt-blog-prose .rt-gd-warn p:last-child {
    margin-bottom: 0;
}

.rt-blog-prose .rt-gd-note::before,
.rt-blog-prose .rt-gd-tip::before,
.rt-blog-prose .rt-gd-warn::before {
    display: block;
    margin-bottom: 6px;
    font-family: var(--rt-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.rt-blog-prose .rt-gd-note {
    border-left-color: var(--rt-muted);
}

.rt-blog-prose .rt-gd-note::before {
    content: "NOT";
    color: var(--rt-muted);
}

.rt-blog-prose .rt-gd-tip {
    border-left-color: var(--rt-bordo);
    background: var(--rt-rose);
    border-color: #eddbe2;
}

.rt-blog-prose .rt-gd-tip::before {
    content: "?PUCU";
    color: var(--rt-bordo);
}

.rt-blog-prose .rt-gd-warn {
    border-left-color: #b98a1c;
    background: #fdf6e7;
    border-color: #ecdcb4;
}

.rt-blog-prose .rt-gd-warn::before {
    content: "D?KKAT";
    color: #8a6414;
}

/* Kar??la?t?rma s?tunlar? */
.rt-blog-prose .rt-gd-compare {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 20px 0 24px;
}

.rt-blog-prose .rt-gd-compare-col {
    padding: 16px 18px;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius-lg);
    background: var(--rt-panel);
}

.rt-blog-prose .rt-gd-compare-head {
    display: block;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--rt-line);
    font-family: var(--rt-mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rt-bordo);
}

.rt-blog-prose .rt-gd-compare-col ul {
    margin: 0;
    padding-left: 18px;
    font-size: 14px;
}

.rt-blog-prose .rt-gd-compare-col li {
    margin-bottom: 5px;
}

/* Ak?? ?eridi ? son ad?m vurgulu */
.rt-blog-prose .rt-gd-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 26px;
    margin: 20px 0 24px;
}

.rt-blog-prose .rt-gd-flow span {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border: 1px solid var(--rt-line);
    border-radius: 999px;
    background: var(--rt-panel);
    font-family: var(--rt-mono);
    font-size: 12.5px;
    color: var(--rt-ink);
    white-space: nowrap;
}

.rt-blog-prose .rt-gd-flow span:not(:last-child)::after {
    content: "\f054";
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--rt-muted);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 9.5px;
    line-height: 1;
}

.rt-blog-prose .rt-gd-flow span:last-child {
    border-color: var(--rt-bordo);
    background: var(--rt-bordo);
    color: #fff;
}

/* Panel yolu (nerede oldu?unu g?sterir): Panel ? Men? y?netimi ? ?r?nler */
.rt-blog-prose .rt-gd-path {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 24px;
    margin: 0 0 18px;
}

.rt-blog-prose .rt-gd-path span {
    position: relative;
    padding: 5px 11px;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius-sm);
    background: var(--rt-paper);
    font-family: var(--rt-mono);
    font-size: 12px;
    color: var(--rt-body);
    white-space: nowrap;
}

.rt-blog-prose .rt-gd-path span:not(:last-child)::after {
    content: "\f054";
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--rt-muted);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 8.5px;
    line-height: 1;
}

.rt-blog-prose .rt-gd-path span:last-child {
    border-color: #e4c7d1;
    background: var(--rt-panel);
    color: var(--rt-bordo);
}

/* UI buton ?ipi: metin i?inde "Kaydet" gibi buton g?rseli */
.rt-blog-prose .rt-gd-chip {
    display: inline-block;
    padding: 2px 10px;
    border-radius: var(--rt-radius-sm);
    background: var(--rt-bordo);
    color: #fff;
    font-size: 12.5px;
    font-weight: 500;
    white-space: nowrap;
}

/* A?/kapa anahtar? g?rseli */
.rt-blog-prose .rt-gd-toggle {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: 34px;
    height: 20px;
    border-radius: 999px;
    margin: 0 2px;
}

.rt-blog-prose .rt-gd-toggle::after {
    content: "";
    position: absolute;
    top: 3px;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: #fff;
}

.rt-blog-prose .rt-gd-toggle--on {
    background: var(--rt-ok);
}

.rt-blog-prose .rt-gd-toggle--on::after {
    right: 3px;
}

.rt-blog-prose .rt-gd-toggle--off {
    background: #cbb9c1;
}

.rt-blog-prose .rt-gd-toggle--off::after {
    left: 3px;
}

/* ??indekiler kutusu ? main.js h2 ba?l?klar?ndan ?retir */
.rt-blog-prose .rt-gd-toc {
    margin: 0 0 26px;
    padding: 16px 18px;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius-lg);
    background: var(--rt-paper);
}

.rt-blog-prose .rt-gd-toc strong {
    display: block;
    margin-bottom: 8px;
    font-family: var(--rt-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rt-bordo);
}

.rt-blog-prose .rt-gd-toc ol {
    margin: 0;
    padding-left: 20px;
    font-size: 14px;
}

.rt-blog-prose .rt-gd-toc li {
    margin-bottom: 4px;
}

.rt-blog-prose .rt-gd-toc a {
    color: var(--rt-body);
    text-decoration: none;
}

.rt-blog-prose .rt-gd-toc a:hover {
    color: var(--rt-bordo);
    text-decoration: underline;
}

/* Ekran maketi ? panel aray?z?n? CSS ile ?izer */
.rt-blog-prose .rt-gd-screen {
    margin: 20px 0 24px;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius-lg);
    background: var(--rt-panel);
    overflow: hidden;
}

.rt-blog-prose .rt-gd-screen-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 14px;
    border-bottom: 1px solid var(--rt-line);
    background: var(--rt-paper);
}

.rt-blog-prose .rt-gd-screen-bar span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--rt-line);
}

.rt-blog-prose .rt-gd-screen-bar strong {
    margin-left: 8px;
    font-family: var(--rt-mono);
    font-size: 11.5px;
    font-weight: 500;
    color: var(--rt-muted);
}

.rt-blog-prose .rt-gd-screen-body {
    display: flex;
    min-height: 150px;
}

.rt-blog-prose .rt-gd-screen-side {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 138px;
    flex-shrink: 0;
    padding: 10px 8px;
    border-right: 1px solid var(--rt-line);
    background: var(--rt-paper);
}

.rt-blog-prose .rt-gd-screen-side span {
    padding: 6px 10px;
    border-radius: var(--rt-radius-sm);
    font-family: var(--rt-mono);
    font-size: 11px;
    color: var(--rt-body);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rt-blog-prose .rt-gd-screen-side span.is-on {
    background: var(--rt-bordo);
    color: #fff;
}

.rt-blog-prose .rt-gd-screen-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px;
    min-width: 0;
}

.rt-blog-prose .rt-gd-sk {
    display: block;
    height: 10px;
    border-radius: 999px;
    background: var(--rt-line);
    opacity: 0.55;
}

.rt-blog-prose .rt-gd-sk--head {
    width: 40%;
    height: 14px;
    background: #d9c3cc;
    opacity: 0.8;
}

.rt-blog-prose .rt-gd-sk--half {
    width: 65%;
}

.rt-blog-prose .rt-gd-sk--card {
    height: 44px;
    border-radius: var(--rt-radius);
    opacity: 0.35;
}

/* Metrik kartlar? ? rapor/dashboard ?rnekleri */
.rt-blog-prose .rt-gd-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 20px 0 24px;
}

.rt-blog-prose .rt-gd-metric {
    padding: 14px 16px;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius-lg);
    background: var(--rt-panel);
}

.rt-blog-prose .rt-gd-metric strong {
    display: block;
    font-family: var(--rt-mono);
    font-size: 18px;
    font-weight: 600;
    color: var(--rt-ink);
    font-variant-numeric: tabular-nums;
}

.rt-blog-prose .rt-gd-metric span {
    display: block;
    margin-top: 3px;
    font-size: 12px;
    color: var(--rt-muted);
}

/* Anahtar-de?er sat?rlar? ? sayfa/?zellik haritalar? i?in (tablo yerine) */
.rt-blog-prose .rt-gd-kv {
    margin: 20px 0 24px;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius-lg);
    background: var(--rt-panel);
    overflow: hidden;
}

.rt-blog-prose .rt-gd-kv-row {
    display: flex;
    gap: 14px;
    padding: 11px 16px;
    border-bottom: 1px solid var(--rt-line);
    font-size: 14px;
}

.rt-blog-prose .rt-gd-kv-row:last-child {
    border-bottom: 0;
}

.rt-blog-prose .rt-gd-kv-row:nth-child(even) {
    background: var(--rt-paper);
}

.rt-blog-prose .rt-gd-kv-row > span:first-child {
    flex-shrink: 0;
    width: 158px;
    padding-top: 1px;
    font-family: var(--rt-mono);
    font-size: 12px;
    font-weight: 600;
    color: var(--rt-bordo);
}

.rt-blog-prose .rt-gd-kv-row > span:last-child {
    flex: 1;
    color: var(--rt-body);
}

/* Rozetler */
.rt-blog-prose .rt-gd-badge {
    display: inline-block;
    padding: 2px 9px;
    border: 1px solid var(--rt-line);
    border-radius: 999px;
    background: var(--rt-paper);
    font-family: var(--rt-mono);
    font-size: 11px;
    font-weight: 600;
    color: var(--rt-body);
    vertical-align: middle;
    white-space: nowrap;
}

.rt-blog-prose .rt-gd-badge--on {
    border-color: #bfe3cd;
    background: #eaf7ef;
    color: var(--rt-ok);
}

.rt-blog-prose .rt-gd-badge--off {
    color: var(--rt-muted);
}

.rt-blog-prose .rt-gd-badge--bordo {
    border-color: #e4c7d1;
    background: var(--rt-rose);
    color: var(--rt-bordo);
}

/* Form maketi ? paneldeki ?ekmece/form g?r?n?m?n? taklit eder */
.rt-blog-prose .rt-gd-form {
    margin: 20px 0 24px;
    padding: 18px;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius-lg);
    background: var(--rt-panel);
    max-width: 420px;
}

.rt-blog-prose .rt-gd-form-title {
    display: block;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--rt-line);
    font-family: var(--rt-mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--rt-bordo);
}

.rt-blog-prose .rt-gd-field {
    margin-bottom: 12px;
}

.rt-blog-prose .rt-gd-field-label {
    display: block;
    margin-bottom: 4px;
    font-family: var(--rt-mono);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rt-muted);
}

.rt-blog-prose .rt-gd-field-input {
    display: flex;
    align-items: center;
    min-height: 38px;
    padding: 7px 12px;
    border: 1px solid var(--rt-line);
    border-radius: 10px;
    background: var(--rt-paper);
    font-size: 13.5px;
    color: var(--rt-body);
}

.rt-blog-prose .rt-gd-field-input.is-placeholder {
    color: var(--rt-muted);
}

.rt-blog-prose .rt-gd-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--rt-line);
}

.rt-blog-prose .rt-gd-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
}

.rt-blog-prose .rt-gd-btn--primary {
    background: var(--rt-bordo);
    color: #fff;
    box-shadow: 0 1px 2px rgba(82, 18, 38, 0.25);
}

.rt-blog-prose .rt-gd-demo.is-live .rt-gd-btn--primary:hover {
    background: var(--rt-bordo-deep);
}

.rt-blog-prose .rt-gd-btn--ghost {
    border: 1px solid var(--rt-line);
    background: var(--rt-panel);
    color: var(--rt-body);
}

.rt-blog-prose .rt-gd-demo.is-live .rt-gd-btn--ghost:hover {
    border-color: var(--rt-bordo);
    color: var(--rt-bordo);
}

/* ?leri/geri/yeniden butonlar?na Font Awesome ok ikonlar? (yaln?zca k?lavuz sayfas? FA y?kler) */
.rt-blog-prose .rt-gd-btn--next::after,
.rt-blog-prose .rt-gd-btn--back::before,
.rt-blog-prose .rt-gd-btn--redo::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 10.5px;
    line-height: 1;
}

.rt-blog-prose .rt-gd-btn--next::after {
    content: "\f054";
}

.rt-blog-prose .rt-gd-btn--back::before {
    content: "\f053";
}

.rt-blog-prose .rt-gd-btn--redo::before {
    content: "\f2f9";
}

/* Sahte sekme ?ubu?u ? Raporlar gibi sekmeli ekranlar? anlatmak i?in */
.rt-blog-prose .rt-gd-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    width: fit-content;
    max-width: 100%;
    margin: 20px 0 12px;
    padding: 4px;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius-lg);
    background: var(--rt-paper);
}

.rt-blog-prose .rt-gd-tabs span {
    padding: 6px 13px;
    border-radius: var(--rt-radius);
    font-family: var(--rt-mono);
    font-size: 12px;
    color: var(--rt-body);
    white-space: nowrap;
}

.rt-blog-prose .rt-gd-tabs span.is-on {
    border: 1px solid var(--rt-line);
    background: var(--rt-panel);
    color: var(--rt-bordo);
    font-weight: 600;
}

/* Canl? ?rnekler ? t?klanabilir sekme/ekran/sihirbaz maketleri */
.rt-blog-prose .rt-gd-itabs,
.rt-blog-prose .rt-gd-demo {
    margin: 20px 0 24px;
}

.rt-blog-prose .rt-gd-itabs.is-live::before,
.rt-blog-prose .rt-gd-demo.is-live::before,
.rt-blog-prose .rt-gd-screen.is-live .rt-gd-screen-bar strong::after {
    content: "CANLI ?RNEK ? t?klayarak deneyin";
    display: block;
    margin-bottom: 8px;
    font-family: var(--rt-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--rt-bordo);
}

.rt-blog-prose .rt-gd-screen.is-live .rt-gd-screen-bar strong::after {
    content: " ? t?klanabilir";
    display: inline;
    margin: 0;
    font-size: 10.5px;
    letter-spacing: 0.04em;
}

.rt-blog-prose .rt-gd-itabs .rt-gd-tabs {
    margin: 0 0 10px;
}

.rt-blog-prose .rt-gd-itabs.is-live .rt-gd-tabs span,
.rt-blog-prose .rt-gd-screen.is-live .rt-gd-screen-side span,
.rt-blog-prose .rt-gd-demo.is-live .rt-gd-btn {
    cursor: pointer;
    user-select: none;
}

.rt-blog-prose .rt-gd-itabs.is-live .rt-gd-tabs span:not(.is-on):hover {
    color: var(--rt-bordo);
}

.rt-blog-prose .rt-gd-screen.is-live .rt-gd-screen-side span:not(.is-on):hover {
    background: rgba(123, 30, 58, 0.07);
}

.rt-blog-prose .rt-gd-itab-panel {
    display: none;
    padding: 14px 16px;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius-lg);
    background: var(--rt-panel);
    font-size: 14px;
}

.rt-blog-prose .rt-gd-itab-panel.is-active {
    display: block;
    animation: rt-gd-fade 0.18s var(--rt-ease);
}

.rt-blog-prose .rt-gd-itab-panel p {
    margin: 0 0 10px;
}

.rt-blog-prose .rt-gd-itab-panel p:last-child {
    margin-bottom: 0;
}

.rt-blog-prose .rt-gd-screen-pane {
    display: none;
    flex-direction: column;
    gap: 8px;
}

.rt-blog-prose .rt-gd-screen-pane.is-active {
    display: flex;
    animation: rt-gd-fade 0.18s var(--rt-ease);
}

.rt-blog-prose .rt-gd-screen-cap {
    font-size: 12.5px;
    color: var(--rt-body);
}

.rt-blog-prose .rt-gd-demo-step {
    display: none;
}

.rt-blog-prose .rt-gd-demo-step.is-active {
    display: block;
    animation: rt-gd-fade 0.18s var(--rt-ease);
}

.rt-blog-prose .rt-gd-demo-step .rt-gd-form {
    margin: 0;
}

.rt-blog-prose .rt-gd-demo-done {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--rt-ok);
}

@keyframes rt-gd-fade {
    from { opacity: 0; transform: translateY(3px); }
    to { opacity: 1; transform: none; }
}

@media (max-width: 640px) {
    .rt-blog-prose .rt-gd-compare {
        grid-template-columns: 1fr;
    }

    .rt-blog-prose .rt-gd-step {
        padding: 14px 16px 14px 54px;
    }

    .rt-blog-prose .rt-gd-step::before {
        left: 14px;
    }

    .rt-blog-prose .rt-gd-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rt-blog-prose .rt-gd-kv-row {
        flex-direction: column;
        gap: 3px;
    }

    .rt-blog-prose .rt-gd-kv-row > span:first-child {
        width: auto;
    }

    .rt-blog-prose .rt-gd-screen-side {
        width: 104px;
    }
}

.blog-aside-block {
    margin-bottom: 24px;
}

.blog-aside-heading {
    margin: 0 0 12px;
    font-family: var(--rt-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rt-bordo);
}

.blog-aside-related-list {
    display: flex;
    flex-direction: column;
}

.blog-aside-related-item {
    border-bottom: 1px dashed var(--rt-line);
}

.blog-aside-related-item:last-child {
    border-bottom: 0;
}

.blog-aside-related-link {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 11px 2px;
}

.blog-aside-related-link:hover .blog-aside-related-title {
    color: var(--rt-bordo);
}

.blog-aside-related-title {
    font-size: 13.5px;
    line-height: 1.4;
    color: var(--rt-body);
    transition: color 0.15s;
}

.blog-aside-related-date {
    font-family: var(--rt-mono);
    font-size: 11px;
    color: var(--rt-muted);
}

.rt-blog-back {
    margin-top: 4px;
    font-size: 13.5px;
}

.rt-blog-back a {
    color: var(--rt-body);
    transition: color 0.15s;
}

.rt-blog-back a:hover {
    color: var(--rt-bordo);
}

.rt-blog-pager {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--rt-line);
    font-size: 14px;
}

.rt-blog-pager a {
    font-weight: 600;
    color: var(--rt-bordo);
}

.rt-blog-pager-count {
    font-family: var(--rt-mono);
    font-size: 12px;
    color: var(--rt-muted);
}

/* ---------- Reveal animasyonu ---------- */

[data-rt-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s var(--rt-ease), transform 0.6s var(--rt-ease);
}

[data-rt-reveal].is-in {
    opacity: 1;
    transform: none;
}

[data-rt-delay="1"] {
    transition-delay: 0.12s;
}

[data-rt-delay="2"] {
    transition-delay: 0.24s;
}

[data-rt-delay="3"] {
    transition-delay: 0.36s;
}

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

    [data-rt-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .rt-chip-ticket,
    .rt-dot,
    .rt-kds-live i,
    .rt-chip-kds.is-alert .rt-dot,
    .rt-mock-toast,
    .rt-device--kds,
    .rt-device-pulse,
    .rt-dev-live i,
    .rt-dev-kds-badge,
    .rt-camp-pulse {
        animation: none;
    }

    .rt-device--kds {
        transform: translateY(-18px);
    }
}

/* ---------- Duyarl?l?k ---------- */

@media (max-width: 1023px) {
    .rt-hero-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 0;
    }

    .rt-hero-metrics > div {
        padding: 0 0 0 0;
        border-left: 0;
    }

    .rt-hero-metrics > div:nth-child(odd) {
        padding-right: 16px;
        border-right: 1px solid rgba(255, 255, 255, 0.18);
    }

    .rt-panel-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .rt-panel-points li {
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .rt-order-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .rt-flow-grid li::after {
        display: none;
    }

    .rt-flow-grid li:nth-child(2n) {
        border-right: 0;
    }

    .rt-flow-grid li:nth-child(-n+2) {
        border-bottom: 1px solid var(--rt-line);
    }

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

    .rt-mobile-grid,
    .rt-pricing-grid,
    .rt-faq-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .rt-pricing-copy,
    .rt-faq .rt-section-head {
        position: static;
    }

    .rt-receipt {
        max-width: 460px;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 16px;
    }

    .rt-hero {
        padding: 108px 0 56px;
    }

    .rt-hero-metrics {
        grid-template-columns: 1fr 1fr;
        margin-top: 36px;
    }

    .rt-hero-metrics > div:nth-child(odd) {
        padding-right: 12px;
    }

    .rt-modes,
    .rt-flow,
    .rt-mobile,
    .rt-pricing,
    .rt-panel,
    .rt-cta {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .rt-features {
        padding-bottom: 64px;
    }

    .rt-compare {
        padding-bottom: 64px;
    }

    .rt-compare-grid {
        grid-template-columns: 1fr;
    }

    .rt-compare-grid::after {
        display: none;
    }

    .rt-who-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .rt-who-scroll {
        margin: 0 -24px;
        padding: 2px 0;
        -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
        mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
    }

    .rt-who-track {
        animation-duration: 26s;
        padding-left: 24px;
    }

    .rt-order,
    .rt-camp {
        padding-bottom: 64px;
    }

    .rt-order-step {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 12px;
        padding-bottom: 16px;
    }

    .rt-order-step-marker {
        padding-top: 0;
    }

    .rt-order-step-body {
        padding: 16px 18px;
    }

    .rt-order-timeline::before {
        left: 21px;
    }

    .rt-camp-board {
        grid-template-columns: 1fr;
    }

    .rt-camp-row:nth-child(odd) {
        border-right: 0;
    }

    .rt-camp-row:nth-last-child(-n+2) {
        border-bottom: 1px dashed var(--rt-line);
    }

    .rt-camp-row:last-child {
        border-bottom: 0;
    }

    .rt-push {
        margin-bottom: 40px;
        max-width: none;
        width: 100%;
    }

    .rt-adm-workspace,
    .rt-adm-workspace.is-pick-table {
        grid-template-columns: 1fr;
    }

    .rt-adm-col--main {
        border-right: 0;
        border-bottom: 1px solid var(--rt-line);
    }

    .rt-adm-side {
        max-height: 220px;
    }

    .rt-adm-floor {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rt-adm-stats,
    .rt-adm-tools {
        display: none;
    }

    .rt-panel-demo .rt-browser-body {
        max-height: none;
        min-height: 380px;
    }

    .rt-shots {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .rt-shots-desktop {
        grid-template-columns: 1fr;
        margin-bottom: 32px;
    }

    .rt-shot--desktop .rt-shot-body,
    .rt-shot--wide .rt-shot-body {
        aspect-ratio: 1440 / 900;
    }

    .rt-shots-mobile {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rt-faq {
        padding-bottom: 72px;
    }

    .rt-nav {
        position: fixed;
        inset: 0 0 0 auto;
        z-index: 60;
        width: min(320px, 88vw);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 0;
        padding: 0;
        background:
            linear-gradient(180deg, #ffffff 0%, var(--rt-paper) 100%);
        border-left: 1px solid var(--rt-line);
        box-shadow: -16px 0 48px rgba(26, 13, 18, 0.14);
        transform: translateX(105%);
        visibility: hidden;
        overflow: hidden;
        transition: transform 0.34s var(--rt-ease), visibility 0.34s;
    }

    .rt-nav::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 3px;
        background: var(--rt-bordo);
        opacity: 0.85;
    }

    .rt-nav-label {
        display: block;
        flex-shrink: 0;
        margin: 0;
        padding: 24px 72px 16px 22px;
        font-family: var(--rt-font-serif);
        font-size: 22px;
        font-weight: 700;
        letter-spacing: -0.02em;
        line-height: 1.2;
        color: var(--rt-bordo);
        border-bottom: 1px solid var(--rt-line);
    }

    .rt-nav-links {
        display: flex;
        flex-direction: column;
        gap: 6px;
        flex: 1 1 auto;
        padding: 18px 14px 12px;
        overflow-y: auto;
    }

    .rt-nav-foot {
        display: flex;
        flex-direction: column;
        gap: 10px;
        flex-shrink: 0;
        margin-top: auto;
        padding: 16px 14px calc(20px + env(safe-area-inset-bottom, 0px));
        border-top: 1px dashed var(--rt-line);
        background: rgba(255, 255, 255, 0.65);
    }

    .rt-nav a:not(.rt-nav-cta) {
        gap: 12px;
        min-height: 52px;
        padding: 12px 14px;
        border-radius: var(--rt-radius-lg);
        font-size: 15.5px;
        font-weight: 500;
        color: var(--rt-ink);
        letter-spacing: -0.01em;
    }

    .rt-nav a:not(.rt-nav-cta) .rt-nav-ico {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        padding: 8px;
        border-radius: var(--rt-radius);
        background: var(--rt-rose);
        stroke: var(--rt-bordo);
        color: var(--rt-bordo);
        box-sizing: border-box;
    }

    .rt-nav a:not(.rt-nav-cta) i.rt-nav-ico {
        width: 36px;
        height: 36px;
        padding: 0;
        font-size: 15px;
    }

    .rt-nav a:not(.rt-nav-cta):hover,
    .rt-nav a:not(.rt-nav-cta):active {
        background: var(--rt-rose);
        color: var(--rt-bordo);
    }

    .rt-nav-cta {
        justify-content: center;
        gap: 10px;
        min-height: 50px;
        margin: 0;
        padding: 14px 18px;
        border-radius: var(--rt-radius-lg);
        font-size: 15.5px;
        font-weight: 600;
        text-align: center;
        box-shadow: 0 8px 20px rgba(123, 30, 58, 0.22);
    }

    .rt-nav-cta .rt-nav-ico {
        width: 16px;
        height: 16px;
    }

    .rt-nav-cta i.rt-nav-ico {
        width: auto;
        height: auto;
        font-size: 14px;
    }

    .rt-nav-note {
        display: block;
        margin: 0;
        text-align: center;
        font-size: 12.5px;
        font-weight: 500;
        letter-spacing: 0.01em;
        color: var(--rt-muted);
    }

    .rt-page.is-nav-open .rt-nav {
        transform: none;
        visibility: visible;
    }

    .rt-page.is-nav-open .rt-nav-links a {
        animation: rt-nav-link-in 0.38s var(--rt-ease) both;
    }

    .rt-page.is-nav-open .rt-nav-links a:nth-child(1) { animation-delay: 0.06s; }
    .rt-page.is-nav-open .rt-nav-links a:nth-child(2) { animation-delay: 0.12s; }

    .rt-page.is-nav-open .rt-nav-foot {
        animation: rt-nav-link-in 0.4s var(--rt-ease) 0.16s both;
    }

    @keyframes rt-nav-link-in {
        from {
            opacity: 0;
            transform: translateX(12px);
        }
        to {
            opacity: 1;
            transform: none;
        }
    }

    .rt-page.is-nav-open::before {
        content: "";
        position: fixed;
        z-index: 55;
        inset: 0;
        background: rgba(26, 13, 18, 0.48);
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        animation: rt-nav-backdrop-in 0.28s var(--rt-ease);
    }

    @keyframes rt-nav-backdrop-in {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .rt-page.is-nav-open .rt-header {
        z-index: 61;
        background: transparent;
        border-bottom-color: transparent;
        pointer-events: none;
    }

    .rt-page.is-nav-open .rt-brand {
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s;
    }

    .rt-page.is-nav-open .rt-burger {
        pointer-events: auto;
        border-color: rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.92);
        box-shadow: 0 4px 16px rgba(26, 13, 18, 0.12);
    }

    .rt-page.is-nav-open .rt-burger span:first-child {
        transform: translateY(3.5px) rotate(45deg);
    }

    .rt-page.is-nav-open .rt-burger span:last-child {
        transform: translateY(-3.5px) rotate(-45deg);
    }

    .rt-burger {
        display: flex;
        z-index: 62;
    }

    .rt-modes-grid {
        grid-template-columns: 1fr;
    }

    .rt-flow-grid {
        grid-template-columns: 1fr;
    }

    .rt-flow-grid li {
        border-right: 0;
        border-bottom: 1px solid var(--rt-line);
    }

    .rt-flow-grid li:last-child {
        border-bottom: 0;
    }

    .rt-kds-board {
        grid-template-columns: 1fr;
    }

    .rt-kds-col {
        border-right: 0;
        border-bottom: 1px solid var(--rt-line);
    }

    .rt-kds-col:last-child {
        border-bottom: 0;
    }

    .rt-wiz-choices {
        grid-template-columns: 1fr;
    }

    .rt-wiz-themes {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rt-wiz-main {
        grid-template-columns: 1fr;
    }

    .rt-wiz-summary {
        border-left: 0;
        border-top: 1px solid var(--rt-line);
        flex-direction: row;
        flex-wrap: wrap;
        gap: 14px 22px;
    }

    .rt-wiz-summary-label {
        width: 100%;
        margin-bottom: 0;
    }

    .rt-wiz-summary-row {
        flex: 1 1 140px;
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: 0;
    }

    .rt-wiz-summary-foot {
        margin-top: 0;
        flex: 1 1 100px;
    }

    .rt-feature-grid {
        grid-template-columns: 1fr;
    }

    .rt-mobile-stage {
        min-height: 300px;
        gap: 8px;
        padding: 10px 4px 2px;
    }

    .rt-device {
        max-width: none;
    }

    .rt-device--kds {
        max-width: none;
        transform: translateY(-10px);
        animation: none;
    }

    .rt-dev-bar strong {
        font-size: 11px;
    }

    .rt-dev-list li {
        font-size: 9px;
        padding: 5px 0;
    }

    .rt-dev-kds-top b {
        font-size: 12px;
    }

    .rt-dev-pos-body {
        padding: 6px;
        gap: 4px;
    }

    .rt-hero-actions .rt-btn {
        flex: 1 1 100%;
    }

    .rt-footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-top: 40px;
    }

    .rt-footer-base {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}

@media (max-width: 599px) {
    .rt-mobile-stage {
        overflow-x: auto;
        justify-content: flex-start;
        min-height: 320px;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .rt-mobile-stage::-webkit-scrollbar {
        display: none;
    }

    .rt-device {
        flex: 0 0 min(158px, 44vw);
    }

    .rt-device-scene {
        min-width: 100%;
    }
}

/* ---------- Fiyatlandirma sayfasi (/fiyatlandirma) ---------- */

.rt-price-hero {
    padding: 128px 0 80px;
    background: var(--rt-bordo-deep);
    color: #f3e6eb;
}

.rt-price-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.rt-price-hero .rt-kicker {
    color: #d4a8b8;
}

.rt-price-hero h1 {
    margin: 10px 0 16px;
    font-size: clamp(34px, 4.8vw, 52px);
    line-height: 1.08;
    color: #fff;
}

.rt-price-hero-lead {
    margin: 0 0 32px;
    font-size: 17px;
    line-height: 1.55;
    color: #e5cdd6;
    max-width: 52ch;
}

.rt-price-hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 0;
    margin: 0 0 28px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.rt-price-hero-facts > div {
    padding: 0 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.rt-price-hero-facts > div:first-child {
    padding-left: 0;
}

.rt-price-hero-facts > div:last-child {
    padding-right: 0;
    border-right: 0;
}

.rt-price-hero-facts dt {
    font-family: var(--rt-font-serif);
    font-size: clamp(24px, 2.4vw, 30px);
    font-weight: 700;
    color: #fff;
}

.rt-price-hero-facts dd {
    margin: 6px 0 0;
    font-size: 13.5px;
    color: #c9a4b2;
}

.rt-price-guarantees {
    display: grid;
    gap: 10px;
    margin-top: 8px;
}

.rt-price-guarantees li {
    position: relative;
    padding-left: 22px;
    font-size: 15px;
    color: var(--rt-body);
}

.rt-price-guarantees li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--rt-bordo);
}

.rt-price-plan {
    border-top: 0;
}

.rt-price-includes {
    padding: 88px 0;
    border-top: 1px solid var(--rt-line);
}

.rt-price-include-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 40px;
}

.rt-price-include-grid li {
    padding: 22px 20px;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius-xl);
    background: var(--rt-panel);
}

.rt-price-include-no {
    display: block;
    margin-bottom: 12px;
    font-family: var(--rt-mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--rt-muted);
}

.rt-price-include-grid h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.rt-price-include-grid p {
    font-size: 14.5px;
    color: var(--rt-body);
}

.rt-price-clarify {
    padding: 0 0 88px;
}

.rt-price-clarify-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.rt-price-clarify-grid article {
    padding: 24px 22px;
    border-top: 2px solid var(--rt-bordo);
    background: var(--rt-panel);
}

.rt-price-clarify-grid h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.rt-price-clarify-grid p {
    font-size: 14.5px;
    color: var(--rt-body);
}

.rt-price-form-sec {
    padding: 88px 0 96px;
    border-top: 1px solid var(--rt-line);
    background:
        linear-gradient(rgba(123, 30, 58, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(123, 30, 58, 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    background-color: var(--rt-paper);
}

.rt-price-form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
    gap: 56px;
    align-items: start;
}

.rt-price-form-copy h2 {
    margin: 8px 0 14px;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.1;
}

.rt-price-form-copy > p {
    max-width: 42ch;
    font-size: 16px;
}

.rt-price-form-contact {
    display: grid;
    gap: 8px;
    margin-top: 22px;
}

.rt-price-form-contact a {
    font-weight: 500;
    color: var(--rt-bordo);
}

.rt-price-form-contact a:hover {
    text-decoration: underline;
}

.rt-price-form-panel {
    position: relative;
    padding: 28px 24px;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius-xl);
    background: var(--rt-panel);
    box-shadow: 0 12px 36px rgba(26, 13, 18, 0.06);
}

.rt-price-form {
    display: grid;
    gap: 16px;
}

.rt-price-form .cms-contact-field label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--rt-ink);
}

.rt-price-form .cms-contact-required {
    color: var(--rt-bordo);
}

.rt-price-input,
.rt-price-textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius);
    background: var(--rt-paper);
    color: var(--rt-ink);
    font: inherit;
    font-size: 15px;
    transition: border-color 0.15s, background 0.15s;
}

.rt-price-input:focus,
.rt-price-textarea:focus {
    outline: none;
    border-color: var(--rt-bordo);
    background: #fff;
}

.rt-price-textarea {
    min-height: 128px;
    resize: vertical;
}

.rt-price-submit {
    width: 100%;
    min-height: 48px;
    cursor: pointer;
    border: 0;
}

.rt-price-notice {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: var(--rt-radius);
    font-size: 14px;
}

.rt-price-notice--success {
    background: #eef8f1;
    color: var(--rt-ok);
    border: 1px solid #c6e6d1;
}

.rt-price-notice--error {
    background: var(--rt-rose);
    color: var(--rt-bordo-deep);
    border: 1px solid #e5c5d0;
}

a.rt-footer-price {
    color: inherit;
}

a.rt-footer-price:hover {
    color: #fff;
}

.rt-nav-cta.is-current {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

@media (max-width: 1023px) {
    .rt-price-include-grid,
    .rt-price-clarify-grid,
    .rt-price-form-grid {
        grid-template-columns: 1fr;
    }

    .rt-price-form-panel {
        max-width: 520px;
    }
}

@media (max-width: 767px) {
    .rt-price-hero {
        padding: 104px 0 56px;
    }

    .rt-price-hero-facts {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 8px 0;
    }

    .rt-price-hero-facts > div {
        padding: 14px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .rt-price-hero-facts > div:first-child {
        padding-top: 4px;
    }

    .rt-price-hero-facts > div:last-child {
        border-bottom: 0;
        padding-bottom: 4px;
    }

    .rt-price-includes,
    .rt-price-form-sec {
        padding-top: 64px;
        padding-bottom: 72px;
    }

    .rt-price-clarify {
        padding-bottom: 64px;
    }
}

/* ---------- Nav dropdown (Hakkimizda) ? fis / kagit dili ---------- */

.rt-nav-dd {
    position: relative;
}

.rt-nav-dd-toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 10px;
    border: 0;
    border-radius: var(--rt-radius);
    background: transparent;
    color: inherit;
    font: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.15s;
}

.rt-nav-dd-toggle:hover,
.rt-nav-dd.is-open .rt-nav-dd-toggle,
.rt-nav-dd.is-current .rt-nav-dd-toggle {
    color: var(--rt-bordo);
    background: transparent;
}

.rt-nav-dd-chev {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.7;
    transition: transform 0.2s var(--rt-ease), opacity 0.15s;
}

.rt-nav-dd.is-open .rt-nav-dd-chev,
.rt-nav-dd:hover .rt-nav-dd-chev,
.rt-nav-dd:focus-within .rt-nav-dd-chev {
    opacity: 1;
    transform: rotate(180deg);
}

.rt-nav-dd-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 70;
    display: flex;
    flex-direction: column;
    min-width: 260px;
    padding: 0;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius);
    background: var(--rt-paper);
    box-shadow:
        inset 3px 0 0 var(--rt-bordo),
        0 12px 28px rgba(26, 13, 18, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(4px);
    transition: opacity 0.16s var(--rt-ease), transform 0.16s var(--rt-ease), visibility 0.16s;
    overflow: visible;
}

/* Celtik (ust ok) */
.rt-nav-dd-panel::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 22px;
    z-index: 2;
    width: 11px;
    height: 11px;
    background: var(--rt-paper);
    border-left: 1px solid var(--rt-line);
    border-top: 1px solid var(--rt-line);
    transform: rotate(45deg);
}

/* Toggle ile panel arasindaki hover kopmasini onler */
.rt-nav-dd-panel::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -14px;
    height: 14px;
}

.rt-nav-dd.is-open .rt-nav-dd-panel,
.rt-nav-dd:hover .rt-nav-dd-panel,
.rt-nav-dd:focus-within .rt-nav-dd-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
}

.rt-nav-dd-head {
    margin: 0;
    padding: 12px 16px 10px 18px;
    border-bottom: 1px dashed var(--rt-line);
    font-family: var(--rt-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rt-muted);
}

.rt-nav-dd-item {
    display: grid !important;
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 12px 16px 12px 18px !important;
    border: 0;
    border-bottom: 1px dashed var(--rt-line);
    border-radius: 0 !important;
    background: transparent;
    color: var(--rt-ink);
}

.rt-nav-dd-item:last-child {
    border-bottom: 0;
}

.rt-nav-dd-item:hover {
    background: #fff;
    color: var(--rt-bordo);
}

.rt-nav-dd-no {
    font-family: var(--rt-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--rt-muted);
}

.rt-nav-dd-item:hover .rt-nav-dd-no {
    color: var(--rt-bordo);
}

.rt-nav-dd-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.rt-nav-dd-copy strong {
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: inherit;
}

.rt-nav-dd-copy small {
    font-size: 12px;
    font-weight: 400;
    color: var(--rt-muted);
}

.rt-nav-dd-item:hover .rt-nav-dd-copy small {
    color: rgba(123, 30, 58, 0.72);
}

.rt-header--onhero:not(.is-scrolled) .rt-nav-dd-toggle:hover,
.rt-header--onhero:not(.is-scrolled) .rt-nav-dd.is-open .rt-nav-dd-toggle,
.rt-header--onhero:not(.is-scrolled) .rt-nav-dd.is-current .rt-nav-dd-toggle {
    color: #fff;
    background: transparent;
}

.rt-header--onhero:not(.is-scrolled) .rt-nav-dd-panel {
    background: var(--rt-paper);
    border-color: var(--rt-line);
}

@media (max-width: 767px) {
    .rt-nav-dd {
        display: flex;
        flex-direction: column;
    }

    .rt-nav-dd-toggle {
        justify-content: space-between;
        width: 100%;
        min-height: 52px;
        padding: 12px 14px;
        border-radius: var(--rt-radius-lg);
        font-size: 15.5px;
        color: var(--rt-ink);
    }

    .rt-nav-dd-toggle:hover,
    .rt-nav-dd.is-open .rt-nav-dd-toggle {
        background: var(--rt-rose);
        color: var(--rt-bordo);
    }

    .rt-nav-dd-panel {
        position: static;
        min-width: 0;
        margin: 0 0 4px;
        border: 1px solid var(--rt-line);
        border-radius: var(--rt-radius);
        box-shadow: inset 3px 0 0 var(--rt-bordo);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        display: none;
        overflow: hidden;
    }

    .rt-nav-dd-panel::before,
    .rt-nav-dd-panel::after {
        display: none;
    }

    .rt-nav-dd:hover .rt-nav-dd-panel,
    .rt-nav-dd:focus-within .rt-nav-dd-panel {
        display: none;
    }

    .rt-nav-dd.is-open .rt-nav-dd-panel {
        display: flex;
    }

    .rt-nav-dd-item {
        padding: 14px 16px !important;
    }
}
/* ---------- Hakk?m?zda sayfas? ---------- */

.rt-about-hero {
    padding: 128px 0 72px;
    background: var(--rt-bordo-deep);
    color: #f3e6eb;
}

.rt-about-hero-inner {
    max-width: none;
}

.rt-about-hero .rt-kicker {
    color: #d4a8b8;
}

.rt-about-hero h1 {
    margin: 10px 0 16px;
    font-size: clamp(32px, 4.8vw, 48px);
    line-height: 1.1;
    color: #fff;
}

.rt-about-hero-lead {
    margin: 0 0 28px;
    font-size: 17px;
    line-height: 1.55;
    color: #e5cdd6;
    max-width: 54ch;
}

.rt-about-jump {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rt-about-jump a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.15s, border-color 0.15s;
}

.rt-about-jump a:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
}

.rt-about-block {
    padding: 88px 0;
    border-top: 1px solid var(--rt-line);
}

.rt-about-block--alt {
    background: var(--rt-panel);
}

.rt-about-grid,
.rt-about-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 48px 64px;
    align-items: start;
}

.rt-about-copy h2 {
    margin: 8px 0 16px;
    font-size: clamp(28px, 3.6vw, 40px);
    line-height: 1.12;
}

.rt-about-copy > p {
    margin: 0 0 14px;
    max-width: 52ch;
    font-size: 16.5px;
}

.rt-about-points {
    display: grid;
    gap: 14px;
}

.rt-about-points li {
    padding: 18px 20px;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius-xl);
    background: var(--rt-panel);
}

.rt-about-points strong {
    display: block;
    margin-bottom: 6px;
    color: var(--rt-bordo);
    font-family: var(--rt-font-serif);
    font-size: 18px;
    font-weight: 700;
}

.rt-about-points span {
    font-size: 14.5px;
    color: var(--rt-body);
}

.rt-about-customers {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 40px;
}

.rt-about-customers li {
    padding: 22px 20px;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius-xl);
    background: var(--rt-paper);
}

.rt-about-customers-no {
    display: block;
    margin-bottom: 12px;
    font-family: var(--rt-mono);
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--rt-muted);
}

.rt-about-customers h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.rt-about-customers p {
    font-size: 14.5px;
    color: var(--rt-body);
}

.rt-about-customers-note {
    margin-top: 28px;
    font-size: 14px;
    color: var(--rt-muted);
}

.rt-about-contact-meta {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.rt-about-contact-meta li {
    display: grid;
    gap: 4px;
}

.rt-about-contact-meta span {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--rt-muted);
}

.rt-about-contact-meta a,
.rt-about-contact-meta em {
    font-style: normal;
    font-weight: 500;
    color: var(--rt-bordo);
}

.rt-about-form-panel {
    padding: 28px 24px;
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius-xl);
    background: var(--rt-panel);
    box-shadow: 0 12px 36px rgba(26, 13, 18, 0.06);
}

@media (max-width: 1023px) {
    .rt-about-grid,
    .rt-about-contact-grid,
    .rt-about-customers {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .rt-about-hero {
        padding: 104px 0 56px;
    }

    .rt-about-block {
        padding: 64px 0;
    }
}
