/* AULAVERSE — tema y componentes.
   Complementa Tailwind: no pisa utilidades de layout/spacing ni el plugin de forms.
   Solo define tokens, puentes de color y piezas propias (page-shell, cards, etc.). */

:root {
    --av-bg: #f3fbf7;
    --av-bg-soft: #edf5f1;
    --av-surface: #ffffff;
    --av-surface-muted: #e8f0eb;
    --av-ink: #161d1b;
    --av-muted: #3b4a45;
    --av-primary: #4248d6;
    --av-primary-soft: #e0e0ff;
    --av-teal: #00d4b1;
    --av-teal-deep: #006b58;
    --av-border: #e2e8f0;
    --av-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    --av-on-secondary: #00382c;
}

html,
body {
    background-color: var(--av-bg);
    color: var(--av-ink);
    font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
    min-height: 100%;
}

html {
    height: 100%;
}

body.site-body {
    min-height: 100%;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1 0 auto;
    width: 100%;
    /* Independiente de utilidades Tailwind: aire bajo el nav y antes del footer */
    padding-top: 8rem;
    padding-bottom: 8rem;
}

@media (min-width: 768px) {
    .site-main {
        padding-top: 8.75rem;
        padding-bottom: 9.5rem;
    }
}

@media (max-width: 767.98px) {
    .site-main {
        padding-top: 6.25rem;
        padding-bottom: 4.5rem;
    }
}

.site-main--flush {
    padding-top: 0;
    padding-bottom: 4.5rem;
}

.site-footer {
    flex-shrink: 0;
    margin-top: auto;
    background: #f8fafc;
    border-top: 1px solid var(--av-border);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.brand-logo {
    height: 42px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    background: transparent;
}

.material-symbols-outlined {
    font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
    font-family: "Material Symbols Outlined", sans-serif;
    font-style: normal;
    line-height: 1;
    display: inline-block;
}

/* Puente de tokens: mismas clases que Tailwind, valores del tema claro.
   Sin !important para no anular utilidades (text-white, bg-white, p-*, etc.). */
.text-ink,
.text-on-surface {
    color: var(--av-ink);
}

.text-on-surface-variant {
    color: var(--av-muted);
}

.text-primary,
.hover\:text-primary:hover {
    color: var(--av-primary);
}

.text-secondary,
.hover\:text-secondary:hover,
.text-secondary-container,
.hover\:text-secondary-container:hover,
a.text-secondary {
    color: var(--av-teal-deep);
}

.text-on-secondary {
    color: var(--av-on-secondary);
}

.bg-primary-container,
.hover\:bg-primary-container:hover,
.bg-primary {
    background-color: var(--av-primary);
}

.bg-secondary-container {
    background-color: var(--av-teal);
}

.border-secondary-container {
    border-color: var(--av-teal);
}

.hover\:border-primary:hover {
    border-color: var(--av-primary);
}

.bg-surface,
.bg-surface\/80,
.bg-surface-container-low,
.bg-surface-container-lowest,
.bg-surface-container-high,
.bg-surface-container {
    background-color: var(--av-surface);
}

.bg-\[\#111827\],
.bg-\[\#f5f7fb\] {
    background-color: var(--av-bg-soft);
}

.border-outline-variant\/10,
.border-outline-variant\/20,
.border-outline-variant\/40 {
    border-color: var(--av-border);
}

/* Forms: solo color y radio. El padding-right del select lo deja Tailwind Forms. */
input,
textarea,
select {
    background-color: var(--av-surface);
    color: var(--av-ink);
    border-color: var(--av-border);
}

input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):not([type="hidden"]),
textarea {
    padding: 0.7rem 0.9rem;
    border-radius: 0.5rem;
    min-height: 2.75rem;
}

select {
    border-radius: 0.5rem;
    min-height: 2.75rem;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    padding-left: 0.9rem;
    cursor: pointer;
}

select.filter-select {
    width: 22rem;
    max-width: 100%;
}

textarea {
    min-height: 8rem;
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    outline: 2px solid rgba(47, 59, 217, 0.25);
    border-color: var(--av-primary);
}

.k-search input:focus,
.k-search input:focus-visible,
.k-search-mini input:focus,
.k-search-mini input:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border-color: transparent !important;
}

.k-filters__range input:focus,
.k-filters__range input:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border-color: var(--k-indigo, #5b4bff);
}

/* Spacing helpers */
.py-section-gap,
.md\:py-section-gap {
    padding-top: 64px;
    padding-bottom: 64px;
}

