:root {
    --bg: oklch(12% 0.01 260);
    --surface: oklch(16% 0.015 260);
    --surface-2: oklch(20% 0.02 260);
    --fg: oklch(94% 0.01 260);
    --muted: oklch(72% 0.02 260);
    --border: oklch(24% 0.02 260);
    --accent: oklch(75% 0.16 80);
    --accent-hover: oklch(67% 0.16 80);
    --accent-secondary: oklch(60% 0.2 295);
    --success: oklch(70% 0.17 145);
    --warn: oklch(75% 0.16 80);
    --danger: oklch(58% 0.2 25);
    --info: oklch(64% 0.15 250);
    --font-display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    --font-mono: ui-monospace, "JetBrains Mono", Menlo, monospace;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --gold-border: color-mix(in oklch, var(--accent) 25%, var(--border));
}


* {
    box-sizing: border-box;
}

body {
    background: var(--bg);
    color: var(--fg);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

.mono {
    font-family: var(--font-mono);
    font-variant-numeric: tabular-nums;
}

/* Navbar */
.wb-navbar {
    position: sticky;
    top: 0;
    z-index: 1020;
    background: rgba(11, 12, 16, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0.65rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
    transition: background 0.25s, box-shadow 0.25s;
}

.wb-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: var(--fg);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
}

.wb-logo-mark {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, color-mix(in oklch, var(--success) 12%, var(--surface)), var(--surface));
    border: 1px solid color-mix(in oklch, var(--success) 30%, var(--border));
    display: grid;
    place-items: center;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--success);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Services Dropdown Button */
.wb-nav-services-btn {
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--fg);
    border: 1px solid color-mix(in oklch, var(--accent) 15%, var(--border));
    background: color-mix(in oklch, var(--accent) 8%, var(--surface));
    padding: 0.45rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: background-color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.wb-nav-services-btn:hover,
.wb-nav-services-btn:focus,
.wb-nav-services-btn[aria-expanded="true"] {
    background: color-mix(in oklch, var(--accent) 12%, var(--surface));
    border-color: color-mix(in oklch, var(--accent) 30%, var(--border));
    color: var(--fg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.wb-nav-services-btn .wb-chevron {
    color: var(--muted);
    transition: transform 0.2s ease-in-out;
}

.wb-nav-services-btn[aria-expanded="true"] .wb-chevron {
    transform: rotate(180deg);
    color: var(--fg);
}

/* Mega Menu Dropdown */
.wb-mega-menu.dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: -120px !important;
    z-index: 1000 !important;
    width: 760px !important;
    min-width: 760px !important;
    max-width: 760px !important;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    padding: 0;
    margin-top: 0.5rem !important;
    overflow: hidden;
    animation: wbMegaMenuFadeIn 0.2s ease-out;
}

@keyframes wbMegaMenuFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wb-mega-menu-container {
    display: flex;
    min-height: 240px;
}

/* Mega Menu Left column */
.wb-mega-menu-left {
    width: 240px;
    background: color-mix(in oklch, var(--success) 3%, var(--surface-2));
    border-right: 1px solid var(--border);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.wb-mega-game-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background-color 0.2s, transform 0.15s;
    background: var(--surface);
    border: 1px solid var(--border);
}

.wb-mega-game-item.active {
    background: var(--surface);
    border-color: color-mix(in oklch, var(--success) 30%, var(--border));
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.wb-mega-game-item.active .game-title {
    color: var(--success);
    font-weight: 700;
}

.wb-mega-game-item.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: transparent;
    border-color: transparent;
}

.wb-mega-game-item .game-icon {
    font-size: 1.25rem;
}

.wb-mega-game-item .game-info {
    display: flex;
    flex-direction: column;
}

.wb-mega-game-item .game-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--fg);
}

.wb-mega-game-item .game-count {
    font-size: 0.7rem;
    color: var(--muted);
}

/* Mega Menu Right column */
.wb-mega-menu-right {
    flex: 1;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.wb-mega-category-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.wb-mega-category-col .category-header {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--muted);
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.35rem;
    text-align: left;
}

.wb-mega-category-col .category-links {
    list-style: none !important;
    list-style-type: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.wb-mega-category-col .category-links li {
    text-align: left;
}

.wb-mega-category-col .category-links a {
    font-size: 0.875rem;
    color: var(--fg);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s, padding-left 0.15s;
    display: inline-block;
}

.wb-mega-category-col .category-links a:hover {
    color: var(--success);
    padding-left: 4px;
}

/* Search Bar (No Grey) */
.wb-nav-search-form {
    flex: 1;
    max-width: 320px;
    margin: 0 auto;
}

.wb-nav-search-form .wb-search-icon-btn {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    transition: color 0.2s;
    z-index: 2;
}

.wb-nav-search-form .wb-search-icon-btn .wb-search-icon {
    pointer-events: none;
    display: block;
}

.wb-nav-search-form .wb-search-icon-btn:hover {
    color: var(--success);
}

.wb-nav-search-input {
    width: 100%;
    border-radius: 50px;
    font-size: 0.8125rem;
    background: color-mix(in oklch, var(--success) 4%, var(--surface));
    border: 1px solid color-mix(in oklch, var(--success) 12%, var(--border));
    color: var(--fg);
    padding: 0.45rem 1rem 0.45rem 2.25rem;
    outline: none;
    height: 36px;
    transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.wb-nav-search-input::placeholder {
    color: var(--muted);
    opacity: 0.85;
}

.wb-nav-search-input:focus {
    background: var(--surface);
    border-color: var(--success);
    box-shadow: 0 0 0 3px color-mix(in oklch, var(--success) 18%, transparent);
}

.wb-nav-search-input:focus + .wb-search-icon-btn {
    color: var(--success);
}

/* Trustpilot Header Widget */
.wb-nav-trustpilot {
    background: color-mix(in oklch, var(--success) 4%, var(--surface));
    border: 1px solid color-mix(in oklch, var(--success) 12%, var(--border));
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--fg);
    height: 32px;
}

.wb-nav-trustpilot .star-icon {
    color: #00b67a;
    font-size: 0.875rem;
    line-height: 1;
}

.wb-nav-trustpilot .brand-text {
    font-weight: 700;
}

.wb-nav-trustpilot .rating-val {
    color: var(--success);
    font-weight: 700;
    margin-left: 2px;
}

/* Support Link */
.wb-nav-support-link {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--muted);
    transition: color 0.15s, transform 0.15s;
    height: 32px;
    display: inline-flex;
    align-items: center;
}

.wb-nav-support-link:hover {
    color: var(--success);
    transform: translateY(-1px);
}

/* Cart Wrapper & Badge */
.wb-nav-cart-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--surface);
    cursor: pointer;
    transition: border-color 0.2s, background-color 0.2s, transform 0.15s;
}

.wb-nav-cart-wrapper:hover {
    border-color: var(--success);
    background: color-mix(in oklch, var(--success) 4%, var(--surface));
    transform: translateY(-1px);
}

.wb-nav-cart-icon {
    color: var(--fg);
    transition: color 0.2s;
}

.wb-nav-cart-wrapper:hover .wb-nav-cart-icon {
    color: var(--success);
}

.wb-nav-cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--success);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 1.5px solid var(--surface);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.wb-nav-user {
    color: var(--muted);
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.5rem 0.85rem;
}

/* Buttons */
.btn-wb {
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    border-radius: var(--radius-sm);
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
}

.btn-wb-primary {
    background: var(--accent);
    color: oklch(18% 0.04 75);
    border-color: color-mix(in oklch, var(--accent) 80%, white);
}

.btn-wb-primary:hover {
    background: var(--accent-hover);
    color: oklch(15% 0.04 75);
}

.btn-wb-secondary {
    background: color-mix(in oklch, var(--success) 7%, var(--surface));
    color: color-mix(in oklch, var(--success) 65%, black);
    border-color: color-mix(in oklch, var(--success) 20%, var(--border));
}

