﻿
:root {
    --ink: #1E1B16;
    --paper: #EFE7D8;
    --paper-alt: #E4D8BF;
    --gold: #D9A441;
    --gold-dark: #B8862F;
    --rust: #B5482F;
    --teal: #2E4A52;
    --line: #B7A47F;
    --white: #FFFBF3;
}
:root {
    --pd-ink: #1B1F3B;
    --pd-gold: #C9A227;
    --pd-border: #E2E8F0;
    --pd-muted: #64748B;
    --pd-bg-light: #F1F5F9
}

.premium-detail-card {
    background: #fff;
    border: 1px solid var(--pd-border);
    border-radius: 16px;
    padding: 2rem
}

.gallery-container {
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.main-img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--pd-bg-light);
    aspect-ratio: 1 / 1;
    cursor: zoom-in
}

    .main-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .3s ease
    }

    .main-img-wrapper:hover img {
        transform: scale(1.04)
    }

    .main-img-wrapper::after {
        content: "\f00e";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        bottom: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(27,31,59,.75);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: .85rem;
        pointer-events: none;
        opacity: 0;
        transition: opacity .2s ease
    }

    .main-img-wrapper:hover::after {
        opacity: 1
    }

.thumb-row {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: .6rem
}

.thumb-box {
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    background: var(--pd-bg-light);
    transition: border-color .15s ease,opacity .15s ease;
    opacity: .7
}

    .thumb-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block
    }

    .thumb-box:hover {
        opacity: 1
    }

    .thumb-box.active-thumb {
        border-color: var(--pd-gold);
        opacity: 1
    }

.product-badge {
    display: inline-flex;
    align-items: center;
    background: var(--pd-ink);
    color: #fff;
    font-size: .78rem;
    font-weight: 600;
    padding: .4rem .9rem;
    border-radius: 999px
}

.product-detail-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--pd-ink);
    letter-spacing: -0.02em
}

.specs-panel-title {
    font-size: .95rem;
    font-weight: 700;
    color: var(--pd-ink)
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.spec-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: var(--pd-bg-light);
    border-radius: 10px;
    padding: .75rem .9rem
}

.spec-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--pd-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pd-gold);
    flex-shrink: 0
}

.spec-label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--pd-muted)
}

.spec-value {
    font-size: .92rem;
    font-weight: 600;
    color: var(--pd-ink)
}

.btn-detail-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    background: #fff;
    border: 2px solid #25D366;
    color: var(--pd-ink);
    font-weight: 600;
    padding: .75rem 1rem;
    border-radius: 10px;
    transition: background .15s ease
}

    .btn-detail-whatsapp:hover {
        background: #EAFBF1
    }

.btn-detail-back {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pd-bg-light);
    color: var(--pd-ink);
    font-weight: 600;
    padding: .75rem 1rem;
    border-radius: 10px;
    transition: background .15s ease
}

    .btn-detail-back:hover {
        background: var(--pd-border)
    }

@media (max-width:767px) {
    .premium-detail-card {
        padding: 1.25rem
    }

    .thumb-row {
        grid-template-columns: repeat(5,1fr);
        gap: .4rem
    }
}

.pd-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem
}

    .pd-lightbox.open {
        display: flex;
        animation: pdFadeIn .2s ease
    }

.pd-lightbox-stage {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center
}

    .pd-lightbox-stage img {
        max-width: 90vw;
        max-height: 85vh;
        object-fit: contain;
        border-radius: 8px;
        box-shadow: 0 20px 60px rgba(0,0,0,.5)
    }

.pd-lightbox-close, .pd-lightbox-prev, .pd-lightbox-next {
    position: absolute;
    background: rgba(255,255,255,.12);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background .15s ease
}

    .pd-lightbox-close:hover, .pd-lightbox-prev:hover, .pd-lightbox-next:hover {
        background: rgba(255,255,255,.25)
    }

.pd-lightbox-close {
    top: 1.5rem;
    right: 1.5rem
}

.pd-lightbox-prev {
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%)
}

.pd-lightbox-next {
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%)
}

.pd-lightbox-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-family: 'Space Mono',monospace;
    font-size: .8rem;
    background: rgba(255,255,255,.12);
    padding: .35rem .9rem;
    border-radius: 999px
}

