/* ══════════════════════════════════════════════════════════
   Activities Empty State — v4 Premium Horizontal 2-colonnes
   ══════════════════════════════════════════════════════════ */

.v2-es-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    width: 100%;
    min-height: 380px;
    animation: esIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes esIn {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Card ─────────────────────────────────────────────── */
.v2-es-card {
    background: #ffffff;
    border: 1px solid #e8edf5;
    border-radius: 24px;
    box-shadow: 0 12px 48px rgba(15, 23, 42, 0.07);
    max-width: 820px;
    width: 100%;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    overflow: hidden;
}

/* ── Columns ──────────────────────────────────────────── */
.v2-es-col {
    padding: 44px 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.v2-es-col--main {
    flex: 55%;
    background: #ffffff;
    border-right: none; /* arrow bridge fills the gap */
    position: relative;
}

.v2-es-col--guide {
    flex: 45%;
    background: linear-gradient(160deg, #fffbf5 0%, #fff7ed 100%);
}

/* ── Animated arrow connector ─────────────────────────── */
.v2-es-arrow-wrap {
    width: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    position: relative;
    z-index: 2;
}

.v2-es-arrow-svg {
    width: 80px;
    height: 140px;
    overflow: visible;
}

/* Draw-in animation for the dashed path */
.v2-es-arrow-path {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: esDrawArrow 2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards,
               esArrowWobble 3s ease-in-out 2.4s infinite;
}

@keyframes esDrawArrow {
    to { stroke-dashoffset: 0; }
}

@keyframes esArrowWobble {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

.v2-es-arrow-head {
    opacity: 0;
    animation: esArrowHeadIn 0.35s ease 2.2s forwards;
}

@keyframes esArrowHeadIn {
    from { opacity: 0; transform: scale(0.5); }
    to   { opacity: 1; transform: scale(1); }
}

/* ── Floating animated icon ───────────────────────────── */
.v2-es-icon {
    position: relative;
    width: 46px;
    height: 46px;
    margin-bottom: 20px;
}

.v2-es-icon__ring {
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.13) 0%, transparent 70%);
    animation: esRingPulse 3s ease-in-out infinite;
}

@keyframes esRingPulse {
    0%, 100% { transform: scale(1);   opacity: 0.5; }
    50%       { transform: scale(1.3); opacity: 1; }
}

.v2-es-icon__box {
    position: relative;
    z-index: 1;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    box-shadow:
        0 6px 18px rgba(245, 158, 11, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    animation: esFloat 4s ease-in-out infinite;
}

@keyframes esFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-4px); }
}

/* ── Typography ───────────────────────────────────────── */
.v2-es-h2 {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin: 0 0 10px !important;
    letter-spacing: -0.025em !important;
    line-height: 1.2 !important;
}

.v2-es-p {
    font-size: 13.5px !important;
    line-height: 1.65 !important;
    color: #64748b !important;
    margin: 0 0 28px !important;
}

/* ── CTA button ───────────────────────────────────────── */
.v2-es-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 9px !important;
    align-self: flex-start !important;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 12px 24px !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    letter-spacing: 0.01em !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.38) !important;
    text-decoration: none !important;
    animation: esBtnPulse 2.5s infinite !important;
}

@keyframes esBtnPulse {
    0%   { box-shadow: 0 4px 16px rgba(245, 158, 11, 0.38), 0 0 0 0   rgba(245, 158, 11, 0.55); }
    65%  { box-shadow: 0 4px 16px rgba(245, 158, 11, 0.38), 0 0 0 14px rgba(245, 158, 11, 0);   }
    100% { box-shadow: 0 4px 16px rgba(245, 158, 11, 0.38), 0 0 0 0   rgba(245, 158, 11, 0);   }
}

.v2-es-btn:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%) !important;
    transform: translateY(-2px) scale(1.04) !important;
    box-shadow: 0 10px 28px rgba(245, 158, 11, 0.45) !important;
    animation: none !important;
}

.v2-es-btn:active {
    transform: translateY(0) scale(0.98) !important;
}

/* ── Guide label (right column) ───────────────────────── */
.v2-es-guide-label {
    font-size: 11px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    color: #a0aec0 !important;
    margin: 0 0 20px !important;
}

/* ── Checklist ────────────────────────────────────────── */
.v2-es-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
}

.v2-es-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    font-weight: 500;
    color: #475569;
    line-height: 1.4;
}

.v2-es-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: #fef3c7;
    color: #d97706;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 780px) {
    .v2-es-card {
        flex-direction: column !important;
        max-width: 460px !important;
        margin: 0 auto !important;
    }
    .v2-es-col--main {
        border-right: none !important;
        border-bottom: 1px solid #f0f4fa !important;
    }
    .v2-es-col { padding: 32px 28px !important; }
}


/* ══════════════════════════════════════════════════════════
   v2 Not Found State (.v2-nf-*)
   ══════════════════════════════════════════════════════════ */

.v2-nf-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    width: 100%;
    animation: esIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.v2-nf-card {
    background: #ffffff;
    border: 1px solid #e8edf5;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.07);
    max-width: 480px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 36px;
    gap: 14px;
    text-align: center;
}

/* ── Icon ── */
.v2-nf-icon-wrap {
    position: relative;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.v2-nf-icon-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    animation: nfRingPulse 3s ease-in-out infinite;
}

@keyframes nfRingPulse {
    0%, 100% { transform: scale(1);   opacity: 1; }
    50%       { transform: scale(1.07); opacity: 0.75; }
}

.v2-nf-icon-box {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.1);
    color: #64748b;
}

/* ── Text ── */
.v2-nf-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.35;
}

.v2-nf-desc {
    font-size: 0.87rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
    max-width: 320px;
}

/* ── Button ── */
.v2-nf-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(135deg, #1e40af 0%, #2b5797 100%);
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    box-shadow: 0 4px 14px rgba(43, 87, 151, 0.3);
    letter-spacing: 0.02em;
}

.v2-nf-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(43, 87, 151, 0.4);
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
}

.v2-nf-btn i {
    font-size: 0.9rem;
}