@media (min-width: 768px) {
    .md\:text-display-lg {
        font-size: 48px;
        line-height: 56px;
        letter-spacing: -0.02em;
        font-weight: 700;
    }
    .md\:text-headline-md {
        font-size: 24px;
        line-height: 32px;
        font-weight: 600;
    }
    .md\:min-h-\[819px\] {
        min-height: 70vh;
    }
}

.text-display-lg {
    font-size: 48px;
    line-height: 56px;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.text-headline-md {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
}

.text-body-lg,
.md\:text-body-lg {
    font-size: 18px;
    line-height: 28px;
}

.mt-section-gap {
    margin-top: 64px;
}

/* Soft brand atmosphere (light) */
.bg-glow,
.bg-glow-blue {
    display: none;
}

.hero-glow {
    position: absolute;
    inset: 5% 5% auto;
    height: 70%;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(0, 201, 167, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 35%, rgba(47, 59, 217, 0.14) 0%, transparent 50%);
    filter: blur(36px);
    pointer-events: none;
    z-index: 0;
}

.hero-band {
    background:
        linear-gradient(180deg, #f7f9ff 0%, #ffffff 55%, #ffffff 100%);
    border-bottom: 1px solid var(--av-border);
}

.glass-card {
    background: #fff;
    border: 1px solid var(--av-border);
    box-shadow: var(--av-shadow);
    transition: all 0.25s ease;
}

.glass-card:hover {
    box-shadow: 0 16px 40px rgba(47, 59, 217, 0.1);
    border-color: rgba(47, 59, 217, 0.25);
    transform: translateY(-3px);
}

.btn-primary-av {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--av-primary);
    color: #fff;
    box-shadow: 0 8px 20px rgba(47, 59, 217, 0.25);
    text-decoration: none;
}

.btn-primary-av:hover {
    opacity: 0.92;
    color: #fff;
}

.btn-secondary-av {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1.5px solid var(--av-teal);
    color: var(--av-teal-deep);
    text-decoration: none;
}

.btn-secondary-av:hover {
    background: rgba(0, 201, 167, 0.08);
    color: var(--av-teal-deep);
}

.cta-band {
    background: linear-gradient(135deg, #eef1ff 0%, #e6fbf6 100%);
    border-top: 1px solid var(--av-border);
    border-bottom: 1px solid var(--av-border);
}

/* Navbar / footer light */
.hover-lift {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(47, 59, 217, 0.1);
}

#site-navbar {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.feature-icon {
    background: var(--av-primary-soft);
    color: var(--av-primary);
}

.flash-success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.flash-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.flash-warning {
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #92400e;
}

.sys-toast-stack {
    position: fixed;
    left: 50%;
    right: auto;
    top: 5.75rem;
    bottom: auto;
    z-index: 10040;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: min(24rem, calc(100vw - 2rem));
    transform: translateX(-50%);
    pointer-events: none;
}

.sys-toast {
    pointer-events: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px;
    padding: 12px 12px 12px 16px;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
    border: 2px solid #14b8a6;
    animation: sys-toast-in 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    isolation: isolate;
    font-family: inherit;
}

.sys-toast.is-leaving {
    animation: sys-toast-out 0.25s ease forwards;
    pointer-events: none;
}

.sys-toast__icon {
    display: none;
}

.sys-toast--success {
    background: #fff;
    border-color: #14b8a6;
}

.sys-toast--error {
    background: #fff;
    border-color: #e11d48;
}

.sys-toast--warning {
    background: #fff;
    border-color: #d97706;
}

.sys-toast--info {
    background: #fff;
    border-color: #7c3aed;
}

.sys-toast__text {
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    color: #161d1b;
    white-space: pre-line;
}

.sys-toast__close {
    position: relative;
    z-index: 2;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    align-self: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #f8fafc;
    color: #475569;
    cursor: pointer;
    pointer-events: auto;
    transform: none !important;
}

.sys-toast__close:hover {
    background: #fff;
    color: #161d1b;
}

.sys-toast__close .material-symbols-outlined {
    font-size: 18px;
    pointer-events: none;
}

@keyframes sys-toast-in {
    from { opacity: 0; transform: translateY(-16px) scale(0.94); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes sys-toast-out {
    from { opacity: 1; transform: translateY(0) scale(1); }
    to { opacity: 0; transform: translateY(-12px) scale(0.96); }
}

@media (max-width: 640px) {
    .sys-toast-stack {
        top: auto;
        bottom: 1.25rem;
        width: calc(100vw - 1.5rem);
    }
}

.swal2-popup.swal2-toast,
.swal2-popup.swal2-toast .swal2-close {
    pointer-events: auto !important;
}

.swal2-popup.swal2-toast .swal2-close {
    width: 2rem;
    height: 2rem;
    font-size: 1.6rem;
    cursor: pointer;
}

.p-swal-container {
    z-index: 10050;
}

.p-swal-toast,
.swal2-popup.swal2-toast {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    position: relative !important;
    width: auto !important;
    max-width: min(24rem, calc(100vw - 2rem)) !important;
    margin: 0 auto !important;
    padding: 12px 48px 12px 16px !important;
    border-radius: 28px !important;
    background: #fff !important;
    border: 2px solid #14b8a6 !important;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1) !important;
    overflow: hidden;
}

.p-swal-toast.swal2-icon-error {
    background: #fff !important;
    border-color: #e11d48 !important;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1) !important;
}

.p-swal-toast.swal2-icon-warning {
    background: #fff !important;
    border-color: #d97706 !important;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1) !important;
}

.p-swal-toast.swal2-icon-info {
    background: #fff !important;
    border-color: #7c3aed !important;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1) !important;
}

.p-swal-toast::after,
.swal2-popup.swal2-toast::after {
    display: none;
}

.p-swal-toast__icon,
.p-swal-toast .swal2-icon,
.swal2-popup.swal2-toast .swal2-icon {
    display: none !important;
}

.p-swal-toast__title,
.p-swal-toast .swal2-title,
.swal2-popup.swal2-toast .swal2-title {
    font-size: 0.95rem !important;
    font-weight: 800 !important;
    color: #161d1b !important;
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
}

.p-swal-toast__text,
.p-swal-toast .swal2-html-container,
.swal2-popup.swal2-toast .swal2-html-container {
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    color: #334155 !important;
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
}

.p-swal-toast__close,
.p-swal-toast .swal2-close,
.swal2-popup.swal2-toast .swal2-close {
    position: absolute !important;
    top: 50% !important;
    right: 10px !important;
    left: auto !important;
    transform: translateY(-50%) !important;
    width: 2.1rem !important;
    height: 2.1rem !important;
    margin: 0 !important;
    border-radius: 999px !important;
    background: #f8fafc !important;
    color: #475569 !important;
    font-size: 1.5rem !important;
}

.p-swal-toast__bar,
.p-swal-toast .swal2-timer-progress-bar,
.swal2-popup.swal2-toast .swal2-timer-progress-bar {
    background: #00e5c2 !important;
}

main,
footer {
    position: relative;
    z-index: 1;
}

.admin-sidebar {
    background: #fff;
    border-right: 1px solid var(--av-border);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 1.25rem 1rem 1.5rem;
    width: 16rem;
    flex-shrink: 0;
}

@media (max-width: 767.98px) {
    .admin-sidebar {
        position: fixed;
        inset: 0 auto 0 0;
        z-index: 80;
        width: min(18.5rem, 88vw);
        min-height: 100svh;
        transform: translate3d(-104%, 0, 0);
        visibility: hidden;
        transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.4s;
        box-shadow: 16px 0 40px rgba(15, 23, 42, 0.12);
    }

    .admin-sidebar.is-open {
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }
}

.admin-brand {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.35rem 0.5rem 1.25rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid var(--av-border);
}

.admin-brand__logo {
    height: 36px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    margin-bottom: 0.35rem;
}

.admin-brand__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--av-ink);
    letter-spacing: -0.02em;
    margin: 0;
}

.admin-brand__meta {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--av-muted);
    margin: 0;
}

