/*!
 * Smart Customer Hub — Premium Customer Dashboard Styles
 */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@400;500;600&family=Manrope:wght@400;500;600;700&display=swap');

/* ============================================================
   ROOT TOKENS
   ============================================================ */
.sch-wrap {
    --sch-primary:        #0f0f1e;
    --sch-primary-soft:   #1a1a2e;
    --sch-accent:         #f59e0b;
    --sch-accent-soft:    #fbbf24;
    --sch-bg:             #fafaf7;
    --sch-surface:        #ffffff;
    --sch-surface-2:      #f5f5f0;
    --sch-text:           #18181b;
    --sch-text-muted:     #71717a;
    --sch-text-soft:      #a1a1aa;
    --sch-border:         #e5e5ea;
    --sch-border-soft:    #f0f0f3;
    --sch-radius:         12px;
    --sch-radius-lg:      18px;
    --sch-radius-xl:      24px;
    --sch-shadow-sm:      0 1px 2px rgba(15,15,30,.04), 0 1px 3px rgba(15,15,30,.06);
    --sch-shadow-md:      0 4px 6px -1px rgba(15,15,30,.06), 0 2px 4px -2px rgba(15,15,30,.04);
    --sch-shadow-lg:      0 10px 30px -10px rgba(15,15,30,.12), 0 4px 12px -2px rgba(15,15,30,.06);
    --sch-shadow-xl:      0 24px 60px -20px rgba(15,15,30,.22);
    --sch-ease:           cubic-bezier(.4,0,.2,1);
    --sch-spring:         cubic-bezier(.34,1.56,.64,1);

    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--sch-text);
    max-width: 1200px;
    margin: 0 auto;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}
.sch-wrap *, .sch-wrap *::before, .sch-wrap *::after { box-sizing: border-box; }

.sch-wrap button { font-family: inherit; cursor: pointer; }
.sch-wrap input, .sch-wrap textarea, .sch-wrap select { font-family: inherit; }

/* Hide WooCommerce defaults inside our hub */
.woocommerce-MyAccount-content > .sch-wrap { margin: -20px 0 0; }

/* ============================================================
   HERO
   ============================================================ */
.sch-hero {
    position: relative;
    border-radius: var(--sch-radius-xl);
    overflow: hidden;
    background: var(--sch-primary);
    color: #fff;
    padding: 48px 44px;
    margin-bottom: 28px;
    isolation: isolate;
}

.sch-hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }

.sch-mesh {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    will-change: transform;
}
.sch-mesh-1 {
    width: 480px; height: 480px;
    background: var(--sch-accent);
    top: -200px; right: -150px;
    animation: sch-float-1 18s ease-in-out infinite;
}
.sch-mesh-2 {
    width: 380px; height: 380px;
    background: #8b5cf6;
    bottom: -180px; left: -100px;
    opacity: 0.35;
    animation: sch-float-2 22s ease-in-out infinite;
}
.sch-mesh-3 {
    width: 280px; height: 280px;
    background: #ec4899;
    top: 30%; left: 30%;
    opacity: 0.18;
    animation: sch-float-3 16s ease-in-out infinite;
}

@keyframes sch-float-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, 40px) scale(1.1); }
}
@keyframes sch-float-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, -30px) scale(0.95); }
}
@keyframes sch-float-3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, -50px); }
}

.sch-noise {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.08) 1px, transparent 0);
    background-size: 24px 24px;
    opacity: 0.4;
}

.sch-hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.sch-hero-left { min-width: 0; }

.sch-eyebrow-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.sch-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}

.sch-tier-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
}
.sch-tier-chip-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--sch-accent);
    box-shadow: 0 0 12px var(--sch-accent);
    animation: sch-pulse-dot 2s ease-in-out infinite;
}
@keyframes sch-pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.4); }
}