.btn-wb-secondary:hover {
    background: var(--success);
    color: white;
    border-color: var(--success);
}


.btn-wb-success {
    background: color-mix(in oklch, var(--success) 18%, var(--surface));
    color: var(--success);
    border-color: color-mix(in oklch, var(--success) 35%, var(--border));
}

.btn-wb-success:hover {
    background: color-mix(in oklch, var(--success) 28%, var(--surface));
    color: var(--success);
}

.btn-wb-danger {
    background: color-mix(in oklch, var(--danger) 18%, var(--surface));
    color: var(--danger);
    border-color: color-mix(in oklch, var(--danger) 35%, var(--border));
}

.btn-wb-danger:hover {
    background: color-mix(in oklch, var(--danger) 28%, var(--surface));
    color: var(--danger);
}

.btn-wb-sm {
    font-size: 0.8125rem;
    padding: 0.35rem 0.75rem;
}

/* Cards */
.wb-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.wb-card-gold {
    border-color: var(--gold-border);
}

.wb-card-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
    background: color-mix(in oklch, var(--surface) 92%, var(--accent));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.wb-card-header__title {
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 0;
}

.wb-card-body {
    padding: 1.25rem;
}

.wb-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.02em;
}

.wb-price-sm {
    font-size: 0.9375rem;
}

/* Badges */
.wb-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.65rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 999px;
    border: 1px solid transparent;
}

.wb-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.wb-badge-paid {
    background: color-mix(in oklch, var(--info) 16%, var(--surface));
    color: var(--info);
    border-color: color-mix(in oklch, var(--info) 30%, var(--border));
}

.wb-badge-progress {
    background: color-mix(in oklch, var(--warn) 16%, var(--surface));
    color: var(--warn);
    border-color: color-mix(in oklch, var(--warn) 30%, var(--border));
}

.wb-badge-completed {
    background: color-mix(in oklch, var(--success) 16%, var(--surface));
    color: var(--success);
    border-color: color-mix(in oklch, var(--success) 30%, var(--border));
}

.wb-badge-cancelled {
    background: color-mix(in oklch, var(--danger) 16%, var(--surface));
    color: var(--danger);
    border-color: color-mix(in oklch, var(--danger) 30%, var(--border));
}

.wb-badge-promo {
    background: color-mix(in oklch, var(--accent-secondary) 16%, var(--surface));
    color: var(--accent-secondary);
    border-color: color-mix(in oklch, var(--accent-secondary) 30%, var(--border));
}

.wb-badge-role {
    background: color-mix(in oklch, var(--accent-secondary) 16%, var(--surface));
    color: var(--accent-secondary);
    border-color: color-mix(in oklch, var(--accent-secondary) 30%, var(--border));
}

.wb-badge-open {
    background: color-mix(in oklch, var(--info) 16%, var(--surface));
    color: var(--info);
    border-color: color-mix(in oklch, var(--info) 30%, var(--border));
}

.wb-badge-closed {
    background: color-mix(in oklch, var(--muted) 16%, var(--surface));
    color: var(--muted);
    border-color: color-mix(in oklch, var(--muted) 30%, var(--border));
}

/* Forms */
.wb-label {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--fg);
    margin-bottom: 0.35rem;
}

.wb-input,
.wb-textarea,
.wb-select {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--fg);
    padding: 0.55rem 0.75rem;
    font-size: 0.9375rem;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.wb-textarea {
    resize: vertical;
}

.wb-input:focus,
.wb-textarea:focus,
.wb-select:focus {
    outline: none;
    border-color: var(--gold-border);
    box-shadow: 0 0 0 3px color-mix(in oklch, var(--accent) 18%, transparent);
}

.wb-input::placeholder,
.wb-textarea::placeholder {
    color: var(--muted);
}

.wb-hint {
    font-size: 0.8125rem;
    color: var(--muted);
    margin-top: 0.35rem;
}

/* Alerts */
.wb-alert {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.wb-alert-success {
    background: color-mix(in oklch, var(--success) 10%, var(--surface));
    border-color: color-mix(in oklch, var(--success) 28%, var(--border));
    color: var(--fg);
}

.wb-alert-error {
    background: color-mix(in oklch, var(--danger) 10%, var(--surface));
    border-color: color-mix(in oklch, var(--danger) 28%, var(--border));
    color: var(--fg);
}

.wb-alert-info {
    background: color-mix(in oklch, var(--info) 10%, var(--surface));
    border-color: color-mix(in oklch, var(--info) 28%, var(--border));
    color: var(--fg);
}

.wb-alert-warning {
    background: color-mix(in oklch, var(--warn) 10%, var(--surface));
    border-color: color-mix(in oklch, var(--warn) 28%, var(--border));
    color: var(--fg);
}

/* Tables */
.wb-table-wrap {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.wb-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    margin-bottom: 0;
}

.wb-table thead {
    background: var(--surface-2);
}

.wb-table th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    border-bottom: 1px solid var(--border);
}

.wb-table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.wb-table tbody tr:last-child td {
    border-bottom: 0;
}

.wb-table tbody tr:hover {
    background: color-mix(in oklch, var(--accent) 4%, transparent);
}

/* Chat */
.wb-chat {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    max-height: 400px;
    overflow-y: auto;
}

.wb-bubble-row {
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
}

.wb-bubble-row.outgoing {
    flex-direction: row-reverse;
}

.wb-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--surface-2);
    border: 1px solid var(--border);
    flex-shrink: 0;
    display: grid;
    place-items: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
}

.wb-bubble {
    max-width: 75%;
    padding: 0.6rem 0.85rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    line-height: 1.45;
}

.wb-bubble.incoming {
    background: var(--surface);
    border: 1px solid var(--border);
    border-bottom-left-radius: 4px;
}

.wb-bubble.outgoing {
    background: color-mix(in oklch, var(--accent) 14%, var(--surface));
    border: 1px solid var(--gold-border);
    border-bottom-right-radius: 4px;
}

.wb-bubble-meta {
    font-size: 0.6875rem;
    color: var(--muted);
    letter-spacing: 0.02em;
    margin-top: 0.25rem;
}

.wb-bubble-row.outgoing .wb-bubble-meta {
    text-align: right;
}

.wb-chat-locked {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--muted);
    font-size: 0.875rem;
}

/* Empty state */
.wb-empty {
    text-align: center;
    padding: 3rem 1.5rem;
    background: var(--surface);
    border: 1px dashed var(--border);
    border-radius: var(--radius-md);
}

.wb-empty-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: var(--radius-md);
    background: var(--surface-2);
    border: 1px solid var(--gold-border);
    display: grid;
    place-items: center;
    color: var(--muted);
}

.wb-empty h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.wb-empty p {
    color: var(--muted);
    font-size: 0.875rem;
    max-width: 32ch;
    margin: 0 auto 1.25rem;
}

/* Layout */
.wb-main {
    padding: 2rem 0 0;
    flex: 1;
}

.wb-page-header {
    margin-bottom: 2rem;
}

.wb-page-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.wb-page-subtitle {
    color: var(--muted);
    margin-bottom: 0;
}

.wb-section-heading {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid var(--border);
}

.text-muted-wb {
    color: var(--muted);
}

/* Footer */
.wb-footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 2.5rem 0 1.5rem;
    margin-top: 3rem;
}

.wb-footer-brand {
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.wb-footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.8125rem;
    transition: color 0.15s;
}

.wb-footer-links a:hover {
    color: var(--fg);
}

.wb-footer-bottom {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    font-size: 0.8125rem;
    color: var(--muted);
}

@media (max-width: 767.98px) {
    .wb-table-wrap {
        overflow-x: auto;
    }

    .wb-table {
        min-width: 560px;
    }
}

/* Home page */
.home-main {
    flex: 1;
}

.home-hero {
    position: relative;
    padding: 2.5rem 0 1.5rem;
    overflow: hidden;
}

