* {
    box-sizing: border-box;
}
 
/* Footer styles */

/* Copyright alanını hem PC’de hem de mobilde ortalar */
.copyright {
    text-align: center;          /* Metni yatayda ortala */
    margin: 0 auto;              /* Genişliğe göre ortala */
    padding: 1rem 0;             /* Üst/alt boşluk */
    background-color: #f8f9fa;   /* Açık arka plan */
    border-top: 1px solid #dee2e6;
    width: 100%;
    box-sizing: border-box;
}

/* Mobilde safe‑area boşluğunu dikkate al */
@media (max-width: 900px) {
    .copyright {
        padding-bottom: env(safe-area-inset-bottom, 0);
    }
}

/* Copyright alanını hem PC’de hem de mobilde ortalar */
.copyright {
    text-align: center;               /* Metni yatayda ortalar */
    margin: 0 auto;                  /* Genişliğe göre ortalar */
    padding: 1rem 0;                 /* Üst‑alt boşluk */
    background-color: #f8f9fa;       /* Açık gri arka plan */
    border-top: 1px solid #dee2e6;   /* Üst sınır çizgisi */
    width: 100%;                     /* Tam genişlik */
    box-sizing: border-box;
}

/* Mobil cihazlar için ekstra boşluk (safe‑area) */
@media (max-width: 900px) {
    .copyright {
        padding-bottom: env(safe-area-inset-bottom, 0);
    }
}

:root {
    --bg: #0f172a;
    --bg-dark: #0b1120;
    --card: #1e293b;
    --card-soft: #24344c;
    --border: rgba(148, 163, 184, 0.22);
    --text: #f1f5f9;
    --muted: #94a3b8;
    --yellow: #facc15;
    --yellow-hover: #eab308;
    --green: #22c55e;
    --red: #ef4444;
    --input-bg: #e8f0fe;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(250, 204, 21, 0.08), transparent 28%),
        linear-gradient(135deg, var(--bg-dark), var(--bg));
    color: var(--text);
    font-size: 16px;
}

.container {
    width: min(94%, 1200px);
    max-width: 100%;
    margin: 28px auto;
    box-sizing: border-box;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

.header-left {
    min-width: 0;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.header h1,
.header h2 {
    margin: 0;
    font-size: 34px;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.header-logo-link {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.header-logo-link:hover {
    color: var(--yellow);
}

.header-logo-icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
    object-position: center;
    display: block;
    flex-shrink: 0;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
}

.nav a,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    background: var(--yellow);
    color: #111827;
    padding: 11px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    border: 0;
    cursor: pointer;
    box-shadow: none;
    text-shadow: none;
    transition: transform .15s ease, background .15s ease;
    white-space: nowrap;
}

.nav a:hover,
.btn:hover {
    transform: translateY(-1px);
    background: var(--yellow-hover);
    box-shadow: none;
}

.nav .nav-upcoming {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 44px;
    padding: 11px 18px;
    border-radius: 12px;
    border: 1px dashed rgba(148, 163, 184, 0.45);
    background: rgba(51, 65, 85, 0.35);
    color: #94a3b8;
    font-weight: 800;
    white-space: nowrap;
    cursor: not-allowed;
    transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.nav .nav-upcoming:hover {
    background: rgba(71, 85, 105, 0.45);
    border-color: rgba(250, 204, 21, 0.42);
    color: #cbd5e1;
    transform: translateY(-1px);
}

.nav .nav-upcoming:hover::after {
    content: "Yakında";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(100% + 8px);
    font-size: 12px;
    font-weight: 700;
    color: #111827;
    background: var(--yellow);
    padding: 4px 8px;
    border-radius: 8px;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.nav .nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: stretch;
}

.nav .nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 44px;
    padding: 11px 18px;
    border-radius: 12px;
    border: 0;
    background: var(--yellow);
    color: #111827;
    font-weight: 800;
    font-size: inherit;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: none;
    text-shadow: none;
    transition: transform .15s ease, background .15s ease;
}

.nav .nav-dropdown-toggle:hover {
    transform: translateY(-1px);
    background: var(--yellow-hover);
}

.nav .nav-dropdown-toggle .dropdown-chevron {
    font-size: 11px;
    opacity: 0.85;
}

.nav .nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    padding: 8px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(15, 23, 42, 0.96);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.32);
    z-index: 70;
}

.nav .nav-dropdown-menu.open {
    display: block;
}

.nav .nav-dropdown-menu a {
    display: flex !important;
    width: 100%;
    min-height: auto !important;
    justify-content: flex-start;
    border-radius: 10px;
    padding: 10px 12px !important;
    margin: 0 0 4px;
    background: transparent !important;
    color: #e2e8f0 !important;
    font-weight: 700;
    text-decoration: none;
    box-shadow: none;
    transform: none;
}

.nav .nav-dropdown-menu a:last-of-type {
    margin-bottom: 0;
}

.nav .nav-dropdown-menu a:hover {
    background: rgba(51, 65, 85, 0.7) !important;
    color: #ffffff !important;
    transform: none !important;
}

.nav .nav-dropdown-menu .nav-submenu-upcoming {
    display: flex;
    width: 100%;
    min-height: auto;
    margin-top: 4px;
    padding: 10px 12px;
    justify-content: flex-start;
    font-size: 14px;
}

.user-info {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    margin-left: 8px !important;
}

.user-info a {
    min-height: auto;
    padding: 0;
    background: transparent;
    color: var(--yellow);
    box-shadow: none;
    display: inline;
}

.user-info .user-name {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f3f4f6;
    font-weight: 700;
    font-size: 14px;
}

.user-info .user-name i {
    color: var(--yellow);
    font-size: 12px;
}

.user-info .profile-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(148, 163, 184, 0.35);
    color: #e2e8f0 !important;
    font-weight: 700;
    transition: background .15s ease, border-color .15s ease, color .15s ease;
}

.user-info .profile-toggle {
    border: 0;
    cursor: pointer;
}

.user-info .profile-link-text {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.user-info .profile-link-mobile-text {
    display: none;
    font-weight: 800;
    color: #ffffff;
}

.user-info .profile-link-text small {
    color: #94a3b8;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 2px;
}

.user-info .profile-link-text strong {
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.1px;
}

.user-info .dropdown-chevron {
    color: #cbd5e1 !important;
    font-size: 10px;
    margin-left: 2px;
}

.user-info .profile-link i {
    color: var(--yellow);
    font-size: 12px;
}

.user-info .profile-link:hover {
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(250, 204, 21, 0.42);
    color: #ffffff !important;
    transform: none;
}

.profile-dropdown {
    position: relative;
    display: inline-flex;
}

.profile-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 210px;
    padding: 8px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(15, 23, 42, 0.96);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.32);
    z-index: 60;
}

.profile-menu.open {
    display: block;
}

.profile-menu a {
    display: block !important;
    width: 100%;
    min-height: auto !important;
    border-radius: 10px;
    padding: 10px 12px !important;
    margin: 0;
    background: transparent !important;
    color: #e2e8f0 !important;
    font-weight: 700;
    text-decoration: none;
}

.profile-menu a:hover {
    background: rgba(51, 65, 85, 0.7) !important;
    color: #ffffff !important;
    transform: none !important;
}

.profile-menu .logout-item {
    color: #fecaca !important;
}

.profile-menu .logout-item:hover {
    background: rgba(239, 68, 68, 0.2) !important;
    color: #fee2e2 !important;
}

.user-info .logout-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(239, 68, 68, 0.14);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #fecaca;
    font-weight: 700;
    transition: background .15s ease, color .15s ease, border-color .15s ease;
}

.user-info .logout-link:hover {
    background: rgba(239, 68, 68, 0.22);
    border-color: rgba(248, 113, 113, 0.6);
    color: #fee2e2;
    transform: none;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--yellow);
    color: #111827;
    font-size: 24px;
    font-weight: 900;
    cursor: pointer;
    user-select: none;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.card,
.table-card {
    background: rgba(30, 41, 59, 0.94);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.card {
    padding: 24px;
}

.card h2,
.card h3 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 28px;
    letter-spacing: -0.4px;
}

.card p {
    color: #cbd5e1;
    line-height: 1.55;
}

.card small {
    display: block;
    color: var(--muted);
    margin-bottom: 8px;
    font-weight: 700;
}

.card > h3:last-child {
    margin-bottom: 0;
}

form {
    width: 100%;
}

.card form {
    max-width: 100%;
}

label {
    display: block;
    margin: 14px 0 7px;
    color: #cbd5e1;
    font-size: 15px;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 13px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: var(--input-bg);
    color: #0f172a;
    font-size: 16px;
    outline: none;
    margin: 0;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.18);
}

input::placeholder,
textarea::placeholder {
    color: #64748b;
}

button.btn,
form .btn {
    margin-top: 18px;
    margin-right: 10px;
}

.table-card {
    margin-top: 24px;
    overflow-x: auto;
    overflow-y: hidden;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

th {
    background: rgba(51, 65, 85, 0.88);
    color: #e2e8f0;
    text-align: left;
    padding: 15px;
    font-size: 14px;
}

td {
    padding: 14px 15px;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
    color: #dbeafe;
}

td a,
.card a:not(.btn) {
    color: var(--yellow);
    text-decoration: none;
    font-weight: 800;
}

.positive {
    color: var(--green) !important;
}

.negative {
    color: var(--red) !important;
}

hr {
    border: 0;
    height: 1px;
    background: rgba(148, 163, 184, 0.2);
    margin: 22px 0;
}

img {
    max-width: 100%;
}

.mobile-cards {
    display: none;
}

.mobile-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 12px;
    margin-bottom: 12px;
}

.mobile-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 10px;
}

.mobile-card-body b {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.mobile-card-body small {
    display: block;
    color: var(--muted);
    margin: 6px 0;
}

.mobile-card .btn {
    margin-top: 8px;
}

@media (max-width: 900px) {
    html {
        overflow-x: hidden;
    }

    .container {
        width: 94%;
        max-width: 100%;
        margin: 18px auto;
        min-width: 0;
        box-sizing: border-box;
    }

    /* display:contents + flex üst üste binince taşma ve hamburger hizası bozuluyordu */
    .header {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 10px 12px;
    }

    .header-left {
        grid-column: 1;
        grid-row: 1;
        min-width: 0;
    }

    .header-left .header-logo-link {
        min-width: 0;
        max-width: 100%;
    }

    .header-right {
        display: contents;
    }

    .menu-toggle {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
        align-self: center;
    }

    .header h1,
    .header h2 {
        font-size: 28px;
        margin-bottom: 0;
    }

    .header-logo-link {
        gap: 8px;
    }

    .header-logo-icon {
        width: 32px;
        height: 32px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .header .nav {
        display: none !important;
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 8px;
        margin-top: 0;
        overflow: visible;
        flex-wrap: nowrap;
        padding-bottom: 0;
    }

    .header .nav.open {
        display: flex !important;
    }

    .header .nav a {
        width: 100%;
        justify-content: flex-start;
    }

    .header .nav .nav-upcoming {
        width: 100%;
        justify-content: flex-start;
    }

    .header .nav .nav-dropdown {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .header .nav .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .header .nav .nav-dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 8px;
        box-shadow: none;
    }

    .header .nav .user-info {
        margin-left: 0 !important;
        display: block;
        padding-top: 8px;
        color: var(--muted);
    }

    .header .nav .user-info .profile-dropdown {
        width: 100%;
        position: relative;
    }

    .header .nav .user-info .profile-link {
        width: 100%;
        justify-content: space-between;
        min-height: 42px;
        padding: 10px 14px;
        border-radius: 11px;
        font-size: 14px;
        background: rgba(250, 204, 21, 0.18);
        border: 1px solid rgba(250, 204, 21, 0.45);
        color: #ffffff !important;
    }

    .header .nav .user-info .profile-link .profile-link-text {
        display: none;
    }

    .header .nav .user-info .profile-link .profile-link-mobile-text {
        display: inline-block;
    }

    .user-info .profile-link-text strong {
        font-size: 14px;
    }

    .header .nav .user-info .profile-menu {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: auto;
        width: 100%;
        margin-top: 0;
        box-shadow: 0 18px 30px rgba(0, 0, 0, 0.32);
    }

    .header .nav .user-info a {
        min-height: 42px;
        font-size: 14px;
    }

    .nav a,
    .btn {
        min-height: 42px;
        padding: 10px 14px;
        border-radius: 11px;
        font-size: 14px;
    }

    .card {
        padding: 18px;
        border-radius: 18px;
    }

    .card h2,
    .card h3 {
        font-size: 23px;
    }

    input,
    select,
    textarea {
        min-height: 46px;
        font-size: 15px;
    }

    table {
        min-width: 720px;
    }

    .araclar-table-card > table,
    .araclar-table-card table,
    .cop-table-card > table,
    .cop-table-card table {
        display: none !important;
    }

    .araclar-table-card .mobile-cards,
    .cop-table-card .mobile-cards {
        display: block !important;
    }

    /* Detayli gorunumde tabloyu mobilde gizleme. Yatay kaydirma ile goster. */
    .araclar-list-wrap .araclar-list-table {
        display: table !important;
    }

    .araclar-ozet-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .araclar-ozet-kart {
        width: 100%;
    }

    .araclar-ozet-kart-genis {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 15px;
    }

    .container {
        width: 96%;
        margin: 14px auto;
    }

    .header h1,
    .header h2 {
        font-size: 24px;
    }

    .header-logo-link {
        gap: 7px;
    }

    .header-logo-icon {
        width: 26px;
        height: 26px;
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .nav a,
    .btn {
        min-height: 40px;
        padding: 9px 12px;
        font-size: 13px;
    }

    .card {
        padding: 15px;
    }

    .card h2,
    .card h3 {
        font-size: 21px;
    }

    th,
    td {
        padding: 11px 12px;
        font-size: 13px;
    }

    table {
        min-width: 620px;
    }

    .table-card {
        border-radius: 16px;
        -webkit-overflow-scrolling: touch;
    }

    .card,
    .table-card {
        width: 100%;
    }

    .araclar-ozet-kart,
    .araclar-ozet-kart-genis {
        min-height: 62px !important;
        padding: 7px 8px !important;
    }

    .araclar-ozet-kart small {
        margin-bottom: 2px;
        font-size: 12px;
    }

    .araclar-ozet-kart b {
        font-size: 22px;
    }

}

@media (max-width: 480px) {
    .container {
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .card,
    .table-card {
        border-radius: 14px;
    }

    .nav a,
    .btn {
        white-space: nowrap;
    }

    .header-logo-link span {
        display: inline-block;
        max-width: min(200px, 48vw);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        vertical-align: bottom;
    }

    .araclar-section-title {
        font-size: 22px;
    }

    .araclar-sort-pill {
        font-size: 11px;
        padding: 6px 10px;
    }
}

@media (min-width: 901px) {
    .mobile-cards {
        display: none !important;
    }
}
@media (max-width: 900px) {
    .musteriler-table-card table {
        display: none !important;
    }

    .musteriler-table-card + .mobile-cards {
        display: block !important;
    }
}

@media (min-width: 901px) {
    .mobile-cards {
        display: none !important;
    }
}
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.dash-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    text-align: center;
    text-decoration: none;
    color: var(--text);
    font-size: 20px;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
}

.dash-card:hover {
    transform: translateY(-3px);
    background: var(--card-soft);
}

/* Tablet */
@media (max-width: 900px) {
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Telefon */
@media (max-width: 500px) {
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Araclar page */
.araclar-section-card {
    padding: 22px;
}

.araclar-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 8px;
}

.araclar-section-title {
    margin: 0;
    font-size: clamp(24px, 2.2vw, 30px);
    font-weight: 800;
    line-height: 1.15;
}

.araclar-trash-btn {
    padding: 9px 14px;
    min-height: auto;
}

.araclar-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-left: auto;
}

.araclar-bottom-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 14px;
}

.araclar-view-switch {
    display: inline-flex;
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.65);
}

.araclar-view-btn {
    color: #cbd5e1;
    text-decoration: none;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    border-right: 1px solid rgba(148, 163, 184, 0.3);
}

.araclar-view-btn:last-child {
    border-right: 0;
}

.araclar-view-btn:hover {
    color: #ffffff;
    background: rgba(51, 65, 85, 0.55);
}

.araclar-view-btn.active {
    background: rgba(250, 204, 21, 0.18);
    color: var(--yellow);
}

.araclar-view-switch-wrap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.araclar-view-label {
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 600;
}

.araclar-card-sort-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px 12px;
    margin-bottom: 14px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(148, 163, 184, 0.16);
}

.araclar-card-sort-label {
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.araclar-card-sort-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.araclar-sort-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    color: #e2e8f0 !important;
    background: rgba(51, 65, 85, 0.55);
    border: 1px solid rgba(148, 163, 184, 0.22);
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.araclar-sort-pill:hover {
    border-color: rgba(250, 204, 21, 0.35);
    color: #ffffff !important;
    background: rgba(51, 65, 85, 0.85);
}

.araclar-sort-pill.active {
    background: rgba(250, 204, 21, 0.16);
    border-color: rgba(250, 204, 21, 0.45);
    color: var(--yellow) !important;
}

.araclar-ozet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 10px;
    margin-bottom: 14px;
}

.araclar-ozet-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    margin: 0 0 12px !important;
    min-height: 50px;
    padding: 12px 16px;
    border: 1px solid rgba(244, 114, 182, 0.42);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.32), rgba(236, 72, 153, 0.32), rgba(59, 130, 246, 0.32), rgba(250, 204, 21, 0.32)) !important;
    color: #ffffff !important;
    font-weight: 800;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 8px 22px rgba(76, 29, 149, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.araclar-ozet-toggle:hover {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.32), rgba(236, 72, 153, 0.32), rgba(59, 130, 246, 0.32), rgba(250, 204, 21, 0.32)) !important;
    color: #ffffff !important;
    transform: none !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 8px 22px rgba(76, 29, 149, 0.35);
}

.araclar-ozet-wrap {
    margin-bottom: 10px;
}

.araclar-ozet-kart {
    background: linear-gradient(160deg, rgba(20, 31, 52, 0.92), rgba(10, 20, 38, 0.9));
    border: 1px solid rgba(120, 200, 255, 0.25);
    border-radius: 16px;
    padding: 18px 16px;
    min-height: 132px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 10px 22px rgba(0, 0, 0, 0.25);
}

.araclar-ozet-kart-neon::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 18px rgba(120, 220, 255, 0.2);
}

.araclar-ozet-kart small {
    display: block;
    color: #dbeafe;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 0 0 8px rgba(125, 211, 252, 0.25);
}

.araclar-ozet-kart:not(.araclar-ozet-kart-genis) small {
    font-size: 16px;
    text-align: center;
}

.araclar-ozet-kart b {
    display: block;
    color: #ffffff;
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: -0.4px;
    text-align: center;
    text-shadow: 0 0 14px rgba(147, 197, 253, 0.25);
}

.araclar-ozet-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.araclar-ozet-kart-genis {
    min-height: 132px;
    justify-content: flex-start;
}

.araclar-ozet-kart-maliyet b {
    color: #fcd34d;
    text-shadow: 0 0 14px rgba(250, 204, 21, 0.35);
}

.araclar-ozet-ikon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin: 0 auto 10px;
    border-radius: 12px;
    background: rgba(125, 211, 252, 0.12);
    border: 1px solid rgba(125, 211, 252, 0.32);
    color: #bae6fd;
    font-size: 26px;
    text-shadow: 0 0 10px rgba(125, 211, 252, 0.4);
}

.araclar-ozet-kart-maliyet .araclar-ozet-ikon {
    color: #fde68a;
    border-color: rgba(250, 204, 21, 0.4);
    background: rgba(250, 204, 21, 0.14);
    text-shadow: 0 0 10px rgba(250, 204, 21, 0.45);
}

#araclarProfitPercent {
    color: var(--yellow);
    font-size: 14px;
    font-weight: 800;
}

#araclarProfitRange {
    width: 100%;
    margin-top: 0;
    margin-bottom: 2px;
    accent-color: #38bdf8;
}

.araclar-ozet-kart-genis .araclar-ozet-head {
    margin-bottom: 2px;
}

.araclar-ozet-kart-genis .profit-results div:first-child b {
    color: #fcd34d;
    text-shadow: 0 0 10px rgba(250, 204, 21, 0.35);
}

.araclar-ozet-kart-genis .profit-results div:last-child b {
    color: #6ee7b7;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.35);
}

.araclar-list-wrap {
    overflow-x: auto;
}

.araclar-list-table {
    width: 100%;
}

.araclar-sort-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: inherit;
    text-decoration: none;
}

.araclar-sort-link:hover {
    color: var(--yellow);
}

.metric-center {
    text-align: center;
}

th.metric-center .araclar-sort-link {
    width: 100%;
    justify-content: center;
}

.araclar-list-row {
    cursor: pointer;
}

.araclar-list-row:hover {
    background: rgba(250, 204, 21, 0.08);
}

.araclar-search-wrap {
    margin: 0;
    max-width: none;
    width: 100%;
    min-width: 0;
}

.araclar-search-wrap input {
    width: 100%;
}

.araclar-search-bar {
    display: flex;
    align-items: stretch;
    gap: 8px;
}

.araclar-search-bar input {
    flex: 1 1 auto;
    min-width: 0;
}

.araclar-search-btn {
    min-height: 46px;
    padding: 0 14px;
    white-space: nowrap;
}