.sch-tier-chip--bronze .sch-tier-chip-dot { background: #cd7f32; box-shadow: 0 0 12px #cd7f32; }
.sch-tier-chip--silver .sch-tier-chip-dot { background: #c0c0c0; box-shadow: 0 0 12px #c0c0c0; }
.sch-tier-chip--gold   .sch-tier-chip-dot { background: #ffd700; box-shadow: 0 0 12px #ffd700; }
.sch-tier-chip--platinum .sch-tier-chip-dot { background: #e5e4e2; box-shadow: 0 0 12px #e5e4e2; }

.sch-hero-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 44px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
    color: #fff;
}
.sch-hero-name {
    color: var(--sch-accent);
    font-style: italic;
    font-weight: 500;
}

.sch-hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin: 0 0 28px;
    line-height: 1.5;
    max-width: 480px;
}

.sch-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ===== Progress Ring ===== */
.sch-hero-right { flex-shrink: 0; }
.sch-ring-wrap {
    position: relative;
    width: 140px;
    height: 140px;
}
.sch-ring {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.sch-ring-track {
    fill: none;
    stroke: rgba(255,255,255,0.1);
    stroke-width: 8;
}
.sch-ring-progress {
    fill: none;
    stroke: var(--sch-accent);
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dasharray 1.2s var(--sch-ease);
    filter: drop-shadow(0 0 8px rgba(245,158,11,0.5));
}
.sch-ring-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.sch-ring-value {
    font-family: 'Fraunces', serif;
    font-size: 30px;
    font-weight: 500;
    color: #fff;
    line-height: 1;
}
.sch-ring-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.sch-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.18s var(--sch-ease);
    text-decoration: none;
    white-space: nowrap;
}
.sch-btn--primary {
    background: var(--sch-accent);
    color: var(--sch-primary);
    box-shadow: 0 4px 14px -2px rgba(245,158,11,0.4);
}
.sch-btn--primary:hover {
    background: var(--sch-accent-soft);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px -4px rgba(245,158,11,0.5);
    color: var(--sch-primary);
}
.sch-btn--primary:active { transform: translateY(0); }

.sch-btn--ghost {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
}
.sch-btn--ghost:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
    transform: translateY(-1px);
}

.sch-btn--sm { padding: 7px 13px; font-size: 13px; }
.sch-btn--block { width: 100%; justify-content: center; }

/* ============================================================
   STAT CARDS
   ============================================================ */
.sch-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.sch-stat {
    position: relative;
    background: var(--sch-surface);
    border: 1px solid var(--sch-border);
    border-radius: var(--sch-radius-lg);
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.25s var(--sch-ease), box-shadow 0.25s var(--sch-ease), border-color 0.2s;
    overflow: hidden;
    isolation: isolate;
}
.sch-stat:hover {
    transform: translateY(-3px);
    box-shadow: var(--sch-shadow-lg);
    border-color: rgba(15,15,30,0.12);
}

.sch-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sch-surface-2);
    color: var(--sch-primary);
    transition: transform 0.3s var(--sch-spring);
}
.sch-stat:hover .sch-stat-icon { transform: rotate(-6deg) scale(1.05); }

