
:root {
    --green: #1e5b46;
    --green-2: #276d56;
    --green-soft: #eef7f2;
    --cream: #faf7f0;
    --sand: #f4eee2;
    --brown: #8a6238;
    --gold: #d2a45c;
    --ink: #1c2b2d;
    --muted: #637175;
    --line: rgba(28, 43, 45, .09);
    --white: #ffffff;
    --shadow: 0 20px 60px rgba(22, 34, 35, .10);
    --shadow-soft: 0 12px 32px rgba(22, 34, 35, .08);
    --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, #fcfbf8 0%, #f8fbf9 45%, #fffdf9 100%);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
body::selection { background: #d6e8dc; color: var(--ink); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}
.navbar {
    width: min(1160px, calc(100% - 32px));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
}
.brand img { width: 56px; height: 56px; object-fit: contain; }
.brand span { display: grid; line-height: 1.04; }
.brand strong { font-size: 17px; }
.brand small { font-size: 12px; color: var(--muted); font-weight: 700; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #314346;
    font-weight: 700;
}
.nav-links a:not(.btn) { position: relative; }
.nav-links a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--green);
    transition: .25s;
}
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-toggle {
    display: none;
    border: 0;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--green);
    color: #fff;
    font-size: 22px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 999px;
    border: 0;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, opacity .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-2) 100%);
    box-shadow: 0 14px 32px rgba(30, 91, 70, .25);
}
.btn-soft {
    color: var(--green);
    background: #f1f7f4;
    border: 1px solid rgba(30, 91, 70, .12);
}
.btn-wa { background: #24d366; color: #fff; }
.btn.mini { padding: 10px 18px; }
.btn.full { width: 100%; }

.hero {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
    padding: 62px 0 46px;
    display: grid;
    grid-template-columns: 1.12fr .78fr;
    gap: 42px;
    align-items: center;
}
.eyebrow, .tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--green-soft);
    border: 1px solid rgba(30, 91, 70, .12);
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
}
.eyebrow::before { content: "🌿"; }
.hero h1 {
    margin: 18px 0 16px;
    font-size: clamp(38px, 5.2vw, 62px);
    line-height: 1.02;
    letter-spacing: -1.8px;
}
.hero-text {
    margin: 0 0 24px;
    max-width: 650px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 0;
}
.point-chip {
    padding: 10px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    font-size: 13px;
    font-weight: 700;
    color: #415154;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}
.hero-stats div {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    padding: 16px;
}
.hero-stats strong { display: block; font-size: 20px; color: var(--green); }
.hero-stats span { color: var(--muted); font-size: 13px; font-weight: 700; }
.hero-visual-shell { position: relative; padding: 12px 18px 18px 0; }
.hero-visual {
    max-width: 350px;
    margin-left: auto;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow);
    border: 1px solid rgba(28, 43, 45, .08);
}
.hero-visual img {
    width: 100%;
    height: 100%;
    max-height: 255px;
    object-fit: cover;
    object-position: center;
}
.hero-mini-card {
    position: absolute;
    background: rgba(255,255,255,.97);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    padding: 12px 14px;
}
.hero-mini-card b { display: block; font-size: 14px; }
.hero-mini-card span { color: var(--muted); font-size: 12px; font-weight: 700; }
.card-a { left: 0; top: 18px; }
.card-b { right: 0; bottom: 18px; }

.section { padding: 76px 0; }
.section-white { background: rgba(255,255,255,.74); }
.section-soft { background: linear-gradient(180deg, #f8fbf9 0%, #fffdf9 100%); }
.section-heading {
    width: min(760px, calc(100% - 32px));
    margin: 0 auto 40px;
    text-align: center;
}
.section-heading.narrow-left { text-align: left; width: min(1160px, calc(100% - 32px)); }
.section-heading h2 {
    margin: 16px 0 10px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;
    letter-spacing: -1.2px;
}
.section-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}
.cards-grid {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    gap: 20px;
}
.cards-grid.three { grid-template-columns: repeat(3, 1fr); }
.info-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 28px;
}
.icon-box {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: #f3f7f4;
    font-size: 28px;
}
.info-card h3 { margin: 18px 0 10px; font-size: 23px; }
.info-card p { margin: 0; color: var(--muted); line-height: 1.75; }

