/* ============================================================
   IstanbulLens — Main Design System
   Palette: İstanbul'un ruhundan ilham
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,600;0,9..144,700;1,9..144,400&family=Inter:wght@300;400;500;600;700&family=Roboto+Mono:wght@400;500&display=swap');

/* ============================================================
   CSS Custom Properties (Design Tokens)
   ============================================================ */
:root {
    /* Renk Paleti */
    --color-bosphorus: #1B4F72;
    --color-bosphorus-light: #2874A6;
    --color-bosphorus-dark: #154360;
    --color-golden: #C8913A;
    --color-golden-light: #D4A853;
    --color-golden-dark: #A8792E;
    --color-stone: #2C2C2C;
    --color-stone-mid: #555555;
    --color-stone-light: #888888;
    --color-parchment: #F5F0E8;
    --color-parchment-alt: #FAF7F2;
    --color-mist: #EAE4D9;
    --color-mist-dark: #D9D2C5;
    --color-tile: #8B4444;
    --color-tile-light: #B85555;
    --color-mint: #2E7D57;
    --color-mint-light: #3DA06E;
    --color-white: #FFFFFF;
    --color-black: #0A0A0A;

    /* Semantic Colors */
    --bg-primary: var(--color-parchment);
    --bg-secondary: var(--color-mist);
    --bg-card: var(--color-white);
    --text-primary: var(--color-stone);
    --text-secondary: var(--color-stone-mid);
    --text-muted: var(--color-stone-light);
    --border-color: var(--color-mist-dark);
    --accent: var(--color-golden);
    --accent-dark: var(--color-golden-dark);
    --brand: var(--color-bosphorus);
    --brand-dark: var(--color-bosphorus-dark);
    --success: var(--color-mint);
    --danger: var(--color-tile);

    /* Typography */
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'Roboto Mono', Consolas, 'Courier New', monospace;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 40px;
    --space-2xl: 64px;
    --space-3xl: 96px;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, .10), 0 2px 4px rgba(0, 0, 0, .06);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, .12), 0 4px 12px rgba(0, 0, 0, .08);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, .15), 0 8px 24px rgba(0, 0, 0, .10);
    --shadow-card: 0 2px 8px rgba(27, 79, 114, .08), 0 1px 3px rgba(0, 0, 0, .05);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(.4, 0, .2, 1);
    --transition-base: 250ms cubic-bezier(.4, 0, .2, 1);
    --transition-slow: 400ms cubic-bezier(.4, 0, .2, 1);
    --transition-spring: 500ms cubic-bezier(.34, 1.56, .64, 1);

    /* Layout */
    --container-max: 1440px;
    --header-height: 64px;
    --announcement-height: 0px;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul,
ol {
    list-style: none;
}

/* ============================================================
   Typography
   ============================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.25;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    color: var(--text-secondary);
}

.text-mono {
    font-family: var(--font-mono);
    font-size: .875rem;
}

/* ============================================================
   Layout Utilities
   ============================================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section {
    padding: var(--space-2xl) 0;
}

.photo-detail__author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border-color);
}

.photo-detail__author-link {
    flex-shrink: 0;
}

.photo-detail__author-info {
    flex: 1;
    min-width: 0;
}

.photo-detail__author-meta {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: .8125rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.photo-detail__author-dot {
    opacity: 0.4;
}

/* Owner action buttons — appear to the right of author block */
.photo-owner-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    margin-left: auto;
}

.photo-icon-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--border-color);
    background: transparent;
    font-size: .8125rem;
    font-weight: 600;
    cursor: pointer;
    transition:
        background var(--transition-fast),
        border-color var(--transition-fast),
        color var(--transition-fast),
        transform var(--transition-fast);
    white-space: nowrap;
    letter-spacing: .01em;
}

.photo-icon-btn svg {
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

/* Edit button */
.photo-icon-btn--edit {
    color: var(--text-secondary);
    border-color: var(--border-color);
    background: var(--bg-secondary);
}

.photo-icon-btn--edit:hover {
    color: var(--color-bosphorus);
    border-color: var(--color-bosphorus);
    background: rgba(27, 79, 114, .07);
    transform: translateY(-1px);
}

.photo-icon-btn--edit:hover svg {
    transform: rotate(-8deg);
}

/* Delete button */
.photo-icon-btn--delete {
    color: var(--text-secondary);
    border-color: var(--border-color);
    background: var(--bg-secondary);
}

.photo-icon-btn--delete:hover {
    color: #c0392b;
    border-color: #c0392b;
    background: rgba(192, 57, 43, .07);
    transform: translateY(-1px);
}

.photo-icon-btn--delete:hover svg {
    transform: scale(1.1);
}

.photo-detail__description {
    font-size: .9375rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

/* Stats row (views + comments) */
.photo-stats {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-left: var(--space-sm);
}

.photo-stat {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .875rem;
    color: var(--text-muted);
}

/* Like & actions bar */

.section-title {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.section-title h2 {
    font-size: 1.75rem;
    font-weight: 600;
}

.section-title-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, var(--border-color), transparent);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-xl);
}

/* ============================================================
   Site Top Bar — duyuru + header birlikte yapışık kalır
   ============================================================ */
#site-top-bar {
    position: sticky;
    top: 0;
    z-index: 101;
    width: 100%;
}

body.has-hero #site-top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

/* ============================================================
   Announcement Bar
   ============================================================ */
.announcement-bar {
    padding: 10px 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: .8125rem;
    font-weight: 500;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .18);
    transition: all var(--transition-base);
}

.announcement-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
    max-width: var(--container-max);
}

.announcement-bar__icon {
    display: flex;
    flex-shrink: 0;
    opacity: .9;
}

