/* Youme Affiliate – Figma design system */
:root {
    --youme-yellow: #FFC107;
    --youme-yellow-dark: #E6AD00;
    --youme-yellow-light: #FFF8E1;
    --youme-green: #86EFAC;
    --youme-green-text: #166534;
    --youme-text: #111111;
    --youme-text-muted: #9CA3AF;
    --youme-border: #E5E7EB;
    --youme-bg: #FFFFFF;
    --youme-radius: 12px;
    --youme-radius-pill: 999px;
}

body.youme-app {
    background: var(--youme-bg);
    font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--youme-text);
}

body.youme-app .page-wrapper {
    background: var(--youme-bg);
}

body.youme-app .header,
body.youme-app .header.header-fixed {
    background: var(--youme-bg) !important;
    box-shadow: none !important;
    border-bottom: none !important;
}

body.youme-app .page-content.space-top {
    padding-top: 0 !important;
}

body.youme-app .page-content.space-bottom,
body.youme-app .page-content.space-bottom2 {
    padding-bottom: 88px !important;
}

/* Header */
.youme-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 8px;
    min-height: 56px;
}

.youme-header__title {
    font-size: 22px;
    font-weight: 800;
    color: var(--youme-text);
    margin: 0;
    line-height: 1.2;
}

.youme-header__cart {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--youme-border);
    border-radius: 10px;
    background: #fff;
    color: var(--youme-text);
    text-decoration: none;
    font-size: 20px;
    position: relative;
}

.youme-header__cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    background: #EF4444;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.youme-header__logout {
    font-size: 14px;
    font-weight: 600;
    color: var(--youme-text-muted);
    text-decoration: none;
    padding: 8px 14px;
    border: 1.5px solid var(--youme-border);
    border-radius: var(--youme-radius-pill);
    background: #fff;
}

/* Category pills */
.youme-categories {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 20px 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.youme-categories::-webkit-scrollbar { display: none; }

body.youme-app .youme-cat-pill {
    flex-shrink: 0;
    padding: 8px 18px;
    border-radius: var(--youme-radius-pill);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none !important;
    color: var(--youme-text-muted) !important;
    background: #F3F4F6 !important;
    border: 2px solid #E5E7EB !important;
    white-space: nowrap;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

body.youme-app .youme-cat-pill:hover:not(.active) {
    background: var(--youme-yellow-light) !important;
    border-color: #FFD54F !important;
    color: var(--youme-text) !important;
}

body.youme-app .youme-cat-pill.active {
    background: var(--youme-yellow) !important;
    border-color: var(--youme-yellow-dark) !important;
    color: #111 !important;
    font-weight: 700 !important;
    box-shadow: 0 3px 12px rgba(255, 193, 7, 0.45) !important;
}

/* Search row */
.youme-search-row {
    display: flex;
    gap: 10px;
    padding: 0 20px 16px;
    align-items: stretch;
}

.youme-search-box {
    flex: 1;
    position: relative;
}

.youme-search-box input {
    width: 100%;
    height: 48px;
    padding: 0 16px 0 44px;
    border: 1.5px solid var(--youme-border);
    border-radius: var(--youme-radius-pill);
    font-size: 14px;
    color: var(--youme-text);
    background: #fff;
    outline: none;
}

.youme-search-box input::placeholder {
    color: var(--youme-text-muted);
}

.youme-search-box .youme-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--youme-text-muted);
    font-size: 16px;
    pointer-events: none;
}

.youme-filter-btn {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border: none;
    border-radius: 10px;
    background: var(--youme-yellow);
    color: var(--youme-text);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
}

/* Section header */
.youme-section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 0 20px 12px;
}

.youme-section-head h2 {
    font-size: 18px;
    font-weight: 800;
    margin: 0;
    color: var(--youme-text);
}

.youme-section-head span {
    font-size: 13px;
    color: var(--youme-text-muted);
    font-weight: 500;
}

/* Product grid */
.youme-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0 20px 20px;
}