.sch-stat[data-stat="points"]   .sch-stat-icon { background: #fef3c7; color: #b45309; }
.sch-stat[data-stat="orders"]   .sch-stat-icon { background: #dbeafe; color: #1e40af; }
.sch-stat[data-stat="badges"]   .sch-stat-icon { background: #fce7f3; color: #be185d; }
.sch-stat[data-stat="coupons"]  .sch-stat-icon { background: #d1fae5; color: #065f46; }

.sch-stat-body { display: flex; flex-direction: column; gap: 4px; }
.sch-stat-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sch-text-muted);
}
.sch-stat-value {
    font-family: 'Fraunces', serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1;
    color: var(--sch-text);
    letter-spacing: -0.02em;
}
.sch-stat-of {
    font-size: 18px;
    color: var(--sch-text-soft);
    font-weight: 400;
}
.sch-stat-foot {
    font-size: 12px;
    color: var(--sch-text-muted);
    margin-top: 2px;
}
.sch-stat-foot .woocommerce-Price-amount { color: var(--sch-text); font-weight: 600; }

.sch-stat-spark {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.5s var(--sch-ease);
}
.sch-stat:hover .sch-stat-spark { transform: scaleX(1); }
.sch-stat-spark--accent { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.sch-stat-spark--blue   { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.sch-stat-spark--pink   { background: linear-gradient(90deg, #ec4899, #f472b6); }
.sch-stat-spark--green  { background: linear-gradient(90deg, #10b981, #34d399); }

/* ============================================================
   TABS — pill style with sliding indicator
   ============================================================ */
.sch-tabs {
    margin-bottom: 24px;
    overflow-x: auto;
    scrollbar-width: none;
}
.sch-tabs::-webkit-scrollbar { display: none; }
.sch-tabs-track {
    display: inline-flex;
    gap: 4px;
    background: var(--sch-surface);
    border: 1px solid var(--sch-border);
    border-radius: 14px;
    padding: 5px;
    position: relative;
    box-shadow: var(--sch-shadow-sm);
}
.sch-tab {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    padding: 9px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--sch-text-muted);
    transition: color 0.2s, background 0.2s;
    z-index: 1;
    white-space: nowrap;
}
.sch-tab svg { transition: transform 0.2s; }
.sch-tab:hover { color: var(--sch-text); }
.sch-tab:hover svg { transform: scale(1.1); }
.sch-tab.is-active {
    color: #fff;
    background: var(--sch-primary);
    box-shadow: 0 2px 8px rgba(15,15,30,0.15);
}
.sch-tab-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    background: var(--sch-accent);
    color: var(--sch-primary);
    font-size: 10px;
    font-weight: 700;
}
.sch-tab.is-active .sch-tab-pill {
    background: var(--sch-accent);
    color: var(--sch-primary);
}

/* ============================================================
   PANELS / CARDS
   ============================================================ */
.sch-panels { position: relative; }
.sch-panel {
    display: none;
    animation: sch-fade-in 0.3s var(--sch-ease);
}
.sch-panel.is-active { display: block; }
@keyframes sch-fade-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.sch-grid { display: grid; gap: 16px; margin-bottom: 16px; }
.sch-grid-2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 768px) {
    .sch-grid-2 { grid-template-columns: 1fr; }
}

.sch-card {
    background: var(--sch-surface);
    border: 1px solid var(--sch-border);
    border-radius: var(--sch-radius-lg);
    padding: 24px;
    box-shadow: var(--sch-shadow-sm);
    transition: box-shadow 0.2s var(--sch-ease), border-color 0.2s;
    margin-bottom: 16px;
}
.sch-card-hover:hover {
    border-color: rgba(15,15,30,0.12);
    box-shadow: var(--sch-shadow-md);
}

.sch-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.sch-card-head h3 {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 4px;
    letter-spacing: -0.01em;
    color: var(--sch-text);
}
.sch-card-sub {
    font-size: 13px;
    color: var(--sch-text-muted);
    margin: 0;
}

.sch-link {
    background: transparent;
    border: none;
    color: var(--sch-text-muted);
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 8px;
    transition: all 0.15s;
}
.sch-link:hover {
    color: var(--sch-text);
    background: var(--sch-surface-2);
}
.sch-link svg { transition: transform 0.15s; }
.sch-link:hover svg { transform: translateX(2px); }

/* ============================================================
   ORDER LIST
   ============================================================ */
.sch-order-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.sch-order-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 12px;
    background: var(--sch-surface-2);
    transition: transform 0.15s, background 0.15s;
}
.sch-order-item:hover { background: #ede9dc; transform: translateX(2px); }
.sch-order-avatar {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--sch-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}
.sch-order-info { flex: 1; min-width: 0; }
.sch-order-num { font-size: 14px; font-weight: 700; color: var(--sch-text); }
.sch-order-meta { font-size: 12px; color: var(--sch-text-muted); margin-top: 2px; }
.sch-order-right { text-align: right; }
.sch-order-total { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.sch-order-total .woocommerce-Price-amount { color: var(--sch-text); }

/* ============================================================
   STATUS PILLS
   ============================================================ */
.sch-status-pill {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.sch-status-pill--completed,
.sch-status-pill--approved,
.sch-status-pill--resolved   { background: #d1fae5; color: #065f46; }
.sch-status-pill--processing,
.sch-status-pill--pending,
.sch-status-pill--open,
.sch-status-pill--awaiting_customer { background: #fef3c7; color: #92400e; }
.sch-status-pill--in_progress { background: #e0e7ff; color: #3730a3; }
.sch-status-pill--on-hold     { background: #fed7aa; color: #9a3412; }
.sch-status-pill--cancelled,
.sch-status-pill--rejected,
.sch-status-pill--closed,
.sch-status-pill--failed      { background: #fee2e2; color: #991b1b; }
.sch-status-pill--refunded    { background: #f3e8ff; color: #6b21a8; }

/* ============================================================
   COUPON MINI (overview) + COUPON FULL (rewards)
   ============================================================ */
.sch-coupon-mini-list { display: flex; flex-direction: column; gap: 10px; }
.sch-coupon-mini {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 12px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px dashed #f59e0b;
    transition: transform 0.15s;
}
.sch-coupon-mini:hover { transform: scale(1.01); }
.sch-coupon-mini-amt {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    font-weight: 500;
    color: #92400e;
    line-height: 1;
}
.sch-coupon-mini-amt .woocommerce-Price-amount { color: #92400e; }
.sch-coupon-mini-info {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.sch-coupon-mini-info code {
    font-family: 'Manrope', monospace;
    font-size: 12px;
    font-weight: 700;
    color: #92400e;
    letter-spacing: 0.05em;
}
.sch-copy {
    background: rgba(146,64,14,0.1);
    border: none;
    color: #92400e;
    padding: 6px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    transition: background 0.15s;
}
.sch-copy:hover { background: rgba(146,64,14,0.2); }

.sch-coupon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px;
}
.sch-coupon {
    display: flex;
    align-items: stretch;
    background: var(--sch-surface);
    border: 2px dashed var(--sch-accent);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s var(--sch-ease);
    position: relative;
}
.sch-coupon::before, .sch-coupon::after {
    content: '';
    position: absolute;
    width: 18px; height: 18px;
    background: var(--sch-bg);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    border: 2px dashed var(--sch-accent);
    z-index: 1;
}
.sch-coupon::before { left: 102px; margin-left: -9px; }
.sch-coupon::after { display: none; }
.sch-coupon:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px -8px rgba(245,158,11,0.4);
}
.sch-coupon-left {
    background: linear-gradient(135deg, var(--sch-accent) 0%, #fbbf24 100%);
    color: var(--sch-primary);
    width: 110px;
    flex-shrink: 0;
    padding: 18px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.sch-coupon-amount {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
    color: var(--sch-primary);
}
.sch-coupon-amount .woocommerce-Price-amount { color: var(--sch-primary); font-weight: 600; }
.sch-coupon-type {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-top: 4px;
}
.sch-coupon-right { flex: 1; padding: 16px 18px; min-width: 0; }
.sch-coupon-code {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.sch-coupon-code code {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--sch-text);
}
.sch-coupon-copy-icon { color: var(--sch-text-soft); flex-shrink: 0; }
.sch-coupon:hover .sch-coupon-copy-icon { color: var(--sch-text); }
.sch-coupon-desc { font-size: 12px; color: var(--sch-text-muted); margin-bottom: 4px; }
.sch-coupon-expiry { font-size: 11px; color: var(--sch-text-soft); }

/* ============================================================
   TIER PROGRESS CARD (overview)
   ============================================================ */
.sch-tier-progress-card { padding: 24px 28px; }
.sch-tier-progress-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.sch-tier-progress-head h3 {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 500;
    margin: 4px 0 0;
    color: var(--sch-text);
}

.sch-tier-icons {
    display: flex;
    gap: 12px;
}
.sch-tier-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    opacity: 0.4;
    transition: opacity 0.2s;
}
.sch-tier-mini.is-earned { opacity: 1; }
.sch-tier-mini.is-next { opacity: 0.85; }
.sch-tier-mini-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--tier-color) 18%, white);
    color: var(--tier-color);
    border: 2px solid color-mix(in srgb, var(--tier-color) 40%, white);
}
.sch-tier-mini.is-earned .sch-tier-mini-icon {
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--tier-color) 15%, transparent);
}
.sch-tier-mini-icon svg { width: 18px; height: 18px; }
.sch-tier-mini span { font-size: 10px; font-weight: 600; color: var(--sch-text-muted); }

.sch-tier-bar {
    height: 8px;
    background: var(--sch-surface-2);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}
.sch-tier-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--sch-accent) 0%, #fbbf24 100%);
    border-radius: 999px;
    transition: width 1.2s var(--sch-ease);
    box-shadow: 0 0 12px rgba(245,158,11,0.4);
    position: relative;
    overflow: hidden;
}
.sch-tier-bar-fill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: sch-shimmer 2.5s infinite;
}
@keyframes sch-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ============================================================
   EMPTY STATES
   ============================================================ */
.sch-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--sch-text-muted);
}
.sch-empty-art { color: var(--sch-text-soft); margin-bottom: 12px; display: flex; justify-content: center; }
.sch-empty-title { font-size: 15px; font-weight: 600; color: var(--sch-text); margin: 0 0 6px; }
.sch-empty-text { font-size: 13px; margin: 0 0 16px; line-height: 1.5; }

/* ============================================================
   TABLE (orders)
   ============================================================ */
.sch-search {
    position: relative;
    display: flex;
    align-items: center;
}
.sch-search svg {
    position: absolute;
    left: 12px;
    color: var(--sch-text-soft);
    pointer-events: none;
}
.sch-search input {
    padding: 8px 12px 8px 36px;
    border: 1px solid var(--sch-border);
    border-radius: 10px;
    font-size: 13px;
    color: var(--sch-text);
    background: var(--sch-surface);
    width: 220px;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.sch-search input:focus {
    outline: none;
    border-color: var(--sch-primary);
    box-shadow: 0 0 0 3px rgba(15,15,30,0.08);
}

.sch-table-wrap { overflow-x: auto; margin: 0 -4px; }
.sch-table { width: 100%; border-collapse: collapse; }
.sch-table thead th {
    text-align: left;
    padding: 12px 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sch-text-muted);
    border-bottom: 1px solid var(--sch-border);
}
.sch-table tbody td {
    padding: 14px 16px;
    font-size: 13px;
    border-bottom: 1px solid var(--sch-border-soft);
}
.sch-table tbody tr:hover { background: var(--sch-surface-2); }
.sch-table tbody tr:last-child td { border-bottom: none; }
.sch-table .woocommerce-Price-amount { color: var(--sch-text); font-weight: 700; }
.sch-row-actions { display: flex; gap: 8px; }
.sch-row-link {
    background: transparent;
    border: 1px solid var(--sch-border);
    color: var(--sch-text);
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s;
    cursor: pointer;
}
.sch-row-link:hover {
    background: var(--sch-primary);
    color: #fff;
    border-color: var(--sch-primary);
}

/* ============================================================
   RETURNS LIST
   ============================================================ */
.sch-return-list { display: flex; flex-direction: column; gap: 12px; }
.sch-return-card {
    background: var(--sch-surface-2);
    border-radius: 12px;
    padding: 16px 18px;
    border: 1px solid var(--sch-border);
}
.sch-return-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
}
.sch-return-id { font-size: 14px; font-weight: 700; color: var(--sch-text); }
.sch-return-date { font-size: 12px; color: var(--sch-text-muted); margin-top: 2px; }
.sch-return-reason { font-size: 13px; color: var(--sch-text); margin: 0 0 10px; line-height: 1.5; }
.sch-return-items { display: flex; flex-wrap: wrap; gap: 6px; }
.sch-chip {
    display: inline-block;
    padding: 3px 9px;
    border-radius: 999px;
    background: var(--sch-surface);
    border: 1px solid var(--sch-border);
    font-size: 11px;
    color: var(--sch-text);
    font-weight: 500;
}

/* ============================================================
   REWARDS / REDEEM
   ============================================================ */
.sch-redeem-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 100%);
    color: #fff;
    border: none;
    overflow: hidden;
    position: relative;
}
.sch-redeem-card::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(245,158,11,0.15), transparent 70%);
    pointer-events: none;
}
.sch-redeem-head { position: relative; margin-bottom: 18px; }
.sch-redeem-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--sch-accent);
    display: block;
    margin-bottom: 4px;
}
.sch-redeem-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    margin: 0;
}
.sch-redeem-balance {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    margin-bottom: 18px;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
}
.sch-redeem-balance-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.55);
    margin-bottom: 4px;
}
.sch-redeem-balance-value {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--sch-accent);
    line-height: 1;
}
.sch-redeem-balance-value span { font-size: 14px; color: rgba(255,255,255,0.5); margin-left: 4px; }
.sch-redeem-rate {
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    text-align: right;
}
.sch-redeem-rate .woocommerce-Price-amount { color: #fff; font-weight: 600; }
.sch-redeem-locked {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    border: 1px dashed rgba(255,255,255,0.2);
}
.sch-redeem-form { position: relative; }
.sch-redeem-label {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
}
.sch-redeem-form input[type="range"] {
    width: 100%;
    margin-bottom: 14px;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 999px;
    outline: none;
}
.sch-redeem-form input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--sch-accent);
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: transform 0.15s;
}
.sch-redeem-form input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
.sch-redeem-form input[type="range"]::-moz-range-thumb {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--sch-accent);
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.sch-redeem-readout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(245,158,11,0.1);
    border: 1px solid rgba(245,158,11,0.3);
    border-radius: 12px;
    margin-bottom: 16px;
}
.sch-redeem-pts {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 500;
    color: #fff;
}
.sch-redeem-pts span { font-size: 12px; color: rgba(255,255,255,0.55); margin-left: 4px; }
.sch-redeem-arrow {
    font-size: 18px;
    color: var(--sch-accent);
    font-weight: 700;
}
.sch-redeem-cash {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--sch-accent);
}
.sch-redeem-cash .woocommerce-Price-amount { color: var(--sch-accent); font-weight: 600; }