.araclar-tools-row {
    display: grid;
    grid-template-columns: minmax(0, 70%) minmax(0, 30%);
    align-items: stretch;
    gap: 8px;
    margin: 10px 0 8px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.araclar-tools-row .araclar-ozet-toggle {
    margin: 0;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    width: 100%;
}

.araclar-tools-row .araclar-search-wrap {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 700px) {
    .araclar-tools-row {
        grid-template-columns: minmax(0, 58%) minmax(0, 42%);
        gap: 4px;
        width: 100%;
        max-width: 100%;
    }

    .araclar-tools-row .araclar-ozet-toggle {
        width: 100%;
        min-width: 0;
        padding-left: 6px;
        padding-right: 6px;
        font-size: 12px;
        white-space: normal;
        line-height: 1.2;
    }

    .araclar-tools-row .araclar-ozet-toggle i {
        display: none;
    }

    .araclar-tools-row .araclar-ozet-toggle span {
        display: block;
        width: 100%;
        text-align: center;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .araclar-search-wrap {
        max-width: 100%;
        width: 100%;
        padding-left: 8px;
        padding-right: 8px;
    }

    .araclar-search-wrap .input-money-wrap {
        min-width: 0;
        width: 100%;
    }

    .araclar-search-wrap input {
        min-width: 0;
        font-size: 12px;
        padding-right: 30px;
    }

    .araclar-search-wrap .money-symbol {
        right: 8px;
    }

    .araclar-search-btn {
        min-height: 40px;
        padding: 0 10px;
        font-size: 12px;
    }
}

.arac-list-no-photo {
    width: 70px;
    height: 50px;
    border-radius: 8px;
    border: 1px dashed rgba(148, 163, 184, 0.45);
    background: rgba(30, 41, 59, 0.7);
    color: #94a3b8;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4px;
}

.araclar-sales-title {
    margin-top: 30px;
    margin-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 6px;
}

.finans-hareket-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.finans-hareket-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(148, 163, 184, 0.25);
}

.finans-hareket-saat {
    min-width: 48px;
    font-size: 12px;
    color: #94a3b8;
    font-weight: 700;
}

.finans-hareket-text {
    color: #e2e8f0;
    font-size: 14px;
    white-space: normal;
    word-break: break-word;
}

.finans-hareket-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.finans-hareket-extra {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.finans-pill {
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(30, 41, 59, 0.55);
    color: #cbd5e1;
    white-space: normal;
}

@media (max-width: 600px) {
    .finans-hareket-item {
        flex-direction: column;
        gap: 6px;
    }

    .finans-hareket-saat {
        min-width: auto;
    }
}

.finans-pill.is-profit {
    color: #22c55e;
    border-color: rgba(34, 197, 94, 0.4);
    background: rgba(34, 197, 94, 0.12);
}

.finans-pill.is-loss {
    color: #f87171;
    border-color: rgba(248, 113, 113, 0.4);
    background: rgba(248, 113, 113, 0.12);
}

.finans-pill.is-trade {
    color: var(--yellow);
    border-color: rgba(250, 204, 21, 0.45);
    background: rgba(250, 204, 21, 0.14);
}

.araclar-month-title {
    margin-top: 20px;
    margin-bottom: 6px;
    color: #475569;
    font-weight: 600;
}

.arac-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
}

.arac-cards-grid-spaced {
    margin-bottom: 20px;
}

.arac-item-card {
    text-decoration: none;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(15, 23, 42, 0.45);
    transition: border-color 0.16s ease, transform 0.16s ease;
}

.arac-item-card:hover {
    transform: translateY(-2px);
    border-color: rgba(250, 204, 21, 0.4);
}

.arac-item-card img,
.arac-empty-photo {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.arac-foto-wrap {
    position: relative;
}

.arac-empty-photo {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-weight: 700;
    background: rgba(30, 41, 59, 0.8);
}

.arac-item-body {
    padding: 12px;
}

.arac-item-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.arac-item-top b {
    color: #ffffff;
    font-size: 16px;
}

.arac-price {
    color: var(--yellow);
    font-weight: 800;
    font-size: 13px;
}

.arac-title {
    color: #e2e8f0;
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.35;
}

.arac-item-body small {
    display: block;
    margin-top: 8px;
    color: #94a3b8;
    font-size: 12px;
}

.arac-basic-name {
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
}

.arac-basic-meta {
    margin-top: 6px !important;
    color: #cbd5e1 !important;
    font-size: 12px;
}

.arac-metric-row {
    margin-top: 10px;
    display: flex;
    gap: 8px;
    width: 100%;
}

.arac-maliyet-chip {
    width: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 8px 10px;
    border-radius: 11px;
    border: 1px solid rgba(250, 204, 21, 0.35);
    background: rgba(250, 204, 21, 0.14);
}

.arac-maliyet-label {
    color: #fde68a;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.arac-maliyet-chip strong {
    color: #facc15;
    font-size: 14px;
    line-height: 1.2;
}

.arac-gun-chip {
    width: 15%;
    min-width: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 8px 6px;
    border-radius: 11px;
    border: 1px solid rgba(250, 204, 21, 0.35);
    background: rgba(250, 204, 21, 0.14);
}

.arac-gun-chip strong {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.2;
}

.arac-plaka-badge {
    position: absolute;
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%);
    min-width: 130px;
    padding: 6px 14px;
    border-radius: 9px;
    border: 2px solid rgba(17, 24, 39, 0.9);
    background: rgba(248, 250, 252, 0.95);
    color: #0f172a;
    font-weight: 800;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.28);
}

/* Dashboard page */
.dashboard-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 28px;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.88));
    border: 1px solid rgba(250, 204, 21, 0.18);
    margin-bottom: 18px;
}

.dashboard-badge {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(250, 204, 21, 0.12);
    border: 1px solid rgba(250, 204, 21, 0.24);
    color: var(--yellow);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 12px;
}

.dashboard-hero h2 { margin: 0; font-size: 34px; letter-spacing: -0.8px; }
.dashboard-hero p { margin: 10px 0 0; color: #94a3b8; line-height: 1.55; }
.dashboard-hero-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.secondary-btn { background: #334155 !important; color: #fff !important; }
.icon-btn { gap: 8px; }

.hero-action-card {
    min-height: 74px; min-width: 190px; display: grid;
    grid-template-columns: 42px 1fr; grid-template-rows: auto auto;
    align-items: center; column-gap: 10px; text-decoration: none;
    border-radius: 18px; padding: 10px 14px;
    background: rgba(30, 41, 59, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.24);
    transition: border-color 0.15s ease, background 0.15s ease;
}
.hero-action-card i {
    grid-row: 1 / 3; width: 42px; height: 42px; display: inline-flex;
    align-items: center; justify-content: center; border-radius: 12px;
    color: var(--yellow); background: rgba(250, 204, 21, 0.12);
}
.hero-action-card span { color: #ffffff; font-weight: 800; line-height: 1.1; }
.hero-action-card small { color: #94a3b8; font-size: 12px; line-height: 1.1; }
.hero-action-card:hover { background: rgba(30, 41, 59, 1); border-color: rgba(250, 204, 21, 0.38); }

.masraflar-tabs {
    display: inline-flex;
    gap: 8px;
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    padding: 6px;
    margin-bottom: 14px;
}

.masraflar-tab-btn {
    border: 0;
    border-radius: 9px;
    padding: 8px 12px;
    background: transparent;
    color: #cbd5e1;
    font-weight: 700;
    cursor: pointer;
}

.masraflar-tab-btn.active {
    background: rgba(250, 204, 21, 0.18);
    color: #ffffff;
}

.masraflar-tab-btn.masraflar-tab-disabled {
    opacity: 0.6;
    cursor: not-allowed;
    position: relative;
}

.masraflar-tab-btn.masraflar-tab-disabled:hover::after {
    content: attr(data-upcoming);
    position: absolute;
    left: 50%;
    top: calc(100% + 8px);
    transform: translateX(-50%);
    background: rgba(15, 23, 42, 0.96);
    color: #ffffff;
    border: 1px solid rgba(250, 204, 21, 0.45);
    border-radius: 8px;
    padding: 5px 8px;
    font-size: 11px;
    white-space: nowrap;
    z-index: 20;
}

.masraf-list-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.masraf-vehicle-card {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 14px;
    padding: 12px;
}

.masraf-vehicle-head {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 10px;
}

.masraf-vehicle-head small {
    display: block;
    color: #94a3b8;
    font-size: 12px;
}

.masraf-vehicle-head b {
    color: #ffffff;
    font-size: 14px;
}

.masraf-vehicle-body > small {
    color: #94a3b8;
    font-weight: 700;
}

.masraf-item-list {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    display: grid;
    gap: 7px;
}

.masraf-item-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 13px;
    color: #e2e8f0;
    border-bottom: 1px dashed rgba(148, 163, 184, 0.22);
    padding-bottom: 6px;
}

.masraf-item-list li strong {
    white-space: nowrap;
}

.masraf-vehicle-total {
    margin-top: 10px;
    color: #facc15;
    font-weight: 700;
}

@media (max-width: 900px) {
    .masraf-list-grid {
        grid-template-columns: 1fr;
    }

    .masraf-vehicle-head {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .masraf-item-list li {
        flex-direction: column;
        align-items: flex-start;
    }
}

.masraflar-page {
    margin-bottom: 90px;
}

.masraf-ozet-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 12px;
}

.masraf-ozet-item {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 12px;
    padding: 10px;
}

.masraf-ozet-item small {
    display: block;
    color: #94a3b8;
    font-size: 12px;
    margin-bottom: 6px;
}

.masraf-ozet-item b {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.3;
}

.masraf-filter-row {
    display: grid;
    grid-template-columns: 1.3fr 1fr 0.9fr 0.9fr auto;
    gap: 8px;
    margin-bottom: 12px;
    align-items: start;
}

.masraf-filter-row input,
.masraf-filter-row select {
    min-height: 42px;
    height: 42px;
    padding-top: 0;
    padding-bottom: 0;
}

.masraf-filter-date-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #cbd5e1;
    font-size: 12px;
    font-weight: 600;
    margin: 0;
}

.masraf-filter-row .btn {
    min-height: 42px;
    height: 42px;
    margin: 0 !important;
    padding-top: 0;
    padding-bottom: 0;
    width: 100%;
    box-sizing: border-box;
}

.masraf-filter-btn-wrap {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.masraf-filter-btn-spacer {
    display: block;
    visibility: hidden;
    color: #cbd5e1;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    min-height: 14px;
    line-height: 14px;
}

.masraf-card-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 8px;
}

.masraf-card-top small {
    display: block;
    color: #94a3b8;
    font-size: 12px;
}

.masraf-card-top b {
    color: #ffffff;
}

.masraf-card-metrics {
    display: grid;
    gap: 6px;
    font-size: 13px;
    color: #cbd5e1;
    margin-bottom: 10px;
}

.masraf-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.masraf-detail-panel {
    margin-top: 10px;
    background: rgba(2, 6, 23, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 12px;
    padding: 10px;
}

.masraf-detail-head {
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.masraf-detail-list {
    display: grid;
    gap: 8px;
}

.masraf-detail-item,
.masraf-general-item {
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 10px;
    padding: 8px;
    background: rgba(15, 23, 42, 0.45);
}

.masraf-detail-line {
    display: grid;
    grid-template-columns: 0.8fr 0.9fr 1.5fr 0.8fr auto;
    gap: 8px;
    align-items: center;
    color: #e2e8f0;
    font-size: 13px;
}

.masraf-detail-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.btn-mini {
    min-height: 32px;
    padding: 6px 10px;
    font-size: 12px;
}

.btn-danger-soft {
    background: rgba(239, 68, 68, 0.32);
    border-color: rgba(248, 113, 113, 0.7);
    color: #fff5f5;
}

.btn-danger-soft:hover {
    background: rgba(239, 68, 68, 0.44);
    border-color: rgba(248, 113, 113, 0.9);
    color: #ffffff;
}

.masraf-edit-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 8px;
}

.masraf-add-switch {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.masraf-add-switch .btn.active {
    background: rgba(250, 204, 21, 0.18);
    border-color: rgba(250, 204, 21, 0.35);
}

.masraf-general-list {
    display: grid;
    gap: 10px;
}

.masraf-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 12px;
}

.masraf-pagination .btn.active {
    background: rgba(250, 204, 21, 0.18);
    border-color: rgba(250, 204, 21, 0.45);
}

.profile-page-card {
    max-width: 980px;
    margin: 0 auto 90px;
}

.profile-top-card {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 14px;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.2);
    margin-bottom: 12px;
}

.profile-top-card h3 {
    margin: 2px 0 4px;
}

.profile-top-card p {
    margin: 0;
    color: #cbd5e1;
}

.profile-top-meta {
    display: grid;
    gap: 6px;
    font-size: 13px;
    color: #e2e8f0;
}

.profile-alert {
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 10px;
    font-weight: 600;
}

.profile-alert-error {
    background: rgba(239, 68, 68, 0.18);
    border: 1px solid rgba(248, 113, 113, 0.45);
    color: #fecaca;
}

.profile-alert-success {
    background: rgba(34, 197, 94, 0.18);
    border: 1px solid rgba(74, 222, 128, 0.45);
    color: #bbf7d0;
}

.profile-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 12px;
}

.profile-sidebar {
    display: grid;
    gap: 8px;
    align-content: start;
    background: rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 12px;
    padding: 10px;
}

.profile-content {
    min-width: 0;
}

.profile-tab-btn {
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(15, 23, 42, 0.45);
    color: #e2e8f0;
    border-radius: 10px;
    padding: 9px 12px;
    cursor: pointer;
    font-weight: 700;
    text-align: left;
}

.profile-tab-btn.active {
    border-color: rgba(250, 204, 21, 0.45);
    background: rgba(250, 204, 21, 0.14);
}

.profile-tab-panel {
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    padding: 12px;
    background: rgba(15, 23, 42, 0.4);
}

.profile-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-items: start;
}

.profile-form-grid label {
    display: grid;
    gap: 5px;
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 600;
    align-content: start;
    align-self: start;
}

.profile-form-grid input,
.profile-form-grid select {
    min-height: 44px;
}

.profile-inline-error {
    color: #ef4444 !important;
    font-size: 12px;
    font-weight: 800;
    margin-top: 2px;
    display: block;
    min-height: 16px;
    visibility: hidden;
}

.profile-inline-error.is-visible {
    visibility: visible;
}

.profile-save-btn {
    grid-column: 1 / -1;
}

.profile-security-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 12px;
    align-items: start;
}

.profile-security-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    justify-items: start;
}

.profile-security-form label {
    width: 100%;
    display: grid;
    gap: 5px;
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 600;
}

.profile-security-form input {
    min-height: 44px;
}

.profile-security-form .btn {
    min-width: 170px;
    justify-self: center;
}

.profile-security-note {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 12px;
    padding: 12px;
}

.profile-security-note h4 {
    margin: 0 0 8px;
    color: #ffffff;
}

.profile-security-note p {
    margin: 0 0 8px;
    color: #cbd5e1;
    font-size: 13px;
    line-height: 1.45;
}