.youme-product-card {
    border: 1.5px solid var(--youme-border);
    border-radius: var(--youme-radius);
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.youme-product-card__media {
    position: relative;
    aspect-ratio: 1;
    background: #F9FAFB;
    display: flex;
    align-items: center;
    justify-content: center;
}

.youme-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.youme-product-card__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.youme-product-card__badge--new {
    background: var(--youme-yellow);
    color: var(--youme-text);
}

.youme-product-card__badge--hot {
    background: var(--youme-green);
    color: var(--youme-green-text);
}

.youme-product-card__body {
    padding: 10px 10px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.youme-product-card__title {
    font-size: 13px;
    font-weight: 700;
    color: var(--youme-text);
    margin: 0 0 2px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.youme-product-card__title a {
    color: inherit;
    text-decoration: none;
}

.youme-product-card__sub {
    font-size: 11px;
    color: var(--youme-text-muted);
    margin: 0 0 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.youme-product-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.youme-product-card__price {
    font-size: 14px;
    font-weight: 800;
    color: var(--youme-text);
}

.youme-product-card__add {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 8px;
    background: var(--youme-yellow);
    color: var(--youme-text);
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
}

/* Shop list */
.youme-shop-list {
    padding: 0 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.youme-shop-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1.5px solid var(--youme-border);
    border-radius: var(--youme-radius);
    background: #fff;
}

.youme-shop-card__logo {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: #F3F4F6;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--youme-text-muted);
    font-size: 22px;
}

.youme-shop-card__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.youme-shop-card__info {
    flex: 1;
    min-width: 0;
}

.youme-shop-card__name {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--youme-text);
}

.youme-shop-card__addr {
    font-size: 11px;
    color: var(--youme-text-muted);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.youme-shop-card__view {
    flex-shrink: 0;
    padding: 10px 16px;
    border-radius: var(--youme-radius-pill);
    background: var(--youme-yellow);
    color: var(--youme-text);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border: none;
}

/* Bonus record tabs */
.youme-record-tabs {
    display: flex;
    gap: 0;
    overflow-x: auto;
    padding: 0 20px;
    border-bottom: 1.5px solid var(--youme-border);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.youme-record-tabs::-webkit-scrollbar { display: none; }

.youme-record-tab {
    flex-shrink: 0;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--youme-text-muted);
    text-decoration: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -1.5px;
    white-space: nowrap;
}

.youme-record-tab.active {
    color: var(--youme-text);
    font-weight: 800;
    border-bottom-color: var(--youme-yellow);
}

.youme-empty-state {
    text-align: center;
    padding: 80px 32px;
    color: var(--youme-text-muted);
}

.youme-empty-state h3 {
    font-size: 16px;
    font-weight: 700;
    color: #6B7280;
    margin: 0 0 8px;
}

.youme-empty-state p {
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

/* My Team */
.youme-team-page { padding: 0 20px 20px; }

.youme-sponsor-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px;
    border: 1.5px solid var(--youme-border);
    border-radius: var(--youme-radius);
    margin-bottom: 16px;
    background: #fff;
}

.youme-sponsor-card__label {
    font-size: 11px;
    color: var(--youme-text-muted);
    margin-bottom: 2px;
}

.youme-sponsor-card__name {
    font-size: 15px;
    font-weight: 800;
    color: var(--youme-text);
}

.youme-sponsor-card__phone {
    font-size: 12px;
    color: var(--youme-text-muted);
    margin-top: 2px;
}

.youme-sponsor-card__btn {
    padding: 10px 14px;
    border-radius: var(--youme-radius-pill);
    background: var(--youme-yellow);
    color: var(--youme-text);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    border: none;
}

.youme-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 8px;
}

.youme-stat-card {
    padding: 14px 8px;
    border: 1.5px solid var(--youme-border);
    border-radius: var(--youme-radius);
    text-align: center;
    background: #fff;
}

.youme-stat-card.highlight {
    background: var(--youme-yellow-light);
    border-color: var(--youme-yellow);
}

.youme-stat-card__val {
    font-size: 16px;
    font-weight: 800;
    color: var(--youme-text);
    line-height: 1.2;
}

.youme-stat-card__lbl {
    font-size: 10px;
    color: var(--youme-text-muted);
    margin-top: 4px;
    font-weight: 500;
}

.youme-member-search {
    margin: 16px 0;
}

.youme-member-search input {
    width: 100%;
    height: 44px;
    padding: 0 16px;
    border: none;
    border-radius: var(--youme-radius-pill);
    background: #F3F4F6;
    font-size: 14px;
    color: var(--youme-text);
    outline: none;
}

.youme-member-search input::placeholder { color: var(--youme-text-muted); }

.youme-section-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--youme-text-muted);
    margin-bottom: 10px;
}

.youme-member-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1.5px solid var(--youme-border);
    border-radius: var(--youme-radius);
    margin-bottom: 10px;
    background: #fff;
    text-decoration: none;
    color: inherit;
}