.announcement-bar__icon .icon { width: 16px; height: 16px; }

.announcement-bar__text { line-height: 1.4; }
.announcement-bar__text strong { font-weight: 700; }

.announcement-bar__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    background: rgba(255, 255, 255, .18);
    border-radius: var(--radius-full);
    color: inherit;
    font-weight: 700;
    font-size: .75rem;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background var(--transition-fast);
}

.announcement-bar__link:hover { background: rgba(255, 255, 255, .32); }
.announcement-bar__link .icon { width: 12px; height: 12px; }

.announcement-bar.info {
    background: linear-gradient(135deg, var(--color-bosphorus), var(--color-bosphorus-light));
    color: var(--color-white);
}

.announcement-bar.warning {
    background: linear-gradient(135deg, #7A4E08, #A8792E);
    color: var(--color-white);
}

.announcement-bar.success {
    background: linear-gradient(135deg, #1F5E40, var(--color-mint));
    color: var(--color-white);
}

.announcement-bar.alert {
    background: linear-gradient(135deg, #6E2E2E, var(--color-tile));
    color: var(--color-white);
}

.announcement-bar__close {
    position: absolute;
    right: var(--space-lg);
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .2);
    border: none;
    border-radius: var(--radius-full);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: inherit;
    flex-shrink: 0;
    transition: background var(--transition-fast);
}

.announcement-bar__close:hover {
    background: rgba(255, 255, 255, .35);
}

/* ============================================================
   Header / Navigation
   ============================================================ */
.header {
    height: var(--header-height);
    background: rgba(245, 240, 232, .96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    transition:
        background 400ms ease,
        border-color 400ms ease,
        box-shadow 300ms ease;
}

.header.scrolled {
    box-shadow: 0 1px 0 var(--border-color), var(--shadow-sm);
}

/* Hero modu — hafif transparan scrim, fotoğraf header altından görünür */
body.has-hero .header {
    position: relative;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .38) 0%, rgba(0, 0, 0, .08) 100%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
}

body.has-hero .header .hamburger span {
    background: #fff;
}

body.has-hero .header .header__logo {
    color: var(--color-white);
    text-shadow: 0 1px 8px rgba(0, 0, 0, .3);
}

body.has-hero .header .nav-link {
    color: rgba(255, 255, 255, .80);
}

body.has-hero .header .nav-link::after {
    background: var(--color-golden-light);
}

body.has-hero .header .nav-link:hover,
body.has-hero .header .nav-link.active {
    color: var(--color-white);
    background: none;
}

body.has-hero .header .user-menu__name {
    color: var(--color-white);
}

body.has-hero .header .user-menu__trigger:hover {
    background: rgba(255, 255, 255, .12);
}

body.has-hero .header .user-menu__avatar {
    border-color: rgba(255, 255, 255, .35);
}

/* Scroll sonrası parchment blur'a dön */
body.has-hero .header.scrolled {
    background: rgba(245, 240, 232, .97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 1px 0 var(--border-color), var(--shadow-sm);
}

body.has-hero .header.scrolled .header__logo {
    color: var(--color-bosphorus);
    text-shadow: none;
}

body.has-hero .header.scrolled .nav-link {
    color: var(--text-secondary);
}

body.has-hero .header.scrolled .nav-link::after {
    background: var(--color-golden);
}

body.has-hero .header.scrolled .nav-link:hover,
body.has-hero .header.scrolled .nav-link.active {
    color: var(--color-bosphorus);
    background: none;
}

body.has-hero .header.scrolled .user-menu__name {
    color: var(--text-primary);
}

body.has-hero .header.scrolled .user-menu__trigger:hover {
    background: var(--bg-secondary);
}

body.has-hero .header.scrolled .user-menu__avatar {
    border-color: var(--border-color);
}

body.has-hero .header.scrolled .hamburger span {
    background: var(--text-primary);
}

/* site-top-bar fixed olunca hero doğrudan viewport'un başından başlar */
body.has-hero main {
    margin-top: 0;
}

/* Container header yüksekliğini doldursun */
.header .container {
    height: 100%;
}

/* 3-kolon grid: logo sol | nav orta | aksiyonlar sağ */
.header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 100%;
}

.header__logo {
    grid-column: 1;
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    font-style: italic;
    letter-spacing: -.01em;
    color: var(--color-bosphorus);
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

.header__logo:hover {
    opacity: .8;
}

.header__logo img {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.header__nav {
    grid-column: 2;
    display: flex;
    align-items: center;
    gap: 2px;
}

/* Underline animasyonu: ortadan iki yana açılır */
.nav-link {
    position: relative;
    padding: 6px 12px;
    font-size: .875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 1.5px;
    background: var(--color-golden);
    transition: left .22s ease, right .22s ease;
}

.nav-link:hover {
    color: var(--color-bosphorus);
    background: none;
}

.nav-link.active {
    color: var(--color-bosphorus);
    background: none;
}

.nav-link:hover::after,
.nav-link.active::after {
    left: 0;
    right: 0;
}

.header__actions {
    grid-column: 3;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    justify-self: end;
}

/* User menu dropdown */
.user-menu {
    position: relative;
}

.user-menu__trigger {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 4px var(--space-sm) 4px 4px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: background var(--transition-fast);
    border: none;
    background: none;
    font-family: var(--font-body);
}

.user-menu__trigger:hover {
    background: var(--bg-secondary);
}

.user-menu__avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
    transition: border-color var(--transition-fast);
}

.user-menu__name {
    font-size: .875rem;
    font-weight: 600;
    color: var(--text-primary);
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-menu__dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: rgba(250, 247, 242, .97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px) scale(.97);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    z-index: 200;
}

.user-menu__dropdown.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.user-menu__dropdown a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    font-size: .875rem;
    color: var(--text-primary);
    transition: background var(--transition-fast);
}

.user-menu__dropdown a:hover {
    background: var(--bg-secondary);
}

.user-menu__dropdown a.danger {
    color: var(--danger);
}

.user-menu__dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: var(--space-xs) 0;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 10px var(--space-lg);
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-bosphorus);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-bosphorus-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(27, 79, 114, .35);
}