.home-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 28px;
    padding: 4.5rem 4rem;
    color: #ffffff;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.home-hero__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(11, 12, 16, 0.72) 0%, rgba(11, 12, 16, 0.45) 55%, rgba(11, 12, 16, 0.08) 100%), url("../images/hero_bg.png");
    background-size: cover;
    background-position: center 8%;
    background-repeat: no-repeat;
    filter: brightness(1.1);
    z-index: -1;
}

.home-hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 44px 44px;
    background-position: center top;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 30%, black 50%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 30%, black 50%, transparent 100%);
    opacity: 0.85;
    pointer-events: none;
    z-index: 0;
    border-radius: 28px;
}

.hero-left-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero-right-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    text-align: right;
    position: relative;
    z-index: 2;
}

.hero-rating-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    width: 250px;
}

.hero-rating-box .stars {
    color: #00b67a;
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.hero-rating-box__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.hero-rating-box__desc {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

@media (max-width: 991.98px) {
    .home-hero__inner {
        padding: 3rem 2rem;
        background-image: linear-gradient(to bottom, rgba(13, 14, 25, 0.95) 0%, rgba(13, 14, 25, 0.9) 100%), url("../images/hero_bg.png");
    }
    
    .hero-left-content {
        align-items: center;
        text-align: center;
    }
    
    .hero-ctas {
        justify-content: center;
        margin-bottom: 2.5rem;
    }
    
    .hero-right-content {
        align-items: center;
        text-align: center;
    }
    
    .hero-rating-box {
        width: 100%;
        max-width: 280px;
    }
}


.hero-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.8125rem;
    color: var(--fg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-rating .stars {
    color: #00b67a; /* Trustpilot green */
    font-weight: 700;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
}

.home-hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    text-shadow: 0 0 12px rgba(var(--accent), 0.2);
}

.home-hero__title {
    font-size: clamp(2rem, 5.5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.wb-gradient-text {
    background: linear-gradient(135deg, var(--accent) 30%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.home-hero__subtext {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 52ch;
    margin-bottom: 2rem;
}

.hero-ctas {
    display: flex;
    gap: 0.85rem;
    justify-content: center;
}

.home-search {
    padding: 2.5rem 0 2rem;
    position: relative;
    z-index: 2;
}

/* Floating Autocomplete Suggestions Dropdown */
.wb-search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    margin-top: 0.5rem;
    max-height: 320px;
    overflow-y: auto;
    z-index: 999;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wb-search-suggestions .suggestion-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0.85rem;
    border-radius: var(--radius-sm);
    color: var(--fg);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background-color 0.15s, transform 0.1s;
}

.wb-search-suggestions .suggestion-item:hover {
    background: color-mix(in oklch, var(--success) 6%, var(--surface));
    color: var(--success);
}

.wb-search-suggestions .suggestion-item__title {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 1rem;
    text-align: left;
}

.wb-search-suggestions .suggestion-item__price {
    font-weight: 700;
    color: var(--success);
    font-size: 0.8125rem;
    background: color-mix(in oklch, var(--success) 10%, var(--surface));
    padding: 0.15rem 0.5rem;
    border-radius: 50px;
}

.wb-search-suggestions .suggestion-no-results {
    padding: 1rem;
    color: var(--muted);
    font-size: 0.875rem;
    text-align: center;
}

/* Navbar search suggestions specifically */
.wb-nav-search-form .wb-search-suggestions {
    max-width: 320px;
    left: 0;
    right: 0;
}


.home-search__form {
    display: flex;
    gap: 0.75rem;
    max-width: 640px;
    margin: 0 auto;
    background: color-mix(in oklch, var(--success) 3%, var(--surface));
    border: 1px solid color-mix(in oklch, var(--success) 15%, var(--border));
    border-radius: var(--radius-md);
    padding: 0.45rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: border-color 0.25s, box-shadow 0.25s;
}

.home-search__form:focus-within {
    border-color: var(--success);
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.18);
}

.home-search__input {
    flex: 1;
    background: transparent !important;
    border: none !important;
    padding: 0.6rem 0.75rem;
    font-size: 0.95rem;
    color: var(--fg);
    box-shadow: none !important;
}

.home-search__btn {
    flex-shrink: 0;
    padding: 0.6rem 1.5rem;
    white-space: nowrap;
    border-radius: var(--radius-sm);
    background: var(--success);
    color: white;
    border-color: var(--success);
}

.home-search__btn:hover {
    background: color-mix(in oklch, var(--success) 85%, black);
    border-color: color-mix(in oklch, var(--success) 85%, black);
    color: white;
}

.home-search__icon-btn {
    background: none;
    border: none;
    padding: 0;
    margin: auto 0 auto 12px;
    color: var(--muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
    outline: none;
    flex-shrink: 0;
}

.home-search__icon-btn:hover {
    color: var(--success);
}

.home-search__form:focus-within .home-search__icon-btn {
    color: var(--success);
}

/* Trust Banner */
.trust-banner {
    padding-bottom: 3.5rem;
    position: relative;
    z-index: 2;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.trust-card {
    background: linear-gradient(135deg, var(--surface), color-mix(in oklch, var(--success) 5%, var(--surface)));
    border: 1px solid color-mix(in oklch, var(--success) 12%, var(--border));
    border-radius: var(--radius-md);
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s, background-color 0.2s;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.trust-card:hover {
    background: linear-gradient(135deg, var(--surface-2), color-mix(in oklch, var(--success) 8%, var(--surface-2)));
    border-color: color-mix(in oklch, var(--success) 45%, var(--border));
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -8px rgba(34, 197, 94, 0.18);
}

.trust-card__svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
    filter: drop-shadow(0 0 6px rgba(34, 197, 94, 0.35));
}

.trust-card__title {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--fg);
}

.trust-card__desc {
    font-size: 0.75rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.4;
}

/* Live Ticker */
.live-ticker-section {
    background: color-mix(in oklch, var(--success) 5%, var(--surface));
    border-top: 1px solid color-mix(in oklch, var(--success) 12%, var(--border));
    border-bottom: 1px solid color-mix(in oklch, var(--success) 12%, var(--border));
    padding: 0.75rem 0;
    margin-bottom: 3.5rem;
    overflow: hidden;
    position: relative;
    z-index: 2;
}


.live-ticker__container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.live-ticker__label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    flex-shrink: 0;
}

.live-ticker__pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: ticker-pulse 1.6s infinite;
}

@keyframes ticker-pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.live-ticker__track-wrapper {
    overflow: hidden;
    width: 100%;
}

.live-ticker__track {
    display: flex;
    gap: 4rem;
    animation: scroll-ticker 40s linear infinite;
    white-space: nowrap;
    width: max-content;
}

@keyframes scroll-ticker {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

.live-ticker__item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--muted);
}

.live-ticker__item strong {
    color: var(--fg);
}

.live-ticker__item .status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}

.live-ticker__item .status-dot.active { background: var(--accent); }
.live-ticker__item .status-dot.completed { background: #22c55e; }

/* Home Services Section */
.home-services {
    padding: 2rem 0 4rem;
    position: relative;
    z-index: 2;
}

.home-services__header {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.home-services__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
}

.home-services__count {
    font-size: 0.8125rem;
    color: var(--muted);
    letter-spacing: 0.02em;
}

/* Category Filter Tabs */
.category-tabs-container {
    overflow-x: auto;
    padding-bottom: 0.75rem;
    margin-bottom: 2rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-tabs-container::-webkit-scrollbar {
    display: none;
}

.category-tabs {
    display: flex;
    gap: 0.65rem;
    white-space: nowrap;
}

.category-tab-btn {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--muted);
    padding: 0.55rem 1.15rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-tab-btn:hover {
    border-color: var(--success);
    color: color-mix(in oklch, var(--success) 75%, black);
    background: color-mix(in oklch, var(--success) 4%, var(--surface));
}

.category-tab-btn.active {
    background: var(--success);
    border-color: var(--success);
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
}

.category-tab-btn .badge-count {
    font-size: 0.7rem;
    background: rgba(0, 0, 0, 0.1);
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
    color: inherit;
}

/* Service Cards */
.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    height: 100%;
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--success);
    transform: translateY(-4px);
    box-shadow: 
        0 12px 24px -10px rgba(0, 0, 0, 0.08), 
        0 0 15px -3px rgba(34, 197, 94, 0.15);
}

.service-card.popular-card {
    border: 2px solid var(--success);
}

.popular-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--success);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.55rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.service-card__img-wrapper {
    position: relative;
    width: 100%;
    height: 185px;
    min-height: 185px;
    max-height: 185px;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    background: var(--surface-2);
}