@keyframes pdFadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@media (max-width:600px) {
    .pd-lightbox-prev, .pd-lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1rem
    }

    .pd-lightbox-close {
        top: 1rem;
        right: 1rem
    }
}
#ContentPlaceHolder1 {
    display: block;
    font-family: 'Work Sans', sans-serif;
    color: var(--ink);
    background: var(--paper);
}

    #ContentPlaceHolder1 h1,
    #ContentPlaceHolder1 h2,
    #ContentPlaceHolder1 h3,
    #ContentPlaceHolder1 h4,
    #ContentPlaceHolder1 h5 {
        font-family: 'Oswald', sans-serif;
        letter-spacing: .01em;
    }

    #ContentPlaceHolder1 .mono {
        font-family: 'Space Mono', monospace;
    }
/* Footer'ı her zaman sayfanın en altına yapıştırır */
html, body {
    height: 100%;
    margin: 0;
}

form {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.main-content { /* Eğer MasterPage'de içeriği bir div'e sardıysan */
    flex: 1;
}

footer {
    margin-top: auto;
}

/* ================= HERO — PRICE TAG ================= */
.sk-hero {
    position: relative;
    background: var(--ink);
    color: var(--white);
    padding: 6rem 1rem 7rem;
    overflow: hidden;
    isolation: isolate;
}

    .sk-hero::before {
        /* faint diagonal stitch lines evoking tag paper texture */
        content: "";
        position: absolute;
        inset: 0;
        background-image: repeating-linear-gradient(135deg, rgba(217,164,65,0.06) 0px, rgba(217,164,65,0.06) 1px, transparent 1px, transparent 26px);
        z-index: 0;
    }

.sk-tag {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
    background: var(--paper);
    color: var(--ink);
    border-radius: 6px 22px 6px 22px;
    padding: 3rem 2.5rem 2.75rem;
    transform: rotate(-2deg);
    box-shadow: 0 25px 50px rgba(0,0,0,0.45);
}

    .sk-tag::after {
        /* punch hole */
        content: "";
        position: absolute;
        top: 1.6rem;
        left: 1.9rem;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: var(--ink);
        box-shadow: inset 0 0 0 3px var(--paper), 0 0 0 2px var(--line);
    }

.sk-tag-string {
    position: absolute;
    top: -3.2rem;
    left: 2.55rem;
    width: 2px;
    height: 3.4rem;
    background: var(--line);
    transform: rotate(8deg);
    z-index: 0;
}

.sk-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: .78rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--rust);
    display: block;
    margin-bottom: .6rem;
}

.sk-tag h1 {
    font-size: clamp(2.4rem, 6vw, 3.6rem);
    font-weight: 700;
    line-height: 1;
    margin: 0 0 1rem;
    color: var(--ink);
}

    .sk-tag h1 span {
        color: var(--rust);
    }

.sk-tag p.lead {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.05rem;
    color: #4A4336;
    margin-bottom: 1.75rem;
}

.sk-hero-cta {
    display: flex;
    gap: .9rem;
    flex-wrap: wrap;
}