.admin-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.admin-nav a {
    display: block;
    padding: 0.75rem 0.85rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    text-decoration: none;
}

.admin-sidebar__foot {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--av-border);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.btn-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.55rem 0.95rem;
    border-radius: 0.75rem;
    border: 1px solid transparent;
    background: #fff;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-chip .material-symbols-outlined {
    font-size: 1.125rem;
}

.btn-chip--block {
    width: 100%;
}

.btn-logout {
    border-color: #fecaca;
    color: #b91c1c;
}

.btn-logout:hover {
    background: #fef2f2;
    border-color: #f87171;
    color: #991b1b;
}

.btn-site {
    border-color: #c7d2fe;
    color: var(--av-primary);
}

.btn-site:hover {
    background: var(--av-primary-soft);
    border-color: var(--av-primary);
    color: var(--av-primary);
}

.admin-hero {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding: 1.75rem 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid var(--av-border);
    background:
        radial-gradient(ellipse at 90% 10%, rgba(0, 201, 167, 0.12) 0%, transparent 46%),
        radial-gradient(ellipse at 8% 0%, rgba(47, 59, 217, 0.14) 0%, transparent 42%),
        linear-gradient(135deg, #f7f9ff 0%, #ffffff 55%, #f3fbf8 100%);
    box-shadow: var(--av-shadow);
}

@media (min-width: 768px) {
    .admin-hero {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 2rem 2.25rem;
        margin-bottom: 2.25rem;
    }
}

.admin-hero__kicker {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--av-primary);
    margin: 0 0 0.45rem;
}