.service-card__img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover; /* Maintain aspect ratio and cover container, no stretching */
    background-color: color-mix(in oklch, var(--success) 3%, var(--surface-2)); /* Subtle green/grey wash */
    transition: transform 0.3s ease;
}

.service-card:hover .service-card__img {
    transform: scale(1.05);
}

.service-card__img-placeholder {
    height: 185px;
    background: linear-gradient(135deg, var(--surface-2), var(--border));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 55%, rgba(0, 0, 0, 0.005) 100%);
    pointer-events: none;
}



.service-card__body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.service-card__tags {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.85rem;
    flex-wrap: wrap;
}

.service-card__tag {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
}

.service-card__tag--retail {
    background: rgba(255, 180, 0, 0.08);
    color: #ffb400;
    border: 1px solid rgba(255, 180, 0, 0.15);
}

.service-card__tag--classic {
    background: rgba(0, 180, 255, 0.08);
    color: #00b4ff;
    border: 1px solid rgba(0, 180, 255, 0.15);
}

.service-card__tag--piloted {
    background: rgba(239, 68, 68, 0.08);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.service-card__tag--selfplay {
    background: rgba(34, 197, 94, 0.08);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.15);
}

.service-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
    line-height: 1.35;
    color: var(--fg);
}

.service-card__desc {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.55;
    margin-bottom: 1.25rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card__price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

.service-card__btn {
    font-size: 0.8125rem;
    padding: 0.45rem 1rem;
}

.wb-empty__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: var(--radius-md);
    background: var(--surface-2);
    border: 1px solid var(--gold-border);
    display: grid;
    place-items: center;
    color: var(--muted);
}

@media (max-width: 767.98px) {
    .home-hero {
        padding: 3.5rem 0 2.5rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}

@media (max-width: 575.98px) {
    .home-search__form {
        flex-direction: column;
        padding: 0.5rem;
        background: rgba(30, 32, 45, 0.6);
    }

    .home-search__btn {
        width: 100%;
    }
}


/* Service detail page */
.detail-main {
    flex: 1;
    padding: 2.5rem 0 4rem;
}

.detail-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    font-size: 0.8125rem;
}

.detail-breadcrumb li {
    display: flex;
    align-items: center;
}

.detail-breadcrumb a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.15s;
}

.detail-breadcrumb a:hover {
    color: var(--fg);
}

.detail-breadcrumb__sep {
    color: var(--border);
    user-select: none;
    padding: 0 0.1rem;
}

.detail-breadcrumb__current {
    color: var(--muted);
    opacity: 0.85;
}

.detail-hero__title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.detail-hero__desc {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 65ch;
}

/* Config cards & option builder */
.wb-config-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
}

.wb-config-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--fg);
    margin-bottom: 1.75rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.75rem;
}

.wb-config-group {
    margin-bottom: 1.75rem;
}

.wb-config-group__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 0.75rem;
}

.wb-radio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.85rem;
}

.wb-radio-grid--3col {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.wb-radio-card {
    background: color-mix(in oklch, var(--success) 1%, var(--surface-2));
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
    user-select: none;
}

.wb-radio-card:hover {
    border-color: color-mix(in oklch, var(--success) 30%, var(--border));
    background: color-mix(in oklch, var(--success) 2%, var(--surface-2));
}

.wb-radio-card.active {
    border-color: var(--success);
    background: color-mix(in oklch, var(--success) 5%, var(--surface-2));
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.12);
}

.wb-radio-card__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.wb-radio-card__body {
    display: flex;
    flex-direction: column;
}

.wb-radio-card__title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--fg);
}

.wb-radio-card__desc {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 0.15rem;
}

/* Checkboxes add-ons list */
.wb-checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.wb-checkbox-card {
    background: color-mix(in oklch, var(--success) 1%, var(--surface-2));
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1rem;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    transition: border-color 0.2s, background-color 0.2s;
    user-select: none;
}

.wb-checkbox-input {
    margin-top: 0.25rem;
    accent-color: var(--success);
    flex-shrink: 0;
}

.wb-checkbox-card:hover {
    border-color: color-mix(in oklch, var(--success) 30%, var(--border));
}

.wb-checkbox-card.active {
    border-color: var(--success);
    background: color-mix(in oklch, var(--success) 5%, var(--surface-2));
}

.wb-checkbox-card__body {
    display: flex;
    flex-direction: column;
}

.wb-checkbox-card__title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--fg);
}

.detail-hero__title-price {
    font-size: 1.85rem;
    font-weight: 500;
}

/* Trustpilot rating line */
.detail-trustpilot-line {
    font-size: 0.875rem;
}

.detail-trustpilot-line .rating-val {
    background: #00b67a;
    color: white;
    padding: 0.15rem 0.35rem;
    border-radius: 3px;
    font-size: 0.775rem;
}

.detail-trustpilot-line .star-icon {
    font-size: 1.15rem;
    line-height: 1;
}

.detail-trustpilot-line .brand-text {
    letter-spacing: -0.02em;
}

/* Badges */
.wb-pill-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    border: 1px solid transparent;
}

.badge-ssl {
    background: color-mix(in oklch, var(--success) 8%, var(--surface-2));
    border-color: color-mix(in oklch, var(--success) 20%, var(--border));
    color: var(--success);
}

.badge-vpn {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.25);
    color: #3b82f6;
}

.badge-support {
    background: rgba(6, 182, 212, 0.08);
    border-color: rgba(6, 182, 212, 0.25);
    color: #06b6d4;
}

.badge-match {
    background: rgba(168, 85, 247, 0.08);
    border-color: rgba(168, 85, 247, 0.25);
    color: #a855f7;
}

/* Left side description */
.detail-description {
    line-height: 1.7;
    color: var(--muted);
    font-size: 1rem;
}

.detail-description p {
    margin-bottom: 1.25rem;
}

/* Info Tabs Card */
.wb-tabs-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
}

.wb-tabs-nav {
    display: flex;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.wb-tab-btn {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 0.1rem 0.75rem;
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s;
}

.wb-tab-btn:hover {
    color: var(--fg);
}

.wb-tab-btn.active {
    color: var(--success);
    border-bottom-color: var(--success);
    font-weight: 600;
}

.wb-tab-pane {
    display: none;
    line-height: 1.7;
    color: var(--muted);
    font-size: 0.95rem;
}

.wb-tab-pane.active {
    display: block;
    animation: fadeIn 0.2s ease-out;
}

.wb-info-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.wb-info-list li {
    position: relative;
    padding-left: 1.25rem;
}

.wb-info-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* Purchase details card on the right */
.detail-pricing-card {
    position: sticky;
    top: 5.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    background: var(--surface);
    z-index: 5;
}

.pricing-card-banner {
    border-bottom: 1px solid var(--border);
}

.pricing-card-banner img {
    display: block;
}

.region-toggle-pill {
    display: flex;
    gap: 2px;
    padding: 2px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.region-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
}

.region-btn:hover {
    color: var(--fg);
}

.region-btn.active {
    background: var(--success) !important;
    color: white !important;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.25);
}