.btn-sk-primary {
    background: var(--rust);
    border: 2px solid var(--rust);
    color: var(--white);
    font-weight: 600;
    padding: .65rem 1.5rem;
    border-radius: 3px;
    text-decoration: none;
    transition: transform .15s ease, background .15s ease;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

    .btn-sk-primary:hover {
        background: #96391F;
        color: var(--white);
        transform: translateY(-2px);
    }

.btn-sk-outline {
    background: transparent;
    border: 2px solid var(--ink);
    color: var(--ink);
    font-weight: 600;
    padding: .65rem 1.5rem;
    border-radius: 3px;
    text-decoration: none;
    transition: transform .15s ease, background .15s ease, color .15s ease;
}

    .btn-sk-outline:hover {
        background: var(--ink);
        color: var(--paper);
        transform: translateY(-2px);
    }

/* ================= SLOGAN STRIP ================= */
.sk-slogan {
    background: var(--gold);
    color: var(--ink);
    padding: 1.1rem 1rem;
    text-align: center;
    border-top: 3px dashed var(--ink);
    border-bottom: 3px dashed var(--ink);
}

    .sk-slogan h4 {
        font-weight: 600;
        margin: 0;
        font-size: 1.1rem;
        letter-spacing: .02em;
    }

/* ================= TRUST STRIP / STATS ================= */
.sk-stats-wrap {
    background: var(--ink);
    padding: 3.5rem 1rem;
}

.sk-stats {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.sk-stat {
    flex: 1 1 0;
    min-width: 150px;
    text-align: center;
    padding: 0.5rem 1.25rem;
    position: relative;
}

    .sk-stat + .sk-stat::before {
        content: "";
        position: absolute;
        left: 0;
        top: 10%;
        height: 80%;
        width: 1px;
        background: rgba(217,164,65,0.28);
    }

    .sk-stat .sk-stat-num {
        font-family: 'Oswald', sans-serif;
        font-weight: 700;
        font-size: clamp(1.9rem, 4vw, 2.5rem);
        color: var(--gold);
        line-height: 1;
        margin-bottom: .5rem;
    }

    .sk-stat .sk-stat-label {
        font-family: 'Space Mono', monospace;
        font-size: .72rem;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: #C7BEA9;
    }

@media (max-width: 767px) {
    .sk-stat + .sk-stat::before {
        display: none;
    }

    .sk-stat {
        flex: 1 1 45%;
        margin-bottom: 1.5rem;
    }
}

/* ================= PRODUCTS — TICKET CARDS ================= */
.sk-products {
    background: var(--paper-alt);
    padding: 5rem 1rem;
}

.sk-section-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: .5rem;
}

.sk-section-sub {
    text-align: center;
    color: #6B6151;
    max-width: 520px;
    margin: 0 auto 3rem;
}

.sk-ticket {
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(30,27,22,0.10);
    transition: transform .2s ease, box-shadow .2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .sk-ticket:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 36px rgba(30,27,22,0.18);
    }

.sk-ticket-img {
    height: 210px;
    object-fit: cover;
    width: 100%;
}

.sk-ticket-body {
    padding: 1.25rem 1.4rem 0;
    text-align: center;
    flex-grow: 1;
}

    .sk-ticket-body h5 {
        font-weight: 600;
        margin-bottom: .4rem;
    }

.sk-ticket-price {
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--rust);
}

.sk-perforation {
    position: relative;
    border-top: 2px dashed var(--line);
    margin: 1.15rem 1.4rem 0;
}

    .sk-perforation::before,
    .sk-perforation::after {
        content: "";
        position: absolute;
        top: -9px;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: var(--paper-alt);
    }

    .sk-perforation::before {
        left: -1.4rem;
    }

    .sk-perforation::after {
        right: -1.4rem;
    }

.sk-ticket-footer {
    padding: 1rem 1.4rem 1.4rem;
}

.btn-sk-ticket {
    width: 100%;
    background: transparent;
    border: 2px solid var(--ink);
    color: var(--ink);
    font-weight: 600;
    padding: .55rem;
    border-radius: 3px;
    transition: background .15s ease, color .15s ease;
}

    .btn-sk-ticket:hover {
        background: var(--ink);
        color: var(--paper);
    }

.sk-cta-link {
    color: var(--rust);
    border: 2px solid var(--rust);
    font-weight: 600;
    padding: .65rem 2.5rem;
    border-radius: 3px;
    text-decoration: none;
    display: inline-block;
    transition: background .15s ease, color .15s ease;
}

    .sk-cta-link:hover {
        background: var(--rust);
        color: var(--white);
    }

/* ================= SCROLL DIVIDER ================= */
.sk-divider {
    background: var(--paper);
    text-align: center;
    padding: 2rem 1rem;
    color: #8A7F68;
    font-family: 'Space Mono', monospace;
    font-size: .85rem;
    letter-spacing: .05em;
}

    .sk-divider hr {
        border-top: 2px dashed var(--line);
        max-width: 200px;
        margin: 0 auto 1rem;
    }

/* ================= PROCESS — 3 STEPS ================= */
.sk-process {
    background: var(--ink);
    color: var(--white);
    padding: 5rem 1rem;
}

    .sk-process .sk-section-title {
        color: var(--white);
    }

    .sk-process .sk-section-sub {
        color: #B7AD98;
    }