.youme-member-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--youme-yellow-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.youme-member-card__info { flex: 1; min-width: 0; }

.youme-member-card__phone {
    font-size: 14px;
    font-weight: 700;
    color: var(--youme-text);
}

.youme-member-card__meta {
    font-size: 11px;
    color: var(--youme-text-muted);
    margin-top: 2px;
}

.youme-member-card__stats {
    display: flex;
    gap: 16px;
    text-align: center;
    flex-shrink: 0;
}

.youme-member-card__stat-val {
    font-size: 14px;
    font-weight: 800;
    color: var(--youme-text);
}

.youme-member-card__stat-lbl {
    font-size: 10px;
    color: var(--youme-text-muted);
}

/* Profile */
.youme-profile-page { padding: 0 20px 24px; }

.youme-profile-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.youme-profile-avatar {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--youme-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
    overflow: hidden;
}

.youme-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.youme-profile-phone {
    font-size: 18px;
    font-weight: 800;
    color: var(--youme-text);
    margin: 0;
}

.youme-vip-badge {
    display: inline-block;
    margin-top: 6px;
    padding: 4px 12px;
    border-radius: var(--youme-radius-pill);
    background: var(--youme-yellow);
    font-size: 11px;
    font-weight: 700;
    color: var(--youme-text);
}

.youme-info-card {
    border: 1.5px solid var(--youme-border);
    border-radius: var(--youme-radius);
    overflow: hidden;
    margin-bottom: 20px;
    background: #fff;
}

.youme-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid var(--youme-border);
    font-size: 14px;
}

.youme-info-row:last-child { border-bottom: none; }

.youme-info-row__label {
    color: var(--youme-text-muted);
    font-weight: 500;
}

.youme-info-row__value {
    font-weight: 700;
    color: var(--youme-text);
    text-align: right;
    max-width: 60%;
    word-break: break-all;
}

.youme-wallet-section h3,
.youme-actions-section h3 {
    font-size: 13px;
    font-weight: 600;
    color: var(--youme-text-muted);
    margin: 0 0 10px;
}

.youme-wallet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.youme-wallet-card {
    padding: 16px 14px;
    border: 1.5px solid var(--youme-border);
    border-radius: var(--youme-radius);
    text-decoration: none;
    color: inherit;
    background: #fff;
}

.youme-wallet-card.primary {
    background: var(--youme-yellow);
    border-color: var(--youme-yellow);
}

.youme-wallet-card__label {
    font-size: 11px;
    font-weight: 600;
    color: var(--youme-text-muted);
    margin-bottom: 6px;
}

.youme-wallet-card.primary .youme-wallet-card__label {
    color: rgba(0,0,0,0.55);
}

.youme-wallet-card__value {
    font-size: 22px;
    font-weight: 800;
    color: var(--youme-text);
    line-height: 1.1;
}

.youme-actions-row {
    display: flex;
    gap: 10px;
}