/* Activity list */
.sch-activity { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.sch-activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--sch-border-soft);
}
.sch-activity-item:last-child { border-bottom: none; }
.sch-activity-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.sch-activity-dot.pos { background: #10b981; box-shadow: 0 0 0 3px rgba(16,185,129,0.15); }
.sch-activity-dot.neg { background: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.15); }
.sch-activity-body { flex: 1; min-width: 0; }
.sch-activity-text { font-size: 13px; color: var(--sch-text); }
.sch-activity-meta { font-size: 11px; color: var(--sch-text-muted); margin-top: 2px; }
.sch-activity-pts { font-size: 14px; font-weight: 700; font-variant-numeric: tabular-nums; }
.sch-activity-pts.pos { color: #10b981; }
.sch-activity-pts.neg { color: #ef4444; }

/* ============================================================
   BADGES
   ============================================================ */
.sch-badge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}
.sch-badge {
    position: relative;
    background: var(--sch-surface);
    border: 1px solid var(--sch-border);
    border-radius: 18px;
    padding: 28px 20px 24px;
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s var(--sch-spring), box-shadow 0.3s var(--sch-ease);
    isolation: isolate;
}
.sch-badge.is-earned {
    border-color: color-mix(in srgb, var(--tier-color) 40%, white);
    background: linear-gradient(180deg, color-mix(in srgb, var(--tier-color) 8%, white) 0%, var(--sch-surface) 100%);
}
.sch-badge:hover { transform: translateY(-4px); }
.sch-badge.is-earned:hover { box-shadow: 0 12px 32px -8px color-mix(in srgb, var(--tier-color) 35%, transparent); }
.sch-badge.is-next {
    border-color: var(--sch-accent);
    border-style: dashed;
}
.sch-badge.is-next::before {
    content: 'NEXT UP';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sch-accent);
    color: var(--sch-primary);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 3px 8px;
    border-radius: 999px;
    z-index: 2;
}