.sk-step {
    text-align: center;
    padding: 1.5rem 1rem;
}

.sk-step-num {
    font-family: 'Space Mono', monospace;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.sk-step h5 {
    font-weight: 600;
    margin-bottom: .5rem;
}

.sk-step p {
    color: #C7BEA9;
    font-size: .92rem;
    margin: 0;
}

/* ================= SERVICES — STAMP CARDS ================= */
.sk-services {
    background: var(--paper);
    padding: 5rem 1rem;
}

.sk-stamp-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    transition: transform .18s ease, box-shadow .18s ease;
}

    .sk-stamp-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 26px rgba(30,27,22,0.12);
    }

.sk-stamp-badge {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px dashed var(--rust);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.1rem;
    transform: rotate(-4deg);
}

    .sk-stamp-badge i {
        color: var(--rust);
        font-size: 1.4rem;
    }

.sk-stamp-card h5 {
    font-weight: 600;
    margin-bottom: .5rem;
}

.sk-stamp-card p {
    color: #6B6151;
    font-size: .88rem;
    margin: 0;
}

/* ================= ABOUT / PRINCIPLES ================= */
.sk-about {
    background: var(--paper-alt);
    padding: 5rem 1rem;
}

    .sk-about h2 {
        font-weight: 700;
    }

    .sk-about p.body-text {
        color: #4A4336;
        margin-top: 1.2rem;
    }

.sk-principles {
    position: relative;
    background: var(--ink);
    color: var(--white);
    border-radius: 6px;
    padding: 2.75rem 2.5rem;
    transform: rotate(1.2deg);
    box-shadow: 0 20px 40px rgba(30,27,22,0.22);
}

    .sk-principles::before {
        content: "ONAYLI";
        position: absolute;
        top: 1.4rem;
        right: 1.6rem;
        font-family: 'Space Mono', monospace;
        font-size: .68rem;
        letter-spacing: .2em;
        color: var(--gold);
        border: 2px solid var(--gold);
        border-radius: 50%;
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        transform: rotate(8deg);
        line-height: 1.1;
    }

    .sk-principles h4 {
        color: var(--gold);
        font-weight: 600;
        margin-bottom: 1.2rem;
    }

    .sk-principles ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .sk-principles li {
        padding: .6rem 0;
        border-bottom: 1px dotted rgba(255,255,255,0.18);
        font-size: .95rem;
    }

        .sk-principles li:last-child {
            border-bottom: none;
        }

        .sk-principles li i {
            color: var(--gold);
            margin-right: .6rem;
        }

/* ================= FOOTER CTA ================= */
.sk-footer-cta {
    background: var(--gold);
    color: var(--ink);
    padding: 3.5rem 1rem;
    text-align: center;
}

    .sk-footer-cta h3 {
        font-weight: 700;
        margin-bottom: .5rem;
    }

    .sk-footer-cta p {
        color: #4A4336;
        margin-bottom: 1.5rem;
    }

@media (max-width: 767px) {
    .sk-tag {
        transform: rotate(0deg);
        padding: 2.25rem 1.5rem;
    }

    .sk-tag-string {
        display: none;
    }

    .sk-principles {
        transform: rotate(0deg);
    }
}

#ContentPlaceHolder1 a:focus-visible,
#ContentPlaceHolder1 button:focus-visible {
    outline: 3px solid var(--teal);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    #ContentPlaceHolder1 * {
        transition: none !important;
    }
}
/* Select kutusunun genel yazı tipini FontAwesome destekliyoruz */
.fa-select, .fa-select option {
    font-family: 'Plus Jakarta Sans', 'Font Awesome 6 Free', sans-serif !important;
    font-weight: 600 !important;
}

/* Her seçeneğin başına gelecek FontAwesome ikon kodları (Unicode) */
.fa-option-star::before {
    content: "\f005 "; /* fa-star ikonu */
}

.fa-option-basket::before {
    content: "\f291 "; /* fa-basket-shopping ikonu */
}

.fa-option-couch::before {
    content: "\f4b8 "; /* fa-couch ikonu */
}