@media (max-width: 900px) {
    .profile-top-card {
        flex-direction: column;
    }
    .profile-layout {
        grid-template-columns: 1fr;
    }
    .profile-sidebar {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .profile-tab-btn {
        text-align: center;
        padding: 10px 8px;
        font-size: 12px;
    }
    .profile-security-layout {
        grid-template-columns: 1fr;
    }
    .profile-form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .profile-form-grid .profile-save-btn {
        grid-column: 1 / -1;
    }
}

.masraf-vehicle-card.level-normal {
    border-color: rgba(148, 163, 184, 0.18);
}

.masraf-vehicle-card.level-mid {
    border-color: rgba(250, 204, 21, 0.4);
    box-shadow: 0 0 0 1px rgba(250, 204, 21, 0.12) inset;
}

.masraf-vehicle-card.level-high {
    border-color: rgba(251, 146, 60, 0.45);
    box-shadow: 0 0 0 1px rgba(251, 146, 60, 0.14) inset;
}

@media (max-width: 1100px) {
    .masraf-ozet-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .masraf-filter-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .masraf-detail-line {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    .masraf-edit-form {
        grid-template-columns: 1fr;
    }
    .masraf-filter-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .masraf-filter-row .btn {
        grid-column: 1 / -1;
    }
    .masraf-ozet-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .masraf-card-top {
        grid-template-columns: 1fr;
    }
}

.dashboard-section, .portfolio-card {
    background: rgba(30, 41, 59, 0.94);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 22px;
    padding: 20px;
    margin-bottom: 18px;
}
.dashboard-section-title { margin-bottom: 14px; }
.dashboard-section-title h3 { margin: 0; font-size: 20px; color: #ffffff; }
.quick-actions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

.quick-action-card {
    min-height: 120px; display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 12px; border-radius: 22px; text-decoration: none; background: rgba(30, 41, 59, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.18); color: #ffffff; font-weight: 800;
    transition: background 0.18s ease, border-color 0.18s ease;
}
.quick-action-card:hover { background: rgba(30, 41, 59, 1); border-color: rgba(250, 204, 21, 0.38); }
.quick-action-card i {
    width: 46px; height: 46px; display: flex; align-items: center; justify-content: center;
    border-radius: 15px; background: rgba(250, 204, 21, 0.12); color: var(--yellow); font-size: 22px;
}

.portfolio-section { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 14px; margin-bottom: 18px; }
.portfolio-card { margin-bottom: 0; }
.portfolio-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.portfolio-stats div { background: rgba(15, 23, 42, 0.38); border: 1px solid rgba(148, 163, 184, 0.12); border-radius: 16px; padding: 16px; }
.portfolio-stats small { display: block; color: #94a3b8; font-weight: 800; margin-bottom: 8px; }
.portfolio-stats b { display: block; color: #ffffff; font-size: 28px; letter-spacing: -0.4px; }

.monthly-performance-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.monthly-performance-card { background: rgba(15, 23, 42, 0.38); border: 1px solid rgba(148, 163, 184, 0.12); border-radius: 16px; padding: 16px; }
.monthly-performance-card small { display: block; color: #94a3b8; font-weight: 800; margin-bottom: 8px; }
.monthly-performance-card b { display: block; color: #ffffff; font-size: 22px; letter-spacing: -0.3px; }
.monthly-performance-card small,
.monthly-performance-card b {
    text-align: center;
}
.monthly-performance-section .dashboard-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.monthly-performance-inline-rate {
    font-weight: 800;
    font-size: 16px;
    line-height: 1;
    white-space: nowrap;
}
.monthly-history-grid {
    display: grid;
    gap: 12px;
}
.monthly-history-card {
    background: rgba(15, 23, 42, 0.3);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 16px;
    padding: 14px;
}
.monthly-history-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
}
.monthly-history-head b {
    color: #ffffff;
    font-size: 16px;
}
.monthly-history-head span {
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}
.finans-ozet-card {
    text-align: center;
}
.finans-ozet-card b {
    text-align: center;
}

.vehicle-card-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.vehicle-mini-card {
    display: grid; grid-template-columns: 64px 1fr; gap: 10px; align-items: center; text-decoration: none;
    padding: 10px; border-radius: 16px; background: rgba(15, 23, 42, 0.38); border: 1px solid rgba(148, 163, 184, 0.12);
}
.vehicle-mini-card img, .vehicle-mini-card .empty-car-icon { width: 64px; height: 48px; border-radius: 11px; object-fit: cover; }
.vehicle-mini-card b { display: block; color: #ffffff; font-size: 14px; }
.vehicle-mini-card span { display: block; color: #94a3b8; font-size: 12px; margin-top: 3px; }

.dashboard-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 18px; }
.stat-card, .focus-card, .recent-card {
    background: rgba(30, 41, 59, 0.94); border: 1px solid rgba(148, 163, 184, 0.18); border-radius: 22px; padding: 20px;
}
.stat-card small { display: block; color: #94a3b8; font-weight: 800; margin-bottom: 8px; }
.stat-card b { display: block; color: #ffffff; font-size: 28px; letter-spacing: -0.4px; }
.stat-card span { display: block; margin-top: 8px; color: #94a3b8; font-size: 13px; }

.dashboard-bottom-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 14px; align-items: start; }
.focus-card { display: flex; gap: 15px; text-decoration: none; color: inherit; }
.focus-icon {
    width: 46px; height: 46px; flex-shrink: 0; border-radius: 15px; display: flex; align-items: center; justify-content: center;
    background: rgba(250, 204, 21, 0.12); color: var(--yellow); font-size: 20px;
}
.focus-card small { color: #94a3b8; font-weight: 800; }
.focus-card h3 { margin: 8px 0 6px; color: #ffffff; font-size: 20px; }
.focus-card p { margin: 0; color: #94a3b8; }

.section-title-row { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 12px; }
.section-title-row h3 { margin: 0; font-size: 20px; }
.section-title-row a { color: var(--yellow); text-decoration: none; font-weight: 800; font-size: 13px; }

.recent-list { display: grid; gap: 10px; }
.recent-list a {
    display: grid; grid-template-columns: 56px 1fr auto; gap: 12px; align-items: center;
    text-decoration: none; padding: 10px; border-radius: 15px; background: rgba(15, 23, 42, 0.38);
    border: 1px solid rgba(148, 163, 184, 0.12);
}
.recent-list img, .empty-car-icon { width: 56px; height: 42px; border-radius: 10px; object-fit: cover; }
.empty-car-icon { display: flex; align-items: center; justify-content: center; background: rgba(250, 204, 21, 0.12); color: var(--yellow); }
.recent-list b { display: block; color: #ffffff; }
.recent-list span { display: block; color: #94a3b8; font-size: 13px; margin-top: 3px; }
.recent-list strong { color: var(--yellow); font-size: 13px; white-space: nowrap; }
.empty-text { color: #94a3b8; margin: 0; }

@media (max-width: 900px) {
    .dashboard-hero { display: block; padding: 22px; }
    .dashboard-hero h2 { font-size: 28px; }
    .dashboard-hero-actions { justify-content: flex-start; margin-top: 16px; }
    .hero-action-card { min-width: 175px; }
    .quick-actions-grid { grid-template-columns: repeat(2, 1fr); }
    .dashboard-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .dashboard-bottom-grid, .portfolio-section { grid-template-columns: 1fr; }
    .monthly-performance-grid { grid-template-columns: repeat(2, 1fr); }
    .monthly-performance-inline-rate {
        font-size: 13px;
    }
    .monthly-history-head {
        flex-wrap: wrap;
    }
}

@media (max-width: 520px) {
    .dashboard-stats-grid, .vehicle-card-list { grid-template-columns: 1fr; }
    .quick-action-card { min-height: 105px; }
    .recent-list a { grid-template-columns: 50px 1fr; }
    .recent-list strong { grid-column: 2; }
    .portfolio-stats, .monthly-performance-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .portfolio-stats div, .monthly-performance-card { padding: 10px; }
    .portfolio-stats small, .monthly-performance-card small { font-size: 11px; }
    .portfolio-stats b { font-size: 16px; }
    .monthly-performance-card b { font-size: 14px; }
    .monthly-performance-inline-rate {
        font-size: 12px;
    }
    .monthly-history-card {
        padding: 10px;
    }
    .monthly-history-head b {
        font-size: 14px;
    }
    .monthly-history-head span {
        font-size: 11px;
    }
    .finans-ozet-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
    }
    .finans-ozet-grid .finans-ozet-card {
        padding: 10px;
    }
    .finans-ozet-grid .finans-ozet-card small {
        font-size: 12px;
    }
    .finans-ozet-grid .finans-ozet-card b {
        font-size: 16px;
    }
}

.profit-sim { margin-top: 14px; }
.profit-head { display: flex; justify-content: space-between; margin-bottom: 8px; color: #94a3b8; font-weight: 700; }
.profit-sim input { width: 100%; margin-bottom: 12px; }
.profit-results { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.profit-results div { background: rgba(15, 23, 42, 0.38); border: 1px solid rgba(148, 163, 184, 0.12); border-radius: 12px; padding: 10px; }
.profit-results b { color: var(--yellow); }

/* Shared utility classes */
.hidden { display: none !important; }
.card-mb-20 { margin-bottom: 20px; }
.card-center { margin: auto; }
.card-max-420 { max-width: 420px; }
.card-max-500 { max-width: 500px; }
.card-max-520 { max-width: 520px; }
.card-max-650 { max-width: 650px; }
.no-shadow { box-shadow: none !important; text-shadow: none !important; }
.btn-no-shadow { box-shadow: none !important; text-shadow: none !important; }
.btn-secondary-dark { background: #334155 !important; color: #fff !important; }
.btn-danger-inline { background: #ef4444 !important; color: #fff !important; }
.btn-center { text-decoration: none; display: inline-flex; align-items: center; justify-content: center; }
.btn-inline-flex { display: inline-flex; align-items: center; gap: 6px; }
.full-width { width: 100%; }
.mt-8 { margin-top: 8px !important; }
.mt-10 { margin-top: 10px !important; }
.mt-12 { margin-top: 12px !important; }
.mt-20 { margin-top: 20px !important; }
.mb-20 { margin-bottom: 20px !important; }
.muted-text { color: #94a3b8; }
.musteri-price { margin-top: 6px; font-weight: 700; }
.thumb-70x50 { width: 70px; height: 50px; object-fit: cover; border-radius: 8px; }
.form-row { display: flex; gap: 10px; }
.form-col { flex: 1; }

/* Araç ekle — Türkiye plakası önizleme + parça giriş */
.plaka-tr-plate {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 460px;
    min-width: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.32),
        inset 0 0 0 1px rgba(15, 23, 42, 0.22);
    margin: 0 auto 12px;
}

.plaka-tr-blue {
    flex: 0 0 42px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #0b4aa2 0%, #062d66 100%);
    padding: 8px 6px;
}

.plaka-tr-code {
    color: #ffffff;
    font-weight: 900;
    font-size: 15px;
    letter-spacing: 0.04em;
    line-height: 1;
}

.plaka-tr-white {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    padding: 12px 14px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #eef2f7 52%, #dfe6ef 100%);
    color: #0f172a;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.plaka-tr-part {
    font-size: clamp(22px, 4.5vw, 32px);
    line-height: 1;
    min-width: 1.25ch;
    text-align: center;
}

.plaka-tr-part-input {
    -webkit-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background: transparent;
    background-color: transparent;
    padding: 0;
    margin: 0;
    color: #0f172a;
    font-family: inherit;
    font-weight: 900;
    text-align: center;
    font-size: clamp(22px, 4.5vw, 32px);
    line-height: 1;
    caret-color: #0f172a;
    flex: 1 1 0;
    min-width: 0;
    box-shadow: none;
    border-radius: 0;
    display: block;
}

.plaka-tr-plate .plaka-tr-part-input::placeholder {
    color: rgba(15, 23, 42, 0.35);
}

.plaka-tr-part + .plaka-tr-part {
    border-left: 2px solid rgba(15, 23, 42, 0.2);
    margin-left: clamp(4px, 1vw, 12px);
    padding-left: clamp(4px, 1vw, 12px);
}

.plaka-inputs {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    max-width: 460px;
    min-width: 0;
    box-sizing: border-box;
    margin: 0 auto;
}

.plaka-inputs input {
    width: auto;
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
    font-weight: 800;
}

.plaka-inputs #plakaIl {
    flex: 0 0 88px;
    max-width: 88px;
}

.plaka-inputs #plakaHarf {
    flex: 1 1 auto;
}

.plaka-inputs #plakaNo {
    flex: 1 1 auto;
}

.muayene-picker-single {
    max-width: 520px;
}

.muayene-display-input {
    cursor: pointer;
    width: 100%;
}

.muayene-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.muayene-modal.is-open {
    display: flex;
}

.muayene-modal-backdrop {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0;
    border: 0;
    background: rgba(15, 23, 42, 0.78);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    cursor: pointer;
}

.muayene-modal-panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: min(400px, 100%);
    box-sizing: border-box;
    max-height: min(88vh, 620px);
    overflow: auto;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(30, 41, 59, 0.98);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
    padding: 14px 14px 16px;
}

.muayene-modal-head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.muayene-modal-title {
    font-weight: 800;
    font-size: 16px;
    color: #ffffff;
    text-align: center;
}

.muayene-modal-sub {
    margin: 0 0 12px;
    min-height: 1.2em;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #94a3b8;
}

.muayene-back,
.muayene-close {
    border: 0;
    border-radius: 10px;
    padding: 8px 10px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    background: rgba(51, 65, 85, 0.65);
    color: #e2e8f0;
}

.muayene-close {
    font-size: 22px;
    line-height: 1;
    padding: 4px 10px 6px;
}

.muayene-back:hover,
.muayene-close:hover {
    background: rgba(71, 85, 105, 0.85);
    color: #fff;
}

.muayene-step-body {
    margin-top: 4px;
}

.muayene-grid {
    display: grid;
    gap: 8px;
}

.muayene-grid-years {
    grid-template-columns: repeat(3, 1fr);
}

.muayene-grid-months {
    grid-template-columns: repeat(3, 1fr);
}

.muayene-pick-btn {
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 12px;
    padding: 12px 8px;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    background: rgba(15, 23, 42, 0.55);
    color: #e2e8f0;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
}

.muayene-pick-btn:hover {
    background: rgba(250, 204, 21, 0.18);
    border-color: rgba(250, 204, 21, 0.45);
    color: #fffbeb;
    transform: translateY(-1px);
}

.muayene-pick-older {
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.muayene-calendar {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.muayene-cal-head {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
    font-size: 11px;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.muayene-cal-cells {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.muayene-cal-empty {
    min-height: 42px;
}

.muayene-cal-day {
    min-height: 42px;
    padding: 8px 4px;
    font-size: 15px;
}

.consent-box {
    margin-top: 10px;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(15, 23, 42, 0.35);
}
.consent-check {
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.4;
}
.consent-check a {
    color: #facc15;
    text-decoration: underline;
}
.consent-check a:hover {
    color: #fde68a;
}
.consent-check input[type="checkbox"] {
    width: 12px;
    height: 12px;
    margin-top: 0;
    flex-shrink: 0;
    accent-color: #facc15;
}
.auth-helper-text {
    margin: 0 0 12px;
    text-align: center;
    color: #cbd5e1;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.1px;
}
.auth-switch-box {
    margin-top: 14px;
    padding: 14px 12px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.28);
    border: 1px solid rgba(148, 163, 184, 0.18);
}
.auth-login-btn {
    background: rgba(51, 65, 85, 0.85) !important;
    color: #e2e8f0 !important;
    border: 1px solid rgba(148, 163, 184, 0.28);
    transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.auth-login-btn:hover {
    background: rgba(71, 85, 105, 0.95) !important;
    border-color: rgba(250, 204, 21, 0.38);
    color: #ffffff !important;
    transform: translateY(-1px);
}
.login-meta-row {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.login-remember-wrap {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.login-remember-wrap input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-height: 16px;
    padding: 0;
    margin: 0;
    border-radius: 4px;
    vertical-align: middle;
}
.login-remember-label {
    margin: 0;
    font-size: 13px;
    color: #cbd5e1;
    font-weight: 700;
    cursor: pointer;
}
.login-forgot-link {
    color: var(--yellow) !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    margin-left: auto;
}
.login-forgot-link:hover {
    text-decoration: underline;
}
.phone-input-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}
.phone-prefix {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 13px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(15, 23, 42, 0.55);
    color: #ffffff;
    font-weight: 700;
    white-space: nowrap;
}
.row-stretch { align-items: stretch; }
.gap-8 { gap: 8px; }
.uppercase-input { text-transform: uppercase; }
.input-money-wrap {
    position: relative;
    min-width: 0;
    max-width: 100%;
}
.input-money { padding-right: 34px !important; width: 100%; max-width: 100%; box-sizing: border-box; }

/* Fiyat alanları — yukarı/aşağı ok yok; scroll ile değer değişmesin */
:is(
    input.input-money[type="number"],
    .input-money-wrap input[type="number"],
    .kp-money-input input[type="number"],
    .ba-money-input input[type="number"],
    .gb-money-input input[type="number"],
    .gb-masraf-money-input input[type="number"],
    .kdv-money-input input[type="number"],
    .money-input input[type="number"],
    input.ilan-pro-money-input[type="number"],
    input[data-money-input][type="number"],
    input[type="number"][name="tutar"],
    input[type="number"][name="satis_fiyati"],
    input[type="number"][name="noter_satis_rakami"],
    input[type="number"][name="noter_alis_rakami"],
    input[type="number"][name="gercek_alis_rakami"],
    input[type="number"][name="hasar_kaydi_tutari"],
    input[type="number"][name="butce_min"],
    input[type="number"][name="butce_max"],
    input[type="number"][name="takas_ust_alinan"],
    input[type="number"][name="takas_ust_verilen"],
    input#kdvAlis[type="number"],
    input#kdvSatis[type="number"]
) {
    -moz-appearance: textfield;
    appearance: textfield;
}

:is(
    input.input-money[type="number"],
    .input-money-wrap input[type="number"],
    .kp-money-input input[type="number"],
    .ba-money-input input[type="number"],
    .gb-money-input input[type="number"],
    .gb-masraf-money-input input[type="number"],
    .kdv-money-input input[type="number"],
    .money-input input[type="number"],
    input.ilan-pro-money-input[type="number"],
    input[data-money-input][type="number"],
    input[type="number"][name="tutar"],
    input[type="number"][name="satis_fiyati"],
    input[type="number"][name="noter_satis_rakami"],
    input[type="number"][name="noter_alis_rakami"],
    input[type="number"][name="gercek_alis_rakami"],
    input[type="number"][name="hasar_kaydi_tutari"],
    input[type="number"][name="butce_min"],
    input[type="number"][name="butce_max"],
    input[type="number"][name="takas_ust_alinan"],
    input[type="number"][name="takas_ust_verilen"],
    input#kdvAlis[type="number"],
    input#kdvSatis[type="number"]
)::-webkit-outer-spin-button,
:is(
    input.input-money[type="number"],
    .input-money-wrap input[type="number"],
    .kp-money-input input[type="number"],
    .ba-money-input input[type="number"],
    .gb-money-input input[type="number"],
    .gb-masraf-money-input input[type="number"],
    .kdv-money-input input[type="number"],
    .money-input input[type="number"],
    input.ilan-pro-money-input[type="number"],
    input[data-money-input][type="number"],
    input[type="number"][name="tutar"],
    input[type="number"][name="satis_fiyati"],
    input[type="number"][name="noter_satis_rakami"],
    input[type="number"][name="noter_alis_rakami"],
    input[type="number"][name="gercek_alis_rakami"],
    input[type="number"][name="hasar_kaydi_tutari"],
    input[type="number"][name="butce_min"],
    input[type="number"][name="butce_max"],
    input[type="number"][name="takas_ust_alinan"],
    input[type="number"][name="takas_ust_verilen"],
    input#kdvAlis[type="number"],
    input#kdvSatis[type="number"]
)::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.money-symbol {
    position: absolute; right: 12px; top: 50%;
    transform: translateY(-50%); color: #64748b; font-weight: 700;
}

.arac-sat-money-row {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    flex: 1;
    min-width: 0;
}
.arac-sat-price-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 10px;
    align-items: center;
}
.arac-sat-dual-inputs {
    display: contents;
}
.arac-sat-dual-inputs .input-money-wrap {
    min-width: 0;
}
.arac-sat-money-row .input-money-wrap {
    flex: 1;
}
.arac-sat-takas-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    min-height: 44px;
    min-width: 96px;
    border: 1px solid #ea580c;
    border-radius: 12px;
    transition: color 0.2s ease-in, border-color 0.2s ease-in, background-color 0.2s ease-in;
    position: relative;
    overflow: hidden;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    color: #ffffff;
    background: #f97316;
    z-index: 1;
    box-sizing: border-box;
    font-family: inherit;
}
.arac-sat-takas-btn::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleY(1) scaleX(1.25);
    top: 100%;
    width: 140%;
    height: 180%;
    background-color: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}
.arac-sat-takas-btn::after {
    content: "";
    position: absolute;
    left: 55%;
    transform: translateX(-50%) scaleY(1) scaleX(1.45);
    top: 180%;
    width: 160%;
    height: 190%;
    background-color: #fb923c;
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}
.arac-sat-takas-btn:hover:not(.is-active),
.arac-sat-takas-btn:focus-visible:not(.is-active) {
    color: #ffffff;
    border-color: #fdba74;
}
.arac-sat-takas-btn:hover:not(.is-active)::before,
.arac-sat-takas-btn:focus-visible:not(.is-active)::before {
    top: -35%;
    background-color: #fb923c;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
.arac-sat-takas-btn:hover:not(.is-active)::after,
.arac-sat-takas-btn:focus-visible:not(.is-active)::after {
    top: -45%;
    background-color: #fb923c;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
.arac-sat-takas-btn.is-active {
    color: #ffffff;
    border-color: #475569;
    background: #64748b;
}
.arac-sat-takas-btn.is-active::before {
    top: -35%;
    background-color: #94a3b8;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
.arac-sat-takas-btn.is-active::after {
    top: -45%;
    background-color: #64748b;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

/* Takas panel (Takas butonundan açılan sekme) */
.takas-panel {
    background: rgba(15, 23, 42, 0.42);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 16px;
    padding: 14px 14px 12px;
    margin-top: 12px;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}
.takas-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}
.takas-panel-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
}
.takas-panel-close {
    background: rgba(51, 65, 85, 0.45);
    border: 1px solid rgba(148, 163, 184, 0.22);
    color: #e2e8f0;
    border-radius: 12px;
    padding: 8px 12px;
    font-weight: 900;
    cursor: pointer;
}
.takas-panel-close:hover {
    background: rgba(71, 85, 105, 0.6);
    border-color: rgba(250, 204, 21, 0.35);
}
.takas-grid {
    display: grid;
    gap: 12px;
}
.takas-field label {
    margin: 0 0 7px;
    font-size: 13px;
}
.takas-input {
    width: 100%;
    max-width: 100%;
}
.takas-plaka-part-input {
    border: none;
    outline: none;
    background: transparent;
    padding: 0;
    margin: 0;
    color: inherit;
    font-family: inherit;
    font-weight: 900;
    text-align: center;
    height: auto;
    caret-color: #0f172a;
}
.takas-plaka-part-input::placeholder {
    color: rgba(15, 23, 42, 0.35);
}
.takas-row-3 {
    display: grid;
    grid-template-columns: 0.8fr 1fr 1fr;
    gap: 10px;
}
.takas-money-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

@media (max-width: 600px) {
    .takas-row-3 {
        grid-template-columns: 0.55fr 1fr 1fr;
        gap: 8px;
    }
    .takas-money-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .arac-sat-price-grid {
        grid-template-columns: 1fr 1fr;
    }
    .arac-sat-takas-btn {
        grid-column: 1 / -1;
        width: 100%;
        margin-top: 10px;
    }
}

/* Araç ekle — detaylı özellik (cam açılır sekme) */
.arac-ekle-extra-block {
    margin-top: 6px;
    max-width: 100%;
    min-width: 0;
}

.arac-ekle-details-toggle.arac-ekle-glass-toggle {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(148, 163, 184, 0.06));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-weight: 800;
    font-size: 15px;
    font-family: inherit;
    letter-spacing: 0.02em;
    cursor: pointer;
    text-align: left;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.15s ease,
        background 0.2s ease;
}

.arac-ekle-details-toggle.arac-ekle-glass-toggle:hover {
    border-color: rgba(250, 204, 21, 0.45);
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.14), rgba(255, 255, 255, 0.08));
    box-shadow:
        0 10px 36px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
}

.arac-ekle-details-toggle.arac-ekle-glass-toggle.is-open {
    border-color: rgba(250, 204, 21, 0.38);
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.12), rgba(30, 41, 59, 0.55));
}

.arac-ekle-details-toggle .detayli-toggle-icon {
    flex-shrink: 0;
    font-size: 12px;
    color: var(--yellow);
    filter: drop-shadow(0 0 8px rgba(250, 204, 21, 0.35));
    transition: transform 0.22s ease;
}

.arac-ekle-details-toggle.is-open .detayli-toggle-icon {
    transform: rotate(180deg);
}

.arac-ekle-details-panel {
    margin-top: 10px;
}

.arac-ekle-details-panel[hidden] {
    display: none !important;
}

.arac-ekle-details-panel-inner {
    padding: 16px;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(15, 23, 42, 0.42);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.arac-ekle-details-panel-inner .arac-ekle-detail-row + .arac-ekle-detail-row {
    margin-top: 12px;
}

.arac-ekle-details-panel-inner .arac-ekle-detail-row {
    align-items: flex-start;
}

.arac-ekle-details-panel-inner .arac-ekle-detail-col {
    min-width: 0;
}

.arac-ekle-details-panel-inner .arac-ekle-detail-col > label {
    margin-top: 0;
    margin-bottom: 6px;
}

.arac-ekle-details-panel-inner .muayene-picker-single {
    max-width: 100%;
    width: 100%;
}

.arac-ekle-details-panel-inner .arac-ekle-detail-col .input-money-wrap {
    margin-top: 0;
}

.arac-ekle-details-panel-inner .arac-ekle-detail-col textarea,
#aracNotlar {
    width: 100% !important;
    max-width: 100%;
    display: block;
    box-sizing: border-box;
}

.arac-yil-input {
    width: min(220px, 100%);
}

.arac-foto-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.arac-foto-upload-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 96px;
    border: 1px dashed rgba(250, 204, 21, 0.55);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.62), rgba(15, 23, 42, 0.52));
    color: #e2e8f0;
    cursor: pointer;
    transition: border-color .18s ease, transform .18s ease, background .18s ease;
    width: 100%;
    box-sizing: border-box;
}

.arac-foto-upload-card:hover {
    border-color: rgba(250, 204, 21, 0.9);
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.7), rgba(15, 23, 42, 0.6));
    transform: translateY(-1px);
}

.arac-foto-upload-icon {
    color: var(--yellow);
    font-size: 20px;
    line-height: 1;
}

.arac-foto-upload-title {
    font-weight: 800;
    font-size: 14px;
}

.arac-foto-upload-sub {
    color: #94a3b8;
    font-size: 11px;
}

.arac-ekle-marka-model-row {
    align-items: stretch;
}

.arac-ekle-yil-col-inline {
    flex: 0 0 120px;
    max-width: 120px;
}

.degisen-boya-btn {
    width: 100%;
    margin-top: 0;
}

.arac-ekle-details-panel-inner .degisen-boya-btn {
    margin-top: 0 !important;
    margin-right: 0 !important;
}

#degisenBoyaOzet {
    display: block;
    margin-top: 6px;
    line-height: 1.25;
}

.degisen-boya-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 1200;
    overflow: hidden;
    overflow-x: hidden;
}

.degisen-boya-modal.is-open {
    display: block;
}

.degisen-boya-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(2, 6, 23, 0.72);
}

.degisen-boya-panel {
    position: relative;
    z-index: 1;
    width: min(720px, calc(100vw - 24px));
    max-height: calc(100vh - 24px);
    overflow-y: auto;
    overflow-x: hidden;
    margin: 12px auto 0;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: #0f172a;
    padding: 14px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.degisen-boya-panel::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

html.modal-scroll-lock,
body.modal-scroll-lock {
    background: #0f172a;
}

html.modal-scroll-lock {
    overflow: hidden !important;
}

body.modal-scroll-lock {
    position: fixed;
    overflow: hidden !important;
    width: 100%;
}

.degisen-boya-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.degisen-boya-head h4 {
    margin: 0;
    color: #ffffff;
}

.degisen-boya-close {
    border: 0;
    background: transparent;
    color: #cbd5e1;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.degisen-boya-table {
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.35);
}

.degisen-boya-thead,
.degisen-boya-row {
    display: grid;
    grid-template-columns: minmax(150px, 1.35fr) repeat(4, minmax(44px, 0.5fr));
    align-items: center;
    column-gap: 4px;
}

.degisen-boya-thead {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(15, 23, 42, 0.6);
}

.db-col {
    text-align: center;
    font-size: 15px;
    font-weight: 800;
}

.db-col-orijinal { color: #94a3b8; }
.db-col-lokal { color: #fb923c; }
.db-col-boyali { color: #60a5fa; }
.db-col-degisen { color: #f97316; }

.degisen-boya-row {
    padding: 8px 10px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.13);
}

.degisen-boya-row:last-child {
    border-bottom: 0;
}

.degisen-boya-row-title {
    color: #e5e7eb;
    font-weight: 700;
    font-size: 17px;
    padding-right: 2px;
}

.db-dot {
    justify-self: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.db-dot input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.db-dot span {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 2px solid rgba(203, 213, 225, 0.6);
    background: transparent;
    transition: border-color 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
}

@media (max-width: 600px) {
    .degisen-boya-thead,
    .degisen-boya-row {
        grid-template-columns: minmax(116px, 1fr) repeat(4, minmax(36px, 0.45fr));
        column-gap: 2px;
    }

    .degisen-boya-thead {
        padding: 8px 8px;
    }

    .db-col {
        font-size: 12px;
    }

    .degisen-boya-row {
        padding: 7px 8px;
    }

    .degisen-boya-row-title {
        font-size: 13px;
        padding-right: 0;
    }

    .db-dot {
        width: 24px;
        height: 24px;
    }

    .db-dot span {
        width: 14px;
        height: 14px;
    }
}

.db-dot:hover span {
    border-color: rgba(250, 204, 21, 0.8);
}

.db-dot input:checked + span {
    border-color: #60a5fa;
    box-shadow: inset 0 0 0 6px #3b82f6;
    background: #dbeafe;
}

.degisen-boya-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 12px;
}

.ekleme-basarili-modal {
    position: fixed !important;
    inset: 0 !important;
    z-index: 2600 !important;
    background: rgba(2, 6, 23, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.ekleme-basarili-panel {
    width: min(560px, 100%);
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: #0f172a;
    padding: 20px;
    text-align: center;
}

.ekleme-basarili-panel h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 24px;
}

.ekleme-basarili-panel p {
    margin: 0;
    color: #cbd5e1;
}

.ekleme-basarili-actions {
    margin-top: 16px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.ekleme-basarili-actions .btn {
    margin: 0 !important;
}

.arac-ekle-submit-btn {
    margin-top: 20px;
}

.vehicle-cover-image { width: 100%; max-height: 260px; object-fit: cover; border-radius: 16px; margin-bottom: 12px; }

/* index.php */
.preview-login-btn { margin-top: 12px; width: 100%; }
.landing-top-links { position: absolute; top: 12px; right: 20px; display: flex; gap: 10px; z-index: 50; }
.header-btn { min-height: 36px; padding: 8px 14px !important; font-size: 13px !important; background: rgba(51, 65, 85, 0.9) !important; border: 1px solid rgba(148, 163, 184, 0.2); border-radius: 10px; color: #ffffff !important; }
.header-btn:hover { background: rgba(71, 85, 105, 1) !important; }
.landing-hero { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 28px; align-items: stretch; }
.hero-content { padding: 38px; border-radius: 28px; background: linear-gradient(135deg, rgba(30, 41, 59, 0.94), rgba(15, 23, 42, 0.88)); border: 1px solid rgba(250, 204, 21, 0.18); position: relative; overflow: hidden; }
.hero-content::before { content: ''; position: absolute; width: 260px; height: 260px; right: -90px; top: -90px; background: rgba(250, 204, 21, 0.12); filter: blur(10px); border-radius: 50%; }
.hero-badge { display: inline-flex; padding: 8px 12px; border-radius: 999px; background: rgba(250, 204, 21, 0.12); border: 1px solid rgba(250, 204, 21, 0.28); color: var(--yellow); font-size: 13px; font-weight: 800; margin-bottom: 18px; }
.hero-content h1 { position: relative; margin: 0; font-size: 50px; line-height: 1.05; letter-spacing: -1.4px; }
.hero-content p { position: relative; max-width: 650px; margin: 20px 0 0; color: #cbd5e1; font-size: 18px; line-height: 1.65; }
.hero-actions { position: relative; display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.hero-primary, .hero-secondary { padding: 14px 24px !important; font-size: 16px !important; }
.hero-secondary { background: #334155 !important; color: #fff !important; }
.hero-trust { position: relative; display: grid; gap: 6px; margin-top: 26px; color: #94a3b8; font-size: 14px; }
.hero-preview { height: 100%; display: flex; flex-direction: column; justify-content: center; border-radius: 28px; padding: 18px 18px 12px; background: rgba(30, 41, 59, 0.55); border: 1px solid rgba(148, 163, 184, 0.18); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: 0 25px 70px rgba(0, 0, 0, 0.28); }
.login-panel-head { display: flex; align-items: center; gap: 14px; padding: 4px 2px 12px; border-bottom: 1px solid rgba(148, 163, 184, 0.16); margin-bottom: 12px; }
.login-panel-icon { width: 48px; height: 48px; border-radius: 16px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(250, 204, 21, 0.24), rgba(250, 204, 21, 0.08)); border: 1px solid rgba(250, 204, 21, 0.32); font-size: 22px; flex-shrink: 0; }
.login-panel-head h3 { margin: 0 0 5px; font-size: 20px; color: #ffffff; }
.login-panel-head p { margin: 0; color: #94a3b8; font-size: 13px; line-height: 1.45; }
.preview-login { display: grid; gap: 8px; margin-top: 6px; }
.preview-login input { width: 100%; background: rgba(15, 23, 42, 0.6); border: 1px solid rgba(148, 163, 184, 0.2); border-radius: 12px; padding: 12px; color: #fff; transition: 0.2s; }
.preview-login input:focus { outline: none; border-color: rgba(250, 204, 21, 0.7); box-shadow: 0 0 0 2px rgba(250, 204, 21, 0.15); }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 22px; }
.landing-tools { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 16px; margin-top: 22px; align-items: start; }
.public-kdv-card { background: rgba(30, 41, 59, 0.9); border: 1px solid rgba(148, 163, 184, 0.18); border-radius: 22px; padding: 22px; }
.public-kdv-card h3 { margin: 8px 0 8px; font-size: 24px; color: var(--yellow); }
.public-kdv-card p { color: #cbd5e1; margin-bottom: 14px; line-height: 1.55; }
.feature-grid-home { grid-template-columns: repeat(2, 1fr); margin-top: 0; }
.feature-box { background: rgba(30, 41, 59, 0.9); border: 1px solid rgba(148, 163, 184, 0.18); border-radius: 22px; padding: 22px; }
.feature-box, .why-grid div { transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.feature-box:hover, .why-grid div:hover { border-color: rgba(250, 204, 21, 0.38); background: rgba(30, 41, 59, 0.98); }
.feature-icon { width: 46px; height: 46px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: rgba(250, 204, 21, 0.12); margin-bottom: 14px; font-size: 22px; color: var(--yellow); }
.feature-icon i { color: var(--yellow) !important; }
.feature-grid .feature-box:nth-child(3) .feature-icon i,
.feature-grid .feature-box:nth-child(4) .feature-icon i { color: var(--yellow) !important; }
.info-sections { margin-top: 22px; }
.info-section-card { background: linear-gradient(135deg, rgba(30, 41, 59, 0.94), rgba(15, 23, 42, 0.86)); border: 1px solid rgba(148, 163, 184, 0.18); border-radius: 26px; padding: 32px; }
.about-split-card { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 24px; align-items: stretch; }
.about-free-box { background: rgba(250, 204, 21, 0.08); border: 1px solid rgba(250, 204, 21, 0.22); border-radius: 22px; padding: 24px; }
.free-highlight { margin-top: 16px; padding: 14px; border-radius: 14px; background: rgba(15, 23, 42, 0.42); border: 1px solid rgba(148, 163, 184, 0.16); color: #fde68a; line-height: 1.55; font-weight: 700; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 22px; }
.why-grid div { background: rgba(15, 23, 42, 0.42); border: 1px solid rgba(148, 163, 184, 0.14); border-radius: 16px; padding: 15px; }
.why-grid b i { color: var(--yellow) !important; }
html { scroll-behavior: smooth; }

/* kdv pages and sales forms */
.kdv-description { color: #cbd5e1; line-height: 1.5; }
.kdv-row-top { margin-top: 14px; }
.kdv-page-layout, .arac-sat-layout, .arac-ekle-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    align-items: start;
    min-width: 0;
    max-width: 100%;
}
.info-panel { position: sticky; top: 20px; }
.info-warning { margin-top: 18px; border-radius: 14px; padding: 14px; line-height: 1.5; font-size: 14px; }
.info-box { margin-top: 12px; background: rgba(15, 23, 42, 0.45); border: 1px solid rgba(148, 163, 184, 0.2); border-radius: 12px; padding: 12px; }
.kdv-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.kdv-result { margin-top: 10px; background: rgba(15, 23, 42, 0.45); border: 1px solid rgba(148, 163, 184, 0.18); border-radius: 14px; padding: 12px; }
.kdv-result small { display: block; color: var(--muted); margin-bottom: 5px; font-weight: 800; font-size: 12px; }
.kdv-result b { font-size: 22px; color: #ffffff; }
.kdv-result.highlight { border-color: rgba(250, 204, 21, 0.42); background: rgba(250, 204, 21, 0.10); }
.kdv-result.highlight b { color: var(--yellow); }
.noter-alert-box { background: #f8d7da; color: #721c24; padding: 12px; border-radius: 10px; font-size: 14px; margin-bottom: 16px; text-align: center; }
.arac-sat-form .arac-sat-kaydet-btn {
    display: flex;
    margin-left: auto;
    margin-right: auto;
}

/* hizli_arac_sat */
.noter-alis-bilgi { display: none; margin-bottom: 10px; padding: 10px 12px; border-radius: 12px; background: rgba(239, 68, 68, 0.15); border: 1px solid rgba(239, 68, 68, 0.4); color: #fecaca; font-size: 13px; font-weight: 600; }
.kdv-toggle { margin-top: 18px; }
.kdv-toggle-header { display: flex; justify-content: space-between; align-items: center; cursor: pointer; padding: 14px 16px; border: 1px solid rgba(250, 204, 21, 0.28); border-radius: 16px; margin-bottom: 10px; background: linear-gradient(135deg, rgba(250, 204, 21, 0.16), rgba(15, 23, 42, 0.28)); font-weight: 800; color: #ffffff; }
#kdvToggleIcon { width: 26px; height: 26px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: rgba(250, 204, 21, 0.18); color: var(--yellow); font-size: 12px; }
.kdv-mini-box { border: 1px solid var(--border); border-radius: 18px; padding: 14px; background: rgba(15, 23, 42, 0.32); }

/* arac detay layouts */
.top-action-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.arrow-icon { font-size: 16px; }
.vehicle-detail-top-grid { display: grid; grid-template-columns: 3fr 1fr; gap: 20px; margin-bottom: 20px; }
.card-photo-wrap { padding: 0; overflow: hidden; }
.vehicle-detail-photo { width: 100%; height: 420px; object-fit: cover; display: block; }
.col-actions { display: flex; flex-direction: column; gap: 10px; }
.vehicle-detail-bottom-grid { display: grid; grid-template-columns: 1fr 3fr; gap: 20px; margin-top: 25px; min-width: 0; }
.vehicle-detail-bottom-grid .table-card {
    margin-top: 0;
    padding: 20px;
    overflow: hidden;
    min-width: 0;
}
.vehicle-detail-bottom-grid .table-card > h3 {
    margin: 0 0 12px;
    font-size: 28px;
}
.masraf-table-scroll {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    min-width: 0;
}
.masraf-table-scroll table {
    margin-top: 0;
    min-width: 640px;
}

.masraf-toggle-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.masraf-toggle-btn {
    margin: 0 !important;
}

.masraf-toggle-btn.active {
    background: #facc15;
    color: #111827;
}

.masraf-panels-wrap .masraf-panel {
    margin-top: 0;
}

.masraf-panels-wrap .table-card.masraf-panel {
    overflow: visible;
    padding-top: 18px;
}

.masraf-panels-wrap .table-card.masraf-panel > h3 {
    margin: 0 0 12px;
    padding-left: 6px;
    line-height: 1.2;
}

.masraf-modal {
    position: fixed;
    inset: 0;
    z-index: 2400;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.masraf-modal.is-open {
    display: flex;
}

.masraf-modal-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(2, 6, 23, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.masraf-modal-panel {
    position: relative;
    z-index: 1;
    width: min(1040px, calc(100vw - 24px));
    max-height: calc(100vh - 24px);
    overflow: auto;
    margin: 0;
}

.masraf-modal-head {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 10px;
}

.masraf-modal-close {
    border: 0;
    background: transparent;
    color: #cbd5e1;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.masraf-ekle-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 16px;
    min-width: 0;
}

.masraf-ekle-col,
.masraf-son-col {
    min-width: 0;
}

.masraf-son-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.masraf-son-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 6px;
}

.masraf-son-head h3 {
    margin: 0;
    font-size: clamp(22px, 2.2vw, 28px);
    line-height: 1.15;
}

.masraf-son-toplam {
    color: #ffffff;
    font-weight: 800;
    font-size: clamp(22px, 2.2vw, 28px);
    line-height: 1.15;
    text-align: right;
}

.masraf-son-item {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 10px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.32);
}

.masraf-son-item span {
    color: #cbd5e1;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.masraf-son-item b {
    color: #ffffff;
    flex-shrink: 0;
}

.masraf-ekle-col form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.masraf-ekle-col form select,
.masraf-ekle-col form input[type="text"],
.masraf-ekle-col form input[type="number"],
.masraf-ekle-col form input[type="date"] {
    min-height: 46px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.34);
    background: linear-gradient(180deg, rgba(226, 232, 240, 0.95), rgba(203, 213, 225, 0.92));
    color: #0f172a;
    font-weight: 700;
    padding: 10px 12px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.masraf-ekle-col form input::placeholder {
    color: #64748b;
    font-weight: 600;
}

/* yeni arac_detay */
.detay-yeni-wrap {
    padding: 14px;
}

.detay-yeni-baslik {
    margin: 0 0 12px;
    font-size: clamp(22px, 2.6vw, 34px);
    font-weight: 900;
    letter-spacing: -0.3px;
}

.detay-yeni-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.detay-yeni-title-row .detay-yeni-baslik {
    margin: 0;
}

.detay-yeni-title-row .masraf-toggle-btn {
    margin: 0 !important;
    white-space: nowrap;
}

.detay-yeni-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 14px;
}

.detay-yeni-mainfoto {
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.28);
    position: relative;
}

.detay-yeni-mainfoto img {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.detay-takas-uyari {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    z-index: 5;
    background: rgba(239, 68, 68, 0.20);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #ffffff;
    border-radius: 14px;
    padding: 10px 12px;
    font-weight: 900;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.detay-takas-uyari i {
    color: var(--yellow);
    margin-right: 8px;
}

.detay-takas-uyari em {
    font-style: italic;
}

.detay-takas-ust-uyari {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 6px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    text-align: left;
    font-size: 12px;
    line-height: 1.35;
}

.detay-takas-ust-uyari i {
    color: var(--yellow);
}

.detay-takas-ust-uyari em {
    font-style: italic;
    color: #ffffff;
    font-weight: 700;
}

.detay-yeni-thumbs {
    margin-top: 8px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
}

.detay-thumb-btn {
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
    background: #0f172a;
    cursor: pointer;
}

.detay-thumb-btn.active {
    border-color: rgba(250, 204, 21, 0.85);
    box-shadow: 0 0 0 2px rgba(250, 204, 21, 0.25);
}

.detay-thumb-btn img {
    width: 100%;
    height: 72px;
    object-fit: cover;
    display: block;
}

.detay-yeni-sag {
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.26);
    padding: 14px;
}

.detay-yeni-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.detay-yeni-actions .btn {
    margin: 0 !important;
}

.detay-yeni-fiyat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 10px;
}

.detay-yeni-fiyat-grid .detay-yeni-fiyat-box:nth-child(3) {
    grid-column: 1 / -1;
}

.detay-yeni-fiyat-box {
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 10px;
    padding: 10px 8px;
    background: linear-gradient(135deg, rgba(173, 216, 230, 0.16), rgba(148, 163, 184, 0.08));
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 6px 18px rgba(15, 23, 42, 0.28);
    text-align: center;
}

.detay-yeni-fiyat-box small {
    display: block;
    color: #dbeafe;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.detay-yeni-fiyat-box b {
    display: block;
    color: #ffffff;
    font-size: 19px;
    line-height: 1.2;
}

.detay-yeni-fiyat-box:nth-child(1) {
    background: linear-gradient(135deg, rgba(147, 197, 253, 0.22), rgba(191, 219, 254, 0.1));
}

.detay-yeni-fiyat-box:nth-child(2) {
    background: linear-gradient(135deg, rgba(167, 243, 208, 0.2), rgba(209, 250, 229, 0.1));
}

.detay-yeni-fiyat-box:nth-child(3) {
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: linear-gradient(135deg, rgba(254, 240, 138, 0.22), rgba(253, 224, 71, 0.1));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 8px 20px rgba(15, 23, 42, 0.35);
}

.detay-yeni-fiyat-box:nth-child(3) small {
    font-size: 18px;
}

.detay-yeni-fiyat-box:nth-child(3) b {
    font-size: 20px;
}

.detay-yeni-liste {
    border-top: 1px solid rgba(148, 163, 184, 0.22);
}

.detay-yeni-liste-wrap.has-extra {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.detay-yeni-liste-wrap.has-extra .detay-yeni-liste {
    align-self: stretch;
    width: 100%;
}

.detay-yeni-liste-wrap.has-extra .detay-liste-toggle {
    display: inline-flex;
    margin: 10px 0 0;
    gap: 10px;
    align-items: center;
    justify-content: center;
    max-width: 100%;
}

.detay-yeni-liste-wrap.has-extra.is-collapsed .detay-yeni-liste {
    position: relative;
}

.detay-yeni-liste-wrap.has-extra.is-collapsed .detay-yeni-liste::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 44px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.94));
    pointer-events: none;
}

html[data-gb-theme="light"] .detay-yeni-liste-wrap.has-extra.is-collapsed .detay-yeni-liste::after {
    background: linear-gradient(to bottom, rgba(241, 245, 249, 0), rgba(241, 245, 249, 0.96));
}

.detay-yeni-liste-wrap.has-extra.is-expanded .detay-yeni-liste::after {
    display: none;
}

.detay-liste-toggle {
    display: none;
}

.detay-yeni-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 9px 0;
    border-bottom: 1px dashed rgba(148, 163, 184, 0.2);
}

.detay-yeni-key {
    color: #cbd5e1;
    font-weight: 700;
}

.detay-yeni-val {
    color: #ffffff;
    font-weight: 700;
    text-align: right;
}

.detay-alt-sekme-card {
    margin-top: 14px;
    padding: 14px;
}

.detay-alt-sekme-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.detay-sekme-btn {
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.34);
    color: #cbd5e1;
    font-weight: 800;
    font-size: 17px;
    min-height: 48px;
    padding: 10px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.detay-sekme-btn.active {
    background: #facc15;
    color: #111827;
    border-color: rgba(250, 204, 21, 0.9);
}

.detay-alt-sekme-panel {
    margin-top: 12px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.28);
    color: #e2e8f0;
    padding: 12px;
    min-height: 96px;
    line-height: 1.55;
    white-space: normal;
}

.detay-sekme-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detay-sekme-form textarea {
    width: 100%;
    min-height: 110px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.34);
    background: linear-gradient(180deg, rgba(226, 232, 240, 0.95), rgba(203, 213, 225, 0.92));
    color: #0f172a;
    font-weight: 700;
    padding: 12px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
    resize: vertical;
}

.detay-sekme-form textarea::placeholder {
    color: #64748b;
    font-weight: 600;
}

.detay-sekme-form input[type="text"] {
    width: 100%;
    min-height: 46px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.34);
    background: linear-gradient(180deg, rgba(226, 232, 240, 0.95), rgba(203, 213, 225, 0.92));
    color: #0f172a;
    font-weight: 700;
    padding: 10px 12px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.detay-sekme-form input[type="text"]::placeholder {
    color: #64748b;
    font-weight: 600;
}

.detay-sekme-form .btn {
    align-self: center;
    min-width: 160px;
    min-height: 50px;
    font-size: 17px;
    font-weight: 800;
    padding: 10px 22px;
}

.detay-form-basarili {
    color: #86efac;
    font-weight: 800;
    font-size: 14px;
    margin-top: -2px;
    align-self: center;
    text-align: center;
}

.detay-satici-uyari {
    color: #facc15;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.form-help-warning {
    color: #facc15;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.degisen-boya-edit-grid {
    display: grid;
    gap: 8px;
    margin-top: 8px;
}

.degisen-boya-edit-row {
    display: grid;
    grid-template-columns: 1fr 180px;
    gap: 10px;
    align-items: center;
}

.degisen-boya-edit-row span {
    color: #e2e8f0;
    font-weight: 700;
}

.degisen-boya-edit-select {
    min-height: 42px;
}

.arac-duzenle-foto-card {
    width: 100%;
}

.duzenle-mevcut-foto-wrap {
    position: relative;
    margin-bottom: 12px;
}

.duzenle-mevcut-foto-wrap .vehicle-cover-image {
    margin-bottom: 0;
}

.duzenle-foto-sil-btn {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 0;
    background: rgba(220, 38, 38, 0.92);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.4);
}

.duzenle-foto-sil-btn:hover::after {
    content: "Mevcut fotoğrafı sil";
    position: absolute;
    right: 0;
    bottom: calc(100% + 8px);
    background: rgba(15, 23, 42, 0.95);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 8px;
    border-radius: 8px;
    white-space: nowrap;
}

.duzenle-mevcut-foto-wrap.is-marked-delete .vehicle-cover-image {
    opacity: 0.45;
    filter: grayscale(0.4);
}

.duzenle-mevcut-foto-wrap.is-marked-delete::after {
    content: "Kaydet butonuna bastığınızda kapak fotoğrafı silinecek";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 24px);
    text-align: center;
    color: #ffffff;
    font-weight: 800;
    font-size: 14px;
    line-height: 1.35;
    text-shadow: 0 1px 2px rgba(15, 23, 42, 0.7);
    pointer-events: none;
}

.arac-duzenle-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 15px;
    align-items: start;
}

.arac-duzenle-layout .card-max-650 {
    max-width: 100%;
    width: 100%;
}

.arac-duzenle-sidebar {
    position: sticky;
    top: 16px;
}

.arac-duzenle-sidebar h3 {
    margin: 0 0 10px;
}

.arac-duzenle-sidebar-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.arac-duzenle-sidebar-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 7px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(15, 23, 42, 0.25);
    text-decoration: none;
}

.arac-duzenle-sidebar-thumb {
    width: 100%;
    height: 76px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.arac-duzenle-sidebar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.arac-duzenle-sidebar-thumb span {
    color: #94a3b8;
    font-size: 11px;
    text-align: center;
    padding: 4px;
}

.arac-duzenle-sidebar-meta {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 2px;
}

.arac-duzenle-sidebar-meta strong {
    color: #ffffff;
    font-size: 12px;
    line-height: 1.2;
}

.arac-duzenle-sidebar-meta span {
    color: #cbd5e1;
    font-size: 12px;
}

.detay-todo-listesi {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.detay-todo-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(15, 23, 42, 0.24);
}

.detay-todo-check {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    border: 2px solid rgba(148, 163, 184, 0.65);
    background: transparent;
    cursor: pointer;
}

.detay-todo-item.is-complete .detay-todo-check {
    background: #22c55e;
    border-color: #22c55e;
    box-shadow: inset 0 0 0 4px rgba(15, 23, 42, 0.9);
}

.detay-todo-metin {
    color: #e2e8f0;
    font-weight: 700;
    flex: 1;
    text-align: left;
}

.detay-todo-item.is-complete .detay-todo-metin {
    text-decoration: line-through;
    opacity: 0.75;
}

.detay-masraf-listesi {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detay-masraf-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 12px;
    align-items: start;
}

.detay-masraf-sol {
    justify-self: stretch;
}

.detay-masraf-ekle-btn {
    width: 100%;
    margin-top: 10px;
    min-height: 48px;
    font-size: 17px;
    font-weight: 800;
}

.detay-masraf-sag {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detay-masraf-ozet-box {
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 12px;
    padding: 10px 12px;
    background: rgba(15, 23, 42, 0.32);
}

.detay-masraf-ozet-box small {
    display: block;
    color: #cbd5e1;
    font-weight: 700;
    margin-bottom: 4px;
}

.detay-masraf-ozet-box b {
    color: #ffffff;
    font-size: 20px;
    font-weight: 900;
}

.detay-masraf-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(15, 23, 42, 0.24);
}

.detay-masraf-item-sol {
    color: #cbd5e1;
    font-weight: 700;
}

.detay-masraf-item-sag {
    color: #ffffff;
    font-weight: 800;
    white-space: nowrap;
}

/* musteri/cop */
.musteri-detail-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 20px; }
.customer-note-textarea { width: 100%; border-radius: 13px; padding: 12px; font-size: 16px; background: #e8f0fe; color: #0f172a; border: 1px solid rgba(148, 163, 184, 0.28); outline: none; }
.customer-note-textarea:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.18); }
.cop-section-card { padding: 22px; }
.cop-empty-state {
    margin-top: 10px;
    border: 1px solid rgba(148, 163, 184, 0.26);
    border-radius: 14px;
    padding: 22px 14px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(236, 72, 153, 0.12));
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    text-align: center;
}

.cop-empty-state i {
    font-size: 28px;
    color: #facc15;
    margin-bottom: 8px;
}

.cop-empty-state p {
    margin: 0;
    color: #e2e8f0;
    font-size: 16px;
    font-weight: 800;
}

@media (max-width: 1000px) {
  .landing-hero, .about-split-card { grid-template-columns: 1fr; }
  .landing-tools { grid-template-columns: 1fr; }
  .feature-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .kdv-page-layout, .arac-sat-layout, .arac-ekle-layout, .vehicle-detail-top-grid, .vehicle-detail-bottom-grid, .musteri-detail-layout { grid-template-columns: 1fr; }
  .info-panel { position: static; }
  .detay-yeni-grid { grid-template-columns: 1fr; }
  .detay-yeni-mainfoto img { height: 300px; }
  .detay-yeni-fiyat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .masraf-ekle-grid { grid-template-columns: 1fr; }
  .masraf-modal-panel { width: min(700px, calc(100vw - 16px)); max-height: calc(100vh - 16px); }
  .detay-yeni-title-row { flex-wrap: wrap; }
  .detay-masraf-grid { grid-template-columns: 1fr; }
  .detay-masraf-sag { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
}
@media (max-width: 600px) {
  .form-row, .kdv-input-row { flex-direction: column; }
  .arac-sat-form .form-row {
    flex-direction: row;
    gap: 8px;
  }
  .arac-sat-form .form-row .form-col {
    width: 50%;
    max-width: 50%;
    min-width: 0;
  }
  .arac-duzenle-form .form-row {
    flex-direction: row;
    gap: 8px;
  }
  .arac-duzenle-form .form-row .form-col {
    width: 50%;
    max-width: 50%;
    min-width: 0;
  }
  .arac-duzenle-form .form-row.row-stretch .form-col {
    width: 100%;
    max-width: 100%;
  }
  .arac-duzenle-form .arac-ekle-details-panel-inner .arac-ekle-detail-row {
    flex-direction: column;
  }
  .arac-duzenle-form .arac-ekle-details-panel-inner .arac-ekle-detail-row .form-col {
    width: 100% !important;
    max-width: 100% !important;
  }
  .arac-duzenle-form .arac-ekle-details-panel-inner textarea {
    width: 100% !important;
    max-width: 100% !important;
  }
  .arac-ekle-details-panel-inner .arac-ekle-detail-row {
    align-items: stretch;
  }
  .arac-ekle-details-panel-inner .arac-ekle-detail-col {
    width: 100%;
    max-width: 100%;
  }
  #aracNotlar,
  #saticiAdres,
  #saticiNotu {
    width: 100% !important;
    max-width: 100% !important;
    display: block;
    box-sizing: border-box;
  }
  .arac-ekle-marka-model-row {
    flex-direction: row !important;
    flex-wrap: nowrap;
    gap: 8px;
  }
  .arac-ekle-yil-col-inline {
    flex: 0 0 84px;
    max-width: 84px;
  }
  .arac-ekle-inline-pair {
    flex-direction: row !important;
    flex-wrap: nowrap;
    gap: 8px;
    align-items: stretch;
  }
  .arac-ekle-inline-pair .form-col {
    flex: 1 1 0;
    min-width: 0;
  }
  .arac-ekle-inline-pair .input-money-wrap {
    flex: 1 1 0;
    min-width: 0;
  }
  .arac-ekle-inline-pair input,
  .arac-ekle-inline-pair .input-money {
    font-size: 14px;
    padding: 10px 8px;
    min-height: 44px;
  }
  .arac-ekle-layout .card {
    padding: 16px;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  .arac-ekle-form {
    min-width: 0;
    max-width: 100%;
  }

  .arac-ekle-inline-pair {
    max-width: 100%;
    min-width: 0;
  }

  .arac-ekle-layout .plaka-tr-plate {
    max-width: 100%;
  }
  .plaka-tr-part { font-size: 20px; }
  .plaka-tr-part + .plaka-tr-part { margin-left: 8px; padding-left: 8px; }
  .plaka-inputs { gap: 8px; }
  .plaka-inputs #plakaIl { flex: 0 0 76px; max-width: 76px; }

  .arac-ekle-form input[type="file"] {
    width: 100%;
    max-width: 100%;
    padding: 10px 8px;
    font-size: 14px;
  }

  .arac-ekle-form input[type="date"] {
    width: 100%;
    max-width: 100%;
  }

  .arac-ekle-form .btn[type="submit"],
  .arac-ekle-form button.btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    margin-right: 0;
    box-sizing: border-box;
  }

  .arac-cards-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .araclar-section-card {
    padding: 14px;
  }

  .araclar-section-header {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .araclar-view-switch-wrap {
    display: none !important;
  }

  .araclar-header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .araclar-section-title {
    text-align: center;
  }

  .araclar-satilan-btn {
    display: none !important;
  }

  .araclar-section-title {
    text-align: left;
    padding-left: 4px;
  }

  .araclar-main-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .araclar-main-header .araclar-header-actions {
    width: auto;
    justify-content: flex-end;
    margin-left: auto;
  }

  .satilan-main-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .satilan-main-header .araclar-header-actions {
    width: auto;
    justify-content: flex-end;
    margin-left: auto;
  }

  .satilan-main-header .araclar-view-switch-wrap {
    display: none !important;
  }

  .satilan-main-header .satilan-mevcut-btn {
    display: none !important;
  }

  .araclar-tools-row {
    align-items: stretch;
  }

  .araclar-card-sort-bar {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
  }

  .araclar-card-sort-links {
    justify-content: center;
    width: 100%;
  }

  .araclar-ozet-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .araclar-ozet-grid .araclar-ozet-kart-genis {
    grid-column: 1 / -1;
  }

  .muayene-modal-panel {
    width: 100%;
    max-width: min(400px, 100%);
    padding: 12px;
    box-sizing: border-box;
  }

  .vehicle-detail-photo {
    height: auto;
    min-height: 220px;
    max-height: 52vh;
  }

  .top-action-row {
    flex-wrap: nowrap;
    gap: 8px;
    align-items: center;
  }
  .top-action-row > .btn,
  .top-action-row .detay-yeni-actions .btn {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 13px;
    white-space: nowrap;
  }
  .top-action-row .detay-yeni-actions {
    width: auto;
    justify-content: flex-end;
    gap: 6px;
    flex-wrap: nowrap;
  }
  .detay-yeni-fiyat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }
  .detay-yeni-fiyat-box {
    padding: 8px 6px;
  }
  .detay-yeni-fiyat-box small {
    font-size: 15px;
  }
  .detay-yeni-fiyat-box b {
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  .arac-duzenle-layout {
    grid-template-columns: 1fr;
  }
  .arac-duzenle-sidebar {
    display: none;
  }

  .arac-ekle-layout .info-panel {
    display: none !important;
  }
}

/* landing page refresh */
.lp-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  margin-bottom: 18px;
}

.lp-hero-left,
.lp-hero-right,
.lp-card,
.lp-stat-card,
.lp-step,
.lp-cta {
  border-radius: 22px;
  border: 1px solid rgba(203, 213, 225, 0.9);
  background: linear-gradient(145deg, #ffffff, #ffffff);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

.lp-hero-left {
  padding: 32px;
}

.lp-chip {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(234, 179, 8, 0.5);
  background: rgba(250, 204, 21, 0.22);
  color: #a16207;
  font-weight: 800;
  font-size: 13px;
}

.lp-hero-left h1 {
  margin: 16px 0 12px;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -1px;
}

.lp-hero-left p {
  margin: 0;
  color: #334155;
  font-size: 17px;
  line-height: 1.65;
}

.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.lp-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  color: #334155;
  text-decoration: none;
  font-weight: 800;
  transition: all .2s ease;
}

.lp-outline-btn:hover {
  border-color: rgba(250, 204, 21, 0.45);
  color: #0f172a;
  transform: translateY(-1px);
}

.lp-trust-row {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.lp-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: #334155;
  font-size: 13px;
  font-weight: 700;
}

.lp-hero-right {
  padding: 24px;
}

.lp-hero-right h3 {
  margin: 0;
  color: #a16207;
  font-size: 24px;
}

.lp-hero-right p {
  color: #334155;
}

.lp-hero-right ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 18px;
  display: grid;
  gap: 10px;
}

.lp-hero-right li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1e293b;
  font-weight: 700;
}

.lp-hero-right li i {
  color: #22c55e;
}

.lp-upcoming-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 8px;
}

.lp-upcoming-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #64748b;
  font-weight: 700;
}

.lp-upcoming-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.2);
  border: 1px solid rgba(250, 204, 21, 0.45);
  color: #854d0e;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.lp-panel-btn {
  width: 100%;
}

.lp-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.lp-stat-card {
  padding: 18px;
  text-align: center;
}

.lp-stat-card strong {
  display: block;
  font-size: 30px;
  color: var(--yellow);
  line-height: 1;
}

.lp-stat-card span {
  display: block;
  margin-top: 8px;
  color: #334155;
  font-weight: 700;
}

.lp-section {
  margin-bottom: 18px;
}

.lp-section-head {
  margin-bottom: 14px;
}

.lp-section-head h2 {
  margin: 12px 0 0;
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.15;
}

.lp-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lp-card {
  padding: 24px;
}

.lp-card h3 {
  margin: 0 0 10px;
}

.lp-card p {
  margin: 0 0 10px;
  color: #334155;
  line-height: 1.65;
}

.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.lp-step {
  padding: 20px;
}

.lp-step-no {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #111827;
  background: var(--yellow);
}

.lp-step h3 {
  margin: 14px 0 8px;
}

.lp-step p {
  margin: 0;
  color: #334155;
  line-height: 1.6;
}

.lp-cta {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.lp-cta h2 {
  margin: 0 0 8px;
}

.lp-cta p {
  margin: 0;
  color: #334155;
}

.lp-footer-menu {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 18px 0 24px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.92));
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
}

.lp-footer-col {
  min-width: 0;
  padding: 6px 2px;
}

.lp-footer-col h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #0f172a;
}

.lp-footer-col a {
  display: block;
  color: #334155;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  margin-bottom: 8px;
}

.lp-footer-col a:hover {
  color: #4338ca;
  text-decoration: underline;
}

.lp-footer-col p {
  margin: 0;
  color: #475569;
  line-height: 1.6;
  font-size: 14px;
}

@media (max-width: 1000px) {
  .lp-hero,
  .lp-two-col {
    grid-template-columns: 1fr;
  }

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

  .lp-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .lp-hero-left,
  .lp-hero-right,
  .lp-card,
  .lp-step,
  .lp-cta {
    padding: 18px;
  }

  .lp-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .lp-footer-menu {
    grid-template-columns: 1fr;
  }
}

/* landing light + glassmorphism overrides */
body.landing-light {
  background:
    radial-gradient(circle at 12% 12%, rgba(59, 130, 246, 0.18), transparent 36%),
    radial-gradient(circle at 88% 15%, rgba(168, 85, 247, 0.16), transparent 34%),
    radial-gradient(circle at 82% 78%, rgba(236, 72, 153, 0.14), transparent 34%),
    radial-gradient(circle at 10% 84%, rgba(239, 68, 68, 0.12), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f5f3ff 45%, #fdf2f8 100%) !important;
  color: #0f172a !important;
}

body.landing-light .container {
  background: transparent;
}

body.landing-light .header {
  background: rgba(255, 255, 255, 0.18);
  border: 0;
  border-radius: 22px;
  padding: 10px 18px;
  box-shadow: 0 10px 24px rgba(76, 29, 149, 0.08);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
}

body.landing-light .header h1,
body.landing-light .header h2,
body.landing-light .header-logo-link,
body.landing-light .header-logo-link span {
  color: #0f172a !important;
}

body.landing-light .nav a,
body.landing-light .nav .btn {
  background: transparent;
  color: #334155 !important;
  border: 1px solid transparent;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 700;
}

body.landing-light .nav a:hover,
body.landing-light .nav .btn:hover {
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(148, 163, 184, 0.4);
  color: #111827 !important;
}

body.landing-light .lp-hero .btn,
body.landing-light .lp-cta .btn {
  background: linear-gradient(135deg, #6366f1, #a855f7) !important;
  border-color: rgba(139, 92, 246, 0.75) !important;
  color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(109, 40, 217, 0.28);
}

body.landing-light .lp-hero .btn:hover,
body.landing-light .lp-cta .btn:hover {
  background: linear-gradient(135deg, #6366f1, #a855f7) !important;
  border-color: rgba(139, 92, 246, 0.75) !important;
  color: #ffffff !important;
  transform: none !important;
  box-shadow: 0 10px 24px rgba(109, 40, 217, 0.28) !important;
}

body.landing-light .header-logo-icon {
  background: transparent !important;
  mix-blend-mode: multiply;
  filter: saturate(1.05) contrast(1.02);
}

body.landing-light .menu-toggle {
  background: rgba(255, 255, 255, 0.72);
  color: #334155;
  border: 1px solid rgba(203, 213, 225, 0.9);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

body.landing-light .lp-hero-left,
body.landing-light .lp-hero-right,
body.landing-light .lp-card,
body.landing-light .lp-stat-card,
body.landing-light .lp-step,
body.landing-light .lp-cta {
  background: rgba(255, 255, 255, 0.62) !important;
  border: 1px solid rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 16px 38px rgba(30, 41, 59, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body.landing-light .lp-footer-menu {
  background: rgba(255, 255, 255, 0.62) !important;
  border: 1px solid rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 16px 38px rgba(30, 41, 59, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}


body.landing-light .lp-hero-left h1,
body.landing-light .lp-section-head h2,
body.landing-light .lp-card h3,
body.landing-light .lp-step h3,
body.landing-light .lp-cta h2 {
  color: #111827;
}

body.landing-light .lp-hero-left p,
body.landing-light .lp-hero-right p,
body.landing-light .lp-card p,
body.landing-light .lp-step p,
body.landing-light .lp-stat-card span,
body.landing-light .lp-cta p {
  color: #475569;
}

body.landing-light .lp-chip {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.16), rgba(236, 72, 153, 0.2));
  border-color: rgba(236, 72, 153, 0.35);
  color: #7e22ce;
}

body.landing-light .lp-trust-row span {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(216, 180, 254, 0.55);
  color: #475569;
}

body.landing-light .lp-hero-right h3 {
  color: #7c3aed;
}

body.landing-light .lp-stat-card strong {
  color: #7c3aed;
}

body.landing-light .lp-step-no {
  background: linear-gradient(135deg, #60a5fa, #a855f7);
  color: #ffffff;
}

body.landing-light .lp-upcoming-list li {
  color: #64748b;
}

body.landing-light .lp-upcoming-badge {
  background: linear-gradient(135deg, rgba(251, 113, 133, 0.2), rgba(168, 85, 247, 0.2));
  border-color: rgba(244, 114, 182, 0.45);
  color: #9d174d;
}

/* Hakkımızda Alternating Rows */
.lp-about-row {
    display: flex;
    align-items: stretch;
    gap: 24px;
    margin-bottom: 60px;
    height: 250px;
}

.lp-about-row.lp-reverse {
    flex-direction: row-reverse;
}

.lp-about-text {
    flex: 0 0 calc(50% - 12px);
    width: calc(50% - 12px);
    max-width: calc(50% - 12px);
    height: 250px;
    box-sizing: border-box;
    margin: 0; /* Override lp-card default margin if any */
    overflow: hidden;
}

.lp-about-text h3 {
    margin-top: 0;
    font-size: 1.5rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #4338ca, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.lp-about-img {
    flex: 0 0 calc(50% - 12px);
    width: calc(50% - 12px);
    max-width: calc(50% - 12px);
    height: 250px;
    box-sizing: border-box;
    position: relative;
}

.lp-about-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

@media (max-width: 900px) {
    .lp-about-row,
    .lp-about-row.lp-reverse {
        flex-direction: column;
        gap: 30px;
        height: auto;
    }
    
    .lp-about-text,
    .lp-about-img {
        width: 100%;
        max-width: 100%;
    }

    .lp-about-text {
        height: auto;
        min-height: 250px;
    }

    .lp-about-img {
        height: 250px;
    }
    
    .lp-about-img img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        max-width: 100%;
    }
}


/* ========================================================================= */
/* vitrin_header.php — vitrin layout, header, sticky bar, lightbox */
/* ========================================================================= */

* { box-sizing: border-box; }
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
body {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #f1f5f9;
    color: #0f172a;
    line-height: 1.55;
    touch-action: manipulation;
}
.ilan-vitrin-shell {
    --gb-vitrin-max-w: 1480px;
    --gb-vitrin-gutter: clamp(14px, 2.2vw, 32px);
    width: min(calc(100% - var(--gb-vitrin-gutter) * 2), var(--gb-vitrin-max-w));
    max-width: 100%;
    margin: 24px auto;
    padding: 0 var(--gb-vitrin-gutter) 48px;
    box-sizing: border-box;
}
.ilan-vitrin-site-header {
    position: relative;
    z-index: 100;
    display: grid;
    grid-template-columns: minmax(0, auto) minmax(0, 1fr) minmax(0, auto);
    gap: 14px 18px;
    align-items: center;
    padding: 14px 18px;
    margin: 0 0 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
    border: 1px solid #e2e8f0;
    overflow: visible;
    font-family: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}
.ilan-vitrin-site-header-brand {
    display: contents;
}
.ilan-vitrin-nav-toggle {
    display: none;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 0;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    background: #ffffff;
    color: #0f172a;
    cursor: pointer;
}
.ilan-vitrin-nav-toggle:focus-visible {
    outline: 2px solid #1d4ed8;
    outline-offset: 2px;
}
.ilan-vitrin-nav-toggle-icon {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 20px;
}
.ilan-vitrin-nav-toggle-icon span {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
}
.ilan-vitrin-site-header.is-nav-open .ilan-vitrin-nav-toggle-icon span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.ilan-vitrin-site-header.is-nav-open .ilan-vitrin-nav-toggle-icon span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.ilan-vitrin-site-header.is-nav-open .ilan-vitrin-nav-toggle-icon span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.ilan-vitrin-nav-toggle-icon span {
    transition: transform 0.2s ease, opacity 0.15s ease;
}
.ilan-vitrin-site-header-drawer {
    display: contents;
    min-width: 0;
}
.ilan-vitrin-nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(15, 23, 42, 0.45);
    border: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
}
.ilan-vitrin-nav-backdrop.is-visible {
    display: block;
}
@media (min-width: 961px) {
    .ilan-vitrin-site-header-drawer {
        display: contents;
    }
}
@media (max-width: 960px) {
    .ilan-vitrin-shell {
        --gb-vitrin-gutter: max(8px, env(safe-area-inset-left, 0px));
        width: 100%;
        max-width: 100%;
        margin: 12px 0 18px;
        padding: 0 max(8px, env(safe-area-inset-left)) 40px max(8px, env(safe-area-inset-right));
    }
    .ilan-vitrin-site-header {
        grid-template-columns: 1fr;
        gap: 0;
        align-items: stretch;
        padding: 12px max(8px, env(safe-area-inset-left)) 12px max(8px, env(safe-area-inset-right));
    }
    .ilan-vitrin-site-header-brand {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        width: 100%;
    }
    .ilan-vitrin-nav-toggle {
        display: inline-flex;
    }
    .ilan-vitrin-site-header-drawer {
        display: none;
        flex-direction: column;
        gap: 16px;
        width: 100%;
        margin-top: 14px;
        padding-top: 14px;
        border-top: 1px solid #e2e8f0;
    }
    .ilan-vitrin-site-header.is-nav-open .ilan-vitrin-site-header-drawer {
        display: flex;
    }
    .ilan-vitrin-site-header-search {
        justify-self: stretch;
        max-width: none;
    }
    .ilan-vitrin-site-header-cta,
    .ilan-vitrin-site-header-actions {
        align-items: stretch;
        justify-self: stretch;
    }
    .ilan-vitrin-cta-wrap {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        justify-content: center;
    }
    .ilan-vitrin-cta-tooltip {
        display: none;
    }
    .ilan-vitrin-cta-note {
        display: block;
    }
    .ilan-vitrin-cta-btn {
        width: 100%;
        white-space: normal;
        text-align: center;
    }
    .ilan-vitrin-nav-auth {
        display: flex;
        gap: 10px;
        width: 100%;
    }
    .ilan-vitrin-nav-auth-btn {
        flex: 1 1 0;
        min-width: 0;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 11px 12px;
        border-radius: 10px;
        font-size: 0.82rem;
        font-weight: 800;
        text-decoration: none;
        text-align: center;
    }
    .ilan-vitrin-nav-auth-btn--login {
        color: #111827;
        background: #facc15;
        border: 1px solid rgba(217, 168, 0, 0.28);
        box-shadow: 0 8px 20px rgba(250, 204, 21, 0.18);
    }
    .ilan-vitrin-nav-auth-btn--register {
        color: #ffffff;
        background: rgba(51, 65, 85, 0.92);
        border: 1px solid rgba(148, 163, 184, 0.24);
    }
}
.ilan-vitrin-site-header-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #0f172a;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: -0.02em;
    min-width: 0;
}
.ilan-vitrin-site-header-logo img {
    height: 40px;
    width: auto;
    max-width: min(200px, 42vw);
    object-fit: contain;
    display: block;
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.ilan-vitrin-site-header .gb-btn {
    border: none;
    box-shadow: none;
}
.ilan-vitrin-site-header .gb-btn--secondary {
    background: #f1f5f9;
    color: #111827;
}
.ilan-vitrin-site-header .gb-btn--secondary:hover {
    background: #e2e8f0;
    color: #111827;
}
.ilan-vitrin-site-header .gb-btn--primary {
    color: #111827;
}
.ilan-vitrin-site-header .gb-btn--primary:hover {
    color: #111827;
}
.ilan-vitrin-site-header-search {
    justify-self: center;
    width: 100%;
    max-width: 520px;
    min-width: 0;
}
.ilan-vitrin-search-form {
    width: 100%;
    margin: 0;
}
.ilan-vitrin-search-inner {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}
.ilan-vitrin-search-inner {
    height: 2rem;
}
.ilan-vitrin-search-inner input[type="search"],
.ilan-vitrin-search-inner input[type="text"] {
    width: 100%;
    min-width: 0;
    height: 100%;
    min-height: 0;
    font: inherit;
    font-size: 0.8125rem;
    padding: 0 2.25rem 0 0.75rem;
    border-radius: 0.5rem;
    border: none;
    background: #f1f5f9;
    -webkit-appearance: none;
    appearance: none;
}
.ilan-vitrin-search-inner input:focus {
    outline: none;
    background: #e2e8f0;
    box-shadow: 0 0 0 2px rgba(250, 204, 21, 0.35);
}
.ilan-vitrin-search-submit {
    position: absolute;
    right: 3px;
    top: 50%;
    transform: translateY(-50%);
    width: 1.625rem;
    height: 1.625rem;
    padding: 0;
    border: 0;
    border-radius: 0.375rem;
    background: #1d4ed8;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}
.ilan-vitrin-search-submit:focus-visible {
    outline: 2px solid #1e3a8a;
    outline-offset: 2px;
}
.ilan-vitrin-site-header-cta,
.ilan-vitrin-site-header-actions {
    justify-self: end;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    min-width: 0;
    overflow: visible;
}
.ilan-vitrin-cta-wrap {
    position: relative;
    display: inline-flex;
    overflow: visible;
}
.ilan-vitrin-cta-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    z-index: 220;
    min-width: 132px;
    max-width: 200px;
    margin-bottom: 8px;
    padding: 6px 10px 7px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(4px);
    transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
    font-size: 0.72rem;
    font-weight: 600;
    color: #475569;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
}
.ilan-vitrin-cta-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -6px;
    border: 6px solid transparent;
    border-top-color: #e2e8f0;
}
.ilan-vitrin-cta-tooltip::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    margin-top: -1px;
    border: 5px solid transparent;
    border-top-color: #ffffff;
    z-index: 1;
}
.ilan-vitrin-cta-wrap:hover .ilan-vitrin-cta-tooltip,
.ilan-vitrin-cta-wrap:focus-within .ilan-vitrin-cta-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.ilan-vitrin-cta-note {
    display: none;
    margin: 0;
    font-size: 0.62rem;
    font-weight: 650;
    color: #64748b;
    line-height: 1.28;
    text-align: center;
}
.ilan-vitrin-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 16px;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-decoration: none;
    color: #111827;
    background: #facc15;
    border: 1px solid rgba(217, 168, 0, 0.28);
    box-shadow: 0 12px 28px rgba(250, 204, 21, 0.28);
    white-space: nowrap;
}
@media (min-width: 961px) {
    .ilan-vitrin-nav-auth {
        display: none;
    }
    .gb-vitrin-header .ilan-vitrin-site-header-actions {
        justify-self: end;
    }
}
/* —— Vitrin header: profil & üye ol dropdown —— */
.gb-vitrin-header-auth {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.gb-vitrin-dropdown,
.gb-vitrin-profile {
    position: relative;
}
.gb-vitrin-dropdown__menu,
.gb-vitrin-profile__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 120;
    min-width: 12rem;
    padding: 0.35rem 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}
.gb-vitrin-dropdown__menu[hidden],
.gb-vitrin-profile__menu[hidden] {
    display: none;
}
.gb-vitrin-dropdown__item,
.gb-vitrin-profile__menu-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.9rem;
    color: #0f172a;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}
.gb-vitrin-dropdown__item:hover,
.gb-vitrin-profile__menu-link:hover {
    background: #f8fafc;
}
.gb-vitrin-profile__toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem;
    border: 0;
    background: transparent;
    cursor: pointer;
    border-radius: 999px;
    color: #0f172a;
    font: inherit;
}
.gb-vitrin-profile__toggle:focus-visible {
    outline: 2px solid #facc15;
    outline-offset: 2px;
}
.gb-vitrin-profile__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: #fef9c3;
    color: #854d0e;
    font-size: 0.75rem;
    font-weight: 700;
}
.gb-vitrin-profile__name {
    max-width: 9rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.875rem;
    font-weight: 600;
}
.gb-vitrin-profile__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    min-width: 0;
}
.gb-vitrin-account-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.1rem 0.45rem;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 0.625rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.gb-vitrin-profile__chevron {
    font-size: 0.7rem;
    color: #64748b;
}
.gb-vitrin-profile__menu {
    min-width: 14rem;
}
.gb-vitrin-profile__menu-head {
    padding: 0.75rem 0.9rem;
    border-bottom: 1px solid #e2e8f0;
}
.gb-vitrin-profile__menu-head strong {
    display: block;
    font-size: 0.875rem;
    color: #0f172a;
}
.gb-vitrin-profile__menu-head span {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.75rem;
    color: #64748b;
    word-break: break-word;
}
.gb-vitrin-profile__menu-foot {
    border-top: 1px solid #e2e8f0;
}
.gb-vitrin-profile__menu-link--danger {
    color: #b91c1c;
}
@media (max-width: 960px) {
    .gb-vitrin-profile__name,
    .gb-vitrin-profile__chevron {
        display: none;
    }
    .ilan-vitrin-site-header-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    .gb-vitrin-header-auth {
        flex-direction: column;
        width: 100%;
    }
    .gb-vitrin-header-auth .gb-btn,
    .gb-vitrin-header-auth .gb-vitrin-dropdown__toggle {
        width: 100%;
    }
    .gb-vitrin-dropdown__menu,
    .gb-vitrin-profile__menu {
        position: static;
        margin-top: 0.35rem;
        box-shadow: none;
    }
}
/* —— Vitrin auth sayfaları —— */
.gb-vitrin-auth-page {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(160deg, #f8fafc 0%, #fff 45%, #fefce8 100%);
}
.gb-vitrin-auth {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 24px 16px;
    box-sizing: border-box;
}
.gb-vitrin-auth__card {
    width: min(100%, 28rem);
    padding: 1.75rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}
.gb-vitrin-auth__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
    text-decoration: none;
    color: #0f172a;
    font-weight: 700;
}
.gb-vitrin-auth__brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}
.gb-vitrin-auth__title {
    margin: 0 0 0.35rem;
    font-size: 1.35rem;
    color: #0f172a;
}
.gb-vitrin-auth__subtitle {
    margin: 0 0 1rem;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}