.btn-golden {
    background: var(--color-golden);
    color: var(--color-white);
}

.btn-golden:hover {
    background: var(--color-golden-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(200, 145, 58, .35);
}

.btn-outline {
    background: transparent;
    color: var(--color-bosphorus);
    border: 2px solid var(--color-bosphorus);
}

.btn-outline:hover {
    background: var(--color-bosphorus);
    color: var(--color-white);
    transform: translateY(-1px);
}

.btn-ghost {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.btn-ghost:hover {
    background: var(--mist-dark);
}

.btn-danger {
    background: var(--color-tile);
    color: var(--color-white);
}

.btn-danger:hover {
    background: #7A3838;
}

.btn-sm {
    padding: 6px var(--space-md);
    font-size: .8125rem;
}

.btn-lg {
    padding: 14px var(--space-xl);
    font-size: 1rem;
}

.btn:disabled {
    opacity: .5;
    cursor: not-allowed;
    transform: none !important;
}

/* ============================================================
   Hero — Cinematic Full Viewport
   ============================================================ */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--color-bosphorus-dark);
    height: calc(100vh - var(--header-height) - var(--announcement-height));
    min-height: 560px;
    max-height: 900px;
}

.hero__slides {
    display: flex;
    height: 100%;
    transition: transform 700ms cubic-bezier(.77, 0, .175, 1);
}

.hero__slide {
    min-width: 100%;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.07);
    transition: transform 8s ease;
    will-change: transform;
}

.hero__slide.is-active img {
    transform: scale(1.0);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, .18) 0%,
        transparent 28%,
        transparent 48%,
        rgba(0, 0, 0, .38) 68%,
        rgba(0, 0, 0, .70) 86%,
        rgba(0, 0, 0, .82) 100%);
}

.hero__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-2xl) var(--space-2xl) calc(var(--space-xl) + 52px);
    color: var(--color-white);
    max-width: 900px;
}

.hero__eyebrow {
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--color-golden-light);
    margin-bottom: var(--space-sm);
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .55s ease .05s, transform .55s ease .05s;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 700;
    font-style: italic;
    color: var(--color-white);
    text-shadow: 0 2px 32px rgba(0, 0, 0, .22);
    line-height: 1.1;
    max-width: 760px;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s ease .18s, transform .6s ease .18s;
}


.hero__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
    font-size: .875rem;
    margin-top: var(--space-md);
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .55s ease .32s, transform .55s ease .32s;
}

.hero__slide.is-active .hero__eyebrow,
.hero__slide.is-active .hero__title,
.hero__slide.is-active .hero__meta {
    opacity: 1;
    transform: translateY(0);
}

.hero__location-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 36px;
    padding: 0 12px;
    background: rgba(10, 10, 10, .48);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius-full);
    color: #fff;
    font-size: .8125rem;
    font-weight: 600;
    line-height: 1;
}

.hero__user-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 36px;
    padding: 0 12px 0 6px;
    background: rgba(10, 10, 10, .48);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius-full);
    color: #fff;
    font-weight: 600;
    font-size: .8125rem;
    line-height: 1;
    text-decoration: none;
    transition: background var(--transition-base);
}

.hero__user-link:hover {
    background: rgba(10, 10, 10, .70);
}

.hero__user-link .hero__user-avatar {
    width: 22px;
    height: 22px;
    max-height: 100%;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.hero__cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    padding: 0;
    gap: 0;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(10, 10, 10, .48);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .16);
    color: #fff;
    flex-shrink: 0;
}

.hero__cta-btn__text {
    display: none;
}

.hero__cta-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    display: block;
    stroke: #fff;
}

.hero__cta-btn:hover {
    background: rgba(10, 10, 10, .70);
    transform: translateY(-1px);
}

/* Footer bar: progress line + dots + counter */
.hero__footer-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: 0 var(--space-2xl) var(--space-lg);
}

.hero__progress {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, .18);
    border-radius: 2px;
    overflow: hidden;
}

.hero__progress-bar {
    height: 100%;
    width: 0%;
    background: var(--color-golden-light);
    border-radius: 2px;
}

.hero__controls {
    display: flex;
    gap: var(--space-xs);
    flex-shrink: 0;
}

.hero__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
}

.hero__dot.active {
    background: var(--color-white);
    width: 20px;
    border-radius: var(--radius-full);
}

.hero__counter {
    font-size: .75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .70);
    letter-spacing: .06em;
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
    min-width: 44px;
    text-align: right;
}

.hero__prev,
.hero__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, .10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all var(--transition-base);
    opacity: 0;
}

.hero:hover .hero__prev,
.hero:hover .hero__next {
    opacity: 1;
}

.hero__prev {
    left: var(--space-lg);
}

.hero__next {
    right: var(--space-lg);
}

.hero__prev:hover,
.hero__next:hover {
    background: rgba(255, 255, 255, .24);
    transform: translateY(-50%) scale(1.08);
}

/* ============================================================
   Photo Grid (Masonry via CSS columns)
   ============================================================ */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.photo-card {
    width: 100%;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    box-shadow: var(--shadow-card);
    cursor: pointer;
    display: block;
    position: relative;
    will-change: transform;
    transition:
        transform 420ms cubic-bezier(.25, .46, .45, .94),
        box-shadow 420ms cubic-bezier(.25, .46, .45, .94);
}