.admin-hero__title {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--av-ink);
    margin: 0 0 0.4rem;
}

.admin-hero__lead {
    color: var(--av-muted);
    margin: 0;
    max-width: 32rem;
    line-height: 1.55;
}

.admin-hero__aside {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.admin-hero__chip {
    display: inline-flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 7.5rem;
    padding: 0.7rem 0.9rem;
    border-radius: 0.85rem;
    background: #fff;
    border: 1px solid var(--av-border);
}

.admin-hero__chip span {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--av-muted);
}

.admin-hero__chip strong {
    font-size: 1.15rem;
    color: var(--av-ink);
}

/* —— Layout structure (aire y ritmo) —— */
.page-shell {
    width: 100%;
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

@media (min-width: 768px) {
    .page-shell {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.page-shell--form {
    max-width: 56rem;
}

.page-shell--prose {
    max-width: 48rem;
}

.page-shell--narrow {
    max-width: 28rem;
}

.page-shell--auth {
    max-width: 42rem;
}

.page-header {
    margin-bottom: 2.75rem;
}

.page-header .page-title {
    margin-bottom: 0;
}

.page-header .page-title + .page-lead,
.page-header .page-title + p {
    margin-top: 0.75rem;
}

.page-title {
    font-size: 1.875rem;
    font-weight: 700;
    font-family: "Sora", Inter, sans-serif;
    color: var(--av-ink);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 0.75rem;
}

@media (min-width: 768px) {
    .page-title {
        font-size: 2.25rem;
    }
}

.page-lead {
    color: var(--av-muted);
    max-width: 36rem;
    margin: 0;
    line-height: 1.65;
}

.surface-card {
    background: #fff;
    border: 1px solid var(--av-border);
    border-radius: 1.25rem;
    box-shadow: var(--av-shadow);
    padding: 1.75rem 1.5rem 2.25rem;
    min-width: 0;
}

@media (min-width: 768px) {
    .surface-card {
        padding: 2.25rem 2.5rem 2.75rem;
    }
}

.form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.15rem 1.25rem;
    min-width: 0;
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }
}

.form-stack {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    min-width: 0;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    min-width: 0;
    max-width: 100%;
}

.field--full {
    grid-column: 1 / -1;
}

.field label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--av-ink);
}