.gb-vitrin-auth__form {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.gb-vitrin-auth__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}
@media (max-width: 520px) {
    .gb-vitrin-auth__grid {
        grid-template-columns: 1fr;
    }
}
.gb-vitrin-auth__label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #334155;
}
.gb-vitrin-auth__input {
    width: 100%;
    box-sizing: border-box;
    padding: 0.6rem 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.5rem;
    font: inherit;
    font-size: 1rem;
    background: #fff;
    color: #0f172a;
}
.gb-vitrin-auth__input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
.gb-vitrin-auth__consent {
    margin: 0.25rem 0 0;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: #475569;
}
.gb-vitrin-auth__consent label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 0;
    font-weight: 400;
    color: inherit;
    cursor: pointer;
}
.gb-vitrin-auth__consent a {
    color: #1d4ed8;
}
.gb-vitrin-auth input[type="checkbox"],
.gb-vitrin-auth input[type="radio"] {
    width: auto;
    min-height: auto;
    height: auto;
    margin: 0.2rem 0 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background: initial;
    box-shadow: none;
    flex-shrink: 0;
    -webkit-appearance: checkbox;
    appearance: auto;
}
.gb-vitrin-auth input[type="radio"] {
    -webkit-appearance: radio;
}
.gb-vitrin-auth__row {
    display: flex;
    justify-content: flex-end;
}
.gb-vitrin-auth__link {
    font-size: 0.8125rem;
    color: #1d4ed8;
    text-decoration: none;
}
.gb-vitrin-auth__link:hover {
    text-decoration: underline;
}
.gb-vitrin-auth__foot {
    margin: 1rem 0 0;
    text-align: center;
    font-size: 0.8125rem;
    color: #64748b;
}
.gb-vitrin-auth__foot a {
    color: #1d4ed8;
    text-decoration: none;
    font-weight: 600;
}
.gb-vitrin-auth__flash {
    margin-bottom: 0.75rem;
    padding: 0.65rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
}
.gb-vitrin-auth__flash--ok {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}
.gb-vitrin-auth__flash--error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}
/* —— Vitrin profil placeholder —— */
.gb-vitrin-profil {
    padding: 1rem 0 2rem;
}
.gb-vitrin-profil__head h1 {
    margin: 0 0 0.35rem;
    font-size: 1.5rem;
    color: #0f172a;
}
.gb-vitrin-profil__head p {
    margin: 0;
    color: #64748b;
}
.gb-vitrin-profil__empty {
    margin-top: 1.5rem;
    padding: 2rem 1.25rem;
    text-align: center;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
}
.gb-vitrin-profil__empty i {
    font-size: 2rem;
    color: #94a3b8;
    margin-bottom: 0.75rem;
}
.gb-vitrin-profil__empty p {
    margin: 0 0 1rem;
    color: #475569;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}
.ilan-vitrin-sticky-bar {
    display: none;
}
@media (max-width: 960px) {
    body.ilan-vitrin-nav-locked {
        touch-action: none;
        overscroll-behavior: none;
    }
    body.ilan-vitrin-sticky-on {
        padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    }
    .ilan-vitrin-sticky-bar {
        display: flex;
        align-items: center;
        gap: 10px;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9999;
        min-height: calc(56px + env(safe-area-inset-bottom, 0px));
        padding: 8px max(6px, env(safe-area-inset-left)) calc(8px + env(safe-area-inset-bottom, 0px)) max(6px, env(safe-area-inset-right));
        margin: 0;
        background: rgba(255, 255, 255, 0.96);
        border-top: 1px solid #e2e8f0;
        box-shadow: 0 -8px 28px rgba(15, 23, 42, 0.08);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    .ilan-vitrin-sticky-bar__info {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 2px;
        line-height: 1.2;
    }
    .ilan-vitrin-sticky-bar__kicker {
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.01em;
        text-transform: none;
        color: #64748b;
    }
    .ilan-vitrin-sticky-bar__name {
        margin: 0;
        font-size: 0.88rem;
        font-weight: 800;
        color: #0f172a;
        white-space: normal;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    .ilan-vitrin-sticky-bar__name a {
        color: inherit;
        text-decoration: none;
    }
    .ilan-vitrin-sticky-bar__name a:hover {
        text-decoration: underline;
        color: #1d4ed8;
    }
    .ilan-vitrin-sticky-bar__actions {
        display: flex;
        flex-shrink: 0;
        align-items: center;
        gap: 8px;
    }
    .ilan-vitrin-sticky-bar__btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        border-radius: 10px;
        border: 1px solid #cbd5e1;
        background: #ffffff;
        color: #0f172a;
        text-decoration: none;
        font-size: 1.1rem;
    }
    .ilan-vitrin-sticky-bar__btn--wa {
        border-color: rgba(74, 222, 128, 0.55);
        background: rgba(220, 252, 231, 0.95);
        color: #14532d;
    }
    .ilan-vitrin-sticky-bar__btn[aria-disabled="true"] {
        opacity: 0.42;
        cursor: not-allowed;
        pointer-events: none;
    }
    .ilan-vitrin-sticky-bar__btn:focus-visible {
        outline: 2px solid #1d4ed8;
        outline-offset: 2px;
    }
}
.ilan-taslak-contact-name-link {
    color: inherit;
    text-decoration: none;
    font-weight: inherit;
    font-size: inherit;
}
.ilan-gallery-card .ilan-taslak-contact-name-link:hover {
    text-decoration: none;
    color: #1d4ed8;
}
.ilan-taslak-contact-name-link:hover {
    text-decoration: underline;
    color: #1d4ed8;
}
#ilan-vitrin-root.ilan-pro-shell {
    padding-bottom: 8px;
}
.ilan-vitrin-error {
    max-width: 520px;
    margin: 64px auto 0;
    text-align: center;
    padding: 40px 28px;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.07);
}
.ilan-vitrin-error i { font-size: 48px; color: #f59e0b; margin-bottom: 14px; }
.ilan-vitrin-error h1 { margin: 0 0 8px; font-size: 1.35rem; }
.ilan-vitrin-error p { margin: 0; color: #64748b; font-size: 0.96rem; }

/* Tam ekran görsel (lightbox) */
.ilan-taslak-cover-wrap .ilan-taslak-cover-img {
    cursor: zoom-in;
    touch-action: manipulation;
}
.ilan-vitrin-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: max(12px, env(safe-area-inset-top)) max(12px, env(safe-area-inset-right)) max(12px, env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
}
.ilan-vitrin-lightbox[hidden] {
    display: none !important;
}
.ilan-vitrin-lightbox-backdrop {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0;
    border: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.92);
    cursor: pointer;
}
.ilan-vitrin-lightbox-frame {
    position: relative;
    z-index: 1;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.ilan-vitrin-lightbox-frame > * {
    pointer-events: auto;
}
.ilan-vitrin-lightbox-img {
    max-width: min(96vw, 1600px);
    max-height: min(88vh, 1200px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
    vertical-align: middle;
}
.ilan-vitrin-lightbox-x {
    position: fixed;
    top: max(12px, env(safe-area-inset-top));
    right: max(12px, env(safe-area-inset-right));
    z-index: 2;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(30, 41, 59, 0.85);
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}
.ilan-vitrin-lightbox-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(15, 23, 42, 0.75);
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.ilan-vitrin-lightbox-arrow--prev {
    left: max(12px, env(safe-area-inset-left));
}
.ilan-vitrin-lightbox-arrow--next {
    right: max(12px, env(safe-area-inset-right));
}
.ilan-vitrin-lightbox-count {
    position: fixed;
    bottom: max(16px, env(safe-area-inset-bottom));
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: #e2e8f0;
    background: rgba(2, 6, 23, 0.65);
    border: 1px solid rgba(148, 163, 184, 0.35);
}
@media (max-width: 520px) {
    .ilan-vitrin-lightbox-arrow {
        width: 40px;
        height: 40px;
    }
}

/* iOS Safari: küçük form alanı odaklandığında otomatik yakınlaştırmayı engelle */
@media (max-width: 768px) {
    input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="hidden"]):not([type="button"]):not([type="submit"]):not([type="reset"]):not([type="image"]),
    select,
    textarea {
        font-size: 16px !important;
    }
}
/* ========================================================================= */
/* Ana vitrin index.php — body.landing.hub-home (galericilerbirligi.com kökü) */
/* ========================================================================= */

body.landing.hub-home {
    --gb-light-bg: #f6f7fb;
    --gb-light-card: #ffffff;
    --gb-light-card-soft: #fffdf4;
    --gb-light-text: #101827;
    --gb-light-muted: #64748b;
    --gb-light-border: #e5e7eb;
    --gb-yellow: #facc15;
    --gb-yellow-dark: #d9a800;
    --gb-navy: #111827;
    background: var(--gb-light-bg) !important;
    color: var(--gb-light-text) !important;
    overflow-x: clip;
}

html:has(body.landing.hub-home) {
    overflow-x: clip;
}

body.landing.hub-home .ilan-vitrin-shell {
    max-width: 100%;
    overflow-x: clip;
}

body.landing.hub-home .hub-page {
    max-width: 100%;
    width: 100%;
    min-width: 0;
    margin: 0 auto;
    padding: 28px 0 70px;
    color: var(--gb-light-text);
    box-sizing: border-box;
    overflow-x: clip;
}

body.landing.hub-home .hub-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
    gap: 22px;
    align-items: stretch;
    padding: clamp(28px, 3vw, 40px);
    border-radius: 30px;
    background:
        radial-gradient(circle at 85% 20%, rgba(250, 204, 21, .38), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #fff9dc 54%, #ffffff 100%);
    border: 1px solid rgba(217, 168, 0, .18);
    box-shadow: 0 22px 70px rgba(15, 23, 42, .10);
    overflow: hidden;
    position: relative;
}

body.landing.hub-home .hub-hero::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -120px;
    width: 320px;
    height: 320px;
    border-radius: 999px;
    background: rgba(250, 204, 21, .22);
    pointer-events: none;
}

