:root {
    --bg: #0a0a0b;
    --bg-alt: #111113;
    --surface: #17171a;
    --surface-2: #1e1e22;
    --border: #2a2a2f;
    --text: #f4f4f5;
    --text-dim: #a1a1aa;
    --accent: #ffffff;
    --danger: #ff4d4f;
    --price: #ff5a3c;
    --radius: 14px;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Koyu zemin html'de; body şeffaf olmalı ki sabit arka plan videosu (z-index:-1) görünsün */
html { background: var(--bg); }
body { background: transparent; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Topbar with social links */
.topbar {
    background: #000;
    border-bottom: 1px solid var(--border);
    color: var(--text-dim);
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 38px;
}
.social-links {
    display: flex;
    align-items: center;
    gap: 14px;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    transition: color .2s, transform .2s;
}
.social-links a:hover {
    color: #fff;
    transform: translateY(-1px);
}
.social-links svg { display: block; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(10,10,11,.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}
.brand {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -.02em;
}
.main-nav {
    display: flex;
    gap: 28px;
    font-size: 15px;
    font-weight: 500;
}
.main-nav a { color: var(--text-dim); transition: color .2s; }
.main-nav a:hover { color: var(--text); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform .15s, background .2s, color .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: #fff; color: #000; }
.btn-primary:hover { background: #e5e5e5; }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline:hover { background: rgba(255,255,255,.1); }
.btn-block { width: 100%; }

/* Tüm sayfaya yayılan sabit arka plan videosu */
.site-bg-video {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
}

/* Hero (video artık sayfa geneli arka plan; hero şeffaf) */
.hero {
    position: relative;
    min-height: 86vh;
    display: flex;
    align-items: flex-end;
    background: transparent;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,0) 75%),
        linear-gradient(0deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,0) 45%);
}
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 24px 90px;
}
.hero-copy { max-width: 560px; }
.hero-copy .eyebrow {
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 13px;
    color: #d4d4d8;
    margin-bottom: 16px;
}
.hero-copy h1 {
    font-size: clamp(44px, 7vw, 84px);
    line-height: 1.0;
    margin: 0 0 20px;
    font-weight: 800;
    letter-spacing: -.03em;
    text-shadow: 0 2px 30px rgba(0,0,0,.5);
}
.hero-lead { color: #e4e4e7; max-width: 460px; margin: 0 0 28px; font-size: 18px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Section basics */
.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }
/* Ana sayfa: video üzerinde okunur kalması için yarı saydam koyu bölümler */
.home-dark { background: rgba(10,10,11,.72); }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -.02em;
    margin: 0 0 12px;
}
.section-head p { color: var(--text-dim); max-width: 640px; margin: 0 auto; }

/* Reso'nu Bul: video üzerinde katmanlı görünüm (diğer koyu bölümlerle tutarlı yarı saydam koyu katman) */
#kesfet { background: rgba(10,10,11,.72); position: relative; z-index: 1; }
#kesfet .finder-title { color: #fff; }
/* Kartlar videolu/koyu zemin üzerinde net dursun: beyaz + belirgin gölge */
#kesfet .rf-card {
    background: #ffffff;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 12px 32px rgba(0,0,0,.45);
}
#kesfet .rf-card:hover { box-shadow: 0 20px 48px rgba(0,0,0,.55); }

/* Reso'nu Bul finder */
.finder-title {
    font-size: clamp(30px, 4.5vw, 46px);
    font-weight: 800;
    font-style: italic;
    letter-spacing: -.02em;
    margin: 0 0 32px;
}
.reso-finder {
    display: grid;
    grid-template-columns: 1fr 1fr 1.3fr;
    grid-template-rows: 250px 250px;
    gap: 18px;
}
.rf-card {
    position: relative;
    background: #f2f2f0;
    border: none;
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 28px;
    transition: transform .2s, box-shadow .2s;
}
.rf-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,.4); }
.rf-heading {
    position: absolute;
    top: 24px;
    left: 28px;
    z-index: 2;
    color: #111;
    font-weight: 800;
    font-style: italic;
    font-size: 22px;
    letter-spacing: -.01em;
}
.rf-arrow {
    position: absolute;
    top: 24px;
    right: 28px;
    z-index: 2;
    color: #555;
    font-size: 18px;
}
.rf-card img {
    max-height: 88%;
    max-width: 92%;
    object-fit: contain;
    transition: transform .4s;
}
.rf-card:hover img { transform: scale(1.04); }
/* Büyük dikey kartlarda (Pro/Neo) görsel ortada, alta yakın */
.rf-pro, .rf-neo { align-items: flex-end; justify-content: center; }
.rf-pro img, .rf-neo img { max-height: 74%; max-width: 88%; }
/* Sağdaki iki yatay kartta görsel sağa yaslı */
.rf-head, .rf-acc { align-items: center; justify-content: flex-end; }
.rf-head img, .rf-acc img { max-height: 96%; max-width: 62%; }
.rf-pro { grid-column: 1; grid-row: 1 / span 2; }
.rf-neo { grid-column: 2; grid-row: 1 / span 2; }
.rf-head { grid-column: 3; grid-row: 1; }
.rf-acc { grid-column: 3; grid-row: 2; }

