/* ============================================================
   EMLAK TAKİP — Kurumsal Yönetim Paneli
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --navy-950: #071018;
    --navy-900: #0c1929;
    --navy-800: #132337;
    --navy-700: #1c3352;
    --navy-600: #2a4a73;
    --gold: #c9a227;
    --gold-light: #e8c96a;
    --gold-dark: #a6851f;
    --gold-glow: rgba(201, 162, 39, 0.35);
    --ink: #0f172a;
    --ink-soft: #64748b;
    --ink-muted: #94a3b8;
    --line: #e2e8f0;
    --line-soft: #f1f5f9;
    --bg: #f4f6f9;
    --bg-elevated: #ffffff;
    --price: #b45309;
    --green: #15803d;
    --red: #b91c1c;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
    --shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.12);
    --shadow-hover: 0 16px 48px rgba(15, 23, 42, 0.14);
    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font);
    background: var(--bg);
    color: var(--ink);
    font-size: 14px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    padding-bottom: env(safe-area-inset-bottom, 0);
}

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

/* ============================================================
   NAVBAR — Kurumsal üst menü
   ============================================================ */
.topbar {
    background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 24px rgba(7, 16, 24, 0.35);
}

.topbar-accent {
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
    background-size: 200% 100%;
    transition: background-position var(--transition);
}

.topbar:hover .topbar-accent {
    background-position: 100% 0;
}

.topbar-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Marka */
.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    padding: 6px 10px 6px 6px;
    margin-left: -6px;
    border-radius: var(--radius);
    transition: background var(--transition), transform var(--transition);
}

.brand:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-1px);
}

.brand-mark {
    width: 40px;
    height: 40px;
    background: linear-gradient(145deg, var(--gold-light), var(--gold-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-950);
    box-shadow: 0 4px 12px var(--gold-glow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.brand:hover .brand-mark {
    transform: scale(1.06) rotate(-2deg);
    box-shadow: 0 6px 20px var(--gold-glow);
}

.brand-mark svg {
    width: 22px;
    height: 22px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.brand-name {
    font-weight: 800;
    font-size: 17px;
    color: #fff;
    letter-spacing: -0.3px;
    line-height: 1.2;
    transition: color var(--transition);
}

.brand:hover .brand-name {
    color: var(--gold-light);
}

.brand-sub {
    font-size: 10.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: color var(--transition);
}

.brand:hover .brand-sub {
    color: rgba(255, 255, 255, 0.65);
}

/* Navigasyon */
.topnav {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 5px;
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.72);
    transition: color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition);
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width var(--transition);
}

.nav-link .nav-icon {
    width: 18px;
    height: 18px;
    opacity: 0.75;
    transition: opacity var(--transition), transform var(--transition), color var(--transition);
}

.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-link:hover::before {
    width: calc(100% - 28px);
}

.nav-link:hover .nav-icon {
    opacity: 1;
    transform: scale(1.1);
    color: var(--gold-light);
}

.nav-link.active {
    color: var(--navy-950);
    background: linear-gradient(145deg, var(--gold-light), var(--gold));
    box-shadow: 0 4px 14px var(--gold-glow);
}

.nav-link.active::before {
    display: none;
}

.nav-link.active .nav-icon {
    opacity: 1;
    color: var(--navy-900);
}

.nav-link.active:hover {
    color: var(--navy-950);
    background: linear-gradient(145deg, #f0d878, var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--gold-glow);
}

/* Header CTA */
.topbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.2px;
    color: var(--navy-950);
    background: linear-gradient(145deg, var(--gold-light), var(--gold-dark));
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 14px var(--gold-glow);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
    white-space: nowrap;
}

.btn-header-cta svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition);
}

.btn-header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--gold-glow);
    background: linear-gradient(145deg, #f5df8a, var(--gold));
    color: var(--navy-950);
}

.btn-header-cta:hover svg {
    transform: rotate(90deg) scale(1.1);
}

.btn-header-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    transition: all var(--transition);
}