body.landing.hub-home .hub-hero > div:first-child {
    position: relative;
    z-index: 1;
}

body.landing.hub-home .hub-hero h1 {
    max-width: 760px;
    margin: 0;
    color: var(--gb-light-text);
    font-size: clamp(2.1rem, 4vw, 4.3rem);
    line-height: .98;
    letter-spacing: -.055em;
    font-weight: 950;
}

body.landing.hub-home .hub-hero p {
    max-width: 680px;
    margin: 18px 0 0;
    color: var(--gb-light-muted);
    font-size: 1.08rem;
    line-height: 1.65;
    font-weight: 600;
}

body.landing.hub-home .hub-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

body.landing.hub-home .hub-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 900;
    cursor: pointer;
    white-space: nowrap;
}

body.landing.hub-home .hub-btn--primary {
    background: var(--gb-yellow);
    color: #111827;
    box-shadow: 0 12px 28px rgba(250, 204, 21, .28);
    border: 1px solid rgba(217, 168, 0, .28);
}

body.landing.hub-home .hub-btn--ghost {
    background: #ffffff;
    color: var(--gb-light-text);
    border: 1px solid var(--gb-light-border);
    box-shadow: 0 8px 24px rgba(15, 23, 42, .07);
}

body.landing.hub-home .hub-btn--whatsapp {
    background: #25d366;
    color: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 12px 28px rgba(37, 211, 102, .28);
}