.fa-option-tv::before {
    content: "\f26c "; /* fa-tv ikonu */
}
:root {
    --navy: #1B1F3B;
    --navy-light: #252b52;
    --gold: #C9A227;
    --bg: #F7F7F5;
    --slate-900: #0F172A;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748B;
    --slate-400: #94A3B8;
    --slate-200: #E2E8F0;
    --slate-100: #F1F5F9;
    --red: #EF4444;
    --emerald: #10B981;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--slate-900);
    font-family: "Segoe UI", ui-sans-serif, system-ui, sans-serif;
}

a { text-decoration: none; color: inherit; }

.layout { display: flex; min-height: 100vh; }

/* ---------- Sidebar ---------- */
.sidebar {
    width: 230px;
    background: var(--navy);
    flex-shrink: 0;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
}

.sidebar-logo { display: flex; align-items: center; gap: 10px; padding: 0 8px; margin-bottom: 28px; }

.logo-badge {
    width: 32px; height: 32px; border-radius: 8px;
    background: var(--gold); color: var(--navy);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px;
}

.logo-title { color: #fff; font-weight: 600; font-size: 13px; margin: 0; line-height: 1.2; }
.logo-sub { color: var(--slate-400); font-size: 11px; margin: 0; }

.nav { display: flex; flex-direction: column; gap: 4px; }

.nav-item {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 14px; border-radius: 8px;
    color: #cbd3e6; font-size: 14px; font-weight: 500;
    transition: background .15s, color .15s;
}
.nav-item:hover { background: rgba(255,255,255,.06); color: #fff; }
.nav-item.active { background: rgba(201,162,39,.15); color: var(--gold); }

.badge {
    margin-left: auto; background: var(--gold); color: var(--navy);
    font-size: 11px; font-weight: 700; border-radius: 999px;
    padding: 1px 7px;
}

.sidebar-footer { margin-top: auto; color: var(--slate-500); font-size: 11px; padding: 0 8px; }

/* ---------- Main ---------- */
.main { flex: 1; padding: 32px; max-width: 1100px; }

.page-header { margin-bottom: 24px; }
.page-header-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.page-header h1, .page-header-row h1 { font-size: 24px; margin: 0; letter-spacing: -0.02em; }
.page-sub { color: var(--slate-500); font-size: 13px; margin: 4px 0 0; }

/* ---------- Stat cards ---------- */
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 28px; }
.stat-card { background: #fff; border: 1px solid var(--slate-200); border-radius: 16px; padding: 18px 20px; }
.stat-label { color: var(--slate-500); font-size: 13px; font-weight: 500; margin: 0; }
.stat-value { font-size: 26px; font-weight: 600; margin: 4px 0 0; letter-spacing: -0.02em; }
.stat-sub { color: var(--slate-400); font-size: 12px; margin: 4px 0 0; }

/* ---------- Card / table ---------- */
.card { background: #fff; border: 1px solid var(--slate-200); border-radius: 16px; overflow: hidden; margin-bottom: 24px; }
.card-header { padding: 16px 20px; border-bottom: 1px solid var(--slate-100); }
.card-header h2 { margin: 0; font-size: 15px; font-weight: 600; }
.card-form { padding: 24px; max-width: 640px; }

.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table th {
    text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: .04em;
    color: var(--slate-400); font-weight: 600;
    padding: 12px 20px; border-bottom: 1px solid var(--slate-100);
}
.table td { padding: 12px 20px; border-bottom: 1px solid var(--slate-100); vertical-align: middle; }
.table tr:hover td { background: var(--slate-100); }

.thumb { width: 38px; height: 38px; border-radius: 8px; object-fit: cover; vertical-align: middle; margin-right: 10px; background: var(--slate-100); }

.badge-danger { font-size: 11px; font-weight: 600; color: var(--red); background: #FEE2E2; border-radius: 999px; padding: 3px 8px; }

.unread-dot, .read-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; }
.unread-dot { background: var(--gold); }
.read-dot { background: var(--slate-200); }

.link-action { color: var(--slate-500); font-size: 13px; font-weight: 500; margin-right: 12px; }
.link-action:hover { color: var(--navy); }
.link-danger { color: var(--red) !important; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 6px;
    border-radius: 8px; padding: 10px 16px; font-size: 14px; font-weight: 500;
    border: none; cursor: pointer;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-light); }
.btn-secondary { background: #fff; color: var(--slate-600); border: 1px solid var(--slate-200); }
.btn-secondary:hover { background: var(--slate-100); }
.btn-danger { background: var(--red); color: #fff; }

/* ---------- Forms ---------- */
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field-label { display: block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--slate-500); margin-bottom: 6px; }
.input {
    width: 100%; border: 1px solid var(--slate-200); border-radius: 8px;
    padding: 8px 12px; font-size: 14px; color: var(--slate-900);
    font-family: inherit;
}
.input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,39,.15); }
.checklist { display: flex; flex-direction: column; gap: 6px; font-size: 14px; color: var(--slate-600); }

.saved-badge { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 600; color: var(--emerald); background: #ECFDF5; border-radius: 999px; padding: 4px 10px; margin-left: 12px; }

/* ---------- Tabs ---------- */
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--slate-200); margin-bottom: 4px; }
.tab-link { padding: 10px 16px; font-size: 14px; font-weight: 500; color: var(--slate-400); border-bottom: 2px solid transparent; }
.tab-link.active { color: var(--slate-900); border-bottom-color: var(--gold); }
.tab-link:hover { color: var(--slate-700); }