.sch-badge-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--tier-color) 25%, transparent), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}
.sch-badge.is-earned .sch-badge-glow { opacity: 1; }

.sch-badge-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--tier-color) 15%, white);
    border-radius: 50%;
    color: var(--tier-color);
    transition: transform 0.3s var(--sch-spring);
    position: relative;
}
.sch-badge.is-earned .sch-badge-icon {
    background: var(--tier-color);
    color: white;
    box-shadow: 0 8px 20px -4px color-mix(in srgb, var(--tier-color) 50%, transparent);
}
.sch-badge:hover .sch-badge-icon { transform: rotate(-8deg) scale(1.05); }
.sch-badge-icon svg { width: 36px; height: 36px; }

.sch-badge:not(.is-earned) .sch-badge-icon {
    filter: grayscale(0.4);
    opacity: 0.7;
}

.sch-badge-name {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 4px;
    color: var(--sch-text);
}
.sch-badge-req {
    font-size: 12px;
    color: var(--sch-text-muted);
    margin-bottom: 10px;
}
.sch-badge.is-earned .sch-badge-req { color: #10b981; font-weight: 600; }
.sch-badge-reward {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--sch-accent);
    background: rgba(245,158,11,0.1);
    padding: 4px 10px;
    border-radius: 999px;
    display: inline-block;
}