.btn-header-ghost:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-header-ghost svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition);
}

.btn-header-ghost:hover svg {
    transform: translateX(-3px);
}

/* Eski sınıf uyumluluğu */
.btn-primary-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
    color: var(--navy-950);
    background: linear-gradient(145deg, var(--gold-light), var(--gold-dark));
    box-shadow: 0 4px 14px var(--gold-glow);
    transition: all var(--transition);
}

.btn-primary-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--gold-glow);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.page {
    max-width: 1240px;
    margin: 0 auto;
    padding: 32px 28px 72px;
}

.page-hero {
    background: var(--bg-elevated);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: box-shadow var(--transition), border-color var(--transition);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold), var(--gold-dark));
    transition: width var(--transition);
}

.page-hero:hover {
    box-shadow: var(--shadow);
    border-color: #cbd5e1;
}

.page-hero:hover::before {
    width: 6px;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.page-title {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--ink);
    line-height: 1.2;
}

.page-subtitle {
    color: var(--ink-soft);
    font-size: 14px;
    margin-top: 6px;
    max-width: 520px;
}

.page-narrow { max-width: 900px; }

/* Arama kutusu */
.search-box {
    position: relative;
    min-width: 280px;
}

.search-box svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--ink-muted);
    pointer-events: none;
    transition: color var(--transition);
}

.search-box input {
    width: 100%;
    padding: 12px 16px 12px 42px;
    border: 1px solid var(--line);
    border-radius: 10px;
    font-size: 14px;
    font-family: var(--font);
    background: var(--bg-elevated);
    color: var(--ink);
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.search-box input::placeholder {
    color: var(--ink-muted);
}

.search-box input:hover {
    border-color: #cbd5e1;
    background: #fafbfc;
}

.search-box input:focus {
    outline: none;
    border-color: var(--navy-600);
    box-shadow: 0 0 0 4px rgba(42, 74, 115, 0.12);
    background: #fff;
}

.search-box:focus-within svg {
    color: var(--navy-600);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 18px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--bg-elevated);
    color: var(--ink);
    font-weight: 600;
    font-size: 13.5px;
    font-family: var(--font);
    cursor: pointer;
    transition: all var(--transition);
}

.btn:hover {
    border-color: var(--navy-600);
    color: var(--navy-700);
    background: #f8fafc;
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.btn-gold {
    background: linear-gradient(145deg, var(--gold-light), var(--gold-dark));
    border-color: var(--gold-dark);
    color: var(--navy-950);
    font-weight: 700;
    box-shadow: 0 2px 8px var(--gold-glow);
}

.btn-gold:hover {
    background: linear-gradient(145deg, #f0d878, var(--gold));
    border-color: var(--gold);
    color: var(--navy-950);
    box-shadow: 0 4px 16px var(--gold-glow);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--navy-800);
    border-color: var(--navy-800);
    color: #fff;
}

.btn-dark:hover {
    background: var(--navy-700);
    border-color: var(--navy-700);
    box-shadow: var(--shadow);
}

.btn-danger {
    color: var(--red);
    border-color: #fecaca;
    background: #fff;
}

.btn-danger:hover {
    background: #fef2f2;
    border-color: var(--red);
    transform: translateY(-1px);
}

.btn-sm { padding: 7px 13px; font-size: 12.5px; }
.btn-block { width: 100%; }

/* ============================================================
   HOUSE GRID
   ============================================================ */
.house-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 22px;
}

.house-card {
    background: var(--bg-elevated);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.house-card::after {
    content: 'Detayları Gör →';
    position: absolute;
    bottom: 16px;
    right: 16px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--navy-600);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity var(--transition), transform var(--transition);
}

.house-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: #cbd5e1;
}

.house-card:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.house-card .thumb {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: var(--line-soft) center/cover no-repeat;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition);
}

.house-card:hover .thumb {
    transform: scale(1.03);
}

.house-card .thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(7, 16, 24, 0.35) 100%);
    opacity: 0;
    transition: opacity var(--transition);
}