/* ---------- Modal ---------- */
.modal-overlay {
    position: fixed; inset: 0; background: rgba(15,23,42,.4);
    display: flex; align-items: center; justify-content: center; z-index: 50; padding: 16px;
}
.modal { background: #fff; border-radius: 16px; padding: 24px; max-width: 460px; width: 100%; box-shadow: 0 20px 40px rgba(0,0,0,.2); }
.modal-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 14px; }
.modal-header h3 { margin: 0; font-size: 16px; font-weight: 600; }
.modal-close { font-size: 20px; color: var(--slate-400); line-height: 1; }
.modal-close:hover { color: var(--slate-700); }
.modal-meta { font-size: 13px; color: var(--slate-500); margin: -8px 0 12px; }
.modal-body-text { font-size: 14px; color: var(--slate-600); line-height: 1.6; }
.modal-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--slate-100); }
.modal-date { font-size: 12px; color: var(--slate-400); }
:root {
    --navy: #1B1F3B;
    --navy-light: #252b52;
    --gold: #C9A227;
    --bg: #F7F7F5;
    --slate-900: #0F172A;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748B;
    --slate-400: #94A3B8;
    --slate-200: #E2E8F0;
    --slate-100: #F1F5F9;
    --red: #EF4444;
    --emerald: #10B981;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--slate-900);
    font-family: "Segoe UI", ui-sans-serif, system-ui, sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

.layout {
    display: flex;
    min-height: 100vh;
}

/* ---------- Sidebar ---------- */
.sidebar {
    width: 230px;
    background: var(--navy);
    flex-shrink: 0;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 8px;
    margin-bottom: 28px;
}

.logo-badge {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--gold);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.logo-title {
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    margin: 0;
    line-height: 1.2;
}

.logo-sub {
    color: var(--slate-400);
    font-size: 11px;
    margin: 0;
}

.nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 8px;
    color: #cbd3e6;
    font-size: 14px;
    font-weight: 500;
    transition: background .15s, color .15s;
}

    .nav-item:hover {
        background: rgba(255,255,255,.06);
        color: #fff;
    }

    .nav-item.active {
        background: rgba(201,162,39,.15);
        color: var(--gold);
    }

.badge {
    margin-left: auto;
    background: var(--gold);
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
    border-radius: 999px;
    padding: 1px 7px;
}

.sidebar-footer {
    margin-top: auto;
    color: var(--slate-500);
    font-size: 11px;
    padding: 0 8px;
}

/* ---------- Main ---------- */
.main {
    flex: 1;
    padding: 32px;
    max-width: 1100px;
}

.page-header {
    margin-bottom: 24px;
}

.page-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

    .page-header h1, .page-header-row h1 {
        font-size: 24px;
        margin: 0;
        letter-spacing: -0.02em;
    }

.page-sub {
    color: var(--slate-500);
    font-size: 13px;
    margin: 4px 0 0;
}