/* ============================================================
   SUPPORT TICKETS
   ============================================================ */
.sch-ticket-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.sch-ticket-card {
    background: var(--sch-surface-2);
    border: 1px solid var(--sch-border);
    border-radius: 12px;
    padding: 16px 18px;
    transition: transform 0.15s, box-shadow 0.15s;
    cursor: pointer;
}
.sch-ticket-card:hover { transform: translateX(2px); box-shadow: var(--sch-shadow-sm); }
.sch-ticket-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
}
.sch-ticket-subject { font-size: 14px; font-weight: 700; color: var(--sch-text); }
.sch-ticket-meta { font-size: 12px; color: var(--sch-text-muted); margin-top: 2px; }
.sch-ticket-snippet { font-size: 13px; color: var(--sch-text-muted); line-height: 1.5; margin: 0; }

/* ============================================================
   AI CHATBOT
   ============================================================ */
.sch-bot {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}
.sch-bot-bubble {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--sch-accent);
    color: var(--sch-primary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px -4px rgba(245,158,11,0.5);
    transition: transform 0.2s var(--sch-spring);
}
.sch-bot-bubble:hover { transform: scale(1.08) rotate(-4deg); }
.sch-bot-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--sch-accent);
    animation: sch-bot-pulse 2.5s ease-out infinite;
    z-index: -1;
}
@keyframes sch-bot-pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.8); opacity: 0; }
}