.field input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):not([type="hidden"]),
.field select,
.field textarea {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

input[data-identity-number]::-webkit-outer-spin-button,
input[data-identity-number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[data-identity-number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stack-lg {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.list-card {
    display: block;
    background: #fff;
    border: 1px solid var(--av-border);
    border-radius: 1rem;
    padding: 1.15rem 1.35rem;
    box-shadow: var(--av-shadow);
}

.course-detail {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .course-detail {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 3rem;
        align-items: start;
    }
}

.admin-main {
    flex: 1;
    min-width: 0;
    padding: 1.15rem 1rem 4.5rem;
    overflow-x: auto;
}

@media (min-width: 768px) {
    .admin-main {
        padding: 2.25rem 2.25rem 5.5rem;
    }
}

.admin-form {
    max-width: 48rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.admin-panel {
    background: #fff;
    border: 1px solid var(--av-border);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
}

.page-hero {
    padding-top: 2.5rem;
    padding-bottom: 4rem;
}

@media (min-width: 768px) {
    .page-hero {
        padding-top: 3.5rem;
        padding-bottom: 6rem;
    }
}

.page-hero--fullscreen {
    min-height: 100svh;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    /* Espacio limpio bajo el nav fijo (borde teal + barra) */
    padding-top: 7rem;
    padding-bottom: 4rem;
    background:
        linear-gradient(180deg, #f7f9ff 0%, #ffffff 42%, #ffffff 100%);
}

@media (min-width: 768px) {
    .page-hero--fullscreen {
        padding-top: 7.5rem;
        padding-bottom: 5rem;
    }
}

.page-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    align-items: center;
    width: 100%;
}

@media (min-width: 1024px) {
    .page-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        /* Separación clara entre copy/botones e imagen */
        gap: 5.5rem;
        column-gap: 6rem;
    }
}

@media (min-width: 1280px) {
    .page-hero__grid {
        gap: 7rem;
        column-gap: 7rem;
    }
}

.page-hero__copy {
    max-width: 34rem;
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.page-hero__title {
    font-size: clamp(2.25rem, 4vw, 3.4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--av-ink);
    margin: 0;
}

.page-hero__lead {
    font-size: 1.125rem;
    line-height: 1.65;
    color: var(--av-muted);
    max-width: 28rem;
    margin: 0;
}

.page-hero__actions {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1.25rem;
    padding-top: 0.25rem;
}

@media (min-width: 640px) {
    .page-hero__actions {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }
}

.page-hero__media {
    width: 100%;
    /* Evita que la imagen se pegue al bloque de botones */
    margin-top: 0.5rem;
}

@media (min-width: 1024px) {
    .page-hero__media {
        margin-top: 0;
        padding-left: 1rem;
        border-left: 1px solid transparent; /* reservado; el gap hace el trabajo */
    }
}

.page-hero-visual {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--av-border);
    background: #f8fafc;
    aspect-ratio: 4 / 3;
    width: 100%;
    max-height: min(28rem, 52vh);
    margin-left: auto;
    box-shadow: 0 28px 56px rgba(47, 59, 217, 0.12);
}

@media (min-width: 1024px) {
    .page-hero-visual {
        max-height: min(32rem, 58vh);
        aspect-ratio: 1 / 1;
    }
}

.page-section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

@media (min-width: 768px) {
    .page-section {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.page-section--muted {
    background: #f8fafc;
    border-top: 1px solid var(--av-border);
    border-bottom: 1px solid var(--av-border);
}

.reason-card {
    background: #fff;
    border: 1px solid var(--av-border);
    border-radius: 1.25rem;
    padding: 2rem;
    min-height: 14rem;
    box-shadow: var(--av-shadow);
}

.reason-card__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--av-primary-soft);
    color: var(--av-primary);
    margin-bottom: 1.25rem;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1rem;
    border-radius: 9999px;
    border: 1px solid var(--av-border);
    background: #fff;
    color: var(--av-muted);
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.chip:hover {
    border-color: var(--av-primary);
    color: var(--av-primary);
}

.chip--active {
    background: var(--av-primary);
    border-color: var(--av-primary);
    color: #fff;
}

.chip--active:hover {
    color: #fff;
    opacity: 0.95;
}

.course-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--av-border);
    border-radius: 1.25rem;
    overflow: hidden;
    text-decoration: none;
    box-shadow: var(--av-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}

.course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(47, 59, 217, 0.12);
}

.course-card__media {
    aspect-ratio: 16 / 10;
    background: #eef2f7;
    overflow: hidden;
}

.course-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.35rem 1.35rem 1.5rem;
    flex: 1;
}

.course-card__tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--av-primary);
}

.course-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--av-ink);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.course-card:hover .course-card__title {
    color: var(--av-primary);
}

.course-card__excerpt {
    font-size: 0.925rem;
    color: var(--av-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 0.15rem;
}

.course-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
}

.cta-panel {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    align-items: flex-start;
    justify-content: space-between;
    padding: 2.5rem 2rem;
    border-radius: 1.25rem;
    border: 1px solid var(--av-border);
    background: linear-gradient(135deg, #f7f9ff 0%, #ffffff 55%, #f3fbf8 100%);
    box-shadow: var(--av-shadow);
}

@media (min-width: 768px) {
    .cta-panel {
        flex-direction: row;
        align-items: center;
        padding: 3rem 3.25rem;
    }
}

.cta-panel__copy {
    border-left: 3px solid var(--av-teal);
    padding-left: 1.25rem;
}

/* Utilidades usadas en vistas que no están en el Tailwind compilado */
.pb-16 {
    padding-bottom: 4rem;
}

.shadow-sm {
    box-shadow: var(--av-shadow);
}

.mt-16 {
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .md\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .md\:pt-32 {
        padding-top: 8rem;
    }

    .md\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }

    .md\:h-20 {
        height: 5rem;
    }

    .md\:mb-14 {
        margin-bottom: 3.5rem;
    }
}

