/* Shine Care stylesheet — warm oranje, teal, beige — toegankelijk */

:root {
    --primary: #F47C48;
    --primary-dark: #e06836;
    --primary-soft: #FDE5D2;
    --secondary: #468985;
    --secondary-dark: #356b68;
    --secondary-soft: #d6ebe8;
    --bg: #FDF8F0;
    --bg-warm: #FAECD5;
    --card: #ffffff;
    --text: #2b2b2b;
    --text-muted: #6a6a6a;
    --border: #ece3d2;
    --success: #2e7d5b;
    --success-soft: #e0f1e9;
    --warn: #b8791c;
    --warn-soft: #fbeccb;
    --danger: #c23a3a;
    --danger-soft: #fadada;
    --radius: 14px;
    --radius-sm: 10px;
    --shadow: 0 4px 16px rgba(34, 28, 20, 0.08);
    --shadow-lg: 0 10px 30px rgba(34, 28, 20, 0.12);
    --transition: all .25s ease;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

h1, h2, h3, .hero h1, .section-header h2, .panel-title, .admin-logo, .logo {
    font-family: var(--font-display);
    letter-spacing: -0.01em;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--primary); }
img, video { max-width: 100%; display: block; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 22px; border: none; border-radius: 999px;
    font-family: var(--font); font-weight: 600; font-size: 16px;
    cursor: pointer; transition: var(--transition);
    text-decoration: none; white-space: nowrap;
}
.btn-lg { padding: 16px 32px; font-size: 18px; }
.btn-sm { padding: 7px 14px; font-size: 13px; }
.btn-block { width: 100%; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 12px rgba(244,124,72,.3); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(244,124,72,.4); color: #fff; }
.btn-ghost { background: transparent; color: var(--secondary); border: 2px solid var(--secondary); }
.btn-ghost:hover { background: var(--secondary); color: #fff; }
.btn-danger { background: var(--danger-soft); color: var(--danger); }
.btn-danger:hover { background: var(--danger); color: #fff; }

/* ---------- Promo banner ---------- */
.promo-banner {
    background: linear-gradient(90deg, var(--secondary), var(--secondary-dark));
    color: #fff; text-align: center; padding: 10px 20px; font-size: 15px; font-weight: 500;
}
.promo-banner a { color: #fff; text-decoration: underline; }

/* ---------- Header ---------- */
.site-header {
    background: rgba(255,255,255,.95); backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0,0,0,.04);
    position: sticky; top: 0; z-index: 1000;
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 5%;
}
.logo {
    display: flex; align-items: center; gap: 10px;
    font-size: 24px; font-weight: 800; color: var(--secondary);
}
.logo i { color: var(--primary); font-size: 28px; }
.logo em { color: var(--primary); font-style: normal; }
.site-header nav ul {
    list-style: none; display: flex; gap: 28px;
}
.site-header nav ul a {
    font-weight: 600; color: var(--text); transition: var(--transition);
}
.site-header nav ul a:hover { color: var(--primary); }
.nav-toggle {
    display: none; background: none; border: none; font-size: 24px; color: var(--secondary); cursor: pointer;
}
.header-cta { padding: 10px 22px; font-size: 15px; }

/* ---------- Hero ---------- */
.hero {
    display: flex; align-items: center; justify-content: space-between; gap: 50px;
    padding: 80px 5% 100px;
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-warm) 100%);
    min-height: calc(100vh - 80px);
}
.hero-content { flex: 1; max-width: 600px; }
.hero h1 {
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.15; color: var(--secondary); margin-bottom: 20px;
    font-weight: 800;
}
.hero h1 span { color: var(--primary); }
.hero p { font-size: 20px; color: var(--text-muted); margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-meta {
    display: flex; gap: 28px; flex-wrap: wrap; color: var(--text-muted); font-size: 16px;
}
.hero-meta div { display: flex; align-items: center; gap: 8px; }
.hero-meta i { color: var(--primary); }
.hero-image { flex: 1; position: relative; max-width: 560px; }
.hero-image img, .hero-image video {
    border-radius: 20px; box-shadow: var(--shadow-lg);
    border: 8px solid #fff; width: 100%; height: auto; object-fit: cover;
    aspect-ratio: 4/3;
}
.floating-badge {
    position: absolute; bottom: -24px; left: -24px;
    background: #fff; padding: 16px 22px;
    border-radius: var(--radius); box-shadow: var(--shadow);
    display: flex; align-items: center; gap: 14px;
    animation: float 4s ease-in-out infinite;
}
.floating-badge i { font-size: 28px; color: var(--primary); }
.floating-badge strong { display: block; color: var(--secondary); font-size: 16px; }
.floating-badge span { color: var(--text-muted); font-size: 13px; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ---------- Sections ---------- */
section { padding: 90px 5%; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: clamp(28px, 4vw, 40px); color: var(--secondary); margin-bottom: 10px; font-weight: 800; }
.section-header p { color: var(--text-muted); font-size: 18px; }

/* ---------- About / features ---------- */
.about { background: var(--secondary); color: #fff; }
.about .section-header h2 { color: #fff; }
.about .section-header p { color: rgba(255,255,255,.85); }
.features-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px;
    max-width: 1100px; margin: 0 auto;
}
.feature-box {
    background: rgba(255,255,255,.08); padding: 32px;
    border-radius: var(--radius); border: 1px solid rgba(255,255,255,.15);
    backdrop-filter: blur(6px); transition: var(--transition); text-align: left;
}
.feature-box:hover { transform: translateY(-6px); background: rgba(255,255,255,.14); }
.feature-icon {
    width: 56px; height: 56px; border-radius: 14px; background: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: #fff; margin-bottom: 18px;
}
.feature-box h3 { font-size: 20px; margin-bottom: 10px; font-weight: 700; }
.feature-box p { color: rgba(255,255,255,.9); }

/* ---------- Services ---------- */
.services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px;
    max-width: 1200px; margin: 0 auto;
}
.service-card {
    background: var(--card); padding: 32px; border-radius: var(--radius);
    box-shadow: var(--shadow); transition: var(--transition);
    position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 5px; height: 100%; background: var(--primary);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-icon {
    width: 68px; height: 68px; border-radius: 50%; background: var(--primary-soft);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: var(--primary); margin-bottom: 20px;
}
.service-icon img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.service-card h3 { font-size: 22px; color: var(--secondary); margin-bottom: 12px; font-weight: 700; }
.service-card p { color: var(--text-muted); font-size: 16px; }

/* ---------- Portfolio ---------- */
.portfolio { background: var(--bg-warm); }
.portfolio-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px;
    max-width: 1200px; margin: 0 auto;
}
.portfolio-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.portfolio-card img { width: 100%; height: 200px; object-fit: cover; }
.portfolio-body { padding: 22px; }
.portfolio-body h3 { color: var(--secondary); margin-bottom: 8px; }
.portfolio-body p { color: var(--text-muted); }

/* ---------- Reviews ---------- */
.reviews { background: var(--bg-warm); }
.reviews-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 26px;
    max-width: 1200px; margin: 0 auto;
}
.review-card { background: #fff; padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); }
.review-stars { color: #FFC542; margin-bottom: 14px; font-size: 18px; letter-spacing: 2px; }
.review-text { font-style: italic; color: #444; font-size: 17px; margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--secondary); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 18px;
}
.review-name { font-weight: 700; color: var(--secondary); }
.review-role { font-size: 14px; color: var(--text-muted); }

.review-submit {
    max-width: 640px; margin: 60px auto 0;
    background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
    padding: 4px 0;
}
.review-submit summary {
    cursor: pointer; padding: 22px 28px;
    font-weight: 700; color: var(--secondary); font-size: 18px;
    list-style: none; display: flex; align-items: center; gap: 10px;
}
.review-submit summary::-webkit-details-marker { display: none; }
.review-submit summary i { color: var(--primary); }
.review-submit[open] summary { border-bottom: 1px solid var(--border); }
.review-form { padding: 26px 28px; }

/* ---------- Forms (frontend) ---------- */
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block; margin-bottom: 8px; font-weight: 600; color: var(--secondary); font-size: 15px;
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 14px 16px;
    border: 1.5px solid var(--border); border-radius: var(--radius-sm);
    font-size: 16px; font-family: inherit; background: #fff; color: var(--text);
    transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none; border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(244,124,72,.15);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { color: var(--text-muted); font-size: 14px; margin-top: 10px; text-align: center; }

.flash {
    padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 18px; font-size: 15px;
    border: 1px solid; display: flex; align-items: center; gap: 10px;
}
.flash-success { background: var(--success-soft); color: var(--success); border-color: var(--success); }
.flash-error   { background: var(--danger-soft);  color: var(--danger);  border-color: var(--danger); }
.flash-warn    { background: var(--warn-soft);    color: var(--warn);    border-color: var(--warn); }
.flash-success::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
.flash-error::before   { content: '\f071'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
.flash-warn::before    { content: '\f06a'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }

/* ---------- Contact ---------- */
.contact { background: var(--secondary); color: #fff; }
.contact-container {
    display: grid; grid-template-columns: 1fr 1fr; gap: 50px; max-width: 1200px; margin: 0 auto;
}
.contact-info h2 { font-size: 34px; margin-bottom: 16px; }
.contact-info .lead { font-size: 19px; margin-bottom: 32px; color: rgba(255,255,255,.9); }
.contact-item {
    display: flex; align-items: flex-start; gap: 18px; margin-bottom: 22px;
    color: #fff; padding: 12px 14px; border-radius: var(--radius-sm);
    background: rgba(255,255,255,.05); transition: var(--transition);
}
a.contact-item:hover { background: rgba(255,255,255,.12); color: #fff; }
.contact-item i { font-size: 22px; color: var(--primary); margin-top: 4px; min-width: 24px; }
.contact-item strong { display: block; margin-bottom: 2px; font-size: 16px; }
.contact-item span { color: rgba(255,255,255,.85); font-size: 15px; }
.socials { display: flex; gap: 12px; margin-top: 24px; }
.socials a {
    width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.12);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 18px; transition: var(--transition);
}
.socials a:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

.contact-form {
    background: #fff; padding: 36px; border-radius: var(--radius);
    color: var(--text); box-shadow: var(--shadow-lg);
}
.contact-form h3 { color: var(--secondary); margin-bottom: 22px; font-size: 22px; }

/* ---------- Footer ---------- */
.site-footer {
    background: #2b2b2b; color: #ddd; text-align: center;
    padding: 24px 20px; font-size: 14px;
    display: flex; justify-content: center; gap: 28px; flex-wrap: wrap;
}
.site-footer a { color: #ddd; text-decoration: underline; }
.site-footer a:hover { color: var(--primary); }

/* ---------- Mobile ---------- */
@media (max-width: 900px) {
    .hero { flex-direction: column; padding: 50px 5% 80px; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-ctas, .hero-meta { justify-content: center; }
    .floating-badge { left: 50%; transform: translateX(-50%); bottom: -28px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-container { grid-template-columns: 1fr; gap: 40px; }
    .site-header nav ul { display: none; }
    .nav-toggle { display: block; }
    body.nav-open .site-header nav ul {
        display: flex; flex-direction: column; gap: 16px;
        position: absolute; top: 100%; left: 0; right: 0;
        background: #fff; padding: 20px 5%; box-shadow: var(--shadow);
    }
    .header-cta { display: none; }
    section { padding: 60px 5%; }
}

/* Admin panel — matches frontend warm theme */

/* ---------- Login ---------- */
.admin-login-body {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-warm) 100%);
    padding: 20px;
}
.admin-login-card {
    background: #fff; padding: 40px; border-radius: var(--radius);
    box-shadow: var(--shadow-lg); width: 100%; max-width: 420px;
}
.admin-logo {
    display: flex; align-items: center; gap: 10px;
    font-size: 22px; font-weight: 800; color: var(--secondary);
    margin-bottom: 8px;
}
.admin-logo i { color: var(--primary); font-size: 26px; }
.admin-logo em { color: var(--primary); font-style: normal; }
.admin-logo.small { font-size: 17px; }
.admin-logo.small i { font-size: 20px; }
.admin-login-sub { color: var(--text-muted); margin-bottom: 24px; }
.admin-form .form-group { margin-bottom: 16px; }
.admin-hint { margin-top: 18px; font-size: 13px; color: var(--text-muted); }
.admin-hint code { background: var(--primary-soft); padding: 2px 6px; border-radius: 4px; color: var(--primary-dark); }

/* ---------- Layout ---------- */
.admin-body { display: flex; min-height: 100vh; background: var(--bg); }
.admin-sidebar {
    width: 240px; background: #fff; border-right: 1px solid var(--border);
    padding: 24px 14px; flex-shrink: 0;
    position: sticky; top: 0; align-self: flex-start;
    max-height: 100vh; overflow-y: auto;
}
.admin-sidebar .admin-logo { padding: 0 10px; margin-bottom: 24px; }
.side-cat {
    font-size: 11px; text-transform: uppercase; letter-spacing: .08em;
    color: var(--text-muted); padding: 14px 12px 6px; font-weight: 600;
}
.side-link {
    display: flex; align-items: center; gap: 10px; width: 100%;
    padding: 10px 14px; border-radius: var(--radius-sm);
    color: var(--text); font-size: 15px; font-weight: 500;
    background: transparent; border: none; cursor: pointer;
    text-align: left; font-family: inherit; transition: var(--transition);
    margin-bottom: 2px;
}
.side-link i { width: 18px; color: var(--secondary); }
.side-link:hover { background: var(--primary-soft); color: var(--primary-dark); }
.side-link:hover i { color: var(--primary); }
.side-link.active { background: var(--primary); color: #fff; }
.side-link.active i { color: #fff; }
.side-link.subtle { color: var(--text-muted); }
.side-link.danger { color: var(--danger); }
.side-link.danger i { color: var(--danger); }
.side-footer { margin-top: 30px; padding-top: 16px; border-top: 1px solid var(--border); }
.badge {
    margin-left: auto; font-size: 11px; padding: 2px 8px; border-radius: 999px; font-weight: 700;
}
.badge-primary { background: var(--primary); color: #fff; }
.badge-warn    { background: var(--warn);    color: #fff; }
.side-link.active .badge-primary { background: #fff; color: var(--primary); }

.admin-main {
    flex: 1; padding: 32px 40px; overflow-x: hidden;
}
.admin-topbar {
    display: none; align-items: center; justify-content: space-between;
    padding: 10px 16px; background: #fff; border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 50;
}
.mobile-menu { background: none; border: none; font-size: 22px; color: var(--secondary); cursor: pointer; }
.admin-user { color: var(--text-muted); font-size: 14px; }

.panel-title { color: var(--secondary); font-size: 26px; margin-bottom: 22px; font-weight: 800; }
.panel-head { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-bottom: 22px; flex-wrap: wrap; }

.tab-panel { display: none; animation: fade .25s ease-out; }
.tab-panel.active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

/* ---------- Admin forms ---------- */
.admin-form fieldset {
    border: 1px solid var(--border); border-radius: var(--radius-sm);
    padding: 18px 20px; margin-bottom: 18px; background: #fff;
}
.admin-form legend { padding: 0 8px; color: var(--secondary); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .05em; }
.max-w-lg { max-width: 640px; }
.max-w-sm { max-width: 380px; }
.radio-row { display: flex; gap: 18px; padding: 8px 0; }
.radio-row label { display: flex; align-items: center; gap: 6px; cursor: pointer; font-weight: 500; color: var(--text); }
.checkbox { display: flex; align-items: center; gap: 8px; cursor: pointer; font-weight: 500; }
.checkbox.inline { display: inline-flex; margin: 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.grid-2 > form, .grid-2 > div { background: #fff; padding: 24px; border-radius: var(--radius-sm); border: 1px solid var(--border); }
.grid-2 h3 { color: var(--secondary); margin-bottom: 14px; font-size: 18px; }

/* ---------- Cards / messages ---------- */
.msg-card {
    background: #fff; padding: 18px 20px; border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary); box-shadow: var(--shadow);
    margin-bottom: 14px;
}
.msg-card.is-read { border-left-color: var(--border); opacity: .75; }
.msg-card.warn { border-left-color: var(--warn); }
.msg-card header { display: flex; justify-content: space-between; gap: 14px; margin-bottom: 10px; flex-wrap: wrap; }
.msg-card .actions { display: flex; gap: 8px; }
.msg-card .msg-meta { color: var(--text-muted); font-size: 14px; margin-bottom: 8px; }
.msg-card .msg-body { color: var(--text); margin-top: 6px; }
.tag { display: inline-block; background: var(--border); color: var(--text-muted); padding: 2px 8px; border-radius: 6px; font-size: 12px; margin-left: 6px; }

.item-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.item-grid.two-col { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.item-card {
    background: #fff; border-radius: var(--radius-sm); padding: 18px;
    border: 1px solid var(--border); display: flex; flex-direction: column; gap: 10px;
    transition: var(--transition);
}
.item-card:hover { box-shadow: var(--shadow); }
.item-head { display: flex; align-items: center; gap: 12px; }
.item-icon {
    width: 40px; height: 40px; border-radius: 10px; background: var(--primary-soft);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 18px; flex-shrink: 0;
}
.item-head img { width: 40px; height: 40px; border-radius: 8px; object-fit: cover; }
.item-image { width: 100%; height: 140px; object-fit: cover; border-radius: var(--radius-sm); }
.item-card .actions { display: flex; gap: 8px; margin-top: auto; padding-top: 6px; }

.stars { color: #FFC542; letter-spacing: 2px; margin-bottom: 8px; }
.stars .faded { color: var(--border); }

.social-row {
    display: grid; grid-template-columns: 26px 100px 1fr auto; gap: 12px;
    align-items: center; padding: 10px 14px;
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 10px;
}
.social-row i { color: var(--secondary); font-size: 20px; }
.social-row input { padding: 10px 12px; border: 1px solid var(--border); border-radius: 8px; font-size: 14px; }

.user-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 14px; background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-sm); margin-bottom: 8px;
}
.log-list { max-height: 420px; overflow-y: auto; }
.log-row {
    display: flex; gap: 14px; padding: 8px 12px;
    border-bottom: 1px solid var(--border); font-size: 14px;
}
.log-row:last-child { border-bottom: none; }

.muted { color: var(--text-muted); }
.small { font-size: 13px; }
.inline { display: inline-block; }

/* ---------- Upload controls ---------- */
.upload-row {
    display: flex; align-items: center; gap: 12px; margin-bottom: 8px; flex-wrap: wrap;
}
.file-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--primary-soft); color: var(--primary-dark);
    padding: 10px 16px; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 14px; cursor: pointer;
    border: 1.5px dashed var(--primary); transition: var(--transition);
}
.file-btn:hover { background: var(--primary); color: #fff; }
.file-btn input[type="file"] { display: none; }
.media-preview {
    display: flex; align-items: center; gap: 12px;
    padding: 10px; background: var(--bg-warm); border-radius: var(--radius-sm);
    margin-bottom: 10px; border: 1px solid var(--border);
}
.media-preview img, .media-preview video {
    width: 80px; height: 60px; object-fit: cover; border-radius: 6px; flex-shrink: 0;
}
.media-preview .small { word-break: break-all; }

/* ---------- Modals ---------- */
.modal {
    display: none; position: fixed; inset: 0; z-index: 2000;
    background: rgba(34,28,20,.55); backdrop-filter: blur(3px);
    align-items: center; justify-content: center; padding: 20px;
    overflow-y: auto;
}
.modal.open { display: flex; }
.modal-card {
    background: #fff; border-radius: var(--radius);
    padding: 30px; width: 100%; max-width: 500px;
    box-shadow: var(--shadow-lg); animation: pop .25s ease-out;
}
.modal-card h3 { color: var(--secondary); margin-bottom: 18px; }
.modal-card .actions { display: flex; gap: 10px; margin-top: 18px; }
@keyframes pop { from { transform: scale(.96); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ---------- Admin responsive ---------- */
@media (max-width: 900px) {
    .admin-sidebar {
        position: fixed; left: -260px; top: 0; height: 100vh; z-index: 100;
        transition: left .3s ease;
    }
    body.sidebar-open .admin-sidebar { left: 0; }
    body.sidebar-open::before {
        content: ''; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 99;
    }
    .admin-topbar { display: flex; }
    .admin-main { padding: 20px 16px; }
    .grid-2 { grid-template-columns: 1fr; }
    .social-row { grid-template-columns: 1fr; text-align: left; }
}