.youme-action-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 8px;
    border: 1.5px solid var(--youme-border);
    border-radius: var(--youme-radius);
    background: #fff;
    text-decoration: none;
    color: var(--youme-text);
    font-size: 11px;
    font-weight: 600;
}

.youme-action-btn__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--youme-yellow-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--youme-yellow-dark);
}

/* Profile shortcut grids */
.youme-profile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.youme-profile-grid__cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 88px;
    padding: 12px 6px;
    border-radius: var(--youme-radius);
    border: 1.5px solid var(--youme-border);
    background: #fff;
    text-decoration: none !important;
    color: var(--youme-text) !important;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.35;
    transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}

.youme-profile-grid__cell:active {
    transform: scale(0.97);
}

.youme-profile-grid__cell:hover {
    border-color: var(--youme-yellow);
    box-shadow: 0 2px 10px rgba(255, 193, 7, 0.25);
}

.youme-profile-grid__ico {
    font-size: 22px;
    color: var(--youme-yellow-dark);
    margin-bottom: 8px;
    line-height: 1;
}

.youme-profile-grid__ico i {
    display: block;
}

.youme-profile-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 20px 12px;
    padding: 10px 14px;
    border-radius: var(--youme-radius);
    background: var(--youme-yellow-light);
    border: 1.5px solid rgba(255, 193, 7, 0.5);
    font-size: 13px;
    font-weight: 600;
    color: var(--youme-text);
    text-decoration: none !important;
}

.youme-profile-section-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--youme-text-muted);
    margin: 8px 0 10px;
}

/* Bottom nav */
.youme-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #fff;
    border-top: 1px solid var(--youme-border);
    display: flex;
    padding: 6px 0 calc(6px + env(safe-area-inset-bottom));
}

.youme-bottom-nav__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 6px 2px;
    text-decoration: none;
    color: var(--youme-text-muted);
    font-size: 11px;
    font-weight: 600;
    position: relative;
}

.youme-bottom-nav__item i,
.youme-bottom-nav__item .youme-nav-icon {
    font-size: 22px;
    line-height: 1;
}

.youme-bottom-nav__item.active {
    color: var(--youme-text);
    font-weight: 800;
}

.youme-bottom-nav__item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 3px;
    background: var(--youme-yellow);
    border-radius: 2px 2px 0 0;
}

/* Commission list (record items) */
.youme-cm-item {
    margin: 12px 20px;
    padding: 14px 16px;
    border: 1.5px solid var(--youme-border);
    border-radius: var(--youme-radius);
    background: #fff;
}

.youme-cm-item__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.youme-cm-item__buyer {
    font-size: 14px;
    font-weight: 700;
}

.youme-cm-item__amount {
    font-size: 16px;
    font-weight: 800;
    color: #16A34A;
}

.youme-cm-item__meta {
    font-size: 11px;
    color: var(--youme-text-muted);
}

.search-suggestions {
    position: absolute;
    z-index: 9999;
    background: white;
    border: 1.5px solid var(--youme-border);
    border-radius: var(--youme-radius);
    max-height: 320px;
    overflow-y: auto;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    width: calc(100% - 40px);
    left: 20px;
    top: 100%;
    margin-top: 4px;
}

.search-suggestions .suggestion-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    color: inherit;
}

.search-suggestions .suggestion-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 6px;
    margin-right: 12px;
}

.search-suggestions .suggestion-name {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
}

.search-suggestions .suggestion-price {
    font-size: 14px;
    font-weight: 700;
}

.search-suggestions .no-results {
    padding: 15px;
    text-align: center;
    color: var(--youme-text-muted);
}

/* Subpages (profile, orders, auth, cart) */
body.youme-app #preloader {
    display: none !important;
}

.youme-header--sub {
    gap: 8px;
}

.youme-header--sub .youme-header__title {
    flex: 1;
    font-size: 18px;
    text-align: center;
    padding-right: 44px;
}

.youme-header--sub .youme-header__back {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--youme-border);
    border-radius: 10px;
    color: var(--youme-text);
    text-decoration: none;
    font-size: 20px;
}