/* —— Acciones de tabla —— */
.admin-table {
    width: 100%;
    font-size: 0.875rem;
    border-collapse: collapse;
}

.admin-table thead {
    text-align: left;
    color: var(--av-muted);
}

.admin-table th {
    padding: 0.7rem 0.75rem;
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--av-border);
}

.admin-table td {
    padding: 0.9rem 0.75rem;
    border-bottom: 1px solid #eef2f7;
    vertical-align: middle;
}

.admin-table tbody tr:hover {
    background: #f8faff;
}

.table-actions {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.btn-table {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.4rem 0.7rem;
    border-radius: 0.65rem;
    border: 1px solid transparent;
    background: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-table .material-symbols-outlined {
    font-size: 1rem;
}

.btn-table--edit {
    border-color: #c7d2fe;
    color: var(--av-primary);
}

.btn-table--edit:hover {
    background: var(--av-primary-soft);
    border-color: var(--av-primary);
}

.btn-table--view {
    border-color: #99f6e4;
    color: var(--av-teal-deep);
}

.btn-table--view:hover {
    background: #ecfdf8;
    border-color: var(--av-teal);
}

.btn-table--ok {
    border-color: #99f6e4;
    background: #ecfdf8;
    color: var(--av-teal-deep);
}

.btn-table--ok:hover {
    background: #d1fae5;
    border-color: var(--av-teal);
}

.btn-table--delete {
    border-color: #fecaca;
    color: #b91c1c;
}

.btn-table--delete:hover {
    background: #fef2f2;
    border-color: #f87171;
}

.btn-table--create {
    border: 0;
    background: var(--av-primary);
    color: #fff;
    padding: 0.55rem 0.95rem;
    font-size: 0.8125rem;
}

.btn-table--create:hover {
    opacity: 0.92;
    color: #fff;
}

/* —— SweetAlert Aulaverse —— */
.av-swal-container {
    z-index: 10050;
}

.av-swal-popup {
    position: relative;
    width: 26rem;
    max-width: calc(100vw - 2rem);
    padding: 2.15rem 2.25rem 2rem !important;
    border-radius: 1.25rem;
    background: #fff;
    border: 1px solid var(--av-border);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
    overflow: hidden;
    box-sizing: border-box;
}

.av-swal-popup::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--av-primary), var(--av-teal));
}

.av-swal-popup--danger::before {
    background: linear-gradient(90deg, #ef4444, #f97316);
}

.av-swal-title {
    font-family: Inter, sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--av-ink);
    letter-spacing: -0.02em;
    margin: 0 0 0.65rem;
    padding: 0;
}

.av-swal-text {
    font-size: 0.925rem;
    color: var(--av-muted);
    line-height: 1.55;
    margin: 0;
    padding: 0 0.15rem;
}

.av-swal-icon {
    width: 3.25rem;
    height: 3.25rem;
    margin: 0.25rem auto 1.05rem;
    border-width: 2px;
}

.av-swal-icon.swal2-warning {
    border-color: #fdba74;
    color: #ea580c;
}

.av-swal-icon.swal2-question {
    border-color: #c7d2fe;
    color: var(--av-primary);
}

.av-swal-actions {
    gap: 0.75rem;
    margin: 1.5rem 0 0;
    padding: 0;
}

.av-swal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 7.5rem;
    padding: 0.6rem 1rem;
    border-radius: 0.75rem;
    font-family: Inter, sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.av-swal-btn--confirm {
    background: var(--av-primary);
    color: #fff;
}

.av-swal-btn--confirm:hover {
    opacity: 0.92;
}

.av-swal-btn--danger {
    background: #dc2626;
    color: #fff;
}

.av-swal-btn--danger:hover {
    background: #b91c1c;
}

.av-swal-btn--cancel {
    background: #fff;
    color: var(--av-ink);
    border-color: var(--av-border);
}

.av-swal-btn--cancel:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

/* —— Formulario de producto —— */
.admin-form-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.admin-form-head__kicker {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--av-primary);
    margin: 0 0 0.4rem;
}

.admin-form-head__title {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin: 0;
}