.photo-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius-lg) + 2px);
    background: linear-gradient(135deg,
        var(--color-bosphorus-light) 0%,
        var(--color-golden) 50%,
        var(--color-bosphorus) 100%
    );
    opacity: 0;
    z-index: -1;
    transition: opacity 420ms cubic-bezier(.25, .46, .45, .94);
}

/* Masaüstü hover — smooth scale + yukarı kaydırma */
@media (hover: hover) and (pointer: fine) {
    .photo-card:hover {
        transform: translateY(-6px) scale(1.02);
        box-shadow: 0 18px 48px rgba(27, 79, 114, .22), 0 6px 20px rgba(200, 145, 58, .18);
    }

    .photo-card:hover::before {
        opacity: 1;
    }

    .photo-card:hover .photo-card__overlay {
        opacity: 1;
    }

    .photo-card:hover .photo-card__actions {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobil & Tablet dokunma efekti — "basılma" hissi */
@media (hover: none) {
    .photo-card {
        transition:
            transform 80ms ease-out,
            box-shadow 80ms ease-out;
    }

    .photo-card::before {
        opacity: 0.4;
    }

    .photo-card:active {
        transform: scale(0.96);
        box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
        transition:
            transform 60ms ease-in,
            box-shadow 60ms ease-in;
    }

    .photo-card:active::before {
        opacity: 1;
    }
}

.photo-card__img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.photo-card__img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 500ms ease-in-out;
}

.photo-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .70) 0%, rgba(0, 0, 0, .10) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 350ms ease;
}

.photo-card__actions {
    position: absolute;
    bottom: var(--space-sm);
    left: var(--space-sm);
    right: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 300ms ease, transform 300ms cubic-bezier(.25, .46, .45, .94);
}

.photo-card__stat {
    display: flex;
    align-items: center;
    gap: 4px;
    color: white;
    font-size: .8125rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .4);
}

/* Kategori badge — resim üstünde sol üst köşe */
.photo-card__cat-badge {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #fff;
    font-size: .625rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    pointer-events: none;
}

/* Çoklu yükleme rozeti — sağ üst köşe */
.photo-card__batch-badge {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    background: rgba(0, 0, 0, .60);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #fff;
    font-size: .625rem;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 4px;
    pointer-events: none;
    z-index: 2;
}

/* ---- Info bölümü — profesyonel hiyerarşi (varsayılan: resim altında, açık zemin) ---- */
.photo-card__info {
    padding: var(--space-md) var(--space-md) var(--space-xs);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, var(--bg-card) 20%);
}

.photo-card__title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.02em;
    transition: color var(--transition-fast);
}

.photo-card:hover .photo-card__title {
    color: var(--color-bosphorus);
}

.photo-card__location {
    font-size: .75rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: .02em;
    display: flex;
    align-items: center;
    gap: 4px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 50%;
}

.photo-card__location svg {
    color: var(--color-golden);
    opacity: 0.9;
}

/* ---- Başlık + yükleyen satırı — resim üzerinde, siyah gradyan zemin ----
   (ana sayfa/keşfet kartlarında .photo-card__caption içinde kullanılır) */
.photo-card__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    padding: var(--space-xl) var(--space-md) var(--space-sm);
    background: linear-gradient(to top, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .45) 60%, transparent 100%);
    pointer-events: none;
}

.photo-card__caption .photo-card__info {
    padding: 0;
    background: none;
    min-width: 0;
    flex: 1;
}

.photo-card__caption .photo-card__title {
    color: #fff;
    margin-bottom: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .5);
}

.photo-card:hover .photo-card__caption .photo-card__title {
    color: #fff;
}

.photo-card__user {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    padding: 7px 12px;
    background: rgba(10, 10, 10, .78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, .08);
}

.photo-card__avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
}

.photo-card__username {
    font-size: .75rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .4);
}

/* ============================================================
   Section Headers
   ============================================================ */
.section-eyebrow {
    font-family: var(--font-mono);
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--color-golden);
    margin-bottom: var(--space-xs);
}

/* ============================================================
   Story Sections (homepage — admin-curated region blocks)
   ============================================================ */
.story-block {
    padding: var(--space-2xl) 0;
}

.story-block--alt {
    background: var(--bg-secondary);
}

.story-block__header {
    max-width: 640px;
    margin-bottom: var(--space-xl);
}

.story-block__title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.story-block__subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-top: var(--space-sm);
}

.story-block__mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 160px;
    gap: var(--space-sm);
}

.story-mosaic-item {
    position: relative;
    display: block;
    grid-column: span 1;
    grid-row: span 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-black);
}

.story-mosaic-item--lg {
    grid-column: span 2;
    grid-row: span 2;
}

.story-mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 600ms ease;
}

.story-mosaic-item:hover img {
    transform: scale(1.05);
}

.story-mosaic-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .68) 0%, rgba(0, 0, 0, 0) 55%);
}

