/*
Theme Name: Hello Elementor Child
Template: hello-elementor
*/


/* ===== ANIMATIONS ===== */

/* Fade in halaman */
.ch-wrap {
    animation: chFadeIn 0.4s ease;
}

/* Stat cards */
.ch-stat-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ch-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Product card */
.ch-product-card {
    transition: box-shadow 0.2s ease;
}
.ch-product-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Licenses card */
.ch-licenses-card {
    transition: box-shadow 0.2s ease;
}
.ch-licenses-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Files card item */
.ch-file-item {
    transition: background 0.15s ease, padding-left 0.2s ease;
}
.ch-file-item:hover {
    padding-left: 24px;
    background: #F4FBF8;
}

/* Table row */
.ch-license-table tr {
    transition: background 0.15s ease;
}

/* Download button */
.ch-btn-download {
    transition: background 0.2s ease, transform 0.15s ease;
}
.ch-btn-download:hover {
    transform: translateY(-1px);
}

/* Hero buttons */
.ch-btn-primary, .ch-btn-secondary {
    transition: all 0.2s ease;
}
.ch-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(29,184,122,0.3);
}

/* Active badge pulse */
.ch-badge-active .dot {
    animation: chPulse 2s infinite;
}
@keyframes chPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Nav tab underline slide */
.ch-nav-tab {
    transition: color 0.15s ease, border-color 0.15s ease;
}

/* Copy button */
.ch-copy-btn {
    transition: color 0.15s ease, transform 0.15s ease;
}
.ch-copy-btn:hover {
    transform: scale(1.15);
}

/* Accordion chevron */
.ch-accordion-chevron {
    transition: transform 0.25s ease;
}