.admin-form-head__lead {
    margin: 0.4rem 0 0;
    font-size: 0.92rem;
    color: var(--av-muted, #64748b);
    max-width: 40rem;
}

.admin-form--product {
    max-width: 72rem;
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .admin-form--product {
        grid-template-columns: minmax(0, 1fr) 20rem;
        align-items: start;
    }
}

.product-form__main,
.product-form__aside-card {
    background: #fff;
    border: 1px solid var(--av-border);
    border-radius: 1.25rem;
    box-shadow: var(--av-shadow);
}

.product-form__main {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
}

.product-form__section {
    padding: 1.5rem 1.5rem 1.65rem;
}

@media (min-width: 768px) {
    .product-form__section {
        padding: 1.65rem 1.85rem 1.85rem;
    }
}

.product-form__section + .product-form__section {
    border-top: 1px solid #eef2f7;
}

.product-form__section-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 1.15rem;
    color: var(--av-ink);
}

.product-form__aside {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.product-form__aside-card {
    padding: 1.35rem 1.35rem 1.5rem;
}

.product-form__aside-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0 0 1rem;
}

.file-drop {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 14rem;
    padding: 1.25rem;
    border: 1.5px dashed #c7d2fe;
    border-radius: 1rem;
    background:
        linear-gradient(180deg, #f7f9ff 0%, #ffffff 70%);
    cursor: pointer;
    text-align: center;
    transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}

.file-drop:hover,
.file-drop.is-dragover {
    border-color: var(--av-primary);
    background: var(--av-primary-soft);
    box-shadow: 0 0 0 4px rgba(47, 59, 217, 0.08);
}

.file-drop__input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-drop__icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.85rem;
    background: #fff;
    color: var(--av-primary);
    border: 1px solid #c7d2fe;
    margin-bottom: 0.85rem;
}

.file-drop__icon .material-symbols-outlined {
    font-size: 1.5rem;
}

.file-drop__title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--av-ink);
    margin: 0 0 0.25rem;
}

.file-drop__hint {
    font-size: 0.75rem;
    color: var(--av-muted);
    margin: 0;
}

.file-drop__preview {
    display: none;
    width: 100%;
}

.file-drop.has-file .file-drop__placeholder {
    display: none;
}

.file-drop.has-file .file-drop__preview {
    display: block;
}

.file-drop__preview img {
    width: 100%;
    height: 11rem;
    object-fit: cover;
    border-radius: 0.85rem;
    border: 1px solid var(--av-border);
    background: #f8fafc;
}