/* Mini radio cards inside purchase card */
.wb-radio-card-mini {
    user-select: none;
}

.wb-radio-card-mini:hover {
    border-color: color-mix(in oklch, var(--success) 30%, var(--border)) !important;
    background: color-mix(in oklch, var(--success) 2%, var(--surface-2)) !important;
}

.wb-radio-card-mini.active {
    border-color: var(--success) !important;
    background: color-mix(in oklch, var(--success) 6%, var(--surface-2)) !important;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.1);
}

/* Mini checkbox cards */
.wb-checkbox-card-mini {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: border-color 0.2s, background-color 0.2s;
    user-select: none;
}

.wb-checkbox-card-mini:hover {
    border-color: color-mix(in oklch, var(--success) 30%, var(--border)) !important;
}

.wb-checkbox-card-mini.active {
    border-color: var(--success) !important;
    background: color-mix(in oklch, var(--success) 6%, var(--surface-2)) !important;
}

.wb-checkbox-input {
    margin-top: 0.25rem;
    accent-color: var(--success);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Trust list in pricing card */
.detail-trust {
    border-color: var(--border) !important;
}

.detail-related {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.detail-related__title {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.related-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1rem 1.15rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s, transform 0.15s;
}

.related-card:hover {
    border-color: var(--gold-border);
    transform: translateY(-2px);
    color: inherit;
}

.related-card__title {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.related-card__desc {
    font-size: 0.8125rem;
    color: var(--muted);
    line-height: 1.45;
    margin-bottom: 0.85rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-card__price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    font-variant-numeric: tabular-nums;
}

@media (max-width: 991.98px) {
    .detail-pricing {
        position: static;
        margin-top: 2rem;
    }
}

/* Nav back link */
.wb-nav-back {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius-sm);
    transition: color 0.15s, background 0.15s;
}

.wb-nav-back:hover {
    color: var(--fg);
    background: color-mix(in oklch, var(--accent) 8%, transparent);
}

/* Pay / link buttons */
.btn-wb-pay {
    background: var(--success);
    color: oklch(18% 0.04 145);
    border-color: color-mix(in oklch, var(--success) 80%, white);
    font-size: 0.9375rem;
    padding: 0.75rem 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: background 0.15s, color 0.15s;
}

.btn-wb-pay:hover {
    background: oklch(58% 0.17 145);
    color: oklch(15% 0.04 145);
}

.btn-wb-link {
    background: transparent;
    color: var(--muted);
    border-color: transparent;
    font-size: 0.875rem;
    padding: 0.65rem 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: var(--radius-sm);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: color 0.15s, background 0.15s;
}

.btn-wb-link:hover {
    color: var(--fg);
    background: color-mix(in oklch, var(--surface-2) 60%, transparent);
}

.wb-alert-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 1px;
}

.wb-alert-info .wb-alert-icon {
    color: var(--info);
}

/* Checkout page */
.checkout-main {
    flex: 1;
    padding: 2.5rem 1rem 3rem;
}

.checkout-wrap {
    max-width: 600px;
    margin: 0 auto;
}

.checkout-topbar {
    max-width: 600px;
    margin: 0 auto 1.5rem;
    display: flex;
    justify-content: flex-end;
}

.checkout-page__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.checkout-summary {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.25rem;
}

.checkout-summary__label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1rem;
}

.checkout-summary__row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.checkout-summary__service {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.35;
    margin: 0;
}

.checkout-summary__price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--fg);
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
}

.checkout-summary__divider {
    border: 0;
    border-top: 1px solid var(--border);
    margin: 1.15rem 0;
}

.checkout-summary__total-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}

.checkout-summary__total-label {
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 0;
}

.checkout-summary__total {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--accent);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
    margin: 0;
}

.checkout-banner {
    margin-bottom: 1.5rem;
}

.checkout-payment {
    margin-bottom: 1.5rem;
}

.checkout-payment__title {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.75rem;
}

.checkout-payment__option {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.15rem;
    background: var(--surface);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-md);
    cursor: default;
}

.checkout-payment__radio {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
    flex-shrink: 0;
    margin: 0;
}

.checkout-payment__info {
    flex: 1;
    min-width: 0;
}

.checkout-payment__name {
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 0 0 0.15rem;
}

.checkout-payment__desc {
    font-size: 0.8125rem;
    color: var(--muted);
    margin: 0;
}

.checkout-payment__icon {
    flex-shrink: 0;
    width: 40px;
    height: 28px;
    border-radius: 4px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    color: var(--muted);
}

.checkout-payment__icon svg {
    width: 22px;
    height: 16px;
}

.checkout-actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.25rem;
}

.checkout-actions__pay {
    width: 100%;
}

.checkout-actions__cancel {
    width: 100%;
    text-align: center;
}

.checkout-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-size: 0.8125rem;
    color: var(--muted);
    letter-spacing: 0.02em;
    margin: 0;
}

.checkout-secure__icon {
    width: 14px;
    height: 14px;
    color: var(--muted);
}

/* Auth nav */
.wb-nav-auth {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.wb-nav-auth__link {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.45rem 1rem;
    border-radius: 50px;
    transition: color 0.15s, background-color 0.15s;
}

.wb-nav-auth__link:hover,
.wb-nav-auth__link.is-active {
    color: var(--success);
    background: color-mix(in oklch, var(--success) 6%, var(--surface));
}

.wb-nav-auth .btn-wb-primary {
    background: var(--success);
    color: white;
    border-color: var(--success);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8125rem;
    padding: 0.45rem 1.1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: background-color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.wb-nav-auth .btn-wb-primary:hover {
    background: oklch(46% 0.16 145);
    border-color: oklch(46% 0.16 145);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px color-mix(in oklch, var(--success) 20%, transparent);
}

/* Auth pages */
.wb-input.is-invalid {
    border-color: color-mix(in oklch, var(--danger) 55%, var(--border));
    box-shadow: 0 0 0 3px color-mix(in oklch, var(--danger) 14%, transparent);
}

.wb-input.is-invalid:focus {
    border-color: var(--danger);
    box-shadow: 0 0 0 3px color-mix(in oklch, var(--danger) 18%, transparent);
}

.wb-field-error {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.35rem;
    font-size: 0.8125rem;
    color: var(--danger);
}

.wb-field-error svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.auth-main {
    flex: 1;
    position: relative;
    padding: 2.5rem 1rem 3rem;
    overflow: hidden;
}

.auth-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 20% 10%, color-mix(in oklch, var(--accent) 8%, transparent), transparent 60%),
        radial-gradient(ellipse 60% 45% at 85% 85%, color-mix(in oklch, var(--accent-secondary) 5%, transparent), transparent 55%),
        repeating-linear-gradient(
            135deg,
            transparent,
            transparent 28px,
            color-mix(in oklch, var(--accent) 3%, transparent) 28px,
            color-mix(in oklch, var(--accent) 3%, transparent) 29px
        ),
        repeating-linear-gradient(
            -135deg,
            transparent,
            transparent 28px,
            color-mix(in oklch, var(--border) 40%, transparent) 28px,
            color-mix(in oklch, var(--border) 40%, transparent) 29px
        );
    pointer-events: none;
    opacity: 0.85;
}

.auth-panel {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.auth-panel--solo {
    max-width: 420px;
    margin: 0 auto;
}

.auth-card {
    width: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem 1.75rem;
    box-shadow: 0 16px 48px oklch(10% 0.02 265 / 0.35);
}

.auth-card--login {
    border-color: var(--gold-border);
}

.auth-card__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1.75rem;
}

.auth-card__logo {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: linear-gradient(145deg, var(--surface-2), var(--bg));
    border: 1px solid var(--gold-border);
    display: grid;
    place-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 1rem;
}

.auth-card__title {
    font-size: 1.375rem;
    font-weight: 700;
    margin: 0 0 0.35rem;
    line-height: 1.2;
}