/* ---------- Stat cards ---------- */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.stat-card {
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: 16px;
    padding: 18px 20px;
}

.stat-label {
    color: var(--slate-500);
    font-size: 13px;
    font-weight: 500;
    margin: 0;
}

.stat-value {
    font-size: 26px;
    font-weight: 600;
    margin: 4px 0 0;
    letter-spacing: -0.02em;
}

.stat-sub {
    color: var(--slate-400);
    font-size: 12px;
    margin: 4px 0 0;
}

/* ---------- Card / table ---------- */
.card {
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
}

.card-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--slate-100);
}

    .card-header h2 {
        margin: 0;
        font-size: 15px;
        font-weight: 600;
    }

.card-form {
    padding: 24px;
    max-width: 640px;
}

.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

    .table th {
        text-align: left;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: .04em;
        color: var(--slate-400);
        font-weight: 600;
        padding: 12px 20px;
        border-bottom: 1px solid var(--slate-100);
    }

    .table td {
        padding: 12px 20px;
        border-bottom: 1px solid var(--slate-100);
        vertical-align: middle;
    }

    .table tr:hover td {
        background: var(--slate-100);
    }

.thumb {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    object-fit: cover;
    vertical-align: middle;
    margin-right: 10px;
    background: var(--slate-100);
}

.badge-danger {
    font-size: 11px;
    font-weight: 600;
    color: var(--red);
    background: #FEE2E2;
    border-radius: 999px;
    padding: 3px 8px;
}

.unread-dot, .read-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.unread-dot {
    background: var(--gold);
}

.read-dot {
    background: var(--slate-200);
}

.link-action {
    color: var(--slate-500);
    font-size: 13px;
    font-weight: 500;
    margin-right: 12px;
}

    .link-action:hover {
        color: var(--navy);
    }

.link-danger {
    color: var(--red) !important;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--navy);
    color: #fff;
}

    .btn-primary:hover {
        background: var(--navy-light);
    }

.btn-secondary {
    background: #fff;
    color: var(--slate-600);
    border: 1px solid var(--slate-200);
}

    .btn-secondary:hover {
        background: var(--slate-100);
    }

.btn-danger {
    background: var(--red);
    color: #fff;
}

/* ---------- Forms ---------- */
.field {
    margin-bottom: 16px;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.field-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--slate-500);
    margin-bottom: 6px;
}

.input {
    width: 100%;
    border: 1px solid var(--slate-200);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
    color: var(--slate-900);
    font-family: inherit;
}

    .input:focus {
        outline: none;
        border-color: var(--gold);
        box-shadow: 0 0 0 3px rgba(201,162,39,.15);
    }

.checklist {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
    color: var(--slate-600);
}

.saved-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--emerald);
    background: #ECFDF5;
    border-radius: 999px;
    padding: 4px 10px;
    margin-left: 12px;
}

/* ---------- Tabs ---------- */
.tabs {
    display: flex;
    gap: 4px;
    border-bottom: 1px solid var(--slate-200);
    margin-bottom: 4px;
}

.tab-link {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-400);
    border-bottom: 2px solid transparent;
}

    .tab-link.active {
        color: var(--slate-900);
        border-bottom-color: var(--gold);
    }

    .tab-link:hover {
        color: var(--slate-700);
    }

/* ---------- Modal ---------- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    padding: 16px;
}

.modal {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    max-width: 460px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0,0,0,.2);
}

.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 14px;
}

    .modal-header h3 {
        margin: 0;
        font-size: 16px;
        font-weight: 600;
    }

.modal-close {
    font-size: 20px;
    color: var(--slate-400);
    line-height: 1;
}

    .modal-close:hover {
        color: var(--slate-700);
    }

.modal-meta {
    font-size: 13px;
    color: var(--slate-500);
    margin: -8px 0 12px;
}

.modal-body-text {
    font-size: 14px;
    color: var(--slate-600);
    line-height: 1.6;
}

.modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--slate-100);
}

.modal-date {
    font-size: 12px;
    color: var(--slate-400);
}
<style >
/* Tabloyu mobilde yatay kaydırılabilir yapar */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Butonları mobilde daha rahat basılır yap */
.btn-sm {
    padding: 5px 10px;
    font-size: 0.8rem;
}

</style >