.file-drop__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.file-drop__name {
    font-size: 0.75rem;
    color: var(--av-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-drop__clear {
    border: 0;
    background: transparent;
    color: var(--av-primary);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
}

.switch {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 0;
    cursor: pointer;
}

.switch + .switch {
    border-top: 1px solid #eef2f7;
}

.switch input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.switch__ui {
    width: 2.4rem;
    height: 1.35rem;
    border-radius: 999px;
    background: #e2e8f0;
    position: relative;
    flex-shrink: 0;
    transition: background-color 0.15s ease;
}

.switch__ui::after {
    content: "";
    position: absolute;
    top: 0.15rem;
    left: 0.15rem;
    width: 1.05rem;
    height: 1.05rem;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.18);
    transition: transform 0.15s ease;
}

.switch input:checked + .switch__ui {
    background: var(--av-primary);
}

.switch input:checked + .switch__ui::after {
    transform: translateX(1.05rem);
}

.switch__copy {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.switch__copy strong {
    font-size: 0.85rem;
    font-weight: 600;
}

.switch__copy span {
    font-size: 0.75rem;
    color: var(--av-muted);
}

.product-form__save {
    width: 100%;
    margin-top: 0.35rem;
}

.product-form__hint {
    font-size: 0.8rem;
    color: var(--av-muted);
    margin: 0 0 1rem;
    line-height: 1.45;
}

.field-hint {
    font-size: 0.75rem;
    color: var(--av-muted);
    margin: 0.4rem 0 0;
}

.footer-link-rows {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-link-row {
    display: grid;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .footer-link-row {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    }
}

.field-error {
    font-size: 0.8rem;
    color: #b91c1c;
    margin: 0 0 0.75rem;
}

.choice-grid {
    display: grid;
    gap: 0.85rem;
}

@media (min-width: 640px) {
    .choice-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.choice-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1rem 1.1rem 1.1rem;
    border: 1px solid var(--av-border);
    border-radius: 1rem;
    background: #f8fafc;
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.choice-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.choice-card:hover,
.choice-card:has(input:checked) {
    border-color: var(--av-primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(47, 59, 217, 0.08);
}

.choice-card__icon {
    width: 2.4rem;
    height: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: #fff;
    color: var(--av-primary);
    border: 1px solid #c7d2fe;
    margin-bottom: 0.35rem;
}

.choice-card strong {
    font-size: 0.95rem;
}

.choice-card span:last-child {
    font-size: 0.75rem;
    color: var(--av-muted);
    line-height: 1.4;
}

.combo-picker {
    display: grid;
    gap: 0.65rem;
    max-height: 22rem;
    overflow: auto;
    padding-right: 0.25rem;
}

.combo-picker__item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--av-border);
    border-radius: 0.9rem;
    background: #f8fafc;
    cursor: pointer;
}

.combo-picker__item input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.combo-picker__check {
    width: 1.15rem;
    height: 1.15rem;
    border-radius: 0.35rem;
    border: 1.5px solid #cbd5e1;
    background: #fff;
    flex-shrink: 0;
}

.combo-picker__item:has(input:checked) {
    border-color: var(--av-primary);
    background: #fff;
}

.combo-picker__item:has(input:checked) .combo-picker__check {
    background: var(--av-primary);
    border-color: var(--av-primary);
    box-shadow: inset 0 0 0 2px #fff;
}

.combo-picker__copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.combo-picker__copy strong {
    font-size: 0.9rem;
}

.combo-picker__copy span {
    font-size: 0.75rem;
    color: var(--av-muted);
}

.icon-field {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.icon-field__preview {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.85rem;
    background: var(--av-primary-soft, #eef2ff);
    color: var(--av-primary);
    border: 1px solid #c7d2fe;
    flex-shrink: 0;
}

.icon-field input {
    flex: 1;
    min-width: 0;
}

.color-field {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.color-field input[type="color"] {
    width: 3rem;
    height: 2.75rem;
    padding: 0.2rem;
    border-radius: 0.75rem;
    cursor: pointer;
}

.color-field span {
    font-size: 0.8rem;
    color: var(--av-muted);
}

.inquiry-grid {
    display: grid;
    gap: 1rem 1.5rem;
    margin: 0;
}

@media (min-width: 640px) {
    .inquiry-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.inquiry-grid dt {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--av-muted);
    margin-bottom: 0.25rem;
}

.inquiry-grid dd {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
}

.inquiry-message {
    margin: 0;
    white-space: pre-wrap;
    color: var(--av-muted);
    line-height: 1.6;
}

/* Admin 2026 */
.admin-body {
    background:
        radial-gradient(900px 420px at 8% -10%, #e0e7ff 0%, transparent 55%),
        radial-gradient(700px 380px at 100% 0%, #d1fae5 0%, transparent 48%),
        #f5f7fb;
}

.admin-hub-switch {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 4px;
    margin: 0 0 1rem;
    background: #f1f5f9;
    border-radius: 14px;
}

.admin-hub-switch a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    color: #64748b;
}

.admin-hub-switch a.is-active {
    background: #fff;
    color: #4248d6;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}

.admin-nav a {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.admin-nav a .material-symbols-outlined {
    font-size: 20px;
}

.admin-nav a.is-active,
.admin-nav a.bg-primary-container {
    background: #4248d6;
    color: #fff;
}

.admin-nav__ghost {
    margin-top: 0.5rem;
    opacity: 0.9;
}

.admin-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

@media (min-width: 1024px) {
    .admin-stat-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.admin-stat {
    display: block;
    background: #fff;
    border-radius: 1.15rem;
    padding: 1.15rem 1.2rem 1.2rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(186, 202, 195, 0.4);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.admin-stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.admin-stat .material-symbols-outlined {
    color: #4248d6;
    font-size: 22px;
}

.admin-stat p {
    margin: 0.45rem 0 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6b7280;
}

.admin-stat strong {
    display: block;
    margin-top: 0.25rem;
    font-size: 1.45rem;
    font-weight: 800;
}

.admin-panel__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.admin-panel__head h2 {
    margin: 0;
    font-size: 1.05rem;
}

.admin-panel__head a,
.k-like-btn {
    color: #4248d6;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.k-like-btn {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 12px;
    background: #4248d6;
    color: #fff;
}

.k-like-btn--ghost {
    background: #fff;
    color: #4248d6;
    border: 2px solid #c7d2fe;
}

.admin-order-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 0.85rem 0;
    border-bottom: 1px solid #eef2f6;
    font-size: 0.9rem;
    text-decoration: none;
    color: inherit;
}

.admin-form .k-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}