.article-section { background: #fff; }
.article-slider-wrap {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
}
.slider-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--green);
    box-shadow: var(--shadow-soft);
    font-size: 28px;
    cursor: pointer;
}
.article-slider { position: relative; min-height: 300px; }
.article-slide {
    display: none;
    grid-template-columns: .78fr 1.22fr;
    gap: 24px;
    background: linear-gradient(135deg, #fff 0%, #fbf8f1 100%);
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.article-slide.active { display: grid; }
.article-slide-media img {
    width: 100%;
    height: 100%;
    max-height: 250px;
    object-fit: cover;
    object-position: center;
}
.article-slide-copy {
    padding: 34px 34px 34px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.article-kicker {
    color: var(--brown);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .2px;
    text-transform: uppercase;
}
.article-slide-copy h3 {
    margin: 14px 0 12px;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.15;
    letter-spacing: -.8px;
}
.article-slide-copy p { margin: 0; color: var(--muted); line-height: 1.8; }
.slider-dots {
    width: min(1160px, calc(100% - 32px));
    margin: 18px auto 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 0;
    background: #d8dfda;
    cursor: pointer;
}
.dot.active { background: var(--green); }

.benefit-section { background: linear-gradient(180deg, #faf7f0 0%, #fffdf8 100%); }
.tag-brown { background: #f5ece0; color: var(--brown); border-color: rgba(138, 98, 56, .12); }
.light-on-cream h2, .light-on-cream p { color: var(--ink); }
.benefit-wrap {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    gap: 22px;
}
.benefit-wrap.premium { grid-template-columns: 1.1fr 320px; align-items: start; }
.premium-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.benefit-item {
    display: flex;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    padding: 18px;
}
.benefit-item span {
    min-width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #f2f6f3;
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
}
.benefit-item b { font-size: 17px; }
.benefit-item p { margin: 6px 0 0; color: var(--muted); line-height: 1.65; }
.benefit-item.accent {
    border-color: rgba(210, 164, 92, .26);
    background: linear-gradient(135deg, #fff 0%, #fcf6ea 100%);
}
.premium-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.premium-card small { color: var(--muted); font-weight: 800; }
.premium-card strong { font-size: 50px; line-height: 1; color: var(--brown); }
.premium-card > span { color: var(--muted); font-weight: 700; }
.premium-card p { margin: 0; color: var(--muted); line-height: 1.75; }
.price-note {
    padding: 14px 16px;
    border-radius: 16px;
    background: #faf3e7;
    border: 1px solid rgba(210, 164, 92, .2);
    color: #7a5936;
    font-size: 14px;
    line-height: 1.65;
    font-weight: 700;
}
.showcase-row {
    width: min(1160px, calc(100% - 32px));
    margin: 28px auto 0;
    display: grid;
    grid-template-columns: 1.1fr 320px;
    gap: 24px;
    align-items: center;
}
.soft-tag { background: #fff; }
.showcase-copy h3 {
    margin: 16px 0 12px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.08;
    letter-spacing: -.9px;
}
.showcase-copy p { margin: 0; color: var(--muted); line-height: 1.8; }
.showcase-image {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    max-width: 320px;
    margin-left: auto;
}
.showcase-image img {
    width: 100%;
    height: 100%;
    max-height: 210px;
    object-fit: cover;
    object-position: center;
}

.info-video-grid {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    gap: 22px;
}
.info-video-grid.refined { grid-template-columns: .84fr 1.16fr; }
.info-column {
    display: grid;
    gap: 16px;
}
.mini-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    padding: 22px;
}
.mini-card h3 { margin: 0 0 8px; font-size: 21px; }
.mini-card p { margin: 0; color: var(--muted); line-height: 1.75; }
.video-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    max-width: 560px;
    margin-left: auto;
}
.compact-thumb { height: 190px; }
.video-thumb {
    position: relative;
}
.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    color: var(--green);
    font-size: 28px;
    box-shadow: var(--shadow-soft);
}
.video-content { padding: 24px; }
.video-content h3 { margin: 0 0 10px; font-size: 28px; }
.video-content p { margin: 0; color: var(--muted); line-height: 1.75; }
.video-actions { margin-top: 18px; }

.testimonials { background: #fff; }
.media-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 26px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}
.testimonial-media img {
    width: 100%;
    height: 135px;
    object-fit: cover;
    object-position: center;
}
.testimonial-content { padding: 22px; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 18px; margin-bottom: 12px; }
.testimonial-content p { margin: 0; color: var(--muted); line-height: 1.8; }
.author { margin-top: 18px; display: grid; gap: 4px; }
.author b { color: var(--ink); }
.author span { color: var(--green); font-size: 14px; font-weight: 700; }

.timeline {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.step {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    padding: 22px;
}
.step span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #f1f6f3;
    color: var(--green);
    font-weight: 900;
}
.step h3 { margin: 16px 0 8px; }
.step p { margin: 0; color: var(--muted); line-height: 1.7; }

.registration { background: linear-gradient(180deg, #f8fbf9 0%, #fcfbf8 100%); }
.form-panel {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 22px;
}
.form-copy, .register-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow);
}
.refined-copy {
    padding: 32px;
    background: linear-gradient(135deg, #fff 0%, #f7fbf8 100%);
}
.form-copy h2 {
    margin: 16px 0 12px;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    letter-spacing: -1px;
}
.form-copy p { color: var(--muted); line-height: 1.75; }
.contact-box {
    margin-top: 22px;
    padding: 18px;
    border-radius: 20px;
    background: var(--green);
    color: #fff;
}
.contact-box b { display: block; margin-bottom: 8px; }
.contact-box a { color: #f6e3b8; font-weight: 900; }
.contact-box.secondary {
    background: #f8f4eb;
    color: var(--ink);
    border: 1px solid rgba(138, 98, 56, .12);
}
.register-form {
    padding: 28px;
    display: grid;
    gap: 16px;
}
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
label { display: grid; gap: 8px; font-weight: 800; color: #314346; }
input, select, textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid rgba(28, 43, 45, .13);
    border-radius: 16px;
    background: #fbfcfb;
    color: var(--ink);
    font: inherit;
    outline: none;
    transition: .2s;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(30, 91, 70, .10);
    background: #fff;
}
.form-note { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.alert {
    padding: 12px 14px;
    border-radius: 14px;
    background: #fff1f1;
    color: #a52f2f;
    font-weight: 800;
}

.faq-wrap { padding-top: 66px; }
.accordion {
    width: min(860px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    gap: 12px;
}
.accordion-item {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    color: var(--ink);
    font-size: 16px;
    font-weight: 900;
    text-align: left;
    cursor: pointer;
}
.accordion-item span { color: var(--green); font-size: 24px; }
.accordion-content { display: none; padding: 0 20px 18px; color: var(--muted); line-height: 1.75; }
.accordion-content.active { display: block; }

.site-footer {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
    padding: 42px 0;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 24px;
    color: var(--muted);
}
.site-footer a { display: block; margin-top: 8px; color: var(--green); font-weight: 800; }
.footer-logo { width: 86px; margin-bottom: 12px; }
.floating-wa {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #24d366;
    color: #fff;
    font-size: 28px;
    z-index: 80;
    box-shadow: 0 18px 40px rgba(36, 211, 102, .34);
    animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { transform: scale(1);} 50% { transform: scale(1.06);} }

.success-body, .admin-body {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}
.success-card, .login-card {
    width: min(680px, 100%);
    padding: 40px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 30px;
    box-shadow: var(--shadow);
    text-align: center;
}
.success-logo { width: 90px; margin: 0 auto 14px; }
.success-icon { font-size: 56px; }
.success-card h1, .login-card h1 { margin: 10px 0; font-size: clamp(32px, 5vw, 46px); }
.success-card p, .login-card p { color: var(--muted); line-height: 1.75; }
.success-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 24px; }
.back-link { display: inline-block; margin-top: 18px; color: var(--green); font-weight: 900; }

.admin-body {
    display: block;
    background: #f6faf8;
}
.admin-topbar {
    width: min(1200px, calc(100% - 32px));
    margin: 24px auto;
    padding: 24px;
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.admin-topbar h1 { margin: 0 0 6px; }
.admin-topbar p { margin: 0; color: var(--muted); }
.admin-actions { display: flex; gap: 10px; }
.admin-table-wrap { width: min(1200px, calc(100% - 32px)); margin: 0 auto 34px; }
.table-scroll { overflow-x: auto; background: #fff; border-radius: 22px; box-shadow: var(--shadow-soft); }
.admin-table { width: 100%; min-width: 980px; border-collapse: collapse; }
.admin-table th, .admin-table td { padding: 14px; text-align: left; vertical-align: top; border-bottom: 1px solid #edf2ef; }
.admin-table th { background: #eef6f2; color: var(--green); font-size: 13px; }
.empty-state { padding: 34px; text-align: center; color: var(--muted); background: #fff; border-radius: 22px; box-shadow: var(--shadow); }

@media (max-width: 980px) {
    .nav-toggle { display: grid; place-items: center; }
    .nav-links {
        position: absolute;
        top: 76px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 20px;
        box-shadow: var(--shadow);
    }
    .nav-links.open { display: flex; }
    .hero,
    .benefit-wrap.premium,
    .showcase-row,
    .info-video-grid.refined,
    .form-panel,
    .timeline,
    .site-footer,
    .article-slide,
    .cards-grid.three { grid-template-columns: 1fr; }
    .article-slider-wrap { grid-template-columns: 1fr; }
    .slider-btn { display: none; }
    .premium-list { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: 1fr; }
    .hero-visual { margin: 0 auto; max-width: 100%; }
    .hero-visual img { max-height: 240px; }
    .hero-mini-card { display: none; }
}

@media (max-width: 640px) {
    .navbar { width: min(1160px, calc(100% - 24px)); min-height: 70px; }
    .brand img { width: 48px; height: 48px; }
    .brand small { font-size: 11px; }
    .hero,
    .cards-grid,
    .section-heading,
    .article-slider-wrap,
    .slider-dots,
    .benefit-wrap,
    .showcase-row,
    .info-video-grid,
    .timeline,
    .site-footer,
    .form-panel,
    .accordion { width: min(1160px, calc(100% - 24px)); }
    .hero { padding-top: 34px; gap: 28px; }
    .hero h1 { letter-spacing: -1px; }
    .hero-text { font-size: 16px; }
    .hero-actions .btn, .video-actions .btn { width: 100%; }
    .article-slide-copy { padding: 20px 22px 24px; }
    .article-slide-media img { max-height: 180px; }
    .compact-thumb { height: 170px; }
    .testimonial-media img { height: 120px; }
    .showcase-image img { max-height: 180px; }
    .form-row { grid-template-columns: 1fr; }
    .refined-copy, .register-form, .premium-card, .success-card, .login-card { padding: 22px; }
    .floating-wa { width: 56px; height: 56px; right: 16px; bottom: 16px; }
    .admin-topbar { flex-direction: column; align-items: flex-start; }
    .admin-actions { width: 100%; flex-direction: column; }
    .admin-actions .btn { width: 100%; }
}


/* Backend CMS */
.admin-nav {
    width: min(1200px, calc(100% - 32px));
    margin: -6px auto 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.admin-nav a {
    padding: 10px 15px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--green);
    font-weight: 800;
    box-shadow: var(--shadow-soft);
}
.admin-dashboard {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto 40px;
    display: grid;
    gap: 24px;
}
.admin-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
    padding: 26px;
}
.admin-panel-heading {
    margin-bottom: 20px;
}
.admin-panel-heading h2 {
    margin: 0 0 8px;
    font-size: clamp(24px, 3vw, 34px);
}
.admin-panel-heading p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}
.admin-success {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 14px;
    background: #eaf8ef;
    color: var(--green);
    font-weight: 900;
}
.admin-form {
    display: grid;
    gap: 16px;
}
.admin-form.add-form {
    margin-bottom: 24px;
    padding: 22px;
    border-radius: 22px;
    background: #f8fbf9;
    border: 1px solid var(--line);
}
.admin-form h3 {
    margin: 0;
}
.three-cols {
    grid-template-columns: repeat(3, 1fr);
}
.upload-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.admin-preview {
    width: 100%;
    height: 110px;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: #f6f8f6;
}
.admin-card-list {
    display: grid;
    gap: 16px;
}
.admin-edit-card {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 16px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(22, 34, 35, .06);
}
.admin-edit-card.no-image {
    grid-template-columns: 58px 1fr;
}
.admin-thumb {
    width: 160px;
    height: 120px;
    object-fit: cover;
    object-position: center;
    border-radius: 18px;
    border: 1px solid var(--line);
}
.admin-number {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #eef6f2;
    color: var(--green);
    font-weight: 900;
}
.admin-edit-fields {
    display: grid;
    gap: 10px;
}
.edit-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.btn.danger {
    background: #fff0f0;
    color: #b42318;
    border: 1px solid rgba(180, 35, 24, .14);
}
.checkbox-row {
    display: flex;
    grid-template-columns: none;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}
.checkbox-row input {
    width: auto;
}
.register-form.compact {
    box-shadow: none;
    border: 0;
    padding: 0;
}
.admin-body .btn.mini {
    padding: 10px 16px;
}
@media (max-width: 980px) {
    .upload-grid,
    .three-cols,
    .admin-edit-card,
    .admin-edit-card.no-image {
        grid-template-columns: 1fr;
    }
    .admin-thumb {
        width: 100%;
        height: 170px;
    }
}
@media (max-width: 640px) {
    .admin-panel {
        padding: 18px;
        border-radius: 22px;
    }
    .admin-preview {
        height: 92px;
    }
}