.auth-card__subtitle {
    font-size: 0.875rem;
    color: var(--muted);
    margin: 0;
    max-width: 100%;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.auth-form__submit {
    width: 100%;
    padding: 0.7rem 1rem;
    font-size: 0.9375rem;
    margin-top: 0.35rem;
}

.auth-form__footer {
    text-align: center;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    font-size: 0.875rem;
    color: var(--muted);
}

.auth-form__footer a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s;
}

.auth-form__footer a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

@media (max-width: 767.98px) {
    .auth-main {
        padding: 2rem 1rem 2.5rem;
    }

    .auth-card {
        padding: 1.75rem 1.35rem;
    }
}

/* Order detail page */
.order-main {
    flex: 1;
    padding: 1.75rem 0 3rem;
}

.order-header {
    margin-bottom: 1.75rem;
}

.order-header__top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
}

.order-header__id {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.order-header__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    font-size: 0.875rem;
    color: var(--muted);
}

.order-header__meta strong {
    color: var(--fg);
    font-weight: 600;
}

.order-header__meta-sep {
    color: var(--border);
    user-select: none;
}

.order-layout {
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 1.5rem;
    align-items: start;
}

.order-chat-card {
    display: flex;
    flex-direction: column;
    min-height: 520px;
}

.order-chat-card .wb-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.order-chat-live-badge {
    font-size: 0.65rem;
}

.order-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 400px;
    min-height: 400px;
    background: var(--bg);
}

.order-chat-row {
    display: flex;
    gap: 0.6rem;
    align-items: flex-end;
}

.order-chat-row--outgoing {
    flex-direction: row-reverse;
}

.order-chat-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--surface-2);
    border: 1px solid var(--border);
    flex-shrink: 0;
    display: grid;
    place-items: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--muted);
}

.order-chat-content {
    max-width: 78%;
}

.order-chat-user {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--fg);
    margin-bottom: 0.2rem;
}

.order-chat-row--outgoing .order-chat-user {
    text-align: right;
}

.order-chat-bubble {
    padding: 0.65rem 0.9rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    line-height: 1.45;
}

.order-chat-bubble--incoming {
    background: var(--surface);
    border: 1px solid var(--border);
    border-bottom-left-radius: 4px;
}

.order-chat-bubble--outgoing {
    background: color-mix(in oklch, var(--accent) 14%, var(--surface));
    border: 1px solid var(--gold-border);
    border-bottom-right-radius: 4px;
}

.order-chat-time {
    font-size: 0.6875rem;
    color: var(--muted);
    letter-spacing: 0.02em;
    margin-top: 0.25rem;
}

.order-chat-row--outgoing .order-chat-time {
    text-align: right;
}

.order-chat-compose {
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--border);
    background: var(--surface);
    display: flex;
    gap: 0.65rem;
    align-items: flex-end;
}

.order-chat-compose .wb-textarea {
    flex: 1;
    min-height: 44px;
    max-height: 120px;
}

.order-chat-compose__btn {
    flex-shrink: 0;
    padding: 0.6rem 1.15rem;
}

.order-chat-note {
    font-size: 0.75rem;
    color: var(--muted);
    padding: 0 1.25rem 0.85rem;
    background: var(--surface);
    margin: 0;
}

.order-chat-locked {
    padding: 1.25rem;
}

.order-chat-locked .wb-empty {
    padding: 2rem 1.25rem;
}

.order-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.order-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.35rem;
    margin-bottom: 1.25rem;
}

.order-timeline__step {
    flex: 1;
    text-align: center;
    position: relative;
}

.order-timeline__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 14px;
    left: calc(50% + 16px);
    right: calc(-50% + 16px);
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.order-timeline__step.is-done:not(:last-child)::after {
    background: color-mix(in oklch, var(--success) 50%, var(--border));
}

.order-timeline__dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--surface);
    display: grid;
    place-items: center;
    margin: 0 auto 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--muted);
    position: relative;
    z-index: 1;
}

.order-timeline__step.is-done .order-timeline__dot {
    border-color: var(--success);
    background: color-mix(in oklch, var(--success) 16%, var(--surface));
    color: var(--success);
}

.order-timeline__step.is-active .order-timeline__dot {
    border-color: var(--warn);
    background: color-mix(in oklch, var(--warn) 16%, var(--surface));
    color: var(--warn);
    box-shadow: 0 0 0 3px color-mix(in oklch, var(--warn) 18%, transparent);
}

.order-timeline__label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
}

.order-timeline__step.is-active .order-timeline__label {
    color: var(--warn);
}

.order-timeline__step.is-done .order-timeline__label {
    color: var(--success);
}

.order-booster-box {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    background: var(--bg);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-sm);
}

.order-booster-box__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface-2);
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    flex-shrink: 0;
}

.order-booster-box__name {
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 0 0 0.15rem;
}

.order-booster-box__meta {
    font-size: 0.8125rem;
    color: var(--muted);
    margin: 0;
}

.order-actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.order-actions__btn {
    width: 100%;
    padding: 0.7rem 1rem;
}

.order-bid-form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.order-bid-form__row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 0.85rem;
}

.wb-empty {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--bg);
    border: 1px dashed var(--border);
    border-radius: var(--radius-md);
}

.wb-empty h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.wb-empty p {
    color: var(--muted);
    font-size: 0.8125rem;
    max-width: 32ch;
    margin: 0 auto;
}

@media (max-width: 991.98px) {
    .order-layout {
        grid-template-columns: 1fr;
    }

    .order-bid-form__row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .order-header__meta {
        flex-direction: column;
        gap: 0.35rem;
    }

    .order-header__meta-sep {
        display: none;
    }

    .order-chat-compose {
        flex-direction: column;
        align-items: stretch;
    }

    .order-timeline {
        flex-wrap: wrap;
    }

    .order-timeline__step {
        min-width: 22%;
    }
}

/* Booster dashboard */
.wb-badge-booster {
    background: color-mix(in oklch, var(--accent) 16%, var(--surface));
    color: var(--accent);
    border-color: color-mix(in oklch, var(--accent) 30%, var(--border));
}

.wb-badge-pending {
    background: color-mix(in oklch, var(--warn) 16%, var(--surface));
    color: var(--warn);
    border-color: color-mix(in oklch, var(--warn) 30%, var(--border));
}

.wb-card-header__count {
    font-size: 0.8125rem;
    color: var(--muted);
    letter-spacing: 0.02em;
}

.wb-card-body--flush {
    padding: 0;
}

.wb-table-wrap--flush {
    border: 0;
    border-radius: 0;
}

.wb-table__order-id {
    font-weight: 600;
    color: var(--fg);
}

.wb-table__price {
    font-weight: 600;
    color: var(--accent);
    font-variant-numeric: tabular-nums;
}

.wb-table__bids {
    color: var(--muted);
    font-variant-numeric: tabular-nums;
}

.dash-main {
    flex: 1;
    padding: 1.75rem 0 3rem;
}

.dash-header {
    margin-bottom: 1.75rem;
}

.dash-header__title {
    font-size: 1.625rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.dash-header__sub {
    color: var(--muted);
    font-size: 0.9375rem;
    margin: 0;
    max-width: 52ch;
}

.dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.dash-stat {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.15rem 1.25rem;
}

.dash-stat__label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.45rem;
}

.dash-stat__value {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    margin: 0;
}

.dash-stat--accent .dash-stat__value {
    color: var(--accent);
}

.dash-stat--warn .dash-stat__value {
    color: var(--warn);
}

.dash-stat--success .dash-stat__value {
    color: var(--success);
}

.dash-section {
    margin-bottom: 2rem;
}

.dash-bids-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dash-bids-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1.25rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
}

.dash-bids-item:last-child {
    border-bottom: 0;
}

.dash-bids-item:hover {
    background: color-mix(in oklch, var(--accent) 4%, transparent);
}

.dash-bids-item__main {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.85rem;
    min-width: 0;
}