.story-mosaic-item__title {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 8px;
    color: #fff;
    font-size: .8125rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.story-mosaic-item--lg .story-mosaic-item__title {
    font-size: 1.0625rem;
    left: 14px;
    right: 14px;
    bottom: 12px;
}

/* ============================================================
   Category Pills
   ============================================================ */
.category-pills {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.category-pill {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 6px var(--space-md);
    border-radius: var(--radius-full);
    border: 1.5px solid var(--border-color);
    background: var(--bg-card);
    font-size: .875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.category-pill:hover,
.category-pill.active {
    border-color: var(--color-bosphorus);
    color: var(--color-bosphorus);
    background: rgba(27, 79, 114, .06);
}

/* ============================================================
   Load More
   ============================================================ */
.load-more-wrap {
    text-align: center;
    padding: var(--space-2xl) 0 var(--space-xl);
}

.load-more-btn {
    min-width: 200px;
    gap: var(--space-sm);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.load-more-btn:disabled {
    opacity: .55;
    cursor: not-allowed;
}

.load-more-count {
    opacity: .55;
    font-size: .85em;
}

/* ============================================================
   Forms
   ============================================================ */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-size: .875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.form-label span {
    color: var(--danger);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 11px var(--space-md);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-card);
    font-family: var(--font-body);
    font-size: .9375rem;
    color: var(--text-primary);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
    -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--color-bosphorus);
    box-shadow: 0 0 0 3px rgba(27, 79, 114, .12);
}

.form-input::placeholder {
    color: var(--text-muted);
}

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

.form-hint {
    margin-top: 6px;
    font-size: .8125rem;
    color: var(--text-muted);
}

/* ============================================================
   Location Autocomplete Dropdown
   ============================================================ */
.location-suggestions {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    max-height: 280px;
    overflow-y: auto;
    z-index: 30;
}

.location-suggestions[hidden] { display: none; }

.location-suggestion {
    display: flex;
    flex-direction: column;
    gap: 1px;
    padding: 10px var(--space-md);
    cursor: pointer;
    border-bottom: 1px solid var(--border-color);
}

.location-suggestion:last-child { border-bottom: none; }

.location-suggestion:hover,
.location-suggestion.active {
    background: var(--bg-secondary);
}

.location-suggestion__name {
    font-size: .875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.location-suggestion__meta {
    font-size: .75rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.location-suggestions__empty,
.location-suggestions__loading {
    padding: var(--space-md);
    font-size: .8125rem;
    color: var(--text-muted);
    text-align: center;
}

.form-error {
    margin-top: 6px;
    font-size: .8125rem;
    color: var(--danger);
    font-weight: 500;
}

/* ============================================================
   Upload Drop Zone
   ============================================================ */
.upload-zone {
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-base);
    background: var(--bg-secondary);
    position: relative;
}

.upload-zone:hover,
.upload-zone.drag-over {
    border-color: var(--color-bosphorus);
    background: rgba(27, 79, 114, .04);
}

.upload-zone__icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    opacity: .5;
}

.upload-zone__preview {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--bg-primary);
    text-align: center;
}

.upload-zone__preview img {
    width: 100%;
    height: auto;
    max-height: 560px;
    object-fit: contain;
    image-orientation: from-image;
    display: block;
}

.upload-zone.has-preview {
    padding: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background: var(--bg-primary);
}

/* ============================================================
   Image Editor Bar
   ============================================================ */
.image-editor-bar {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    flex-wrap: wrap;
    padding: var(--space-xs) var(--space-sm);
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-top: none;
    border-bottom-left-radius: var(--radius-xl);
    border-bottom-right-radius: var(--radius-xl);
}

.editor-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    font-size: .8125rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-card);
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}
.editor-btn:hover {
    border-color: var(--color-bosphorus);
    color: var(--color-bosphorus);
    background: rgba(27, 79, 114, .06);
}
.editor-btn:disabled { opacity: .5; cursor: not-allowed; }
.editor-btn--muted   { color: var(--text-muted); }
.editor-btn--active  {
    border-color: var(--color-bosphorus);
    background: var(--color-bosphorus);
    color: #fff;
}

/* ============================================================
   Multi-photo Upload Grid Preview
   ============================================================ */
.upload-grid-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
    width: 100%;
}

.upload-grid-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-card);
}

.upload-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.upload-grid-item__order {
    position: absolute;
    top: 4px;
    left: 4px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: var(--radius-full);
    background: rgba(0, 0, 0, .6);
    color: #fff;
    font-size: .625rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-grid-item__remove {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .6);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: .875rem;
    line-height: 1;
    transition: background .15s ease;
}

.upload-grid-item__remove:hover { background: rgba(0, 0, 0, .85); }

.upload-grid-item--add {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    border: 2px dashed var(--border-color);
    color: var(--text-muted);
    font-size: .75rem;
    font-weight: 600;
    cursor: pointer;
    background: var(--bg-secondary);
    transition: all var(--transition-fast);
}

.upload-grid-item--add:hover {
    border-color: var(--color-bosphorus);
    color: var(--color-bosphorus);
}

.upload-grid-item--add svg { width: 22px; height: 22px; }

/* ============================================================
   Photo Detail Page
   ============================================================ */
.photo-detail {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--space-xl);
    align-items: start;
}

.photo-detail__image-wrap {
    background: var(--color-black);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: sticky;
    top: calc(var(--header-height) + var(--space-lg));
    /* Prevent the wrap from stretching beyond the viewport */
    max-height: calc(100vh - var(--header-height) - var(--space-2xl));
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-detail__image {
    width: 100%;
    height: auto;
    max-height: calc(100vh - var(--header-height) - var(--space-2xl));
    object-fit: contain;
    display: block;
}

/* ============================================================
   Photo Detail Slideshow (multi-photo batch uploads)
   ============================================================ */
.photo-slideshow__track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 500ms cubic-bezier(.25, .46, .45, .94);
}

.photo-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
}

.photo-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, .4);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: background .2s ease;
    z-index: 5;
}

.slide-arrow:hover { background: rgba(0, 0, 0, .6); }
.slide-arrow--prev { left: var(--space-md); }
.slide-arrow--next { right: var(--space-md); }

.slide-playpause {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    z-index: 5;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, .55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: background .2s ease;
}

.slide-playpause:hover { background: rgba(10, 10, 10, .8); }