.house-card:hover .thumb::after {
    opacity: 1;
}

.house-card .thumb .no-photo {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-muted);
    font-size: 13px;
    font-weight: 500;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}

.house-card .thumb .status-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(12, 25, 41, 0.88);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background var(--transition), transform var(--transition);
}

.house-card:hover .status-badge {
    background: var(--navy-800);
    transform: translateY(-2px);
}

.house-card .thumb .visit-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(145deg, var(--gold-light), var(--gold));
    color: var(--navy-950);
    font-size: 11px;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 6px;
    box-shadow: 0 2px 8px var(--gold-glow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.house-card:hover .visit-badge {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 14px var(--gold-glow);
}

.house-card .info {
    padding: 18px 20px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.house-card .price {
    color: var(--price);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.4px;
    transition: color var(--transition);
}

.house-card:hover .price {
    color: #92400e;
}

.house-card .title {
    font-weight: 700;
    font-size: 15px;
    color: var(--ink);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color var(--transition);
}

.house-card:hover .title {
    color: var(--navy-700);
}

.house-card .meta {
    color: var(--ink-soft);
    font-size: 13px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.house-card .location {
    color: var(--ink-muted);
    font-size: 12.5px;
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ============================================================
   EMPTY STATE
   ============================================================ */
.empty-state {
    text-align: center;
    padding: 72px 28px;
    color: var(--ink-soft);
    background: var(--bg-elevated);
    border: 1px dashed #cbd5e1;
    border-radius: var(--radius-lg);
    transition: border-color var(--transition), background var(--transition);
}

.empty-state:hover {
    border-color: var(--navy-600);
    background: #fafbfc;
}

.empty-state .big {
    font-size: 48px;
    margin-bottom: 12px;
    opacity: 0.85;
}

/* ============================================================
   DETAIL / GALLERY
   ============================================================ */
.detail-gallery {
    background: var(--bg-elevated);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}

.detail-gallery:hover {
    box-shadow: var(--shadow);
}

.gallery-main {
    width: 100%;
    aspect-ratio: 16/8;
    background: var(--line-soft) center/cover no-repeat;
    position: relative;
}

.gallery-main .nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(12, 25, 41, 0.75);
    backdrop-filter: blur(6px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    opacity: 0.85;
}

.gallery-main .nav-arrow:hover {
    background: var(--navy-800);
    opacity: 1;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.gallery-main .nav-arrow.prev { left: 16px; }
.gallery-main .nav-arrow.next { right: 16px; }

.gallery-main .counter {
    position: absolute;
    bottom: 14px;
    right: 16px;
    background: rgba(12, 25, 41, 0.8);
    backdrop-filter: blur(6px);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-thumbs {
    display: flex;
    gap: 8px;
    padding: 12px;
    overflow-x: auto;
    background: #fafbfc;
    border-top: 1px solid var(--line);
}

.gallery-thumbs img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    flex-shrink: 0;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.gallery-thumbs img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-sm);
}

.gallery-thumbs img.active {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px var(--gold-glow);
}

.gallery-thumbs .remove-photo { position: relative; }

.gallery-thumbs .remove-photo button {
    position: absolute;
    top: -5px;
    right: 2px;
    background: var(--red);
    color: white;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 10px;
    line-height: 1;
    cursor: pointer;
    opacity: 0;
    transition: opacity var(--transition), transform var(--transition);
}

.gallery-thumbs .remove-photo:hover button {
    opacity: 1;
    transform: scale(1.1);
}

/* ============================================================
   TABS
   ============================================================ */
.tabs {
    display: flex;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 24px;
    background: var(--bg-elevated);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 8px 8px 0;
    border: 1px solid var(--line);
    border-bottom: none;
}

.tab-btn {
    padding: 14px 22px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 700;
    font-size: 14px;
    font-family: var(--font);
    color: var(--ink-soft);
    cursor: pointer;
    border-radius: var(--radius) var(--radius) 0 0;
    transition: all var(--transition);
    position: relative;
}

.tab-btn:hover {
    color: var(--navy-700);
    background: #f8fafc;
}

.tab-btn.active {
    color: var(--navy-800);
    border-bottom-color: var(--gold);
    background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ============================================================
   DETAIL CARD
   ============================================================ */
.detail-card {
    background: var(--bg-elevated);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), border-color var(--transition);
}

.detail-card:hover {
    box-shadow: var(--shadow);
    border-color: #cbd5e1;
}

.detail-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line-soft);
}

.detail-title-row h1 {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 6px;
    letter-spacing: -0.4px;
    color: var(--ink);
}

.detail-title-row .code {
    font-size: 12px;
    color: var(--ink-muted);
    font-family: 'SF Mono', Consolas, monospace;
    background: var(--line-soft);
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
}

.detail-price {
    font-size: 30px;
    font-weight: 800;
    color: var(--price);
    letter-spacing: -0.5px;
}

.detail-danger-zone {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--line-soft);
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px 24px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 14px;
    background: #fafbfc;
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: all var(--transition);
}

.spec-item:hover {
    background: #fff;
    border-color: var(--line);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.spec-item .label {
    font-size: 11px;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.spec-item .value {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--ink);
}

.desc-block {
    margin-top: 20px;
    padding: 18px 20px;
    background: #fafbfc;
    border-radius: var(--radius);
    border-left: 3px solid var(--gold);
    white-space: pre-wrap;
    line-height: 1.7;
    transition: background var(--transition);
}

.desc-block:hover {
    background: #f4f6f9;
}

/* ============================================================
   VISITS
   ============================================================ */
.visit-list { display: flex; flex-direction: column; gap: 12px; }

.visit-item {
    background: var(--bg-elevated);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    flex-wrap: wrap;
    transition: all var(--transition);
}

.visit-item:hover {
    border-color: #cbd5e1;
    box-shadow: var(--shadow);
    transform: translateX(4px);
}

.visit-item .who {
    font-weight: 700;
    font-size: 15px;
    color: var(--navy-800);
    transition: color var(--transition);
}

.visit-item:hover .who {
    color: var(--navy-600);
}

.visit-item .contact {
    font-size: 13px;
    color: var(--ink-soft);
    margin-top: 3px;
}

.visit-item .comment {
    margin-top: 10px;
    font-size: 13.5px;
    color: var(--ink);
    background: #f8fafc;
    padding: 12px 14px;
    border-radius: var(--radius);
    width: 100%;
    border: 1px solid var(--line-soft);
    transition: background var(--transition);
}

.visit-item:hover .comment {
    background: #fff;
}

.visit-item .date {
    font-size: 12px;
    color: var(--ink-muted);
    margin-top: 6px;
}

.visit-item-body {
    flex: 1;
    min-width: 0;
}

.visit-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.visit-tab-header {
    margin-bottom: 12px;
}

.visit-item-link {
    text-decoration: none;
    color: inherit;
}

.visit-item-main {
    display: flex;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.visit-item-thumb {
    width: 64px;
    height: 48px;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.rating-badge {
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
    color: white;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.visit-item:hover .rating-badge,
.house-card:hover .rating-badge {
    transform: scale(1.06);
    box-shadow: var(--shadow);
}

.rating-1, .rating-2, .rating-3 { background: linear-gradient(145deg, #ef4444, #b91c1c); }
.rating-4, .rating-5, .rating-6 { background: linear-gradient(145deg, #f59e0b, #d97706); }
.rating-7, .rating-8 { background: linear-gradient(145deg, #22c55e, #15803d); }
.rating-9, .rating-10 { background: linear-gradient(145deg, #10b981, #047857); }
.rating-none { background: linear-gradient(145deg, #94a3b8, #64748b); }

/* ============================================================
   CUSTOMER TABLE
   ============================================================ */
.customer-table-wrap {
    background: var(--bg-elevated);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}

.customer-table-wrap:hover {
    box-shadow: var(--shadow);
}

.customer-table {
    width: 100%;
    border-collapse: collapse;
}

.customer-table th {
    text-align: left;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--ink-muted);
    background: linear-gradient(180deg, #fafbfc, #f4f6f9);
    padding: 14px 20px;
    border-bottom: 1px solid var(--line);
    font-weight: 700;
}

.customer-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--line-soft);
    font-size: 14px;
    transition: background var(--transition);
}

.customer-table tr:last-child td { border-bottom: none; }

.customer-table tbody tr {
    cursor: pointer;
    transition: background var(--transition);
}

.customer-table tbody tr:hover td {
    background: linear-gradient(90deg, rgba(201, 162, 39, 0.06), transparent);
}

.customer-table tbody tr:hover td:first-child {
    box-shadow: inset 3px 0 0 var(--gold);
}

.code-pill {
    font-family: 'SF Mono', Consolas, monospace;
    font-size: 11px;
    background: linear-gradient(145deg, #fef9e7, #fdecc8);
    color: #92400e;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid #fcd34d;
    font-weight: 600;
    transition: all var(--transition);
}

.customer-table tr:hover .code-pill {
    background: linear-gradient(145deg, #fdecc8, #fcd34d);
    transform: scale(1.02);
}

/* ============================================================
   FORMS
   ============================================================ */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.1px;
}

.form-group input[type=text],
.form-group input[type=number],
.form-group input[type=tel],
.form-group input[type=email],
.form-group input[type=date],
.form-group select,
.form-group textarea {
    padding: 11px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: var(--font);
    background: var(--bg-elevated);
    color: var(--ink);
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #cbd5e1;
    background: #fafbfc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy-600);
    box-shadow: 0 0 0 4px rgba(42, 74, 115, 0.1);
    background: #fff;
}

.form-group textarea { resize: vertical; min-height: 80px; }

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 24px;
}

.checkbox-row input {
    width: 17px;
    height: 17px;
    accent-color: var(--navy-700);
    cursor: pointer;
}

.checkbox-row label {
    font-weight: 600;
    font-size: 13.5px;
    cursor: pointer;
    transition: color var(--transition);
}

.checkbox-row:hover label {
    color: var(--navy-700);
}

.form-section-title {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--navy-700);
    margin: 28px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--line);
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section-title::before {
    content: '';
    width: 4px;
    height: 16px;
    background: linear-gradient(180deg, var(--gold), var(--gold-dark));
    border-radius: 2px;
}

.form-section-title:first-child { margin-top: 0; }

/* ============================================================
   PHOTO UPLOAD
   ============================================================ */
.photo-drop {
    border: 2px dashed #cbd5e1;
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    color: var(--ink-soft);
    cursor: pointer;
    background: linear-gradient(135deg, #fafbfc, #f4f6f9);
    transition: all var(--transition);
}

.photo-drop:hover,
.photo-drop.drag-over {
    border-color: var(--gold);
    background: linear-gradient(135deg, #fffbeb, #fef9e7);
    box-shadow: 0 0 0 4px var(--gold-glow);
    transform: scale(1.005);
}

.photo-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.photo-preview-grid .item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    transition: transform var(--transition), box-shadow var(--transition);
}

.photo-preview-grid .item:hover {
    transform: scale(1.04);
    box-shadow: var(--shadow);
}

.photo-preview-grid img { width: 100%; height: 100%; object-fit: cover; }

.photo-preview-grid .remove {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(185, 28, 28, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 12px;
    cursor: pointer;
    opacity: 0;
    transition: opacity var(--transition), transform var(--transition);
}

.photo-preview-grid .item:hover .remove {
    opacity: 1;
    transform: scale(1.1);
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(7, 16, 24, 0.65);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
    padding: 24px;
}

.modal-backdrop.open { display: flex; }

.modal {
    background: var(--bg-elevated);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 540px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
    animation: modalIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(16px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, #fafbfc, #fff);
}

.modal-header h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 800;
    color: var(--navy-800);
}

.modal-close {
    background: var(--line-soft);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    color: var(--ink-soft);
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: #fee2e2;
    color: var(--red);
    transform: rotate(90deg);
}

.modal-body { padding: 22px 24px; }
.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    background: #fafbfc;
}

/* ============================================================
   RATING PICKER
   ============================================================ */
.rating-picker {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.rating-picker .r-opt {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: var(--bg-elevated);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    color: var(--ink-soft);
    font-family: var(--font);
    transition: all var(--transition);
}

.rating-picker .r-opt:hover {
    border-color: var(--navy-600);
    color: var(--navy-700);
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.rating-picker .r-opt.selected {
    background: var(--navy-800);
    border-color: var(--navy-800);
    color: #fff;
    box-shadow: var(--shadow);
    transform: scale(1.08);
}

.rating-scale-hint {
    display: flex;
    justify-content: space-between;
    font-size: 11.5px;
    color: var(--ink-muted);
    margin-top: 6px;
}

/* ============================================================
   MISC
   ============================================================ */
.toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(24px);
    background: var(--navy-900);
    color: white;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 300;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast.error { background: var(--red); border-color: rgba(255, 255, 255, 0.15); }

.confirm-modal-backdrop {
    z-index: 250;
}

.confirm-modal {
    max-width: 420px;
    text-align: center;
}

.confirm-modal-header {
    justify-content: center;
    border-bottom: none;
    padding-bottom: 0;
}

.confirm-modal-body {
    padding-top: 8px;
    padding-bottom: 8px;
}

.confirm-modal-message {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: var(--ink-muted);
}

.confirm-modal-footer {
    justify-content: center;
    gap: 10px;
    border-top: none;
    padding-top: 8px;
}

.loading-text {
    color: var(--ink-muted);
    padding: 48px;
    text-align: center;
    font-weight: 500;
}

.searchable-select { position: relative; }

.searchable-select .results {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    max-height: 200px;
    overflow-y: auto;
    z-index: 10;
    display: none;
}

.searchable-select .results.open { display: block; }

.searchable-select .result-item {
    padding: 11px 14px;
    cursor: pointer;
    font-size: 13.5px;
    transition: background var(--transition), padding-left var(--transition);
    border-bottom: 1px solid var(--line-soft);
}

.searchable-select .result-item:last-child { border-bottom: none; }

.searchable-select .result-item:hover {
    background: linear-gradient(90deg, rgba(201, 162, 39, 0.1), transparent);
    padding-left: 18px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--ink-soft);
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 20px;
    padding: 8px 14px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: all var(--transition);
}

.back-link:hover {
    color: var(--navy-700);
    background: var(--bg-elevated);
    border-color: var(--line);
    transform: translateX(-4px);
    box-shadow: var(--shadow-sm);
}

/* ============================================================
   SPA VIEW TRANSITION
   ============================================================ */
#app.view-enter {
    animation: viewEnter 0.22s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes viewEnter {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   MOBİL ALT NAVİGASYON
   ============================================================ */
.bottom-nav {
    display: none;
}

/* ============================================================
   RESPONSIVE — Tablet & Mobil
   ============================================================ */
@media (max-width: 900px) {
    .page { padding: 24px 20px 48px; }
    .page-hero { padding: 22px 24px; }
    .detail-card { padding: 20px 22px; }
    .house-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
}

@media (max-width: 768px) {
    /* ---- Genel ---- */
    body.has-bottom-nav {
        padding-bottom: calc(64px + env(safe-area-inset-bottom, 0));
    }

    .page {
        padding: 16px 14px 24px;
        max-width: 100%;
    }

    .page-narrow { max-width: 100%; }

    .page-hero {
        padding: 18px 16px;
        margin-bottom: 18px;
    }

    .page-header {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .page-title { font-size: 20px; }
    .page-subtitle { font-size: 13px; }

    /* iOS zoom önleme */
    .form-group input,
    .form-group select,
    .form-group textarea,
    .search-box input {
        font-size: 16px;
        min-height: 48px;
    }

    .form-group textarea { min-height: 100px; }

    .btn,
    .btn-gold,
    .btn-dark,
    .btn-danger {
        min-height: 48px;
        padding: 12px 18px;
        font-size: 15px;
    }

    .btn-sm { min-height: 42px; padding: 10px 14px; }

    /* ---- Navbar ---- */
    .topbar-inner {
        padding: 10px 14px;
        height: auto;
        min-height: 56px;
        gap: 10px;
    }

    .brand { gap: 10px; padding: 4px; margin-left: 0; }
    .brand-mark { width: 36px; height: 36px; border-radius: 8px; }
    .brand-mark svg { width: 20px; height: 20px; }
    .brand-name { font-size: 15px; }
    .brand-sub { display: none; }

    .topnav { display: none; }

    .topbar-actions { margin-left: auto; }

    .btn-header-cta,
    .btn-header-ghost {
        padding: 10px 14px;
        min-width: 44px;
        min-height: 44px;
        justify-content: center;
    }

    .btn-header-cta span,
    .btn-header-ghost span { display: none; }

    /* ---- Alt navigasyon ---- */
    .bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 120;
        background: rgba(12, 25, 41, 0.97);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 6px 8px calc(6px + env(safe-area-inset-bottom, 0));
        box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
    }

    body.has-bottom-nav .bottom-nav { display: flex; }

    .bottom-nav-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        padding: 8px 4px;
        border-radius: 10px;
        color: rgba(255, 255, 255, 0.6);
        font-size: 10.5px;
        font-weight: 600;
        transition: color var(--transition), background var(--transition);
        min-height: 52px;
    }

    .bottom-nav-item svg {
        width: 22px;
        height: 22px;
    }

    .bottom-nav-item.active {
        color: var(--gold-light);
        background: rgba(255, 255, 255, 0.08);
    }

    .bottom-nav-item.bottom-nav-cta {
        flex: 0 0 auto;
        background: linear-gradient(145deg, var(--gold-light), var(--gold-dark));
        color: var(--navy-950);
        padding: 10px 18px;
        margin: 0 4px;
        min-width: 56px;
        box-shadow: 0 4px 14px var(--gold-glow);
    }

    .bottom-nav-item.bottom-nav-cta.active {
        color: var(--navy-950);
        background: linear-gradient(145deg, #f0d878, var(--gold));
    }

    /* ---- İlan kartları ---- */
    .house-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .house-card::after { display: none; }

    .house-card:hover { transform: none; }
    .house-card:active { transform: scale(0.98); }

    .house-card .info { padding: 14px 16px 16px; }
    .house-card .price { font-size: 18px; }

    /* ---- Galeri ---- */
    .gallery-main { aspect-ratio: 4/3; }

    .gallery-main .nav-arrow {
        width: 48px;
        height: 48px;
        font-size: 22px;
        opacity: 1;
    }

    .gallery-main .nav-arrow.prev { left: 10px; }
    .gallery-main .nav-arrow.next { right: 10px; }

    .gallery-thumbs {
        padding: 10px;
        gap: 6px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
    }

    .gallery-thumbs img {
        width: 72px;
        height: 54px;
        scroll-snap-align: start;
    }

    .gallery-thumbs .remove-photo button {
        opacity: 1;
        width: 24px;
        height: 24px;
        font-size: 11px;
    }

    /* ---- Detay ---- */
    .detail-card { padding: 16px; margin-bottom: 14px; }

    .detail-title-row {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 14px;
        padding-bottom: 14px;
    }

    .detail-title-row h1 { font-size: 19px; line-height: 1.3; }
    .detail-price { font-size: 24px; }

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

    .spec-item { padding: 10px 12px; }
    .spec-item .value { font-size: 13.5px; word-break: break-word; }

    /* ---- Sekmeler ---- */
    .tabs {
        padding: 4px;
        margin-bottom: 16px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .tab-btn {
        flex: 1;
        min-width: 0;
        padding: 12px 14px;
        font-size: 13px;
        white-space: nowrap;
    }

    /* ---- Ziyaret kayıtları ---- */
    .visit-item {
        padding: 14px 16px;
        flex-direction: column;
        gap: 12px;
    }

    .visit-item:hover { transform: none; }

    .visit-item > div:last-child {
        flex-direction: row !important;
        align-items: center !important;
        width: 100%;
        justify-content: space-between;
    }

    .visit-item-actions {
        flex-direction: row;
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }

    .visit-tab-header .btn-block-mobile {
        width: 100%;
    }

    .visit-item-thumb {
        width: 56px;
        height: 56px;
        border-radius: 8px;
    }

    .visit-item-link {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .visit-item-link .rating-badge {
        align-self: flex-start;
    }

    /* ---- Müşteri tablosu → kart ---- */
    .customer-table-wrap {
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .customer-table thead { display: none; }

    .customer-table,
    .customer-table tbody,
    .customer-table tr,
    .customer-table td {
        display: block;
        width: 100%;
    }

    .customer-table tbody tr {
        background: var(--bg-elevated);
        border: 1px solid var(--line);
        border-radius: var(--radius-lg);
        margin-bottom: 12px;
        padding: 14px 16px;
        box-shadow: var(--shadow-sm);
    }

    .customer-table tbody tr:active {
        background: #f8fafc;
        transform: scale(0.99);
    }

    .customer-table td {
        padding: 6px 0;
        border: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        font-size: 13.5px;
    }

    .customer-table td::before {
        content: attr(data-label);
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.4px;
        color: var(--ink-muted);
        flex-shrink: 0;
    }

    .customer-table td:first-child {
        padding-top: 0;
        padding-bottom: 10px;
        margin-bottom: 6px;
        border-bottom: 1px solid var(--line-soft);
        font-size: 16px;
    }

    .customer-table td:first-child::before { display: none; }

    .customer-table tr:hover td {
        background: transparent;
        box-shadow: none;
    }

    /* ---- Formlar ---- */
    .form-grid { grid-template-columns: 1fr; gap: 14px; }

    .form-grid:has(.checkbox-row) {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .checkbox-row { padding-top: 0; min-height: 44px; }

    .photo-drop { padding: 28px 16px; }
    .photo-preview-grid { grid-template-columns: repeat(3, 1fr); }

    /* ---- Modal (alt sayfa gibi) ---- */
    .modal-backdrop {
        padding: 0;
        align-items: flex-end;
    }

    .modal {
        max-width: 100%;
        max-height: 92vh;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        margin: 0;
    }

    .modal-header { padding: 16px 18px; }
    .modal-body { padding: 18px; }
    .modal-footer {
        padding: 14px 18px calc(14px + env(safe-area-inset-bottom, 0));
        flex-direction: column-reverse;
        gap: 8px;
    }

    .modal-footer .btn {
        width: 100%;
        justify-content: center;
    }

    /* ---- Puan seçici ---- */
    .rating-picker { gap: 5px; justify-content: space-between; }
    .rating-picker .r-opt {
        flex: 1;
        min-width: 0;
        max-width: 36px;
        height: 40px;
    }

    /* ---- Toast ---- */
    .toast {
        bottom: calc(72px + env(safe-area-inset-bottom, 0));
        left: 14px;
        right: 14px;
        transform: translateY(24px);
        text-align: center;
        width: auto;
    }

    .toast.show {
        transform: translateY(0);
    }

    /* ---- Diğer ---- */
    .back-link {
        margin-bottom: 14px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .search-box { min-width: 100%; }

    .empty-state { padding: 48px 20px; }
    .empty-state .big { font-size: 40px; }

    .code-pill { font-size: 10px; word-break: break-all; }
}

@media (max-width: 380px) {
    .spec-grid { grid-template-columns: 1fr; }
    .form-grid:has(.checkbox-row) { grid-template-columns: 1fr; }
    .brand-name { font-size: 14px; }
}