.youme-header--sub .youme-header__back + .youme-header__title {
    padding-right: 0;
    margin-right: 40px;
}

.youme-page-inner {
    padding: 0 20px 24px;
}

body.youme-app .youme-page-inner .container {
    max-width: 100%;
    padding: 0;
}

body.youme-app .content-box,
body.youme-app .youme-page-inner .border.rounded,
body.youme-app .youme-page-inner .list-group-item,
body.youme-app .youme-card {
    border: 1.5px solid var(--youme-border) !important;
    border-radius: var(--youme-radius) !important;
    background: #fff;
}

body.youme-app .btn-primary,
body.youme-app .youme-btn-primary,
body.youme-app .wd-btn-submit {
    background: var(--youme-yellow) !important;
    border-color: var(--youme-yellow) !important;
    color: var(--youme-text) !important;
    font-weight: 700;
    border-radius: var(--youme-radius-pill) !important;
}

body.youme-app .btn-primary:hover,
body.youme-app .btn-primary:focus {
    background: var(--youme-yellow-dark) !important;
    border-color: var(--youme-yellow-dark) !important;
    color: var(--youme-text) !important;
}

body.youme-app .form-control,
body.youme-app .wd-form-input {
    border: 1.5px solid var(--youme-border);
    border-radius: 10px;
}

body.youme-app .form-control:focus,
body.youme-app .wd-form-input:focus {
    border-color: var(--youme-yellow);
    box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.25);
}

body.youme-app .youme-tab-row {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

body.youme-app .youme-tab-row .tab-btn,
body.youme-app .youme-tab-btn {
    flex: 1;
    text-align: center;
    padding: 10px 8px;
    border-radius: var(--youme-radius-pill);
    border: 1.5px solid var(--youme-border);
    background: #fff;
    color: var(--youme-text-muted);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

body.youme-app .youme-tab-row .tab-btn.active,
body.youme-app .youme-tab-btn.active {
    background: var(--youme-yellow);
    border-color: var(--youme-yellow);
    color: var(--youme-text);
    font-weight: 800;
}

body.youme-app .wd-balance-card,
body.youme-app .youme-balance-card {
    background: linear-gradient(135deg, var(--youme-yellow) 0%, var(--youme-yellow-dark) 100%);
    border-radius: var(--youme-radius);
    padding: 20px 18px;
    text-align: center;
    margin-bottom: 16px;
    border: none;
}

body.youme-app .wd-balance-label,
body.youme-app .youme-balance-card__label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.55);
}

body.youme-app .wd-balance-value,
body.youme-app .youme-balance-card__value {
    font-size: 28px;
    font-weight: 800;
    color: var(--youme-text);
}

body.youme-app .wd-form-card {
    border: 1.5px solid var(--youme-border);
    border-radius: var(--youme-radius);
    box-shadow: none;
}

body.youme-app .poster-dot.active {
    background: var(--youme-yellow);
}

body.youme-app .poster-download-btn {
    background: var(--youme-yellow) !important;
    color: var(--youme-text) !important;
    border-radius: var(--youme-radius-pill);
    font-weight: 700;
}

body.youme-app .youme-order-card {
    border: 1.5px solid var(--youme-border);
    border-radius: var(--youme-radius);
    padding: 14px;
    margin-bottom: 12px;
    background: #fff;
}

body.youme-app .youme-empty-hint {
    text-align: center;
    padding: 48px 20px;
    color: var(--youme-text-muted);
    font-size: 14px;
}

/* Auth pages */
body.youme-app.youme-auth {
    background: var(--youme-bg);
}

body.youme-app.youme-auth .page-content {
    padding-top: 24px !important;
}

body.youme-app.youme-auth .section-head img {
    max-height: 56px;
    margin-bottom: 12px;
}

body.youme-app.youme-auth .section-head .title {
    font-size: 22px;
    font-weight: 800;
}

body.youme-app.youme-auth #lang-toggle {
    border-color: var(--youme-border);
    color: var(--youme-text);
}