.dash-bids-item__order {
    font-weight: 600;
    font-size: 0.9375rem;
}

.dash-bids-item__service {
    color: var(--muted);
    font-size: 0.875rem;
}

.dash-bids-item__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem 1.25rem;
}

.dash-bids-item__bid {
    font-size: 0.875rem;
    color: var(--muted);
}

.dash-bids-item__bid strong {
    color: var(--accent);
    font-weight: 600;
}

.dash-bids-item__link {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--accent);
    text-decoration: none;
    white-space: nowrap;
}

.dash-bids-item__link:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

@media (max-width: 767.98px) {
    .dash-stats {
        grid-template-columns: 1fr;
    }

    .dash-bids-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .dash-bids-item__meta {
        width: 100%;
        justify-content: space-between;
    }
}

/* Support dashboard */
.dash-workflow {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.85rem 1rem;
    margin-bottom: 1.75rem;
    background: color-mix(in oklch, var(--info) 10%, var(--surface));
    border: 1px solid color-mix(in oklch, var(--info) 28%, var(--border));
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
}

.dash-workflow__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--info);
    margin-top: 1px;
}

.dash-workflow strong {
    font-weight: 600;
}

.support-section-head {
    margin-bottom: 0;
}

.support-section-head .wb-card-header {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    margin-bottom: 0;
}

.btn-wb-assign {
    background: var(--success);
    color: oklch(18% 0.04 145);
    border-color: color-mix(in oklch, var(--success) 80%, white);
    font-size: 0.8125rem;
    padding: 0.45rem 0.9rem;
    white-space: nowrap;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: background 0.15s, color 0.15s;
}

.btn-wb-assign:hover {
    background: oklch(58% 0.17 145);
    color: oklch(15% 0.04 145);
}

.wb-table__booster {
    font-weight: 600;
}

.wb-table__message {
    color: var(--muted);
    font-size: 0.8125rem;
    max-width: 28ch;
}

.assign-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 0.85rem;
}

.assign-card[open] {
    border-color: var(--gold-border);
}

.assign-card__summary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1.25rem;
    padding: 1.1rem 1.25rem;
    cursor: pointer;
    list-style: none;
    transition: background 0.15s;
}

.assign-card__summary::-webkit-details-marker {
    display: none;
}

.assign-card__summary::marker {
    content: "";
}

.assign-card__summary:hover {
    background: color-mix(in oklch, var(--accent) 4%, transparent);
}

.assign-card__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 1rem;
    min-width: 0;
    flex: 1;
}

.assign-card__chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--muted);
    transition: transform 0.2s;
}

.assign-card[open] .assign-card__chevron {
    transform: rotate(180deg);
}

.assign-card__title {
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 0;
}

.assign-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
    font-size: 0.8125rem;
    color: var(--muted);
}

.assign-card__meta strong {
    color: var(--fg);
    font-weight: 500;
}

.assign-card__meta-price {
    color: var(--accent);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.assign-card__body {
    padding: 0 1.25rem 1.25rem;
    border-top: 1px solid var(--border);
}

.assign-card__bids-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 1rem 0 0.75rem;
}

.assign-card__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.assign-card__note {
    font-size: 0.8125rem;
    color: var(--muted);
    margin: 0;
}

.wb-empty--inline {
    border-radius: var(--radius-sm);
    border: 1px dashed var(--border);
}

.active-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.active-list__item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1.25rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
}

.active-list__item:last-child {
    border-bottom: 0;
}

.active-list__item:hover {
    background: color-mix(in oklch, var(--accent) 4%, transparent);
}

.active-list__main {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.85rem;
    min-width: 0;
}

.active-list__order {
    font-weight: 600;
    font-size: 0.9375rem;
}

.active-list__service {
    color: var(--muted);
    font-size: 0.875rem;
}

.active-list__booster {
    font-size: 0.8125rem;
    color: var(--muted);
}

.active-list__booster strong {
    color: var(--fg);
    font-weight: 500;
}

@media (max-width: 767.98px) {
    .assign-card__summary {
        flex-direction: column;
        align-items: flex-start;
    }

    .assign-card__chevron {
        align-self: flex-end;
        margin-top: -1.5rem;
    }

    .active-list__item {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Support tickets */
.tickets-main {
    flex: 1;
    padding: 2rem 1rem 3rem;
}

.tickets-page {
    max-width: 1200px;
    margin: 0 auto;
}

.tickets-page--create {
    max-width: 640px;
}

.tickets-list__header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.tickets-list__title {
    font-size: 1.375rem;
    font-weight: 700;
    margin: 0;
}

.tickets-form__header {
    margin-bottom: 1.25rem;
}

.tickets-form__title {
    font-size: 1.375rem;
    font-weight: 700;
    margin: 0;
}

.tickets-form__card {
    padding: 1.5rem;
}

.tickets-form__fields {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-bottom: 1.25rem;
}

.tickets-form__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.tickets-form__submit {
    padding: 0.65rem 1.25rem;
}

.wb-table__id {
    font-weight: 600;
    color: var(--fg);
}

.wb-table__subject {
    font-weight: 500;
}

.wb-table__time {
    color: var(--muted);
    font-size: 0.8125rem;
    white-space: nowrap;
}

.tickets-page .wb-empty {
    padding: 2.5rem 1.5rem;
    background: var(--bg);
}

.tickets-page .wb-empty .btn-wb {
    margin-top: 1rem;
}

@media (max-width: 575.98px) {
    .tickets-list__header {
        flex-direction: column;
        align-items: stretch;
    }

    .tickets-list__header .btn-wb {
        width: 100%;
    }

    .tickets-form__actions {
        flex-direction: column;
    }

    .tickets-form__actions .btn-wb {
        width: 100%;
    }
}

/* Promo Section */
.home-promo-section {
    margin-bottom: 4.5rem;
    position: relative;
    z-index: 2;
}

.home-promo {
    background: linear-gradient(135deg, color-mix(in oklch, var(--success) 7%, var(--surface)), var(--surface));
    border: 1px solid color-mix(in oklch, var(--success) 15%, var(--border));
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.home-promo__inner {
    display: flex;
    align-items: center;
}

.home-promo__content {
    padding: 3rem;
    flex: 1;
}

.home-promo__badge {
    display: inline-block;
    background: var(--success);
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
    margin-bottom: 1.25rem;
}

.home-promo__title {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--fg);
}

.home-promo__desc {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
    max-width: 45ch;
}

.home-promo__image-wrapper {
    width: 45%;
    height: 340px;
    flex-shrink: 0;
    border-left: 1px solid color-mix(in oklch, var(--success) 15%, var(--border));
    background: var(--surface-2);
}

.home-promo__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991.98px) {
    .home-promo__inner {
        flex-direction: column-reverse;
        align-items: stretch;
    }
    .home-promo__content {
        padding: 2rem;
    }
    .home-promo__image-wrapper {
        width: 100%;
        height: 240px;
        border-left: none;
        border-bottom: 1px solid color-mix(in oklch, var(--success) 15%, var(--border));
    }
}

/* Sticky Bottom Checkout Bar */
.wb-sticky-footer-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(17, 19, 30, 0.95);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1050;
    padding: 1rem 0;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
}

/* Custom Crypto Checkout Styles */
.checkout-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

@media (min-width: 992px) {
    .checkout-container {
        grid-template-columns: 1.3fr 1fr;
    }
}

.crypto-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.crypto-amount-badge {
    background: color-mix(in oklch, var(--accent) 8%, var(--surface-2));
    border: 1px solid color-mix(in oklch, var(--accent) 25%, var(--border));
    border-radius: var(--radius-md);
    padding: 1rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.crypto-amount-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.01em;
    font-family: var(--font-mono);
}

.crypto-qr-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.crypto-qr-img {
    background: #fff;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    width: 180px;
    height: 180px;
}

.crypto-address-card {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.crypto-address-text {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--fg);
    word-break: break-all;
}