.slide-dots {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 6px;
}

.slide-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .45);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all .25s ease;
}

.slide-dot.active {
    background: #fff;
    width: 20px;
    border-radius: var(--radius-full);
}

.photo-detail__sidebar {
    /* Content alongside the image */
}

/* ============================================================
   Map View Button — floating badge, bottom-left of the photo
   ============================================================ */
.map-view-btn {
    position: absolute;
    left: var(--space-md);
    bottom: var(--space-md);
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: calc(100% - var(--space-xl));
    padding: 7px 12px;
    background: rgba(10, 10, 10, .55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--radius-full);
    color: #fff;
    font-size: .8125rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
}

.map-view-btn:hover {
    background: rgba(10, 10, 10, .75);
    transform: translateY(-1px);
}

.map-view-btn svg { flex-shrink: 0; }

.map-view-btn__value {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .map-view-btn__value { display: none; }
    .map-view-btn { padding: 7px 9px; }
    .hero__location-badge { display: none; }

    .profile-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: var(--space-lg);
        gap: var(--space-lg);
    }
    .profile-info { width: 100%; min-width: 0; }
    .profile-info__top { flex-direction: column; align-items: center; }
    .profile-info__bio { max-width: 100%; }

    /* Stats: liste tasarımı */
    .profile-stats {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        margin-top: var(--space-md);
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-lg);
        overflow: hidden;
        padding: 0;
    }
    .profile-stat__divider { display: none; }
    .profile-stat {
        flex-direction: row;
        align-items: center;
        gap: 14px;
        padding: 13px 16px;
        min-width: 0;
        border-radius: 0;
        border-bottom: 1px solid var(--border-color);
    }
    .profile-stat:last-of-type { border-bottom: none; }
    .profile-stat__icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: var(--radius-md);
        background: rgba(27, 79, 114, .1);
        color: var(--color-bosphorus);
        flex-shrink: 0;
        order: 1;
    }
    .profile-stat__label {
        flex: 1;
        font-size: .9375rem;
        font-weight: 500;
        color: var(--text-secondary);
        text-transform: none;
        letter-spacing: 0;
        text-align: left;
        order: 2;
    }
    .profile-stat__number {
        font-size: 1.125rem;
        font-weight: 700;
        color: var(--color-bosphorus);
        text-align: right;
        order: 3;
    }
    .profile-stat__number--sm { font-size: .9375rem; }
}

/* ============================================================
   View Count Badge — floating badge, top-right of the photo
   ============================================================ */
.photo-detail__bottom-badges {
    position: absolute;
    right: var(--space-md);
    bottom: var(--space-md);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    background: rgba(10, 10, 10, .55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--radius-full);
    color: #fff;
    font-size: .8125rem;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--transition-fast), border-color var(--transition-fast);
}

a.view-count-badge:hover {
    background: rgba(27, 79, 114, .75);
    border-color: rgba(255, 255, 255, .30);
}

.view-count-badge svg { flex-shrink: 0; }

.photo-detail__title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: var(--space-sm);
}

.photo-detail__author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
    transition: transform var(--transition-fast);
}

.photo-detail__author-link:hover .photo-detail__author-avatar {
    transform: scale(1.05);
}

.photo-detail__author-name {
    font-weight: 600;
    font-size: .9375rem;
}

/* Like & actions bar */
.photo-actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.like-btn {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 10px var(--space-lg);
    border-radius: var(--radius-full);
    border: 1.5px solid var(--border-color);
    background: var(--bg-card);
    font-size: .9rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all var(--transition-spring);
    cursor: pointer;
}

.like-btn.liked {
    background: rgba(139, 68, 68, .08);
    border-color: var(--color-tile);
    color: var(--color-tile);
}

.like-btn:hover:not(.liked) {
    border-color: var(--color-tile);
    color: var(--color-tile);
}

.like-btn__icon {
    font-size: 1.125rem;
    transition: transform var(--transition-spring);
}

.like-btn.liked .like-btn__icon {
    transform: scale(1.2);
}

/* EXIF metadata */
.exif-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.exif-item {
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
}

.exif-item__label {
    font-size: .6875rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.exif-item__value {
    font-family: var(--font-mono);
    font-size: .875rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* Share links */
.share-links {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.share-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px var(--space-md);
    border-radius: var(--radius-full);
    font-size: .8125rem;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-fast);
    border: 1.5px solid var(--border-color);
    color: var(--text-secondary);
}

.share-link:hover {
    border-color: currentColor;
    transform: translateY(-1px);
}

.share-link.twitter:hover {
    color: #1DA1F2;
}

.share-link.facebook:hover {
    color: #1877F2;
}

.share-link.whatsapp:hover {
    color: #25D366;
}

.share-link.telegram:hover {
    color: #2CA5E0;
}

/* ============================================================
   Comments
   ============================================================ */
.comments-section {
    margin-top: var(--space-xl);
}

.comment {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--border-color);
}

.comment:last-child {
    border-bottom: none;
}

.comment__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.comment__body {}

.comment__header {
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
    margin-bottom: 4px;
}

.comment__name {
    font-weight: 600;
    font-size: .875rem;
}

.comment__time {
    font-size: .75rem;
    color: var(--text-muted);
}

.comment__text {
    font-size: .9375rem;
    color: var(--text-primary);
}

.comment-form {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md) 0;
}

.comment-form textarea {
    flex: 1;
    padding: var(--space-sm) var(--space-md);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    font-family: var(--font-body);
    font-size: .9375rem;
    resize: none;
    min-height: 60px;
    outline: none;
    transition: border-color var(--transition-fast);
}

.comment-form textarea:focus {
    border-color: var(--color-bosphorus);
}