/* Feature list */
.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.feature-card {
    background: linear-gradient(160deg, var(--surface) 0%, var(--surface-2) 100%);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 36px;
}
.feature-card h3 { font-size: 24px; margin: 0 0 12px; }
.feature-card p { color: var(--text-dim); margin: 0; }
.feature-card.wide { grid-column: 1 / -1; }

/* Interests */
.interests { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.interest {
    position: relative;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--surface);
    padding: 32px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform .2s;
}
.interest:hover { transform: translateY(-4px); }
.interest h4 { margin: 0 0 6px; font-size: 20px; }
.interest p { margin: 0; color: var(--text-dim); font-size: 14px; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-grid h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -.02em; }
.about-grid p { color: var(--text-dim); }
.about-contact { margin: 24px 0; display: flex; flex-direction: column; gap: 2px; }
.about-contact-row { display: flex; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.about-contact-row:first-child { border-top: 1px solid var(--border); }
.about-contact dt { flex: 0 0 88px; color: var(--text-dim); font-size: 13px; text-transform: uppercase; letter-spacing: .05em; }
.about-contact dd { margin: 0; color: var(--text); font-size: 15px; }
.about-contact dd a { color: var(--text); border-bottom: 1px solid var(--border); transition: border-color .2s; }
.about-contact dd a:hover { border-color: var(--text); }

/* Newsletter band */
.newsletter-band { text-align: center; padding: 72px 0; background: var(--bg-alt); }
.newsletter-band h2 { font-size: 32px; margin: 0 0 8px; }
.newsletter-band p { color: var(--text-dim); margin: 0 0 24px; }
.inline-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
.inline-form input {
    flex: 1;
    padding: 14px 18px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
}
.inline-form input::placeholder { color: var(--text-dim); }

/* Collection / product grid */
.page-head { padding: 56px 0 24px; }
.page-head h1 { font-size: clamp(30px, 5vw, 48px); margin: 0; font-weight: 800; letter-spacing: -.02em; }
.page-head p { color: var(--text-dim); }

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding-bottom: 80px;
}
.product-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .2s, border-color .2s;
}
.product-card:hover { transform: translateY(-4px); border-color: #444; }
.product-media {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product-media img {
    width: 100%; height: 100%; object-fit: contain;
    transition: opacity .3s, transform .4s;
}
.product-media .img-hover { position: absolute; inset: 0; opacity: 0; }
.product-card:hover .img-hover { opacity: 1; }
.discount-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--danger);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 999px;
    z-index: 2;
}
.add-cart-mini {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .2s, transform .2s, background .2s;
}
.product-card:hover .add-cart-mini { opacity: 1; transform: translateY(0); }
.add-cart-mini:hover { background: #333; }
.product-body { padding: 18px 18px 22px; }
.product-body h3 { font-size: 17px; margin: 0 0 8px; font-weight: 600; }
.price-row { display: flex; align-items: baseline; gap: 10px; }
.price { color: var(--price); font-weight: 700; font-size: 18px; }
.compare { color: var(--text-dim); text-decoration: line-through; font-size: 14px; }
.product-buy { margin-top: 14px; padding: 11px 20px; font-size: 14px; }

/* Product detail */
.pd { padding: 40px 0 80px; }
.pd-top { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; }
.gallery-main {
    background: #fff;
    border-radius: 18px;
    aspect-ratio: 1 / 1;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.gallery-main img { width: 100%; height: 100%; object-fit: contain; }
.gallery-thumbs { display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.gallery-thumbs button {
    width: 72px; height: 72px;
    border-radius: 12px;
    border: 2px solid var(--border);
    background: #fff;
    padding: 4px;
    cursor: pointer;
    overflow: hidden;
}
.gallery-thumbs button.active { border-color: #fff; }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: contain; }

.pd-info h1 { font-size: 38px; margin: 0 0 8px; font-weight: 800; letter-spacing: -.02em; }
.pd-info .avail { color: var(--text-dim); font-size: 14px; margin-bottom: 20px; }
.pd-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 24px; }
.pd-price .price { font-size: 30px; }
.pd-price .compare { font-size: 18px; }
.feature-list { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 10px; }
.feature-list li { color: var(--text); display: flex; gap: 10px; }
.feature-list li::before { content: "✓"; color: #4ade80; font-weight: 700; }

.manual-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    color: var(--text);
    font-weight: 600;
    font-size: 15px;
    transition: color .2s;
}
.manual-link:hover { color: var(--price); }
.manual-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--danger);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 4px 7px;
    border-radius: 6px;
}

/* Responsive video (16:9) */
.video-wrap {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #000;
}
.video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.pd-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.pd-badges div { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 14px; text-align: center; font-size: 13px; }
.pd-badges strong { display: block; margin-bottom: 4px; }

/* Compare table */
.compare-table { width: 100%; border-collapse: collapse; margin-top: 24px; }
.compare-table th, .compare-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); text-align: left; font-size: 14px; }
.compare-table th { color: var(--text-dim); font-weight: 600; }
.compare-table tr td:first-child { color: var(--text-dim); }