.crypto-copy-btn {
    background: transparent;
    border: none;
    color: var(--accent);
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.crypto-copy-btn:hover {
    color: var(--accent-hover);
}

.crypto-warning-box {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 0.75rem;
    color: oklch(75% 0.15 25);
}

.crypto-warning-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.crypto-form-group {
    margin-bottom: 1.5rem;
}

.crypto-form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.crypto-input {
    width: 100%;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    color: var(--fg);
    font-family: var(--font-mono);
    font-size: 0.9375rem;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.crypto-input:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 2px color-mix(in oklch, var(--accent) 20%, transparent);
}

/* Right column transaction card */
.tx-info-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: fit-content;
}

.tx-info-header {
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tx-info-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
}

.tx-info-badge {
    background: color-mix(in oklch, var(--warn) 10%, var(--surface-2));
    border: 1px solid color-mix(in oklch, var(--warn) 30%, var(--border));
    color: var(--warn);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tx-info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px dashed var(--border);
    font-size: 0.9rem;
}

.tx-info-row:last-child {
    border-bottom: none;
}

.tx-info-label {
    color: var(--muted);
}

.tx-info-value {
    font-weight: 600;
    text-align: right;
}

.tx-info-value.amount {
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 1.1rem;
}

/* FAQ Accordion Styling */
.wb-faq-accordion .accordion-item {
    border-color: var(--border) !important;
}

.wb-faq-accordion .accordion-button {
    font-size: 0.95rem;
    box-shadow: none !important;
    transition: color 0.2s, background-color 0.2s;
}

.wb-faq-accordion .accordion-button:not(.collapsed) {
    background-color: rgba(255, 255, 255, 0.03) !important;
    color: var(--accent) !important;
}

.wb-faq-accordion .accordion-button::after {
    filter: brightness(0) invert(1) opacity(0.7);
    background-size: 0.85rem;
    transition: transform 0.2s;
}

.wb-faq-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1) sepia(1) saturate(100) hue-rotate(20deg);
}

.wb-faq-accordion .accordion-body {
    border-top: 1px solid var(--border) !important;
    background-color: rgba(0, 0, 0, 0.1);
}

/* News Article Body Typography */
.news-article-body p {
    margin-bottom: 1.5rem;
    color: var(--fg-muted);
}

.news-article-body h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--fg);
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.5rem;
}

.news-article-body h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--fg);
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}

.news-article-body ul, .news-article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.news-article-body li {
    margin-bottom: 0.5rem;
    color: var(--fg-muted);
}

.news-article-body strong {
    color: var(--fg);
}

.news-article-body blockquote {
    border-left: 3px solid var(--accent);
    background: rgba(255, 255, 255, 0.02);
    padding: 0.75rem 1.25rem;
    margin: 1.5rem 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--fg-muted);
}

.news-article-body a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px dashed var(--accent);
    transition: color 0.15s, border-color 0.15s;
}

/* Custom Option Rows styling (Kingboost style) */
.wb-radio-row, .wb-checkbox-row {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0.45rem 0 !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: opacity 0.15s ease-in-out;
}

.wb-radio-row:hover, .wb-checkbox-row:hover {
    background: transparent !important;
    opacity: 0.85;
}

/* Checked states */
.wb-radio-row.active, .wb-checkbox-row.active {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Custom indicators (glowing green circles for radio, rounded squares for checkbox) */
.wb-radio-input-custom {
    -webkit-appearance: none;
    appearance: none;
    width: 0.95rem;
    height: 0.95rem;
    border: 1px solid var(--border) !important;
    border-radius: 50% !important;
    background-color: var(--surface) !important;
    display: inline-grid;
    place-content: center;
    cursor: pointer;
    margin: 0;
    margin-top: 4px !important; /* Perfect top alignment next to title */
    flex-shrink: 0;
    transition: all 0.15s ease-in-out;
}

.wb-radio-input-custom::before {
    content: "";
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    background-color: var(--success);
}

.wb-radio-input-custom:checked {
    border-color: var(--success) !important;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.25) !important;
}

.wb-radio-input-custom:checked::before {
    transform: scale(1);
}

.wb-checkbox-input-custom {
    -webkit-appearance: none;
    appearance: none;
    width: 0.95rem;
    height: 0.95rem;
    border: 1px solid var(--border) !important;
    border-radius: 5px !important; /* Rounded square */
    background-color: rgba(255, 255, 255, 0.08) !important; /* Soft gray default bg */
    cursor: pointer;
    margin: 0;
    margin-top: 4px !important;
    flex-shrink: 0;
    transition: all 0.15s ease-in-out;
    display: inline-block;
}

.wb-checkbox-input-custom:checked {
    background-color: var(--success) !important;
    border-color: var(--success) !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e") !important;
    background-size: 80% 80% !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.25) !important;
}

/* Select Dropdown */
.wb-select-mini {
    background-color: var(--surface-2) !important;
    color: var(--fg) !important;
    border: 1px solid var(--border) !important;
    border-radius: 8px !important;
    padding: 0.65rem 1rem !important;
    font-size: 0.85rem !important;
    transition: border-color 0.2s;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23a1a1aa' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 10px 10px !important;
    appearance: none;
}

.wb-select-mini:focus {
    border-color: var(--success) !important;
    box-shadow: 0 0 0 0.25rem rgba(34, 197, 94, 0.15) !important;
    outline: 0;
}

.news-article-body a:hover {
    color: var(--accent-hover);
    border-bottom-style: solid;
}

.news-article-body a:hover {
    color: var(--accent-hover);
    border-bottom-style: solid;
}

/* Live Support Floating Chat Widget */
.wb-support-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1050;
    font-family: inherit;
}

.wb-support-toggle-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--success); /* Green support theme */
    border: none;
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    color: white;
}

.wb-support-toggle-btn:hover {
    transform: scale(1.05);
    background: color-mix(in oklch, var(--success) 90%, white);
}

.wb-support-toggle-btn span {
    font-size: 1.5rem;
}

.wb-support-chat-window {
    position: absolute;
    bottom: 72px;
    right: 0;
    width: 330px;
    height: 420px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: slideUpChat 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUpChat {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wb-support-chat-header {
    background: var(--surface-2);
    border-bottom: 1px solid var(--border);
    padding: 12px 16px;
}

.support-status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--success);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--success);
}

.wb-support-close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    transition: color 0.15s;
}

.wb-support-close-btn:hover {
    color: white;
}

.wb-support-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: var(--background);
}

.wb-support-system-msg {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 8px 12px;
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
}

.wb-support-system-msg p {
    margin: 0;
}

.wb-msg-row {
    display: flex;
    width: 100%;
}

.wb-msg-row.client {
    justify-content: flex-end;
}

.wb-msg-row.support {
    justify-content: flex-start;
}

.wb-msg-bubble {
    max-width: 80%;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 0.825rem;
    line-height: 1.4;
    word-break: break-word;
}

.wb-msg-row.client .wb-msg-bubble {
    background: var(--success);
    color: white;
    border-bottom-right-radius: 2px;
}

.wb-msg-row.support .wb-msg-bubble {
    background: var(--surface-2);
    border: 1px solid var(--border);
    color: var(--text-light);
    border-bottom-left-radius: 2px;
}

.wb-support-input-area {
    padding: 12px;
    border-top: 1px solid var(--border);
    background: var(--surface-2);
}

.wb-support-input-area input {
    flex: 1;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 8px 16px;
    color: white;
    font-size: 0.85rem;
}

.wb-support-input-area input:focus {
    border-color: var(--success);
    outline: none;
}

.btn-wb-send {
    background: var(--success);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.15s;
    padding: 0;
}

.btn-wb-send:hover {
    background: color-mix(in oklch, var(--success) 90%, white);
}

.wb-support-contact-banner {
    background: var(--surface-2);
    border-bottom: 1px solid var(--border);
    padding: 8px 12px;
}

