/* =========================================
   ESTIMULACIÓN TEMPRANA - MODERN BENTO DESIGN
   ========================================= */

:root {
    --est-primary: #E84C9A;
    --est-primary-light: #FC9FC6;
    --est-secondary: #3BB6C4;
    --est-secondary-light: #50D9FE;
    --est-background: #FAFBFD;
    --est-surface: #FFFFFF;
    --est-text: #191C1E;
    --est-text-muted: #524348;
    --est-glass-bg: rgba(255, 255, 255, 0.85);
    --est-glass-border: 1px solid rgba(255, 255, 255, 0.5);
    --est-shadow: 0 10px 30px rgba(145, 69, 104, 0.08);
}

.estimulacion-bento-view {
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
    color: var(--est-text);
}

/* --- Hero Section --- */
.est-hero-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-top: 10px;
}

.est-badge {
    background: rgba(232, 76, 154, 0.1);
    color: var(--est-primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 12px;
}

.est-main-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 8px;
    color: var(--est-text);
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

.est-main-title .italic-highlight {
    color: var(--est-primary);
    font-style: italic;
}

.est-hero-desc {
    color: var(--est-text-muted);
    font-size: 15px;
    max-width: 400px;
    line-height: 1.5;
}

.peque-selector-card {
    background: var(--est-surface);
    padding: 10px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(0,0,0,0.05);
}

.peque-avatar-mini {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--est-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.custom-dropdown {
    position: relative;
    width: 100%;
}

.custom-dropdown-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--est-text);
    font-size: 14px;
    cursor: pointer;
    min-width: 160px;
    padding: 5px 0;
    transition: all 0.3s;
}