/* Specs */
.spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.spec-item { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 20px; }
.spec-item h4 { margin: 0 0 6px; font-size: 15px; }
.spec-item p { margin: 0; color: var(--text-dim); font-size: 14px; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
    width: 100%;
    background: none;
    border: none;
    color: var(--text);
    text-align: left;
    padding: 20px 0;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    gap: 16px;
}
.faq-q .plus { color: var(--text-dim); flex-shrink: 0; }
.faq-a { color: var(--text-dim); padding: 0 0 20px; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .plus { transform: rotate(45deg); }

/* Footer */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-alt); margin-top: 40px; }
.footer-badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 48px 24px; border-bottom: 1px solid var(--border); }
.badge-item strong { display: block; font-size: 15px; margin-bottom: 4px; }
.badge-item span { color: var(--text-dim); font-size: 13px; }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding: 48px 24px; }
.footer-col h4 { margin: 0 0 16px; font-size: 15px; }
.footer-col a { display: block; color: var(--text-dim); margin-bottom: 10px; font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-col p { color: var(--text-dim); font-size: 14px; }
.newsletter-form { display: flex; gap: 8px; margin-top: 12px; }
.newsletter-form input { flex: 1; padding: 10px 14px; border-radius: 8px; border: 1px solid var(--border); background: var(--surface); color: var(--text); font-size: 13px; }
.newsletter-form button { padding: 10px 16px; border-radius: 8px; border: none; background: #fff; color: #000; font-weight: 600; cursor: pointer; }
.footer-bottom { display: flex; justify-content: space-between; padding: 24px; color: var(--text-dim); font-size: 13px; border-top: 1px solid var(--border); }

/* Responsive */
@media (max-width: 960px) {
    .hero { min-height: 72vh; }
    .hero-copy h1 { font-size: clamp(38px, 10vw, 56px); }
    .features, .about-grid, .pd-top, .spec-grid { grid-template-columns: 1fr; }
    .reso-finder { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .rf-pro { grid-column: 1; grid-row: 1; }
    .rf-neo { grid-column: 2; grid-row: 1; }
    .rf-head { grid-column: 1; grid-row: 2; }
    .rf-acc { grid-column: 2; grid-row: 2; }
    .rf-card { min-height: 220px; }
    .interests { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-badges, .footer-cols { grid-template-columns: repeat(2, 1fr); }
    .main-nav { display: none; }
}
@media (max-width: 560px) {
    .product-grid { grid-template-columns: 1fr; }
    .reso-finder { grid-template-columns: 1fr; }
    .rf-pro, .rf-neo, .rf-head, .rf-acc { grid-column: 1; grid-row: auto; }
    .footer-badges, .footer-cols { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; }
}

/* ===================== Admin Panel ===================== */
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #e0393c; }

.admin-body { background: var(--bg); }

/* Login */
.admin-login-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 24px;
}
.admin-login-card {
    width: 100%;
    max-width: 380px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 32px;
}
.admin-login-card h1 { font-size: 24px; margin: 0 0 6px; }
.admin-login-card p { color: var(--text-dim); margin: 0 0 24px; font-size: 14px; }
.admin-login-card label { display: block; font-size: 13px; margin: 14px 0 6px; color: var(--text-dim); }
.admin-login-card input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg-alt);
    color: var(--text);
    font-size: 15px;
}
.admin-login-card button { margin-top: 24px; }

/* Shell */
.admin-shell { display: flex; min-height: 100vh; }
.admin-sidebar {
    width: 240px;
    flex-shrink: 0;
    background: var(--bg-alt);
    border-right: 1px solid var(--border);
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
}
.admin-brand { font-size: 20px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 32px; }
.admin-brand span { display: block; font-size: 12px; font-weight: 500; color: var(--text-dim); letter-spacing: .1em; text-transform: uppercase; }
.admin-nav { display: flex; flex-direction: column; gap: 4px; }
.admin-nav a {
    padding: 11px 14px;
    border-radius: 10px;
    color: var(--text-dim);
    font-size: 15px;
    font-weight: 500;
    transition: background .2s, color .2s;
}
.admin-nav a:hover { background: var(--surface); color: var(--text); }
.admin-logout { margin-top: auto; padding: 11px 14px; color: var(--text-dim); font-size: 14px; }
.admin-logout:hover { color: var(--danger); }

.admin-main { flex: 1; padding: 40px 44px; max-width: 1100px; }
.admin-page-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.admin-page-head h1 { font-size: 30px; font-weight: 800; letter-spacing: -.02em; margin: 0; }
.admin-muted { color: var(--text-dim); font-size: 13px; }

.admin-alert { padding: 12px 16px; border-radius: 10px; margin-bottom: 20px; font-size: 14px; }
.admin-alert-ok { background: rgba(74,222,128,.12); border: 1px solid rgba(74,222,128,.35); color: #86efac; }
.admin-alert-err { background: rgba(255,77,79,.12); border: 1px solid rgba(255,77,79,.35); color: #ffa1a2; }

/* Table */
.admin-table { width: 100%; border-collapse: collapse; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.admin-table th, .admin-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: 14px; vertical-align: middle; }
.admin-table th { color: var(--text-dim); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-thumb-cell { width: 64px; }
.admin-thumb-cell img { width: 48px; height: 48px; object-fit: contain; background: #fff; border-radius: 8px; }
.admin-table td .admin-muted { display: block; }
.admin-tags { display: inline-flex; gap: 6px; margin-top: 6px; }
.admin-tag { display: inline-block; font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--border); color: var(--text-dim); }
.admin-actions { display: flex; gap: 8px; justify-content: flex-end; align-items: center; }
.admin-actions form { margin: 0; }

/* Forms */
.admin-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.admin-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.admin-field { display: flex; flex-direction: column; margin-bottom: 20px; }
.admin-field label { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.admin-hint { font-size: 12px; color: var(--text-dim); margin-bottom: 8px; }
.admin-hint code { background: var(--bg-alt); padding: 1px 6px; border-radius: 5px; }
.admin-field input, .admin-field textarea, .admin-field select {
    padding: 11px 14px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg-alt);
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
    width: 100%;
}
.admin-field textarea { resize: vertical; line-height: 1.6; }
.admin-form-actions { display: flex; gap: 12px; margin-top: 8px; }

/* Görsel önizleme */
.admin-image-preview { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 10px; }
.admin-image-preview img { width: 84px; height: 84px; object-fit: cover; border-radius: 10px; border: 1px solid var(--border); background: var(--bg-alt); }

/* Social rows */
.social-rows { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.social-row { display: flex; gap: 12px; align-items: center; }
.social-row select { flex: 0 0 160px; padding: 11px 14px; border-radius: 10px; border: 1px solid var(--border); background: var(--bg-alt); color: var(--text); font-size: 14px; }
.social-row input[type=url] { flex: 1; padding: 11px 14px; border-radius: 10px; border: 1px solid var(--border); background: var(--bg-alt); color: var(--text); font-size: 14px; }
.social-enabled { display: flex; align-items: center; gap: 6px; font-size: 14px; color: var(--text-dim); white-space: nowrap; }

@media (max-width: 760px) {
    .admin-shell { flex-direction: column; }
    .admin-sidebar { width: 100%; height: auto; position: static; flex-direction: row; flex-wrap: wrap; align-items: center; gap: 12px; }
    .admin-brand { margin-bottom: 0; }
    .admin-nav { flex-direction: row; flex-wrap: wrap; }
    .admin-logout { margin: 0; }
    .admin-main { padding: 24px 20px; }
    .admin-form-grid { grid-template-columns: 1fr; }
    .social-row { flex-wrap: wrap; }
}