body.landing.hub-home .hub-hero-aside {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: stretch;
}

body.landing.hub-home .hub-hero-card {
    width: 100%;
    min-height: 230px;
    border-radius: 26px;
    padding: 24px;
    background: #111827;
    color: #fff;
    box-shadow: 0 18px 46px rgba(17, 24, 39, .22);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
}

body.landing.hub-home .hub-hero-card::before {
    content: "";
    position: absolute;
    inset: 18px 18px auto auto;
    width: 88px;
    height: 88px;
    border-radius: 24px;
    background: rgba(250, 204, 21, .95);
    box-shadow: -20px 22px 0 rgba(255, 255, 255, .08);
}

body.landing.hub-home .hub-hero-card .k {
    color: rgba(255, 255, 255, .68);
    font-size: .9rem;
    font-weight: 800;
}

body.landing.hub-home .hub-hero-card .v {
    margin-top: 8px;
    color: #fff;
    font-size: 1.75rem;
    line-height: 1.05;
    font-weight: 950;
}

body.landing.hub-home .hub-hero-card-tag {
    margin-top: 14px;
    font-size: 0.88rem;
    line-height: 1.45;
    opacity: 0.9;
}

body.landing.hub-home .hub-search-card > .hub-section-head--search {
    margin-bottom: 14px;
}

body.landing.hub-home .hub-search-card .hub-section-head h2.hub-search-title {
    font-size: 1.1rem;
}

body.landing.hub-home .hub-search-submit-btn {
    border: none;
    width: 100%;
}

body.landing.hub-home .hub-card .thumb .hub-card-thumb-icon {
    font-size: 2rem;
}

body.landing.hub-home .hub-search-card,
body.landing.hub-home .hub-section,
body.landing.hub-home .hub-kdv,
body.landing.hub-home .hub-empty {
    background: var(--gb-light-card);
    border: 1px solid var(--gb-light-border);
    box-shadow: 0 16px 46px rgba(15, 23, 42, .07);
    border-radius: 26px;
}

body.landing.hub-home .hub-search-card {
    margin-top: 18px;
    padding: 22px clamp(16px, 3vw, 28px);
    width: 100%;
    box-sizing: border-box;
}

body.landing.hub-home .hub-search-filter-banner {
    display: none;
}

body.landing.hub-home .hub-search-filter-panel-inner {
    min-height: 0;
}

body.landing.hub-home .hub-listings-more {
    display: none;
}

/* Tam genişlik şerit — Aracını Değerlet (ana vitrin) */
body.landing.hub-home .hub-degerlet-strip {
    width: calc(100% + var(--gb-vitrin-gutter, 24px) * 2);
    max-width: none;
    margin: 22px calc(-1 * var(--gb-vitrin-gutter, 24px)) 0;
    padding: 28px 0 32px;
    box-sizing: border-box;
    background:
        radial-gradient(ellipse 80% 120% at 100% 20%, rgba(250, 204, 21, 0.35), transparent 55%),
        linear-gradient(135deg, #111827 0%, #1e293b 48%, #0f172a 100%);
    border-top: 1px solid rgba(250, 204, 21, 0.12);
    border-bottom: 1px solid rgba(15, 23, 42, 0.6);
    color: #ffffff;
}

body.landing.hub-home .hub-degerlet-strip-inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-left: 120px;
    padding-right: 120px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
    gap: 28px 36px;
    align-items: center;
    box-sizing: border-box;
}

body.landing.hub-home .hub-degerlet-kicker {
    margin: 0 0 8px;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(250, 204, 21, 0.95);
}

body.landing.hub-home .hub-degerlet-strip h2 {
    margin: 0;
    font-size: clamp(1.65rem, 3.2vw, 2.35rem);
    font-weight: 950;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: #fff;
}

body.landing.hub-home .hub-degerlet-lead {
    margin: 14px 0 0;
    max-width: 38rem;
    font-size: 1.02rem;
    line-height: 1.62;
    font-weight: 650;
    color: rgba(226, 232, 240, 0.92);
}

body.landing.hub-home .hub-degerlet-lead strong {
    color: #fef08a;
    font-weight: 850;
}

body.landing.hub-home .hub-degerlet-points {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

body.landing.hub-home .hub-degerlet-points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 780;
    font-size: 0.94rem;
    color: rgba(241, 245, 249, 0.95);
}

body.landing.hub-home .hub-degerlet-points li i {
    margin-top: 3px;
    color: var(--gb-yellow);
    font-size: 1rem;
    opacity: 0.95;
}

body.landing.hub-home .hub-degerlet-cta {
    margin-top: 22px;
}

body.landing.hub-home .hub-degerlet-strip-visual {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 14px 18px;
}

body.landing.hub-home .hub-degerlet-visual-card {
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 18px 16px;
    min-width: 120px;
    text-align: center;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

body.landing.hub-home .hub-degerlet-visual-card--photo i {
    display: block;
    font-size: 2.25rem;
    color: var(--gb-yellow);
    margin-bottom: 8px;
}

body.landing.hub-home .hub-degerlet-visual-card--photo span {
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(248, 250, 252, 0.85);
}

body.landing.hub-home .hub-degerlet-visual-flow {
    color: rgba(250, 204, 21, 0.65);
    font-size: 1.35rem;
}

body.landing.hub-home .hub-degerlet-visual-card--offers {
    text-align: left;
    min-width: 148px;
}

body.landing.hub-home .hub-degerlet-visual-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #111827;
    background: var(--gb-yellow);
    padding: 4px 8px;
    border-radius: 6px;
    margin-bottom: 10px;
}

body.landing.hub-home .hub-degerlet-visual-lines {
    display: block;
    height: 8px;
    border-radius: 4px;
    background: rgba(148, 163, 184, 0.35);
    margin-bottom: 6px;
}

body.landing.hub-home .hub-degerlet-visual-lines--short {
    width: 72%;
}

body.landing.hub-home .hub-degerlet-visual-price {
    display: block;
    margin-top: 12px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: rgba(250, 204, 21, 0.9);
}

/* aracini-degerlet.php — yapım aşaması */
body.landing.hub-home .hub-degerlet-wip {
    margin-top: 8px;
    padding: clamp(28px, 5vw, 48px) clamp(22px, 4vw, 40px);
    text-align: center;
    background: var(--gb-light-card);
    border: 1px solid var(--gb-light-border);
    box-shadow: 0 16px 46px rgba(15, 23, 42, 0.07);
    border-radius: 26px;
}

body.landing.hub-home .hub-degerlet-wip-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(250, 204, 21, 0.22), rgba(17, 24, 39, 0.08));
    border: 1px solid rgba(217, 168, 0, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #b88600;
}

body.landing.hub-home .hub-degerlet-wip-badge {
    display: inline-block;
    margin: 0 0 12px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(250, 204, 21, 0.18);
    color: #92400e;
    border: 1px solid rgba(217, 168, 0, 0.35);
}

body.landing.hub-home .hub-degerlet-wip h1 {
    margin: 0;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 950;
    letter-spacing: -0.03em;
    color: var(--gb-light-text);
}

body.landing.hub-home .hub-degerlet-wip-lead {
    margin: 14px auto 0;
    max-width: 32rem;
    font-size: 1.02rem;
    line-height: 1.65;
    font-weight: 650;
    color: var(--gb-light-muted);
}

body.landing.hub-home .hub-degerlet-wip-note {
    margin: 22px 0 0;
    font-size: 0.88rem;
    font-weight: 700;
    color: #94a3b8;
}

body.landing.hub-home .hub-degerlet-wip-actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