/* Search focus */
.ch-search {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.ch-search:focus {
    box-shadow: 0 0 0 3px rgba(29,184,122,0.15);
}

/* DASHBOARD */

* { box-sizing: border-box; margin: 0; padding: 0; }
.ch-wrap {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #F0F2F5;
    min-height: 100vh;
    color: #0D1B2A;
    animation: chFadeIn 0.4s ease;
}
@keyframes chFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== NAV TABS ===== */
.ch-nav {
    background: #fff;
    border-bottom: 1px solid #E8EAF0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.ch-nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.ch-nav-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 16px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #6B7280;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.15s;
}
.ch-nav-tab:hover { color: #0D1B2A; }
.ch-nav-tab.active {
    color: #0D1B2A;
    border-bottom-color: #1DB87A;
    font-weight: 600;
}
.ch-nav-tab svg { opacity: 0.6; }
.ch-nav-tab.active svg { opacity: 1; }

/* ===== CONTAINER ===== */
.ch-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

/* ===== HERO ===== */
.ch-hero {
    background: linear-gradient(135deg, #0D1B2A 0%, #1a3a5c 100%);
    border-radius: 16px;
    padding: 48px 40px;
    margin: 28px 0;
    position: relative;
    overflow: hidden;
}
.ch-hero::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(29,184,122,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.ch-hero::after {
    content: '';
    position: absolute;
    bottom: -80px; left: 40%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(29,184,122,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.ch-hero-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1DB87A;
    margin-bottom: 10px;
}
.ch-hero h1 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.2;
}
.ch-hero p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    max-width: 520px;
    line-height: 1.6;
    margin-bottom: 28px;
}
.ch-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }
.ch-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    background: #1DB87A;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}
.ch-btn-primary:hover { background: #17a36b; color: #fff; text-decoration: none; }
.ch-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 11px 20px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}
.ch-btn-secondary:hover { background: rgba(255,255,255,0.18); color: #fff; text-decoration: none; }

/* ===== STATS ===== */
.ch-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}
@media (max-width: 768px) { .ch-stats { grid-template-columns: repeat(2, 1fr); } }
.ch-stat-card {
    background: #fff;
    border: 0.5px solid #E8EAF0;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.ch-stat-card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.ch-stat-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.ch-stat-icon.gray { background: #F1F3F7; color: #6B7280; }
.ch-stat-icon.green { background: #E6F9F1; color: #1DB87A; }
.ch-stat-info h2 {
    font-size: 26px;
    font-weight: 700;
    color: #0D1B2A;
    line-height: 1;
    margin-bottom: 3px;
}
.ch-stat-info p { font-size: 12px; color: #9CA3AF; }

/* ===== SECTION ===== */
.ch-section { margin-bottom: 32px; }
.ch-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 16px;
}
.ch-section-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: #0D1B2A;
    margin-bottom: 2px;
    padding-bottom: 8px;
    border-bottom: 2px solid #1DB87A;
    display: inline-block;
}
.ch-section-header p { font-size: 13px; color: #9CA3AF; }
.ch-link-action {
    font-size: 13px;
    font-weight: 600;
    color: #1DB87A;
    text-decoration: none;
    white-space: nowrap;
}
.ch-link-action:hover { text-decoration: underline; color: #1DB87A; }

/* ===== PRODUCT CARD ===== */
.ch-product-card {
    background: #fff;
    border: 0.5px solid #E8EAF0;
    border-left: 3px solid #1DB87A;
    border-radius: 14px;
    padding: 24px;
    transition: box-shadow 0.2s;
}
.ch-product-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.ch-product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}
.ch-product-header h3 { font-size: 17px; font-weight: 700; color: #0D1B2A; margin-bottom: 3px; }
.ch-product-header p { font-size: 13px; color: #9CA3AF; }
.ch-product-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 20px;
}
.ch-p-stat span { font-size: 11px; color: #9CA3AF; text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-bottom: 4px; }
.ch-p-stat strong { font-size: 18px; font-weight: 700; color: #0D1B2A; }
.ch-divider { border: none; border-top: 0.5px solid #E8EAF0; margin: 0 0 16px; }
.ch-product-footer { display: flex; justify-content: space-between; align-items: center; }

/* ===== BADGES ===== */
.ch-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 99px;
}
.ch-badge .dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.ch-badge-active { background: #E6F9F1; color: #0F7A4A; }
.ch-badge-active .dot { background: #1DB87A; animation: chPulse 2s infinite; }
@keyframes chPulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.ch-badge-gray { background: #F1F3F7; color: #6B7280; border: 0.5px solid #E8EAF0; }
.ch-badge-inactive { background: #FEF3C7; color: #92400E; }
.ch-badge-expired { background: #FEE2E2; color: #991B1B; }

/* ===== FILES CARD ===== */
.ch-files-card {
    background: #fff;
    border: 0.5px solid #E8EAF0;
    border-radius: 14px;
    overflow: hidden;
}
.ch-file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 0.5px solid #F3F4F6;
    transition: background 0.15s;
    gap: 16px;
}
.ch-file-item:last-child { border-bottom: none; }
.ch-file-item:hover { background: #FAFBFC; }
.ch-file-info { display: flex; align-items: center; gap: 14px; }
.ch-file-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700; color: #fff;
    flex-shrink: 0;
}
.ch-file-icon.pdf { background: #EF4444; }
.ch-file-icon.doc { background: #3B82F6; }
.ch-file-icon.zip { background: #F59E0B; }
.ch-file-icon.exe { background: #8B5CF6; }
.ch-file-details h3 { font-size: 14px; font-weight: 600; color: #0D1B2A; margin-bottom: 3px; }
.ch-file-details p { font-size: 12px; color: #9CA3AF; }
.ch-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #fff;
    color: #0D1B2A;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid #E8EAF0;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.15s;
    flex-shrink: 0;
}
.ch-btn-outline:hover { background: #F1F3F7; color: #0D1B2A; text-decoration: none; }


* { box-sizing: border-box; margin: 0; padding: 0; }
.ch-wrap {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #F0F2F5;
    min-height: 100vh;
    color: #0D1B2A;
    animation: chFadeIn 0.4s ease;
}
@keyframes chFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== NAV ===== */
.ch-nav {
    background: #fff;
    border-bottom: 1px solid #E8EAF0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.ch-nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ch-nav-tabs { display: flex; gap: 4px; }
.ch-nav-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 16px;
    font-size: 14px;
    font-weight: 500;
    color: #6B7280;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.15s;
}
.ch-nav-tab:hover { color: #0D1B2A; text-decoration: none; }
.ch-nav-tab.active { color: #0D1B2A; border-bottom-color: #1DB87A; font-weight: 600; }

/* Search */
.ch-search-wrap {
    position: relative;
}
.ch-search-wrap svg {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
}
.ch-search {
    padding: 9px 14px 9px 38px !important;
    border: 1px solid #E8EAF0;
    border-radius: 10px;
    font-size: 13px;
    color: #0D1B2A;
    background: #F9FAFB;
    width: 220px;
    outline: none;
    transition: border 0.15s;
}
.ch-search:focus { border-color: #1DB87A; background: #fff; }

/* ===== CONTAINER ===== */
.ch-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 36px 24px 80px;
}

/* ===== PAGE HEADER ===== */
.ch-page-header { margin-bottom: 28px; }
.ch-page-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1DB87A;
    margin-bottom: 8px;
}
.ch-page-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #0D1B2A;
    margin-bottom: 8px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1DB87A;
    display: inline-block;
}
.ch-page-header p {
    font-size: 14px;
    color: #6B7280;
    max-width: 520px;
    line-height: 1.6;
    margin-top: 10px;
}

/* ===== ACCORDION CARD ===== */
.ch-files-card {
    background: #fff;
    border: 0.5px solid #E8EAF0;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
}

/* Accordion header */
.ch-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    cursor: pointer;
    user-select: none;
    transition: background 0.15s;
}
.ch-accordion-header:hover { background: #FAFBFC; }
.ch-accordion-info { display: flex; align-items: center; gap: 14px; }
.ch-product-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: #0D1B2A;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ch-accordion-info h3 { font-size: 15px; font-weight: 700; color: #0D1B2A; margin-bottom: 2px; }
.ch-accordion-info p { font-size: 12px; color: #9CA3AF; }
.ch-accordion-chevron {
    transition: transform 0.25s ease;
    color: #9CA3AF;
    flex-shrink: 0;
}
.ch-accordion-chevron.open { transform: rotate(180deg); }

/* File items */
.ch-accordion-body { display: none; }
.ch-accordion-body.open { display: block; }

.ch-file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-top: 0.5px solid #F3F4F6;
    transition: background 0.15s;
    gap: 16px;
}
.ch-file-item:hover { background: #FAFBFC; }
.ch-file-info { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 0; }
.ch-file-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700; color: #fff;
    flex-shrink: 0;
}
.ch-file-icon.pdf { background: #EF4444; }
.ch-file-icon.doc { background: #3B82F6; }
.ch-file-icon.zip { background: #F59E0B; }
.ch-file-icon.exe { background: #8B5CF6; }
.ch-file-details { min-width: 0; }
.ch-file-details h3 {
    font-size: 14px;
    font-weight: 600;
    color: #0D1B2A;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ch-file-details p { font-size: 12px; color: #9CA3AF; }

/* Download btn */
.ch-btn-download {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    background: #1DB87A;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 9px;
    border: none;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s;
    flex-shrink: 0;
}
.ch-btn-download:hover { background: #17a36b; color: #fff; text-decoration: none; }
.ch-btn-download-disabled {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    background: #F1F3F7;
    color: #9CA3AF;
    font-size: 13px;
    font-weight: 600;
    border-radius: 9px;
    border: none;
    cursor: not-allowed;
    white-space: nowrap;
    flex-shrink: 0;
}



* { box-sizing: border-box; margin: 0; padding: 0; }
.ch-wrap {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #F0F2F5;
    min-height: 100vh;
    color: #0D1B2A;
    animation: chFadeIn 0.4s ease;
}
@keyframes chFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== NAV ===== */
.ch-nav {
    background: #fff;
    border-bottom: 1px solid #E8EAF0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.ch-nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ch-nav-tabs { display: flex; gap: 4px; }
.ch-nav-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 16px;
    font-size: 14px;
    font-weight: 500;
    color: #6B7280;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.15s;
}
.ch-nav-tab:hover { color: #0D1B2A; text-decoration: none; }
.ch-nav-tab.active { color: #0D1B2A; border-bottom-color: #1DB87A; font-weight: 600; }

/* ===== CONTAINER ===== */
.ch-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 36px 24px 80px;
}

/* ===== PAGE HEADER ===== */
.ch-page-header { margin-bottom: 28px; }
.ch-page-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1DB87A;
    margin-bottom: 8px;
}
.ch-page-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #0D1B2A;
    margin-bottom: 8px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1DB87A;
    display: inline-block;
}
.ch-page-header p {
    font-size: 14px;
    color: #6B7280;
    max-width: 520px;
    line-height: 1.6;
    margin-top: 10px;
}

/* ===== LICENSES CARD ===== */
.ch-licenses-card {
    background: #fff;
    border: 0.5px solid #E8EAF0;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
}

/* Card header */
.ch-licenses-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 0.5px solid #E8EAF0;
    flex-wrap: wrap;
    gap: 16px;
    background: #FAFBFC;
}
.ch-lh-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.ch-lh-icon {
    width: 32px; height: 32px;
    background: #E6F9F1;
    color: #0F7A4A;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px;
    flex-shrink: 0;
}
.ch-lh-left h2 { font-size: 16px; font-weight: 700; color: #0D1B2A; }
.ch-lh-right {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}
.ch-lh-stat { display: flex; flex-direction: column; gap: 2px; text-align: right; }
.ch-lh-stat span { font-size: 11px; color: #9CA3AF; text-transform: uppercase; letter-spacing: 0.06em; }
.ch-lh-stat strong { font-size: 14px; font-weight: 700; color: #0D1B2A; }

/* Badge */
.ch-badge-gray {
    display: inline-flex; align-items: center;
    font-size: 12px; font-weight: 500;
    padding: 3px 10px; border-radius: 99px;
    background: #F1F3F7; color: #6B7280;
    border: 0.5px solid #E8EAF0;
}

/* Table */
.ch-table-responsive { width: 100%; overflow-x: auto; }
.ch-license-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}
.ch-license-table th {
    padding: 12px 24px;
    text-align: left;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #9CA3AF;
    background: #F9FAFB;
    border-bottom: 0.5px solid #E8EAF0;
}
.ch-license-table td {
    padding: 16px 24px;
    font-size: 14px;
    color: #0D1B2A;
    border-bottom: 0.5px solid #F3F4F6;
    vertical-align: middle;
}
.ch-license-table tr:last-child td { border-bottom: none; }
.ch-license-table tr { transition: background 0.15s; }
.ch-license-table tr:hover td { background: #FAFBFC; }
.ch-license-table td strong { font-weight: 600; color: #0D1B2A; }

/* License key */
.ch-license-key {
    font-family: 'Roboto Mono', 'Courier New', monospace;
    color: #1DB87A;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.ch-copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #FFFFFF;
    padding: 3px;
    border-radius: 4px;
    transition: color 0.15s;
    display: inline-flex;
    align-items: center;
}
.ch-copy-btn:hover { color: #FFFFFF; }
.ch-copy-btn.copied { color: #FFFFFF; }

.ch-text-muted { color: #6B7280; font-size: 13px; }

body.login.js.login-action-login.wp-core-ui.admin-color-modern.locale-en-us {
	background: #fff !important;
}

.ch-empty {
    padding: 12px 24px;
}

.logged-in .menu-login {
	display: none !important;
}