.dropdown-icon {
    color: var(--est-primary);
    stroke: var(--est-primary);
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.custom-dropdown-options {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    background: white;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(145, 69, 104, 0.15);
    z-index: 1000;
    width: 220px;
    display: none;
    overflow: hidden;
    border: 1px solid rgba(232, 76, 154, 0.1);
    animation: estDropdownSlide 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.custom-dropdown-options.active {
    display: block;
}

.custom-option {
    padding: 12px 18px;
    font-size: 13px;
    font-weight: 700;
    color: var(--est-text);
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.custom-option:last-child {
    border-bottom: none;
}

.custom-option:hover {
    background: var(--est-primary);
    color: white;
    padding-left: 22px;
}

@keyframes estDropdownSlide {
    from { opacity: 0; transform: translateY(-15px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* --- Evaluación Modal Styles --- */
.evaluar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.evaluar-overlay.active {
    display: flex;
}
.eval-modal-modern {
    background: white;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}
.eval-header-modern {
    padding: 25px;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.eval-icon-wrap {
    font-size: 40px;
    margin-bottom: 10px;
}
.eval-scroll-area {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #f8fafc;
}
.eval-area-section {
    margin-bottom: 30px;
}
.eval-area-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--est-primary);
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 4px solid var(--est-primary);
}
.hito-card {
    background: white;
    border-radius: 18px;
    padding: 15px;
    margin-bottom: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.hito-text {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--est-text);
}
.hito-options {
    display: flex;
    gap: 10px;
}
.hito-opt {
    flex: 1;
    height: 45px;
    border-radius: 12px;
    border: 2px solid transparent;
    background: #f1f5f9;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hito-opt.l1.active { background: #4ade80; border-color: #22c55e; color: white; }
.hito-opt.l2.active { background: #60a5fa; border-color: #3b82f6; color: white; }
.hito-opt.l3.active { background: #fbbf24; border-color: #f59e0b; color: white; }
.hito-opt.l4.active { background: #f87171; border-color: #ef4444; color: white; }

.hito-opt:hover:not(.active) {
    background: #e2e8f0;
}

.eval-footer-modern {
    padding: 20px;
    display: flex;
    gap: 15px;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.btn-save-modern {
    flex: 2;
    background: var(--est-primary);
    color: white;
    border: none;
    border-radius: 16px;
    padding: 14px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(232, 76, 154, 0.2);
    transition: all 0.2s;
}
.btn-save-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(232, 76, 154, 0.3);
}
.btn-cancel {
    flex: 1;
    background: #f1f5f9;
    color: #475569;
    border: none;
    border-radius: 16px;
    padding: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-cancel:hover {
    background: #e2e8f0;
}

.eval-modal-modern .material-symbols-outlined {
    font-family: 'Material Symbols Outlined' !important;
}

/* --- Bento Grid --- */
.est-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(100px, auto);
    gap: 16px;
    margin-bottom: 40px;
}

.bento-cell {
    background: var(--est-glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: var(--est-glass-border);
    border-radius: 24px;
    padding: 20px;
    box-shadow: var(--est-shadow);
    display: flex;
    flex-direction: column;
}

/* Cell Radar */
.cell-radar {
    grid-column: span 12;
    min-height: 390px;
}

@media (min-width: 768px) {
    .cell-radar {
        grid-column: span 7;
        grid-row: span 2;
    }
}

.cell-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.cell-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--est-text);
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

.radar-legend {
    font-size: 11px;
    font-weight: 700;
    color: var(--est-text-muted);
}

.radar-legend .dot.actual {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--est-primary);
    margin-right: 4px;
}

.radar-wrapper {
    position: relative;
    width: 100%;
    height: 310px;
    min-height: 290px;
    max-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cell Metric */
.cell-metric {
    grid-column: span 6;
    background: var(--est-secondary-light);
    color: #fff;
    position: relative;
    overflow: hidden;
    justify-content: center;
}

.metric-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.metric-value {
    font-size: 32px;
    font-weight: 900;
}

.metric-subtext {
    font-size: 10px;
    opacity: 0.8;
}

.metric-icon {
    position: absolute;
    right: -10px;
    bottom: -10px;
    font-size: 80px !important;
    opacity: 0.15;
}

@media (min-width: 768px) {
    .cell-metric {
        grid-column: span 5;
    }
}

/* Cell Progress */
.cell-progress {
    grid-column: span 6;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .cell-progress {
        grid-column: span 5;
    }
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 15px 0;
}

.progress-bar-wrap {
    flex: 1;
    height: 10px;
    background: rgba(0,0,0,0.05);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--est-primary), var(--est-primary-light));
    border-radius: 10px;
    transition: width 1s ease-out;
}

.progress-percent {
    font-weight: 900;
    font-size: 18px;
    color: var(--est-primary);
}

.btn-eval-modern {
    background: rgba(232, 76, 154, 0.05);
    border: 1px dashed var(--est-primary);
    color: var(--est-primary);
    padding: 10px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-eval-modern:hover {
    background: var(--est-primary);
    color: #fff;
}

/* Cell Milestones */
.cell-milestones {
    grid-column: span 12;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(252, 159, 198, 0.1));
}

@media (min-width: 768px) {
    .cell-milestones {
        grid-column: span 5;
    }
}

.milestones-feed {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.milestone-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.2s;
}

.milestone-item:hover {
    transform: translateX(5px);
}

.m-icon {
    font-size: 20px;
    color: var(--est-primary);
}

.m-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--est-text);
}

.m-date {
    font-size: 10px;
    color: var(--est-text-muted);
    display: block;
}

/* --- Plan Diario --- */
.est-daily-section {
    margin-top: 40px;
}

.section-header-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .section-header-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.section-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--est-text);
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

/* Day Selector */
.day-selector-wrap {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px;
    no-scrollbar::-webkit-scrollbar { display: none; }
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.day-btn {
    min-width: 55px;
    height: 70px;
    background: var(--est-surface);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.05);
    cursor: pointer;
    transition: all 0.3s;
}

.day-btn.active {
    background: var(--est-primary);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(232, 76, 154, 0.2);
}

.d-name {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    opacity: 0.7;
}

.d-num {
    font-size: 18px;
    font-weight: 800;
}

/* Modern Activity Feed */
.actividades-modern-feed {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .actividades-modern-feed {
        grid-template-columns: repeat(2, 1fr);
    }
}

.act-card-modern {
    background: var(--est-surface);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--est-shadow);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.act-card-modern:hover {
    transform: translateY(-8px) scale(1.02);
}

.ac-media-wrap {
    height: 160px;
    position: relative;
    overflow: hidden;
}

.ac-media-wrap img, .ac-media-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ac-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

.ac-area-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--est-secondary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ac-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ac-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.2;
}

.ac-desc {
    font-size: 13px;
    color: var(--est-text-muted);
    line-height: 1.4;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ac-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ac-time {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 700;
    color: var(--est-text-muted);
}

.ac-check {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    transition: all 0.3s;
}

.act-card-modern.completed .ac-check {
    background: var(--est-primary);
    color: #fff;
}

/* --- Loader --- */
.est-global-loader {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.9);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 700;
    color: var(--est-primary);
}

/* --- Modal Evaluación --- */
.eval-modal-modern {
    background: #fff;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: estPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes estPop {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.eval-header-modern {
    padding: 30px 30px 20px;
    text-align: center;
}

.eval-icon-wrap {
    font-size: 40px;
    margin-bottom: 15px;
}

.eval-header-modern h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

.eval-header-modern p {
    font-size: 14px;
    color: var(--est-text-muted);
}

.eval-scroll-area {
    padding: 0 30px;
    overflow-y: auto;
    flex: 1;
}

.eval-fieldset {
    border: none;
    margin-bottom: 25px;
    padding: 0;
}

.eval-fieldset legend {
    font-weight: 800;
    font-size: 16px;
    color: var(--est-primary);
    margin-bottom: 10px;
}

.score-selector {
    display: flex;
    gap: 8px;
}

.score-btn {
    flex: 1;
    padding: 12px 10px;
    border-radius: 14px;
    background: #f8fafc;
    border: 2px solid transparent;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.score-btn.active {
    background: rgba(232, 76, 154, 0.1);
    border-color: var(--est-primary);
    color: var(--est-primary);
}

.eval-footer-modern {
    padding: 20px 30px 30px;
    display: flex;
    gap: 12px;
}

.btn-cancel {
    flex: 1;
    background: #f1f5f9;
    border: none;
    padding: 15px;
    border-radius: 16px;
    font-weight: 700;
    cursor: pointer;
}

.btn-save-modern {
    flex: 2;
    background: var(--est-primary);
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 16px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(232, 76, 154, 0.2);
}

/* Navegación de Etapas */
.stage-nav-container {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    padding: 6px 12px;
    border-radius: 30px;
    border: 1px solid rgba(232, 76, 154, 0.12);
    box-shadow: 0 4px 12px rgba(232, 76, 154, 0.05);
    transition: all 0.3s ease;
}

.stage-nav-container:hover {
    box-shadow: 0 6px 16px rgba(232, 76, 154, 0.08);
    border-color: rgba(232, 76, 154, 0.2);
}

.btn-stage-nav {
    background: rgba(0, 0, 0, 0.02);
    border: none;
    color: #524348;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.btn-stage-nav:hover:not(:disabled) {
    background: var(--est-primary);
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 4px 10px rgba(232, 76, 154, 0.25);
}

.btn-stage-nav:disabled {
    opacity: 0.15;
    cursor: not-allowed;
    background: transparent;
    color: var(--est-text-muted);
}

.stage-nav-label {
    font-size: 12px;
    font-weight: 800;
    color: var(--est-text);
    text-transform: capitalize;
    letter-spacing: 0.2px;
    min-width: 105px;
    text-align: center;
    user-select: none;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

@media (max-width: 480px) {
    .cell-header {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 12px;
    }
    .stage-nav-container {
        width: 100%;
        justify-content: space-between;
        box-sizing: border-box;
    }
}

/* Animación de Transición de Etapa */
@keyframes stageCardTransition {
    0% {
        opacity: 0.3;
        transform: scale(0.97) translateY(2px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.radar-wrapper.transitioning,
#eval-buttons-container.transitioning {
    animation: stageCardTransition 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* =========================================
   ESTADO DIFUMINADO - EXCLUSIVO PANEL NIÑERA
   ========================================= */
body.ninera #vista-estimulacion.est-bloqueada-ninera,
body:not(.cliente):not(.admin):not(.supervision):not(.rh) #vista-estimulacion.est-bloqueada-ninera {
    position: relative !important;
}

body.ninera #vista-estimulacion.est-bloqueada-ninera > :not(.est-locked-overlay),
body:not(.cliente):not(.admin):not(.supervision):not(.rh) #vista-estimulacion.est-bloqueada-ninera > :not(.est-locked-overlay) {
    filter: blur(3.5px) opacity(0.75) !important;
    pointer-events: none !important;
    user-select: none !important;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.est-locked-overlay {
    display: none;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 900 !important;
    padding: 20px !important;
    padding-bottom: 90px !important;
    pointer-events: auto !important;
    box-sizing: border-box !important;
    background: rgba(250, 251, 253, 0.35) !important;
    backdrop-filter: blur(2.5px) !important;
    -webkit-backdrop-filter: blur(2.5px) !important;
}

body.ninera #vista-estimulacion.est-bloqueada-ninera #est-nanny-locked-overlay,
body:not(.cliente):not(.admin):not(.supervision):not(.rh) #vista-estimulacion.est-bloqueada-ninera #est-nanny-locked-overlay {
    display: flex !important;
}

/* 🛡️ REGLA INQUEBRANTABLE: NUNCA BLOQUEAR EN CLIENTE, ADMIN, SUPERVISIÓN, RH */
body.cliente #est-nanny-locked-overlay,
body.admin #est-nanny-locked-overlay,
body.supervision #est-nanny-locked-overlay,
body.rh #est-nanny-locked-overlay {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

body.cliente #vista-estimulacion,
body.cliente #vista-estimulacion > *,
body.admin #vista-estimulacion,
body.admin #vista-estimulacion > *,
body.supervision #vista-estimulacion,
body.supervision #vista-estimulacion > *,
body.rh #vista-estimulacion,
body.rh #vista-estimulacion > * {
    filter: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    user-select: auto !important;
}

.est-locked-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1.5px solid rgba(232, 76, 154, 0.28);
    border-radius: 28px;
    box-shadow: 0 20px 45px -10px rgba(232, 76, 154, 0.22), 0 10px 25px -5px rgba(0, 0, 0, 0.08);
    padding: 32px 24px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: estLockedFadeUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes estLockedFadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.est-locked-icon-wrapper {
    position: relative;
    width: 76px;
    height: 76px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(232, 76, 154, 0.15) 0%, rgba(59, 182, 196, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.est-locked-icon {
    font-size: 38px;
    line-height: 1;
}

.est-locked-sparkle {
    position: absolute;
    top: -4px;
    right: -4px;
    font-size: 18px;
    animation: estLockedPulse 2s infinite ease-in-out;
}

@keyframes estLockedPulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.2); opacity: 1; }
}

.est-locked-badge {
    background: linear-gradient(135deg, #E84C9A 0%, #D81B60 100%);
    color: #FFFFFF;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 12px rgba(232, 76, 154, 0.3);
}

.est-locked-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #191C1E;
    margin: 0;
    line-height: 1.25;
}

.est-locked-msg {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: #524348;
    line-height: 1.55;
    margin: 0;
    font-weight: 500;
}

.est-locked-btn {
    margin-top: 8px;
    background: linear-gradient(135deg, #E84C9A 0%, #C2185B 100%);
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 8px 20px -4px rgba(232, 76, 154, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.est-locked-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -4px rgba(232, 76, 154, 0.5);
}

.est-locked-btn:active {
    transform: translateY(0);
}