/* ============================================================
   Profile Page
   ============================================================ */
.profile-header {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2xl);
    padding: var(--space-2xl);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    margin-bottom: var(--space-2xl);
    position: relative;
}

.profile-header__avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.profile-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    box-shadow: 0 0 0 3px var(--color-golden), 0 0 0 6px rgba(200, 145, 58, .15), var(--shadow-md);
}

.profile-role-badge {
    position: absolute;
    bottom: 6px;
    right: 6px;
}

.profile-info {
    flex: 1;
    min-width: 0;
}

.profile-info__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.profile-info__name {
    font-size: 1.875rem;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--text-primary);
}

.profile-info__username {
    font-family: var(--font-mono);
    font-size: .875rem;
    color: var(--text-muted);
    letter-spacing: .02em;
}

.profile-info__bio {
    font-size: .9375rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin-top: var(--space-sm);
    margin-bottom: var(--space-lg);
    line-height: 1.65;
    font-style: italic;
}

.profile-stats {
    display: inline-flex;
    align-items: stretch;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: var(--space-lg);
}

.profile-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-lg);
    gap: 2px;
    min-width: 72px;
}

.profile-stat__divider {
    width: 1px;
    background: var(--border-color);
    flex-shrink: 0;
    align-self: stretch;
}

.profile-stat__number {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-bosphorus);
    line-height: 1.1;
}

.profile-stat__number--sm {
    font-size: .875rem;
    padding-top: 2px;
}

.profile-stat__label {
    font-size: .6875rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: .04em;
    text-transform: uppercase;
}

.profile-stat__icon {
    display: none;
}

/* ---- Profile photo grid header ---- */
.profile-photos-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
    padding-top: var(--space-sm);
}

/* ---- Profile photo cards — caption overlaid on image ---- */
.profile-card__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: var(--space-2xl) var(--space-md) var(--space-sm);
    background: linear-gradient(to top, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .45) 60%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

.profile-card__caption .photo-card__title {
    color: #fff;
    font-size: .9375rem;
    margin-bottom: 3px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .5);
}

.profile-card__caption:hover .photo-card__title {
    color: #fff;
}

.profile-card__location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: .6875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .72);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-card__location svg {
    color: var(--color-golden);
    flex-shrink: 0;
}

/* Glass edit button — top-right corner of image */
.profile-card__edit-btn {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .52);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .16);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 3;
    text-decoration: none;
    transition: background var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast);
}

.profile-card__edit-btn:hover {
    background: var(--color-golden);
    border-color: var(--color-golden);
    transform: scale(1.1);
}

.profile-card__edit-btn svg {
    width: 13px;
    height: 13px;
    stroke: #fff;
    flex-shrink: 0;
}

/* ============================================================
   Alerts & Flash Messages
   ============================================================ */
.alert {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    font-size: .9375rem;
    font-weight: 500;
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.alert-error {
    background: rgba(139, 68, 68, .1);
    color: var(--color-tile);
    border: 1px solid rgba(139, 68, 68, .2);
}

.alert-success {
    background: rgba(46, 125, 87, .1);
    color: var(--color-mint);
    border: 1px solid rgba(46, 125, 87, .2);
}

.alert-info {
    background: rgba(27, 79, 114, .08);
    color: var(--color-bosphorus);
    border: 1px solid rgba(27, 79, 114, .15);
}

.alert-warning {
    background: rgba(146, 97, 10, .1);
    color: #92610A;
    border: 1px solid rgba(146, 97, 10, .2);
}

/* ============================================================
   Badges
   ============================================================ */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 10px;
    border-radius: var(--radius-full);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .04em;
}

.badge-blue {
    background: rgba(27, 79, 114, .12);
    color: var(--color-bosphorus);
}

.badge-gold {
    background: rgba(200, 145, 58, .12);
    color: var(--color-golden-dark);
}

.badge-green {
    background: rgba(46, 125, 87, .12);
    color: var(--color-mint);
}

.badge-red {
    background: rgba(139, 68, 68, .12);
    color: var(--color-tile);
}

.badge-gray {
    background: var(--bg-secondary);
    color: var(--text-muted);
}

/* ============================================================
   Cards
   ============================================================ */
.card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.card-header {
    padding: var(--space-lg) var(--space-xl);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-body {
    padding: var(--space-xl);
}

/* ============================================================
   Modal
   ============================================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(16px) scale(.97);
    transition: transform var(--transition-spring);
}

.modal-overlay.open .modal {
    transform: translateY(0) scale(1);
}

.modal-header {
    padding: var(--space-lg) var(--space-xl);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.modal-title {
    font-size: 1.125rem;
    font-weight: 700;
}

.modal-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition-fast);
    border: none;
    font-size: 1.25rem;
    color: var(--text-muted);
}

.modal-close:hover {
    background: var(--border-color);
}

.modal-body {
    padding: var(--space-xl);
}

.modal-footer {
    padding: var(--space-md) var(--space-xl);
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: var(--space-sm);
}

/* ---- Edit Modal ---- */
.edit-modal {
    max-width: 620px;
}


.edit-modal__header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    background: rgba(27, 79, 114, .1);
    color: var(--color-bosphorus);
    flex-shrink: 0;
    margin-top: 2px;
}

.modal-header .modal-title {
    flex: 1;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.edit-modal__subtitle {
    font-size: .8125rem;
    color: var(--text-muted);
    margin: 3px 0 0;
}

.modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-md);
    border: none;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    flex-shrink: 0;
    transition: background var(--transition-fast), color var(--transition-fast);
    margin-left: auto;
}

.modal-close:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

/* 2-column grid for edit form */
.edit-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 var(--space-md);
}