@media (max-width: 900px) {
    body.landing.hub-home .hub-degerlet-strip-inner {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    body.landing.hub-home .hub-degerlet-strip-visual {
        justify-content: flex-end;
    }
}

@media (max-width: 640px) {
    body.landing.hub-home .hub-degerlet-strip {
        padding: 22px 0 26px;
    }

    body.landing.hub-home .hub-degerlet-strip-inner {
        padding-left: 36px;
        padding-right: 36px;
    }

    body.landing.hub-home .hub-degerlet-strip-visual {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-end;
        gap: 10px 12px;
    }

    body.landing.hub-home .hub-degerlet-visual-flow {
        transform: none;
        margin: 0;
        font-size: 1.1rem;
    }

    body.landing.hub-home .hub-degerlet-visual-card {
        min-width: 0;
        flex: 1 1 0;
        max-width: 132px;
        padding: 14px 10px;
    }

    body.landing.hub-home .hub-degerlet-visual-card--photo i {
        font-size: 1.75rem;
        margin-bottom: 6px;
    }

    body.landing.hub-home .hub-degerlet-visual-card--offers {
        min-width: 0;
    }
}

body.landing.hub-home .hub-search-form {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px 14px;
    align-items: end;
    width: 100%;
    max-width: none;
}

body.landing.hub-home .hub-search-form > .hub-field,
body.landing.hub-home .hub-search-form > .hub-search-submit {
    min-width: 0;
    grid-column: span 1;
}

body.landing.hub-home .hub-field label {
    display: block;
    margin: 0 0 7px;
    color: #334155;
    font-size: .82rem;
    font-weight: 900;
}

body.landing.hub-home .hub-field input,
body.landing.hub-home .hub-field select {
    width: 100%;
    min-height: 45px;
    border: 1px solid var(--gb-light-border);
    border-radius: 15px;
    background: #ffffff;
    color: var(--gb-light-text);
    padding: 0 13px;
    outline: none;
    font-weight: 700;
}

body.landing.hub-home .hub-field input:focus,
body.landing.hub-home .hub-field select:focus {
    border-color: var(--gb-yellow-dark);
    box-shadow: 0 0 0 4px rgba(250, 204, 21, .18);
    background: #fff;
}

body.landing.hub-home .hub-section {
    margin-top: 18px;
    padding: clamp(20px, 2.2vw, 28px);
}

body.landing.hub-home .hub-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

body.landing.hub-home .hub-section-head h2,
body.landing.hub-home .hub-section h2 {
    margin: 0;
    color: var(--gb-light-text);
    font-size: 1.35rem;
    letter-spacing: -.025em;
    font-weight: 950;
}

body.landing.hub-home .hub-section-head a {
    color: #8a6b00;
    font-weight: 900;
    text-decoration: none;
}

body.landing.hub-home .hub-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(14px, 1.4vw, 20px);
}

/* Ana sayfa — son ilanlar: 6 sütun, kompakt kart */
body.landing.hub-home #son-ilanlar .hub-grid--listings {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}

body.landing.hub-home #son-ilanlar .hub-card {
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, .05);
}

body.landing.hub-home #son-ilanlar .hub-card .thumb {
    aspect-ratio: 4 / 3;
}

body.landing.hub-home #son-ilanlar .hub-card .thumb .hub-card-thumb-icon {
    font-size: 1.35rem;
}

body.landing.hub-home #son-ilanlar .hub-card .body {
    padding: 8px 10px 10px;
}

body.landing.hub-home #son-ilanlar .hub-card .t {
    font-size: 0.78rem;
    font-weight: 850;
    line-height: 1.2;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

body.landing.hub-home #son-ilanlar .hub-card .loc,
body.landing.hub-home #son-ilanlar .hub-card .gal {
    margin-top: 4px;
    font-size: 0.68rem;
    -webkit-line-clamp: 1;
    line-clamp: 1;
}

body.landing.hub-home #son-ilanlar .hub-card .gal {
    display: none;
}

body.landing.hub-home #son-ilanlar .hub-card .price {
    margin-top: 6px;
    font-size: 0.82rem;
    font-weight: 900;
    -webkit-line-clamp: 1;
    line-clamp: 1;
}

body.landing.hub-home .hub-card,
body.landing.hub-home .hub-gal-card {
    display: block;
    color: inherit;
    text-decoration: none;
    background: #fff;
    border: 1px solid var(--gb-light-border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .055);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

body.landing.hub-home .hub-card:hover,
body.landing.hub-home .hub-gal-card:hover {
    transform: translateY(-3px);
    border-color: rgba(217, 168, 0, .35);
    box-shadow: 0 18px 42px rgba(15, 23, 42, .10);
}

body.landing.hub-home .hub-card .thumb {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #f1f5f9, #fff7cc);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c28f00;
    overflow: hidden;
}

body.landing.hub-home .hub-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

body.landing.hub-home .hub-card .body {
    padding: 14px;
}

body.landing.hub-home .hub-card .t {
    margin: 0;
    color: var(--gb-light-text);
    font-weight: 950;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

body.landing.hub-home .hub-card .loc,
body.landing.hub-home .hub-card .gal {
    margin: 8px 0 0;
    color: var(--gb-light-muted);
    font-size: .86rem;
    font-weight: 700;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

body.landing.hub-home .hub-card .price {
    margin: 12px 0 0;
    color: #b88600;
    font-size: 1.08rem;
    font-weight: 950;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

body.landing.hub-home .hub-empty {
    padding: 24px;
    color: var(--gb-light-muted);
    font-weight: 800;
    text-align: center;
    background: linear-gradient(135deg, #ffffff, #fffbed);
}

body.landing.hub-home .hub-gal-carousel {
    position: relative;
}

body.landing.hub-home .hub-gal-grid,
body.landing.hub-home .hub-gal-carousel-track.hub-gal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 1.4vw, 20px);
}

body.landing.hub-home .hub-gal-card {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px;
}

body.landing.hub-home .hub-gal-logo {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #fff7cc;
    color: #b88600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    overflow: hidden;
    font-size: 1.25rem;
}

body.landing.hub-home .hub-gal-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.landing.hub-home .hub-gal-body .name {
    margin: 0;
    color: var(--gb-light-text);
    font-weight: 950;
}

body.landing.hub-home .hub-gal-body .meta,
body.landing.hub-home .hub-gal-body .tel {
    margin: 6px 0 0;
    color: var(--gb-light-muted);
    font-size: .86rem;
    font-weight: 700;
}

body.landing.hub-home .hub-promo {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: #fff;
    border-color: rgba(17, 24, 39, .18);
}

body.landing.hub-home .hub-promo h2 {
    color: #fff;
}

body.landing.hub-home .hub-promo ul {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

body.landing.hub-home .hub-promo li {
    color: rgba(255, 255, 255, .88);
    font-weight: 800;
}

body.landing.hub-home .hub-promo li::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-right: 7px;
    border-radius: 999px;
    background: var(--gb-yellow);
    color: #111827;
    font-size: .75rem;
    font-weight: 950;
}

body.landing.hub-home .hub-kdv {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    background: var(--gb-light-card-soft);
}

body.landing.hub-home .hub-kdv p {
    margin: 0;
    color: var(--gb-light-muted);
    font-weight: 750;
    line-height: 1.5;
}

body.landing.hub-home .hub-kdv strong {
    color: var(--gb-light-text);
}

body.landing.hub-home .hub-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 1280px) {
    body.landing.hub-home #son-ilanlar .hub-grid--listings {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 12px;
    }
}

@media (max-width: 980px) {
    body.landing.hub-home .hub-hero {
        grid-template-columns: 1fr;
        padding: 26px;
    }

    body.landing.hub-home .hub-search-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.landing.hub-home .hub-grid,
    body.landing.hub-home .hub-gal-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.landing.hub-home #son-ilanlar .hub-grid--listings {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }
}

@media (max-width: 640px) {
    body.landing.hub-home .hub-page {
        padding: 16px 12px 56px;
    }

    body.landing.hub-home .hub-hero {
        border-radius: 24px;
        padding: 22px;
    }

    body.landing.hub-home .hub-hero h1 {
        font-size: 2.25rem;
    }

    body.landing.hub-home .hub-hero-aside {
        display: none;
    }

    body.landing.hub-home .hub-hero-actions,
    body.landing.hub-home .hub-kdv,
    body.landing.hub-home .hub-promo {
        flex-direction: column;
        align-items: stretch;
        grid-template-columns: 1fr;
    }

    body.landing.hub-home .hub-search-form,
    body.landing.hub-home .hub-grid {
        grid-template-columns: 1fr;
    }

    body.landing.hub-home .hub-search-card {
        padding: 0;
        overflow: hidden;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    body.landing.hub-home .hub-search-filter-banner {
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
        margin: 0;
        padding: 16px 18px;
        border: 0;
        border-radius: 22px;
        cursor: pointer;
        text-align: left;
        font: inherit;
        color: #ffffff;
        background:
            radial-gradient(ellipse 90% 140% at 100% 0%, rgba(250, 204, 21, 0.28), transparent 58%),
            linear-gradient(135deg, #111827 0%, #1e293b 52%, #0f172a 100%);
        box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
    }

    body.landing.hub-home .hub-search-filter-banner__icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 12px;
        background: rgba(250, 204, 21, 0.16);
        color: #facc15;
        font-size: 1rem;
        flex-shrink: 0;
    }

    body.landing.hub-home .hub-search-filter-banner__copy {
        display: flex;
        flex-direction: column;
        gap: 2px;
        flex: 1;
        min-width: 0;
    }

    body.landing.hub-home .hub-search-filter-banner__kicker {
        font-size: 0.68rem;
        font-weight: 900;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: rgba(250, 204, 21, 0.92);
    }

    body.landing.hub-home .hub-search-filter-banner__label {
        font-size: 0.95rem;
        font-weight: 900;
        letter-spacing: -0.02em;
        line-height: 1.25;
    }

    body.landing.hub-home .hub-search-filter-banner__chev {
        color: rgba(248, 250, 252, 0.72);
        font-size: 0.85rem;
        transition: transform 0.25s ease;
        flex-shrink: 0;
    }

    body.landing.hub-home .hub-search-card.is-filters-open .hub-search-filter-banner {
        border-radius: 22px 22px 0 0;
    }

    body.landing.hub-home .hub-search-card.is-filters-open .hub-search-filter-banner__chev {
        transform: rotate(180deg);
    }

    body.landing.hub-home .hub-search-filter-panel {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.32s ease, opacity 0.22s ease;
        opacity: 0;
        overflow: hidden;
        pointer-events: none;
    }

    body.landing.hub-home .hub-search-card.is-filters-open .hub-search-filter-panel {
        grid-template-rows: 1fr;
        opacity: 1;
        pointer-events: auto;
    }

    body.landing.hub-home .hub-search-filter-panel-inner {
        overflow: hidden;
        background: var(--gb-light-card);
        border: 1px solid var(--gb-light-border);
        border-top: 0;
        border-radius: 0 0 22px 22px;
        box-shadow: 0 16px 46px rgba(15, 23, 42, .07);
        padding: 0 16px 18px;
    }

    body.landing.hub-home .hub-search-card.is-filters-open .hub-search-filter-panel-inner {
        padding-top: 16px;
    }

    body.landing.hub-home .hub-search-card .hub-section-head--search {
        display: none;
        margin-bottom: 12px;
    }

    body.landing.hub-home #son-ilanlar .hub-grid--listings {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    body.landing.hub-home #son-ilanlar .hub-card {
        border-radius: 14px;
        box-shadow: 0 8px 20px rgba(15, 23, 42, .05);
    }

    body.landing.hub-home #son-ilanlar .hub-card .body {
        padding: 8px;
    }

    body.landing.hub-home #son-ilanlar .hub-card .t {
        font-size: 0.72rem;
        line-height: 1.2;
    }

    body.landing.hub-home #son-ilanlar .hub-card .loc,
    body.landing.hub-home #son-ilanlar .hub-card .gal {
        display: none;
    }

    body.landing.hub-home #son-ilanlar .hub-card .price {
        margin-top: 6px;
        font-size: 0.78rem;
    }

    body.landing.hub-home .hub-section-head--listings .hub-listings-head-link {
        display: none;
    }

    body.landing.hub-home .hub-listings-more {
        display: flex;
        margin-top: 16px;
        width: 100%;
        justify-content: center;
    }

    body.landing.hub-home .hub-gal-carousel {
        margin: 0 -12px;
        padding: 0 12px;
        overflow: hidden;
    }

    body.landing.hub-home .hub-gal-carousel-track {
        flex-wrap: nowrap;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 4px;
    }

    body.landing.hub-home .hub-gal-carousel-track::-webkit-scrollbar {
        display: none;
    }

    body.landing.hub-home .hub-gal-carousel-track.hub-gal-grid,
    body.landing.hub-home .hub-gal-carousel-track {
        display: flex;
        grid-template-columns: unset;
    }

    body.landing.hub-home .hub-gal-carousel-track > .hub-gal-card {
        flex: 0 0 min(78vw, 300px);
        width: min(78vw, 300px);
        max-width: 300px;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    body.landing.hub-home .hub-promo ul {
        grid-template-columns: 1fr;
    }

    body.landing.hub-home .hub-btn {
        width: 100%;
    }
}

/* Galeri slug vitrin (galeri.php) — ana sayfa hub kartları ile aynı grid / thumb oranı */
body.landing.hub-home.hub-gallery-vitrin .hub-gallery-head > .hub-section-head.hub-gallery-head-row {
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 14px;
    gap: 12px 16px;
}

body.landing.hub-home.hub-gallery-vitrin .hub-gallery-identity {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex: 1 1 auto;
    min-width: 0;
    margin-right: auto;
}

body.landing.hub-home.hub-gallery-vitrin .hub-gallery-logo {
    flex: 0 0 auto;
    width: 64px;
    height: 64px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: #fff;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

body.landing.hub-home.hub-gallery-vitrin .hub-gallery-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

body.landing.hub-home.hub-gallery-vitrin .hub-gallery-identity-text {
    flex: 1 1 auto;
    min-width: 0;
}

body.landing.hub-home.hub-gallery-vitrin .hub-gallery-name-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    min-width: 0;
}

body.landing.hub-home.hub-gallery-vitrin .hub-gallery-name-row h2 {
    flex: none;
    min-width: 0;
    font-size: clamp(1.35rem, 2.8vw, 2rem);
    line-height: 1.15;
    margin: 0;
}

body.landing.hub-home.hub-gallery-vitrin .hub-gallery-verified {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    color: #2563eb;
    cursor: help;
}

body.landing.hub-home.hub-gallery-vitrin .hub-gallery-verified:focus {
    outline: none;
}

body.landing.hub-home.hub-gallery-vitrin .hub-gallery-verified:focus-visible {
    outline: 2px solid rgba(37, 99, 235, 0.45);
    outline-offset: 2px;
    border-radius: 999px;
}

body.landing.hub-home.hub-gallery-vitrin .hub-gallery-verified .ilan-gallery-card__verified-icon {
    display: block;
    width: 18px;
    height: 18px;
}

body.landing.hub-home.hub-gallery-vitrin .hub-gallery-verified .ilan-gallery-card__verified-tip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    z-index: 6;
    transform: translateX(-50%);
    padding: 6px 10px;
    border-radius: 8px;
    background: #0f172a;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.15s ease, visibility 0.15s ease;
}

body.landing.hub-home.hub-gallery-vitrin .hub-gallery-verified .ilan-gallery-card__verified-tip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #0f172a;
}

body.landing.hub-home.hub-gallery-vitrin .hub-gallery-verified:hover .ilan-gallery-card__verified-tip,
body.landing.hub-home.hub-gallery-vitrin .hub-gallery-verified:focus-visible .ilan-gallery-card__verified-tip {
    opacity: 1;
    visibility: visible;
}

body.landing.hub-home.hub-gallery-vitrin .hub-gallery-yetki-line {
    margin: 6px 0 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 8px;
    color: var(--gb-light-muted);
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.35;
}

body.landing.hub-home.hub-gallery-vitrin .hub-gallery-yetki-line i {
    color: #b88600;
}

body.landing.hub-home.hub-gallery-vitrin .hub-gallery-yetki-line strong {
    color: var(--gb-light-text);
    font-weight: 900;
}

body.landing.hub-home.hub-gallery-vitrin .hub-gallery-head-actions {
    flex: 0 0 auto;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-left: auto;
}

body.landing.hub-home.hub-gallery-vitrin .hub-gallery-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.45rem 0.75rem;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 650;
    letter-spacing: 0.01em;
    text-decoration: none;
    line-height: 1.2;
    border: 1px solid transparent;
    white-space: nowrap;
}

body.landing.hub-home.hub-gallery-vitrin .hub-gallery-contact-btn i {
    font-size: 0.95em;
    opacity: 0.92;
}

body.landing.hub-home.hub-gallery-vitrin .hub-gallery-contact-btn--tel,
body.landing.hub-home.hub-gallery-vitrin .hub-gallery-contact-btn--tel:link,
body.landing.hub-home.hub-gallery-vitrin .hub-gallery-contact-btn--tel:visited,
body.landing.hub-home.hub-gallery-vitrin .hub-gallery-contact-btn--tel span,
body.landing.hub-home.hub-gallery-vitrin .hub-gallery-contact-btn--tel i {
    color: #000000;
}

body.landing.hub-home.hub-gallery-vitrin .hub-gallery-contact-btn--tel {
    background: #fff;
    border-color: #e5e7eb;
}

body.landing.hub-home.hub-gallery-vitrin .hub-gallery-contact-btn--wa,
body.landing.hub-home.hub-gallery-vitrin .hub-gallery-contact-btn--wa:link,
body.landing.hub-home.hub-gallery-vitrin .hub-gallery-contact-btn--wa:visited,
body.landing.hub-home.hub-gallery-vitrin .hub-gallery-contact-btn--wa span,
body.landing.hub-home.hub-gallery-vitrin .hub-gallery-contact-btn--wa i {
    color: #ffffff;
}

body.landing.hub-home.hub-gallery-vitrin .hub-gallery-contact-btn--wa {
    background: #25d366;
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.22);
}

body.landing.hub-home.hub-gallery-vitrin .hub-gallery-head-meta {
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    color: var(--gb-light-muted);
    font-size: 0.92rem;
    font-weight: 800;
}

body.landing.hub-home.hub-gallery-vitrin .hub-gallery-head-meta li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

body.landing.hub-home.hub-gallery-vitrin .hub-gallery-head-meta i {
    color: #b88600;
}

body.landing.hub-home.hub-gallery-vitrin .hub-gallery-head-meta strong {
    color: var(--gb-light-text);
    font-weight: 900;
}

@media (max-width: 640px) {
    body.landing.hub-home.hub-gallery-vitrin .hub-gallery-head > .hub-section-head.hub-gallery-head-row {
        flex-direction: column;
        align-items: stretch;
    }

    body.landing.hub-home.hub-gallery-vitrin .hub-gallery-name-row h2 {
        margin-right: 0;
    }

    body.landing.hub-home.hub-gallery-vitrin .hub-gallery-head-actions {
        margin-left: 0;
        width: 100%;
        justify-content: flex-start;
    }

    body.landing.hub-home.hub-gallery-vitrin .hub-gallery-contact-btn {
        flex: 1 1 auto;
        min-width: 0;
        justify-content: center;
    }
}

/* ─── Hakkımızda — body.landing.hub-home.hub-about ─── */
body.landing.hub-home.hub-about .hub-about-hero h1 {
    font-size: clamp(1.85rem, 3.2vw, 3.2rem);
}

body.landing.hub-home.hub-about .hub-about-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(217, 168, 0, .28);
    background: rgba(255, 255, 255, .88);
    color: #8a6b00;
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .02em;
    text-transform: uppercase;
}

body.landing.hub-home.hub-about .hub-about-kicker span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--gb-yellow);
    flex-shrink: 0;
}

body.landing.hub-home.hub-about .hub-about-kicker--sm {
    margin-bottom: 10px;
    font-size: .74rem;
    padding: 6px 12px;
}

body.landing.hub-home.hub-about .hub-about-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

body.landing.hub-home.hub-about .hub-about-stat {
    padding: 20px 18px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--gb-light-border);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .055);
    text-align: center;
}

body.landing.hub-home.hub-about .hub-about-stat strong {
    display: block;
    color: var(--gb-light-text);
    font-size: 1.35rem;
    line-height: 1.15;
    font-weight: 950;
    letter-spacing: -.03em;
}

body.landing.hub-home.hub-about .hub-about-stat span {
    display: block;
    margin-top: 8px;
    color: var(--gb-light-muted);
    font-size: .88rem;
    font-weight: 700;
    line-height: 1.4;
}

body.landing.hub-home.hub-about .hub-about-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--gb-light-border);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .045);
}

body.landing.hub-home.hub-about .hub-about-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--gb-light-bg);
    border: 1px solid var(--gb-light-border);
    color: var(--gb-light-text);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 800;
    transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

body.landing.hub-home.hub-about .hub-about-links a:hover {
    border-color: rgba(217, 168, 0, .4);
    background: #fffdf4;
    transform: translateY(-1px);
}

body.landing.hub-home.hub-about .hub-about-links a i {
    color: #b8860b;
}

body.landing.hub-home.hub-about .hub-about-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

body.landing.hub-home.hub-about .hub-about-feature {
    padding: 20px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--gb-light-border);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .045);
}

body.landing.hub-home.hub-about .hub-about-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fff9dc, #fef3c7);
    color: #b8860b;
    font-size: 1.1rem;
}

body.landing.hub-home.hub-about .hub-about-feature-icon--dark {
    background: #111827;
    color: var(--gb-yellow);
}

body.landing.hub-home.hub-about .hub-about-feature h3,
body.landing.hub-home.hub-about .hub-about-audience-card h3 {
    margin: 14px 0 0;
    color: var(--gb-light-text);
    font-size: 1.05rem;
    font-weight: 950;
    letter-spacing: -.02em;
}

body.landing.hub-home.hub-about .hub-about-feature p,
body.landing.hub-home.hub-about .hub-about-audience-card p {
    margin: 10px 0 0;
    color: var(--gb-light-muted);
    font-size: .92rem;
    line-height: 1.6;
    font-weight: 600;
}

body.landing.hub-home.hub-about .hub-about-story .hub-about-split + .hub-about-split {
    margin-top: 18px;
}

body.landing.hub-home.hub-about .hub-about-split {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
    gap: 18px;
    align-items: stretch;
}

body.landing.hub-home.hub-about .hub-about-split--reverse .hub-about-split-body {
    order: 2;
}

body.landing.hub-home.hub-about .hub-about-split--reverse .hub-about-split-media {
    order: 1;
}

body.landing.hub-home.hub-about .hub-about-split-body {
    padding: 24px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--gb-light-border);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .045);
}

body.landing.hub-home.hub-about .hub-about-split-body h3 {
    margin: 0;
    color: var(--gb-light-text);
    font-size: 1.35rem;
    line-height: 1.2;
    font-weight: 950;
    letter-spacing: -.03em;
}

body.landing.hub-home.hub-about .hub-about-split-body > p {
    margin: 14px 0 0;
    color: var(--gb-light-muted);
    font-size: .96rem;
    line-height: 1.65;
    font-weight: 600;
}

body.landing.hub-home.hub-about .hub-about-list {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

body.landing.hub-home.hub-about .hub-about-list li {
    position: relative;
    padding-left: 28px;
    color: var(--gb-light-text);
    font-size: .92rem;
    font-weight: 700;
    line-height: 1.5;
}

body.landing.hub-home.hub-about .hub-about-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: var(--gb-yellow);
    color: #111827;
    font-size: .72rem;
    font-weight: 950;
}

body.landing.hub-home.hub-about .hub-about-split-media {
    border-radius: 22px;
    overflow: hidden;
    min-height: 260px;
    background: linear-gradient(135deg, #f1f5f9, #fff7cc);
    border: 1px solid var(--gb-light-border);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
}

body.landing.hub-home.hub-about .hub-about-split-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
}

body.landing.hub-home.hub-about .hub-about-audience {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

body.landing.hub-home.hub-about .hub-about-audience-card {
    padding: 22px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--gb-light-border);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .045);
}