.sch-bot-window {
    width: 360px;
    max-width: calc(100vw - 48px);
    height: 540px;
    max-height: calc(100vh - 120px);
    background: var(--sch-surface);
    border-radius: 20px;
    box-shadow: var(--sch-shadow-xl);
    border: 1px solid var(--sch-border);
    display: none;
    flex-direction: column;
    overflow: hidden;
    transform-origin: bottom right;
}
.sch-bot.is-open .sch-bot-window {
    display: flex;
    animation: sch-bot-open 0.3s var(--sch-spring);
}
.sch-bot.is-open .sch-bot-bubble { display: none; }
@keyframes sch-bot-open {
    from { transform: scale(0.6) translateY(20px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

.sch-bot-header {
    background: var(--sch-primary);
    color: #fff;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.sch-bot-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--sch-accent);
    color: var(--sch-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sch-bot-titles { flex: 1; }
.sch-bot-name { font-size: 14px; font-weight: 700; }
.sch-bot-status { font-size: 11px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 4px; margin-top: 2px; }
.sch-bot-online {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 6px #10b981;
}
.sch-bot-close {
    background: rgba(255,255,255,0.1);
    border: none;
    color: rgba(255,255,255,0.7);
    width: 28px; height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}
.sch-bot-close:hover { background: rgba(255,255,255,0.2); color: #fff; }

.sch-bot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: var(--sch-bg);
}
.sch-bot-msg { display: flex; }
.sch-bot-msg--user { justify-content: flex-end; }
.sch-bot-bubble-msg {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 18px;
    font-size: 13px;
    line-height: 1.5;
    word-wrap: break-word;
}
.sch-bot-msg--bot .sch-bot-bubble-msg {
    background: var(--sch-surface);
    color: var(--sch-text);
    border: 1px solid var(--sch-border);
    border-bottom-left-radius: 4px;
}
.sch-bot-msg--user .sch-bot-bubble-msg {
    background: var(--sch-primary);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.sch-bot-typing { display: flex; gap: 3px; padding: 12px 14px; background: var(--sch-surface); border: 1px solid var(--sch-border); border-radius: 18px; border-bottom-left-radius: 4px; }
.sch-bot-typing span {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--sch-text-soft);
    animation: sch-typing 1.4s infinite ease-in-out;
}
.sch-bot-typing span:nth-child(2) { animation-delay: 0.2s; }
.sch-bot-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes sch-typing {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-6px); opacity: 1; }
}

.sch-bot-suggestions {
    display: flex;
    gap: 6px;
    padding: 8px 12px;
    overflow-x: auto;
    scrollbar-width: none;
    background: var(--sch-bg);
    border-top: 1px solid var(--sch-border);
}
.sch-bot-suggestions::-webkit-scrollbar { display: none; }
.sch-bot-chip {
    background: var(--sch-surface);
    border: 1px solid var(--sch-border);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    color: var(--sch-text);
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.15s;
}
.sch-bot-chip:hover { background: var(--sch-primary); color: #fff; border-color: var(--sch-primary); }

.sch-bot-input {
    display: flex;
    gap: 8px;
    padding: 12px;
    background: var(--sch-surface);
    border-top: 1px solid var(--sch-border);
}
.sch-bot-input input {
    flex: 1;
    border: 1px solid var(--sch-border);
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 13px;
    background: var(--sch-bg);
    color: var(--sch-text);
    transition: border-color 0.15s, box-shadow 0.15s;
}
.sch-bot-input input:focus {
    outline: none;
    border-color: var(--sch-primary);
    background: var(--sch-surface);
    box-shadow: 0 0 0 3px rgba(15,15,30,0.05);
}
.sch-bot-input button {
    background: var(--sch-accent);
    color: var(--sch-primary);
    border: none;
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s, background 0.15s;
    flex-shrink: 0;
}
.sch-bot-input button:hover { transform: scale(1.08); background: var(--sch-accent-soft); }

/* ============================================================
   MODALS
   ============================================================ */
.sch-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.sch-modal.is-open { display: flex; animation: sch-fade-in 0.2s; }
.sch-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15,15,30,0.6);
    backdrop-filter: blur(4px);
}
.sch-modal-dialog {
    position: relative;
    background: var(--sch-surface);
    border-radius: 18px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px;
    box-shadow: var(--sch-shadow-xl);
    animation: sch-modal-in 0.25s var(--sch-spring);
}
@keyframes sch-modal-in {
    from { transform: scale(0.9) translateY(20px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}
.sch-modal-close {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--sch-surface-2);
    border: none;
    width: 32px; height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sch-text-muted);
    transition: all 0.15s;
}
.sch-modal-close:hover { background: var(--sch-text); color: #fff; }
.sch-modal-dialog h3 {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 6px;
    color: var(--sch-text);
}
.sch-modal-sub { font-size: 13px; color: var(--sch-text-muted); margin: 0 0 24px; }

.sch-field { margin-bottom: 18px; }
.sch-field label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sch-text-muted);
    margin-bottom: 6px;
}
.sch-field input[type="text"],
.sch-field select,
.sch-field textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--sch-border);
    border-radius: 10px;
    font-size: 14px;
    color: var(--sch-text);
    background: var(--sch-surface);
    transition: border-color 0.15s, box-shadow 0.15s;
}
.sch-field input:focus,
.sch-field select:focus,
.sch-field textarea:focus {
    outline: none;
    border-color: var(--sch-primary);
    box-shadow: 0 0 0 3px rgba(15,15,30,0.05);
}