.edit-form-grid__full {
    grid-column: 1 / -1;
}


/* Inline alert boxes inside modal */
.edit-form-alert {
    padding: 10px 14px;
    border-radius: var(--radius-md);
    font-size: .875rem;
    margin-top: var(--space-sm);
    font-weight: 500;
}

.edit-form-alert--error {
    background: rgba(192, 57, 43, .09);
    color: #c0392b;
    border: 1px solid rgba(192, 57, 43, .25);
}

.edit-form-alert--success {
    background: rgba(39, 174, 96, .09);
    color: #27ae60;
    border: 1px solid rgba(39, 174, 96, .25);
}

/* Small spinner for buttons */
.loader-spinner-sm {
    display: inline-block;
    width: 13px;
    height: 13px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin .65s linear infinite;
    vertical-align: -2px;
    margin-right: 6px;
    opacity: .7;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Delete Confirm Modal ---- */
.delete-modal {
    max-width: 420px;
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
}

.delete-modal__icon-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.delete-modal__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(192, 57, 43, .1);
    color: #c0392b;
    animation: deleteIconPulse .4s cubic-bezier(.34, 1.56, .64, 1) both;
}

@keyframes deleteIconPulse {
    from { transform: scale(.5); opacity: 0; }
    to   { transform: scale(1);  opacity: 1; }
}

.delete-modal__title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.delete-modal__body {
    font-size: .9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-xl);
}

.delete-modal__actions {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
}

.btn-delete-confirm {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    border: none;
    background: #c0392b;
    color: #fff;
    font-weight: 600;
    font-size: .875rem;
    cursor: pointer;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.btn-delete-confirm:hover {
    background: #a93226;
    transform: translateY(-1px);
}

.btn-delete-confirm:disabled {
    opacity: .6;
    cursor: not-allowed;
    transform: none;
}

/* ============================================================
   Lazy Loading
   ============================================================ */
.lazy {
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.lazy.loaded {
    opacity: 1;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
    background: linear-gradient(170deg, #0b1c2d 0%, #111827 60%, #0e1a28 100%);
    color: rgba(255, 255, 255, .55);
    padding: 0 0 var(--space-xl);
    margin-top: var(--space-3xl);
    position: relative;
}

/* Üst altın accent şeridi */
.footer__accent {
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(200, 145, 58, .3) 10%,
        var(--color-golden) 30%,
        var(--color-golden) 70%,
        rgba(200, 145, 58, .3) 90%,
        transparent 100%
    );
    margin-bottom: var(--space-3xl);
}

/* Marka bloğu */
.footer__brand {
    text-align: center;
    padding-bottom: var(--space-2xl);
}

.footer__brand-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    font-style: italic;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: var(--space-lg);
}

.footer__brand-link:hover {
    color: #fff;
}

.footer__brand-icon {
    color: var(--color-golden);
    flex-shrink: 0;
}

/* Altın dekoratif çizgi */
.footer__brand::after {
    content: '';
    display: block;
    width: 44px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-golden), rgba(200, 145, 58, .4));
    margin: 0 auto var(--space-lg);
    border-radius: 2px;
}

.footer__tagline {
    font-size: .9375rem;
    color: rgba(255, 255, 255, .45);
    line-height: 1.75;
    font-style: italic;
    letter-spacing: .01em;
}

.footer__tagline span {
    font-size: .8125rem;
    color: rgba(255, 255, 255, .28);
}

/* Kategori pill'leri */
.footer__cats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: var(--space-xl) 0;
    border-top: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    margin-bottom: var(--space-xl);
}

.footer__cat-pill {
    font-size: .6875rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .42);
    padding: 5px 14px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-full);
    transition:
        color var(--transition-fast),
        border-color var(--transition-fast),
        background var(--transition-fast);
}

.footer__cat-pill:hover {
    color: var(--color-golden);
    border-color: rgba(200, 145, 58, .5);
    background: rgba(200, 145, 58, .07);
}

/* Platform navigasyonu */
.footer__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px var(--space-md);
    margin-bottom: var(--space-2xl);
}

.footer__nav-link {
    font-size: .875rem;
    color: rgba(255, 255, 255, .48);
    transition: color var(--transition-fast);
}

.footer__nav-link:hover {
    color: #fff;
}

.footer__nav-sep {
    color: rgba(255, 255, 255, .18);
    font-size: .75rem;
    line-height: 1;
}

/* Alt bar */
.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, .06);
    font-size: .75rem;
    color: rgba(255, 255, 255, .22);
    letter-spacing: .02em;
}

.footer__bottom-loc {
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer__bottom-loc svg {
    color: var(--color-golden);
    opacity: .5;
    flex-shrink: 0;
}

/* ============================================================
   Loading Spinner
   ============================================================ */
.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(27, 79, 114, .15);
    border-top-color: var(--color-bosphorus);
    border-radius: 50%;
    animation: spin .8s linear infinite;
    display: inline-block;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================================
   Pagination
   ============================================================ */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-xl) 0;
}

.page-btn {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: .875rem;
    font-weight: 500;
    border: 1.5px solid var(--border-color);
    color: var(--text-secondary);
    background: var(--bg-card);
    text-decoration: none;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.page-btn:hover {
    border-color: var(--color-bosphorus);
    color: var(--color-bosphorus);
}

.page-btn.active {
    background: var(--color-bosphorus);
    border-color: var(--color-bosphorus);
    color: white;
}

.page-btn:disabled {
    opacity: .4;
    cursor: not-allowed;
}

/* ============================================================
   Scrollbar
   ============================================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* ============================================================
   Selection
   ============================================================ */
::selection {
    background: rgba(27, 79, 114, .2);
    color: var(--color-bosphorus-dark);
}