body.landing.hub-home.hub-about .hub-about-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: #8a6b00;
    font-size: .92rem;
    font-weight: 900;
    text-decoration: none;
}

body.landing.hub-home.hub-about .hub-about-card-link:hover {
    color: #6b5200;
}

body.landing.hub-home.hub-about .hub-about-values {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

body.landing.hub-home.hub-about .hub-about-value {
    padding: 22px;
    border-radius: 22px;
    background: linear-gradient(180deg, #fff 0%, #fffdf4 100%);
    border: 1px solid rgba(217, 168, 0, .16);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .045);
}

body.landing.hub-home.hub-about .hub-about-value h3 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gb-light-text);
    font-size: 1.05rem;
    font-weight: 950;
}

body.landing.hub-home.hub-about .hub-about-value h3 i {
    color: #b8860b;
}

body.landing.hub-home.hub-about .hub-about-value p {
    margin: 12px 0 0;
    color: var(--gb-light-muted);
    font-size: .92rem;
    line-height: 1.6;
    font-weight: 600;
}

body.landing.hub-home.hub-about .hub-promo-aside {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    min-width: 190px;
}

body.landing.hub-home.hub-about .hub-about-cta-secondary {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border-color: rgba(255, 255, 255, .18);
    box-shadow: none;
}

body.landing.hub-home.hub-about .hub-about-cta-secondary:hover {
    background: rgba(255, 255, 255, .14);
}

@media (max-width: 980px) {
    body.landing.hub-home.hub-about .hub-about-stats,
    body.landing.hub-home.hub-about .hub-about-features,
    body.landing.hub-home.hub-about .hub-about-values {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.landing.hub-home.hub-about .hub-about-split,
    body.landing.hub-home.hub-about .hub-about-split--reverse .hub-about-split-body,
    body.landing.hub-home.hub-about .hub-about-split--reverse .hub-about-split-media {
        grid-template-columns: 1fr;
        order: unset;
    }
}

@media (max-width: 640px) {
    body.landing.hub-home.hub-about .hub-about-stats,
    body.landing.hub-home.hub-about .hub-about-features,
    body.landing.hub-home.hub-about .hub-about-audience,
    body.landing.hub-home.hub-about .hub-about-values {
        grid-template-columns: 1fr;
    }

    body.landing.hub-home.hub-about .hub-about-links {
        padding: 14px;
    }

    body.landing.hub-home.hub-about .hub-about-links a {
        flex: 1 1 calc(50% - 6px);
        justify-content: center;
    }

    body.landing.hub-home.hub-about .hub-promo-aside {
        width: 100%;
        min-width: 0;
    }
}

/* ─── İletişim — body.landing.hub-home.hub-contact ─── */
body.landing.hub-home.hub-contact .hub-contact-hero h1 {
    max-width: 720px;
}

body.landing.hub-home.hub-contact .hub-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
    gap: 22px;
    align-items: start;
    margin-top: 48px;
}

body.landing.hub-home.hub-contact .hub-contact-form-card {
    padding: 28px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(217, 168, 0, .14);
    box-shadow: 0 18px 50px rgba(15, 23, 42, .08);
}

body.landing.hub-home.hub-contact .hub-contact-form-head {
    margin-bottom: 18px;
}

body.landing.hub-home.hub-contact .hub-contact-form-head h2 {
    margin: 0 0 6px;
    font-size: 1.45rem;
    letter-spacing: -.03em;
}

body.landing.hub-home.hub-contact .hub-contact-form-head p {
    margin: 0;
    color: var(--gb-light-muted);
    font-size: .92rem;
}

body.landing.hub-home.hub-contact .hub-contact-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    margin-bottom: 16px;
    font-size: .94rem;
    line-height: 1.45;
}

body.landing.hub-home.hub-contact .hub-contact-alert--ok {
    background: #ecfdf3;
    border: 1px solid #bbf7d0;
    color: #166534;
}

body.landing.hub-home.hub-contact .hub-contact-alert--err {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

body.landing.hub-home.hub-contact .hub-contact-form {
    display: grid;
    gap: 14px;
}

body.landing.hub-home.hub-contact .hub-contact-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

body.landing.hub-home.hub-contact .hub-contact-field {
    display: grid;
    gap: 6px;
}

body.landing.hub-home.hub-contact .hub-contact-field label {
    font-size: .84rem;
    font-weight: 700;
    color: #334155;
}

body.landing.hub-home.hub-contact .hub-contact-field input,
body.landing.hub-home.hub-contact .hub-contact-field select,
body.landing.hub-home.hub-contact .hub-contact-field textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #0f172a;
    font: inherit;
    transition: border-color .15s ease, box-shadow .15s ease;
}

body.landing.hub-home.hub-contact .hub-contact-field input:focus,
body.landing.hub-home.hub-contact .hub-contact-field select:focus,
body.landing.hub-home.hub-contact .hub-contact-field textarea:focus {
    outline: none;
    border-color: #d9a800;
    box-shadow: 0 0 0 3px rgba(250, 204, 21, .25);
    background: #fff;
}

body.landing.hub-home.hub-contact .hub-contact-field textarea {
    resize: vertical;
    min-height: 140px;
}

body.landing.hub-home.hub-contact .hub-contact-konu-ozel {
    display: none;
    gap: 6px;
}

body.landing.hub-home.hub-contact .hub-contact-konu-ozel.is-visible {
    display: grid;
}

body.landing.hub-home.hub-contact .hub-contact-konu-ozel label {
    font-size: .84rem;
    font-weight: 700;
    color: #334155;
}

body.landing.hub-home.hub-contact .hub-contact-form-actions {
    padding-top: 4px;
}

body.landing.hub-home.hub-contact .hub-contact-submit {
    border: none;
    cursor: pointer;
}

body.landing.hub-home.hub-contact .hub-contact-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

body.landing.hub-home.hub-contact .hub-contact-aside {
    display: grid;
    gap: 14px;
}

body.landing.hub-home.hub-contact .hub-contact-info {
    padding: 20px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .05);
}

body.landing.hub-home.hub-contact .hub-contact-info h3 {
    margin: 12px 0 8px;
    font-size: 1.05rem;
    letter-spacing: -.02em;
}

body.landing.hub-home.hub-contact .hub-contact-info p {
    margin: 0;
    color: var(--gb-light-muted);
    line-height: 1.55;
    font-size: .94rem;
}

body.landing.hub-home.hub-contact .hub-contact-info a {
    color: #0f172a;
    font-weight: 700;
}

body.landing.hub-home.hub-contact .hub-contact-info--muted {
    background: #ffffff;
    border-style: dashed;
}

body.landing.hub-home.hub-contact .hub-contact-info--muted p {
    font-size: .88rem;
}

@media (max-width: 900px) {
    body.landing.hub-home.hub-contact .hub-contact-layout {
        grid-template-columns: 1fr;
    }

    body.landing.hub-home.hub-contact .hub-contact-form-row {
        grid-template-columns: 1fr;
    }
}

/* ─── Site geneli footer (vitrin + landing) ─── */
.gb-site-footer {
    margin-top: 32px;
    border-top: 1px solid rgba(148, 163, 184, 0.22);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.02) 0%, rgba(15, 23, 42, 0.06) 100%);
    color: #334155;
    font-family: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

body.landing-light .gb-site-footer {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-top-color: rgba(148, 163, 184, 0.28);
}

.ilan-vitrin-shell .gb-site-footer {
    margin-top: 28px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    overflow: hidden;
}

.gb-site-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 2fr);
    gap: 28px 36px;
    padding: 28px 24px 22px;
    max-width: var(--gb-vitrin-max-w, 1480px);
    margin: 0 auto;
}

.gb-site-footer__brand {
    min-width: 0;
}

.gb-site-footer__logo-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #0f172a;
    margin-bottom: 10px;
}

.gb-site-footer__logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 10px;
}

.gb-site-footer__brand-name {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.gb-site-footer__tagline {
    margin: 0;
    max-width: 34ch;
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
}

.gb-site-footer__nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px 24px;
}

.gb-site-footer__col-title {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #475569;
}

.gb-site-footer__col a {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #334155;
    text-decoration: none;
}

.gb-site-footer__col a:hover {
    color: #4338ca;
    text-decoration: underline;
}

.gb-site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px 24px;
    padding: 14px 24px 18px;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    max-width: var(--gb-vitrin-max-w, 1480px);
    margin: 0 auto;
}

.gb-site-footer__bottom-text {
    flex: 1 1 320px;
    min-width: 0;
}

.gb-site-footer__copy {
    margin: 0 0 6px;
    font-size: 13px;
    font-weight: 700;
    color: #475569;
}

.gb-site-footer__note {
    margin: 0;
    font-size: 12px;
    line-height: 1.55;
    color: #64748b;
}

/* Ödeme rozetleri — alt şeritte, telif metninin sağında. */
.gb-site-footer__odeme {
    /* 0 1 auto: daralabilsin. 0 0 auto iken sarmalayıcı içeriğe göre
       boyutlanıyor, bu yüzden görseldeki max-width:100% dayanak bulamıyor
       ve dar ekranda bant şeridin dışına taşıyordu. */
    flex: 0 1 auto;
    min-width: 0;
    max-width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
}

.gb-site-footer__odeme-band {
    display: block;
    width: auto;
    height: 28px;
    max-width: 100%;
    /* max-width devreye girip genişliği kırptığında yükseklik sabit kaldığı
       için logo eziliyordu; contain oranı korur. */
    object-fit: contain;
    object-position: right center;
    opacity: 0.92;
}

@media (max-width: 860px) {
    .gb-site-footer__inner {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .gb-site-footer__nav {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 520px) {
    .gb-site-footer__inner,
    .gb-site-footer__bottom {
        padding-left: 16px;
        padding-right: 16px;
    }

    .gb-site-footer__nav {
        grid-template-columns: 1fr;
    }

    .gb-site-footer__bottom {
        justify-content: flex-start;
    }

    .gb-site-footer__odeme {
        margin-left: 0;
        justify-content: flex-start;
    }

    .gb-site-footer__odeme-band {
        height: 22px;
    }
}

/* ─── Vitrin yasal sayfalar (landing-light) ─── */
.vitrin-legal-page {
    margin-top: 24px;
    margin-bottom: 8px;
}

.legal-page-header {
    margin-bottom: 18px;
}

.legal-page-title {
    margin: 0 0 8px;
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.legal-page-subtitle {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

.legal-page-subtitle a {
    color: #4338ca;
    font-weight: 700;
}

body.landing-light .legal-document {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    padding: 22px 24px 26px;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

body.landing-light .legal-document__badge {
    display: inline-flex;
    margin: 0 0 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.22);
    color: #4338ca;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

body.landing-light .legal-document__intro,
body.landing-light .legal-document__section p,
body.landing-light .legal-document__section li,
body.landing-light .legal-document__foot {
    color: #334155;
    line-height: 1.65;
    font-size: 14px;
}

body.landing-light .legal-document__section h2 {
    color: #0f172a;
    font-size: 1.12rem;
    margin: 0 0 10px;
}

body.landing-light .legal-document__section h3,
body.landing-light .legal-document__section h4 {
    color: #1e293b;
}

body.landing-light .legal-document__section {
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

body.landing-light .legal-document__section:last-of-type {
    border-bottom: 0;
}

body.landing-light .legal-document__toc {
    margin-bottom: 22px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.18);
}

body.landing-light .legal-document__toc a,
body.landing-light .legal-document__section a {
    color: #4338ca;
    font-weight: 700;
}

body.landing-light .legal-document__foot {
    margin-top: 8px;
    padding-top: 14px;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
}

/* Eski tek satır copyright — footer ile değiştirildi */
.copyright {
    display: none;
}
/* Üyelik bölümü (Tailwind CDN'den saf CSS'e taşındı) */
.hub-uyelik {
    overflow: hidden;
    border-radius: 2rem;
    border: 1px solid #fde68a;
    background: linear-gradient(135deg, #fff 0%, #fefce8 55%, #f1f5f9 100%);
    box-shadow: 0 20px 40px rgba(148, 163, 184, 0.25);
}

.hub-uyelik__grid {
    display: grid;
    gap: 2rem;
    padding: 1.75rem;
}

@media (min-width: 1024px) {
    .hub-uyelik__grid {
        grid-template-columns: 1.25fr 0.75fr;
        padding: 2.5rem;
    }
}

.hub-uyelik__intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hub-uyelik__badge {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 1px solid #fde68a;
    background: #fff;
    font-size: 0.875rem;
    font-weight: 800;
    color: #a16207;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.hub-uyelik__dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #facc15;
}

.hub-uyelik__title {
    margin: 0;
    max-width: 48rem;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #020617;
    line-height: 1.1;
}

.hub-uyelik__text {
    margin: 1.25rem 0 0;
    max-width: 42rem;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.8;
    color: #475569;
}

.hub-uyelik__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

@media (min-width: 640px) {
    .hub-uyelik__actions {
        flex-direction: row;
    }
}

.hub-uyelik__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 1rem;
    font-size: 1rem;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.15s ease, background-color 0.15s ease;
}

.hub-uyelik__btn:hover {
    transform: translateY(-2px);
}

.hub-uyelik__btn--primary {
    background: #020617;
    color: #fff;
    box-shadow: 0 10px 20px rgba(148, 163, 184, 0.45);
}

.hub-uyelik__btn--primary:hover {
    background: #1e293b;
}

.hub-uyelik__btn--soft {
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #1e293b;
}

.hub-uyelik__btn--soft:hover {
    background: #f8fafc;
}

.hub-uyelik__panel {
    border-radius: 1.7rem;
    background: #020617;
    padding: 1.5rem;
    color: #fff;
    box-shadow: 0 25px 50px rgba(148, 163, 184, 0.4);
}

.hub-uyelik__panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.hub-uyelik__pill {
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: #facc15;
    font-size: 0.75rem;
    font-weight: 900;
    color: #020617;
}

.hub-uyelik__muted {
    font-size: 0.875rem;
    font-weight: 700;
    color: #94a3b8;
}

.hub-uyelik__steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hub-uyelik__step {
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 1rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.hub-uyelik__step-no {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 700;
    color: #94a3b8;
}

.hub-uyelik__step-title {
    margin: 0.25rem 0 0;
    font-size: 1.25rem;
    font-weight: 900;
    color: inherit;
}

.hub-uyelik__step-text {
    margin: 0.5rem 0 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #cbd5e1;
}

.hub-uyelik__step--accent {
    background: #facc15;
    color: #020617;
    box-shadow: none;
}

.hub-uyelik__step--accent .hub-uyelik__step-no {
    color: #854d0e;
}

.hub-uyelik__step--accent .hub-uyelik__step-text {
    color: #422006;
    font-weight: 600;
}

/* Üyelik süreci sayfası (Tailwind CDN'den saf CSS'e taşındı) */
.uyelik-page {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 1.75rem 0 2rem;
}

.uyelik-steps {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .uyelik-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.uyelik-info {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .uyelik-info {
        grid-template-columns: 0.9fr 1.1fr;
    }
}

.uyelik-card {
    border-radius: 1.5rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.uyelik-card__no {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.25rem;
    border-radius: 1rem;
    background: #fef9c3;
    font-size: 1.25rem;
    font-weight: 900;
    color: #a16207;
}

.uyelik-card__title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 900;
    color: #020617;
}

.uyelik-card__title--lg {
    font-size: 1.5rem;
    letter-spacing: -0.01em;
}

.uyelik-card__text {
    margin: 0.75rem 0 0;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.6;
    color: #475569;
}

.uyelik-features {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.uyelik-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 1rem;
    background: #f8fafc;
    padding: 1rem;
    font-weight: 700;
    color: #1e293b;
}

.uyelik-feature__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.75rem;
    background: #fff;
    font-size: 1.1rem;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.uyelik-note {
    margin-top: 1.25rem;
    border-radius: 1rem;
    padding: 1.25rem;
}

.uyelik-note--plain {
    border: 1px solid #e2e8f0;
    background: #f8fafc;
}

.uyelik-note--warn {
    border: 1px solid #fde68a;
    background: #fefce8;
}

.uyelik-note h3 {
    margin: 0 0 0.6rem;
    font-size: 1rem;
    font-weight: 900;
    color: #0f172a;
}

.uyelik-note--warn h3,
.uyelik-note--warn p {
    color: #713f12;
}

.uyelik-note p {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.6;
}

.uyelik-note ul {
    margin: 0;
    padding-left: 1.1rem;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.7;
    color: #475569;
}

.uyelik-cta {
    display: grid;
    gap: 1.5rem;
    border-radius: 2rem;
    background: #020617;
    padding: 1.75rem;
    color: #fff;
    box-shadow: 0 20px 40px rgba(148, 163, 184, 0.35);
}

@media (min-width: 1024px) {
    .uyelik-cta {
        grid-template-columns: 1fr auto;
        align-items: center;
        padding: 2rem;
    }
}

.uyelik-cta__body h2 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.01em;
}

.uyelik-cta__body p {
    margin: 0.75rem 0 0;
    max-width: 42rem;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.6;
    color: #cbd5e1;
}

.uyelik-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .uyelik-cta__actions {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .uyelik-cta__actions {
        flex-direction: column;
    }
}

.uyelik-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 1rem;
    font-weight: 900;
    text-decoration: none;
    transition: background-color 0.15s ease;
}

.uyelik-cta__btn--accent {
    background: #facc15;
    color: #020617;
}

.uyelik-cta__btn--accent:hover {
    background: #fde047;
}

.uyelik-cta__btn--ghost {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.uyelik-cta__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Şifremi unuttum: galeri hesapları için ayrı yol notu. */
.gb-vitrin-auth__note {
  margin: 16px 0 0;
  padding: 12px 14px;
  background: #f7f8fa;
  border: 1px solid #e6e8ec;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.55;
  color: #5b6472;
  text-align: left;
}

.gb-vitrin-auth__note a {
  color: #1f2b45;
  font-weight: 600;
}

/* Aracını Değerlet — "yapım aşamasında" sayfası çıkmazdı; artık üç somut yol var. */
body.landing.hub-home .hub-degerlet-yollar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 24px 0 8px;
  text-align: left;
}

body.landing.hub-home .hub-degerlet-yol {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: #fff;
  border: 1px solid #e6e8ec;
  border-radius: 14px;
}

body.landing.hub-home .hub-degerlet-yol__ikon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #eef1f6;
  color: #1f2b45;
  font-size: 17px;
}

body.landing.hub-home .hub-degerlet-yol__baslik {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #1f2b45;
}

body.landing.hub-home .hub-degerlet-yol__metin {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.55;
  color: #5b6472;
  flex: 1 1 auto;
}

body.landing.hub-home .hub-degerlet-yol .hub-btn {
  align-self: flex-start;
}

body.landing.hub-home .hub-degerlet-geri {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 8px;
  color: #5b6472;
  text-decoration: none;
  font-size: 14px;
}

body.landing.hub-home .hub-degerlet-geri:hover { color: #1f2b45; text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════════════════════
   Ana sayfa — GİRİŞ YAPMIŞ üye bloğu (hub-uye).
   Oturumu açık üyeye "nasıl üye olunur" yerine kendi durumu gösterilir.
   Görsel dil hub-uyelik ile aynı; renkler açıkça yazıldı.
   ═══════════════════════════════════════════════════════════════════════════ */
.hub-uye {
    border-radius: 1.5rem;
    border: 1px solid #fde68a;
    background: linear-gradient(135deg, #fff 0%, #fefce8 55%, #f1f5f9 100%);
    box-shadow: 0 20px 40px rgba(148, 163, 184, 0.25);
}

.hub-uye__grid {
    display: grid;
    gap: 2rem;
    padding: 1.75rem;
}

@media (min-width: 1024px) {
    .hub-uye__grid {
        grid-template-columns: 1.25fr 0.75fr;
        padding: 2.5rem;
    }
}

.hub-uye__intro { display: flex; flex-direction: column; justify-content: center; }

.hub-uye__badge {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 1px solid #fde68a;
    background: #fff;
    font-size: 0.875rem;
    font-weight: 800;
    color: #a16207;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.hub-uye__dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: #16a34a;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.18);
}

.hub-uye__title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.5rem, 3.2vw, 2.25rem);
    line-height: 1.15;
    letter-spacing: -0.5px;
    font-weight: 800;
    color: #0f172a;
}

/* Vurgu rengi marka altını ile aynı kalır — buton gradyanıyla birebir. */
.hub-uye__title span {
    background: linear-gradient(135deg, #ca8a04 0%, #eab308 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hub-uye__text {
    margin: 0 0 1.25rem;
    max-width: 60ch;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 500;
    color: #475569;
}

.hub-uye__text strong { color: #0f172a; font-weight: 800; }

.hub-uye__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hub-uye__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 46px;
    padding: 0 1.35rem;
    border-radius: 0.85rem;
    font-size: 0.9375rem;
    font-weight: 800;
    text-decoration: none;
}

.hub-uye__btn--primary {
    background: linear-gradient(135deg, #ca8a04 0%, #eab308 100%);
    color: #fff;
    box-shadow: 0 10px 24px rgba(202, 138, 4, 0.28);
}

.hub-uye__btn--primary:hover { filter: brightness(1.06); }

.hub-uye__btn--soft {
    background: #fff;
    color: #0f172a;
    border: 1px solid #e2e8f0;
}

.hub-uye__btn--soft:hover { background: #f8fafc; }
.hub-uye__btn:focus-visible { outline: 3px solid #ca8a04; outline-offset: 2px; }

.hub-uye__panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.35rem;
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    background: rgba(255, 255, 255, 0.9);
}

.hub-uye__panel-head { display: flex; align-items: center; justify-content: space-between; }

.hub-uye__pill {
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hub-uye__durum { display: grid; gap: 0.85rem; }

.hub-uye__durum-satir { display: flex; align-items: flex-start; gap: 0.75rem; }

.hub-uye__durum-satir > div { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.hub-uye__durum-satir strong { font-size: 0.9375rem; font-weight: 800; color: #0f172a; }
.hub-uye__durum-satir small { font-size: 0.8125rem; line-height: 1.5; color: #64748b; }

.hub-uye__durum-ikon {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.75rem;
    font-size: 0.9375rem;
}

.hub-uye__durum-ikon.is-ok { background: rgba(22, 101, 52, 0.1); color: #166534; }
.hub-uye__durum-ikon.is-bekliyor { background: #fff8e6; color: #a16207; }

.hub-uye__links { display: grid; gap: 0.6rem; }

.hub-uye__link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 0.9rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    text-decoration: none;
}

.hub-uye__link:hover { background: #f8fafc; border-color: #cbd5e1; }
.hub-uye__link i { color: #ca8a04; font-size: 1rem; width: 1.25rem; text-align: center; }
.hub-uye__link span { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.hub-uye__link strong { font-size: 0.9375rem; font-weight: 800; color: #0f172a; }
.hub-uye__link small { font-size: 0.8125rem; color: #64748b; }

.hub-uye__panel-link {
    align-self: flex-start;
    color: #ca8a04;
    font-size: 0.875rem;
    font-weight: 800;
    text-decoration: none;
}

.hub-uye__panel-link:hover { text-decoration: underline; }