.sch-radios { display: flex; gap: 10px; }
.sch-radio {
    flex: 1;
    cursor: pointer;
    position: relative;
}
.sch-radio input { position: absolute; opacity: 0; }
.sch-radio span {
    display: block;
    padding: 12px;
    text-align: center;
    background: var(--sch-surface-2);
    border: 2px solid var(--sch-border);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--sch-text);
    transition: all 0.15s;
}
.sch-radio input:checked + span {
    background: var(--sch-primary);
    color: #fff;
    border-color: var(--sch-primary);
}

/* return items list inside modal */
#sch-return-items { display: flex; flex-direction: column; gap: 8px; }
#sch-return-items label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--sch-surface-2);
    border-radius: 10px;
    cursor: pointer;
    font-size: 13px;
    color: var(--sch-text);
    text-transform: none;
    letter-spacing: 0;
    font-weight: 500;
}
#sch-return-items label:hover { background: var(--sch-border-soft); }

/* ============================================================
   TOAST
   ============================================================ */
.sch-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--sch-primary);
    color: #fff;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--sch-shadow-xl);
    opacity: 0;
    transition: all 0.3s var(--sch-spring);
    z-index: 100001;
    pointer-events: none;
}
.sch-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.sch-toast.is-success { background: #10b981; }
.sch-toast.is-error { background: #ef4444; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .sch-hero { padding: 32px 24px; }
    .sch-hero-content { grid-template-columns: 1fr; gap: 24px; }
    .sch-hero-right { display: none; }
    .sch-hero-title { font-size: 32px; }
    .sch-stat-value { font-size: 28px; }
    .sch-modal-dialog { padding: 24px; }
    .sch-card { padding: 20px; }
    .sch-tier-progress-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .sch-stats { grid-template-columns: 1fr 1fr; }
    .sch-bot-window { width: calc(100vw - 24px); right: 12px; bottom: 80px; height: 70vh; }
    .sch-bot { right: 12px; bottom: 12px; }
    .sch-coupon { flex-direction: column; }
    .sch-coupon-left { width: 100%; padding: 14px; flex-direction: row; gap: 10px; }
    .sch-coupon::before { display: none; }
}
