﻿@font-face {
  font-family: "Jura";
  src: url("../fonts/Jura-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jura";
  src: url("../fonts/Jura-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jura";
  src: url("../fonts/Jura-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jura";
  src: url("../fonts/Jura-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jura";
  src: url("../fonts/Jura-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "BabyMonsta";
  src: url("../fonts/BabyMonsta-lgGgX.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --lobnho-black: #000000;
  --lobnho-pink: #ff00f6;
  --lobnho-pink-soft: #ff98fb;
  --lobnho-green: #00ff12;
  --lobnho-blue: #0078ff;
  --lobnho-red: #ff2727;
  --lobnho-yellow: #fffc24;

  --lobnho-bg: var(--lobnho-black);
  --lobnho-accent: var(--lobnho-pink);
  --lobnho-text: #ffffff;
  --lobnho-text-muted: rgba(255, 255, 255, 0.68);
  --lobnho-border: rgba(255, 255, 255, 0.14);

  --lobnho-font-body: "Jura", "Courier New", monospace;
  --lobnho-font-logo: "BabyMonsta", "Jura", monospace;
}

html,
body {
  min-height: 100%;
  background: var(--lobnho-bg);
  color: var(--lobnho-text);
  font-family: var(--lobnho-font-body);
}

body {
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
}

.lobnho-stage {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--lobnho-bg);
}

.lobnho-nav-layer {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  padding: 0 18px;
  pointer-events: none;
}

.lobnho-terminal-bg,
.faulty-terminal-container {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.faulty-terminal-container canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.lobnho-logo-text,
.lobnho-brand-mark {
  font-family: var(--lobnho-font-logo);
  font-weight: 400;
}

.lobnho-accent {
  color: var(--lobnho-accent);
}

.lobnho-muted {
  color: var(--lobnho-text-muted);
}

.lobnho-glass {
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid var(--lobnho-border);
  backdrop-filter: blur(10px);
}

.pill-nav-shell,
.pill-nav-shell * {
  box-sizing: border-box;
}

.pill-nav-shell {
  --nav-height: 44px;
  --nav-radius: 999px;
  --nav-glass-bg: rgba(10, 10, 10, 0.18);
  --nav-glass-border: rgba(255, 255, 255, 0.1);
  --nav-glass-blur: 22px;
  --nav-noise-opacity: 0.04;
  --nav-noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  width: min(100%, 980px);
  pointer-events: auto;
}

.pill-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: max-content;
}

.pill-nav-brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  background: var(--nav-glass-bg);
  backdrop-filter: blur(var(--nav-glass-blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--nav-glass-blur)) saturate(1.4);
  border: 1px solid var(--nav-glass-border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.pill-nav-brand::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-image: var(--nav-noise);
  background-size: 180px 180px;
  opacity: var(--nav-noise-opacity);
  pointer-events: none;
}

.pill-nav-brand:hover {
  transform: rotate(15deg) scale(1.05);
}

.pill-nav-brand-media {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.pill-nav-brand-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pill-nav-menu {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  height: var(--nav-height);
  list-style: none;
  margin: 0;
  padding: 3px;
  border-radius: 9999px;
  background: var(--nav-glass-bg);
  backdrop-filter: blur(var(--nav-glass-blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--nav-glass-blur)) saturate(1.4);
  border: 1px solid var(--nav-glass-border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.pill-nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pill-nav-menu::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background-image: var(--nav-noise);
  background-size: 180px 180px;
  opacity: var(--nav-noise-opacity);
  pointer-events: none;
}

.pill-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 600;
  overflow: hidden;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid transparent;
  white-space: nowrap;
  z-index: 1;
}

.pill-nav-link-label {
  position: relative;
  z-index: 2;
  line-height: 1;
}

.pill-nav-link:hover,
.pill-nav-link:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
  outline: none;
}

.pill-nav-link.is-active {
  color: #ffffff;
  background: linear-gradient(180deg, rgba(255, 0, 246, 0.22), rgba(255, 0, 246, 0.14));
  border-color: rgba(255, 152, 251, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 18px rgba(255, 0, 246, 0.14);
}

.pill-nav-link.is-active:hover,
.pill-nav-link.is-active:focus-visible {
  background: linear-gradient(180deg, rgba(255, 0, 246, 0.26), rgba(255, 0, 246, 0.18));
  border-color: rgba(255, 152, 251, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 20px rgba(255, 0, 246, 0.16);
}

.pill-lang-wrap {
  position: relative;
  flex-shrink: 0;
}

.pill-lang-btn,
.pill-cart-btn,
.pill-nav-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid var(--nav-glass-border);
  background: var(--nav-glass-bg);
  backdrop-filter: blur(var(--nav-glass-blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--nav-glass-blur)) saturate(1.4);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  overflow: hidden;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.pill-lang-btn::after,
.pill-cart-btn::after,
.pill-nav-toggle::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--nav-noise);
  background-size: 180px 180px;
  opacity: var(--nav-noise-opacity);
  pointer-events: none;
}

.pill-lang-btn,
.pill-cart-btn {
  border-radius: 9999px;
}

.pill-lang-btn {
  gap: 6px;
  padding: 0 12px;
  font-family: var(--lobnho-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pill-lang-btn:hover,
.pill-lang-btn:focus-visible,
.pill-cart-btn:hover,
.pill-cart-btn:focus-visible,
.pill-nav-toggle:hover,
.pill-nav-toggle:focus-visible {
  background: rgba(255, 0, 246, 0.12);
  border-color: rgba(255, 152, 251, 0.18);
  color: #ffffff;
  box-shadow: 0 6px 24px rgba(255, 0, 246, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  outline: none;
}

.pill-lang-btn[aria-expanded="true"],
.pill-cart-btn[aria-expanded="true"] {
  background: rgba(255, 0, 246, 0.14);
  border-color: rgba(255, 152, 251, 0.22);
  color: #ffffff;
}

.pill-lang-flag {
  display: block;
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.pill-lang-code {
  font-size: 11px;
  position: relative;
  z-index: 1;
}

.pill-lang-chevron {
  display: block;
  width: 10px;
  height: 6px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  opacity: 0.6;
  position: relative;
  z-index: 1;
}

.pill-lang-chevron.is-open {
  transform: rotate(180deg);
}

.pill-lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 120px;
  background: rgba(12, 12, 12, 0.72);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid var(--nav-glass-border);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  padding: 6px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 2px;
  animation: pill-lang-drop 0.15s ease both;
}

.pill-lang-menu[hidden] {
  display: none !important;
}

@keyframes pill-lang-drop {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pill-lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 7px 10px;
  border-radius: 9px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--lobnho-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s ease, color 0.15s ease;
}

.pill-lang-option img {
  display: block;
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}

.pill-lang-option:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
}

.pill-lang-option.is-active {
  background: rgba(255, 0, 246, 0.2);
  color: #ffffff;
}

.pill-cart-btn {
  width: 44px;
  padding: 0;
}

.pill-cart-icon {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
}

.pill-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9999px;
  background: var(--lobnho-pink);
  border: 1.5px solid rgba(10, 10, 10, 0.9);
  color: #ffffff;
  font-family: var(--lobnho-font-body);
  font-size: 10px;
  font-weight: 700;
  line-height: 15px;
  text-align: center;
  letter-spacing: 0;
  z-index: 2;
}

.pill-cart-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(360px, calc(100vw - 24px));
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(28px) saturate(1.45);
  -webkit-backdrop-filter: blur(28px) saturate(1.45);
  border: 1px solid rgba(255, 152, 251, 0.12);
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  animation: pill-cart-drop 0.18s ease both;
}

.pill-cart-panel[hidden] {
  display: none !important;
}

@keyframes pill-cart-drop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pill-cart-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pill-cart-panel-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pill-cart-panel-close {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.pill-cart-panel-body {
  padding: 18px 16px 20px;
}

.pill-cart-panel-empty {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.5;
}

.pill-nav-toggle:hover,
.pill-nav-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.09);
  outline: none;
}

.pill-nav-toggle-lines {
  position: relative;
  width: 18px;
  height: 14px;
}

.pill-nav-toggle-lines span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 220ms ease,
    opacity 220ms ease,
    top 220ms ease;
}

.pill-nav-toggle-lines span:nth-child(1) {
  top: 2px;
}

.pill-nav-toggle-lines span:nth-child(2) {
  top: 10px;
}

.pill-nav-shell[data-menu-open="true"] .pill-nav-toggle-lines span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.pill-nav-shell[data-menu-open="true"] .pill-nav-toggle-lines span:nth-child(2) {
  top: 6px;
  transform: rotate(-45deg);
}

.pill-nav-mobile {
  display: none;
  margin-top: 10px;
  padding: 8px;
  border-radius: 20px;
  border: 1px solid var(--nav-glass-border);
  background: rgba(10, 10, 10, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
  overflow: hidden;
}

.pill-nav-mobile::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--nav-noise);
  background-size: 180px 180px;
  opacity: var(--nav-noise-opacity);
  pointer-events: none;
}

.pill-nav-mobile-links {
  display: grid;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.pill-nav-mobile-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  transition:
    background-color 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.pill-nav-mobile-link:hover,
.pill-nav-mobile-link:focus-visible,
.pill-nav-mobile-link.is-active {
  background: rgba(255, 0, 246, 0.24);
  color: #ffffff;
  outline: none;
}

.pill-nav-shell[data-menu-open="true"] .pill-nav-mobile {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  .lobnho-nav-layer {
    top: 14px;
    padding: 0 12px;
  }

  .pill-nav {
    width: 100%;
    justify-content: space-between;
  }

  .pill-nav-menu {
    display: none;
  }

  .pill-nav-actions {
    margin-left: auto;
  }

  .pill-nav-toggle,
  .pill-nav-mobile {
    display: flex;
  }

  .pill-nav-mobile {
    display: block;
  }

  .pill-nav-shell[data-menu-open="false"] .pill-nav-mobile {
    pointer-events: none;
  }
}

@media (max-width: 560px) {
  .pill-nav-shell {
    width: 100%;
  }

  .pill-nav-brand-media {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .pill-lang-code {
    display: none;
  }

  .pill-lang-btn {
    gap: 4px;
    padding: 0 10px;
  }

  .pill-lang-chevron {
    display: none;
  }
}

/* ── Hero Section ──────────────────────────────────────────────────────── */
.lobnho-hero {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 64px 48px 48px;
  margin: 20px 0;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.lobnho-hero[hidden] {
  display: none;
}

.lobnho-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  max-width: 580px;
  margin: 40px 0 0 80px;
}

.lobnho-hero-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}

.lobnho-hero-logo {
  width: 180px;
  height: 180px;
  flex: 0 0 180px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 8px rgba(255, 0, 246, 0.15));
  animation: lobnho-hero-fadein 0.7s ease both;
}

.lobnho-hero-brand {
  font-family: var(--lobnho-font-logo);
  font-size: 72px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: 0.04em;
  animation: lobnho-hero-fadein 0.7s ease both;
}

.lobnho-hero-desc {
  margin: 0 0 0 10px;
  font-family: var(--lobnho-font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  max-width: 460px;
  animation: lobnho-hero-fadein 0.9s ease both;
}

.lobnho-hero-desc.is-decrypted {
  color: #fff;
}

/* ── GlitchText (port React Bits, adaptado pink) ──────────────────────── */
.glitch {
  position: relative;
  white-space: nowrap;
  user-select: none;
}

.glitch::after,
.glitch::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  color: #fff;
  background-color: #000;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
}

.glitch::after {
  left: 10px;
  text-shadow: var(--after-shadow, -10px 0 red);
  animation: animate-glitch var(--after-duration, 3s) infinite linear alternate-reverse;
}

.glitch::before {
  left: -10px;
  text-shadow: var(--before-shadow, 10px 0 cyan);
  animation: animate-glitch var(--before-duration, 2s) infinite linear alternate-reverse;
}

@keyframes animate-glitch {
  0% { clip-path: inset(20% 0 50% 0); }
  5% { clip-path: inset(10% 0 60% 0); }
  10% { clip-path: inset(15% 0 55% 0); }
  15% { clip-path: inset(25% 0 35% 0); }
  20% { clip-path: inset(30% 0 40% 0); }
  25% { clip-path: inset(40% 0 20% 0); }
  30% { clip-path: inset(10% 0 60% 0); }
  35% { clip-path: inset(15% 0 55% 0); }
  40% { clip-path: inset(25% 0 35% 0); }
  45% { clip-path: inset(30% 0 40% 0); }
  50% { clip-path: inset(20% 0 50% 0); }
  55% { clip-path: inset(10% 0 60% 0); }
  60% { clip-path: inset(15% 0 55% 0); }
  65% { clip-path: inset(25% 0 35% 0); }
  70% { clip-path: inset(30% 0 40% 0); }
  75% { clip-path: inset(40% 0 20% 0); }
  80% { clip-path: inset(20% 0 50% 0); }
  85% { clip-path: inset(10% 0 60% 0); }
  90% { clip-path: inset(15% 0 55% 0); }
  95% { clip-path: inset(25% 0 35% 0); }
  100% { clip-path: inset(30% 0 40% 0); }
}

@keyframes lobnho-hero-fadein {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .lobnho-hero {
    padding: 48px 24px 36px;
    margin: 20px 0;
  }
  .lobnho-hero-inner {
    margin: 24px 0 0 20px;
    gap: 8px;
  }
  .lobnho-hero-row {
    gap: 16px;
  }
  .lobnho-hero-logo {
    width: 120px;
    height: 120px;
    flex-basis: 120px;
  }
  .lobnho-hero-brand {
    font-size: 48px;
  }
  .lobnho-hero-desc {
    font-size: 12px;
    max-width: 320px;
  }
}

.lob-home-card-swap {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 610px;
  padding: 0 48px 104px;
  --lob-card-swap-shift-x: 55%;
  --lob-card-swap-shift-y: -2%;
}

.lob-home-card-swap[hidden] {
  display: none;
}

.lob-card-swap-shell {
  width: min(1180px, 100%);
  min-height: 560px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: clamp(12px, 5vw, 72px);
}

.lob-card-swap-stage {
  position: relative;
  width: min(700px, 100%);
  height: 505px;
  perspective: 900px;
  overflow: visible;
  transform: translate(var(--lob-card-swap-shift-x), var(--lob-card-swap-shift-y));
}

.lob-card-swap-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(668px, 92vw);
  height: 470px;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    rgba(0, 0, 0, 0.9);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(255, 0, 246, 0.08);
  color: #ffffff;
  text-decoration: none;
  transform-style: preserve-3d;
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition:
    transform 1.55s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.72s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.lob-card-swap-card.is-front {
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 92px rgba(0, 0, 0, 0.58), 0 0 28px rgba(255, 0, 246, 0.2);
}

.lob-card-swap-card.is-front:hover {
  border-color: rgba(255, 0, 246, 0.74);
  box-shadow: 0 30px 96px rgba(0, 0, 0, 0.62), 0 0 34px rgba(255, 0, 246, 0.3);
}

.lob-card-swap-card.is-dropping {
  transition:
    transform 0.82s cubic-bezier(0.55, 0, 1, 0.45),
    opacity 0.62s ease;
}

.lob-card-swap-title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  min-height: 78px;
  display: flex;
  align-items: center;
  padding: 18px 22px 12px;
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0));
  overflow: hidden;
  pointer-events: none;
}

.lob-card-title-static,
.lob-card-title-glitch {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lob-card-title-static {
  display: block;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lob-card-title-glitch {
  display: none;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1;
  letter-spacing: 0.02em;
}

.lob-card-swap-card.is-front .lob-card-title-static {
  display: none;
}

.lob-card-swap-card.is-front .lob-card-title-glitch {
  display: block;
}

.lob-card-swap-media {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 0, 246, 0.18), transparent 48%),
    #000000;
}

.lob-card-swap-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.28s ease;
}

.lob-card-swap-card.is-front:hover .lob-card-swap-media img {
  transform: scale(1.035);
}

@media (max-width: 768px) {
  .lob-home-card-swap {
    min-height: 520px;
    padding: 0 24px 72px;
  }

  .lob-card-swap-shell {
    min-height: 470px;
  }

  .lob-card-swap-stage {
    width: min(440px, 100%);
    height: 350px;
    --lob-card-swap-shift-y: 8%;
    transform: scale(0.84) translate(8%, 8%);
    transform-origin: center center;
  }

  .lob-card-swap-card {
    width: min(462px, 92vw);
    height: 344px;
  }

  .lob-card-title-static {
    font-size: 14px;
  }

  .lob-card-title-glitch {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .lob-home-card-swap {
    min-height: 440px;
    padding-bottom: 54px;
  }

  .lob-card-swap-stage {
    height: 310px;
    --lob-card-swap-shift-y: 10%;
    transform: scale(0.7) translate(18%, 18%);
  }

  .lob-card-swap-card {
    width: 414px;
    height: 312px;
  }
}

.lobnho-banner-section {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 8px 0 72px;
}

.lobnho-banner-shell {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.lobnho-banner-strip {
  width: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 0;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.12) 14%, rgba(255, 255, 255, 0.12) 86%, transparent 100%),
    linear-gradient(180deg, rgba(8, 8, 10, 0.74) 0%, rgba(8, 8, 10, 0.5) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(20px) saturate(1.05) brightness(0.56);
  -webkit-backdrop-filter: blur(20px) saturate(1.05) brightness(0.56);
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.14) 12%,
    #000 26%,
    #000 74%,
    rgba(0, 0, 0, 0.14) 88%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.14) 12%,
    #000 26%,
    #000 74%,
    rgba(0, 0, 0, 0.14) 88%,
    transparent 100%
  );
}

.lobnho-banner-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 0, 246, 0) 0%, rgba(255, 0, 246, 0.08) 50%, rgba(255, 0, 246, 0) 100%);
  pointer-events: none;
  mix-blend-mode: screen;
}

.lobnho-banner-stage {
  position: relative;
  width: min(100%, 980px);
  height: 164px;
}

.lobnho-banner-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.985);
  transition:
    opacity 420ms ease,
    transform 420ms ease;
  pointer-events: none;
}

.lobnho-banner-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.lobnho-banner-panel {
  position: relative;
  width: 320px;
  height: 164px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 18px 10px;
  overflow: hidden;
}

.lobnho-banner-panel::before {
  content: "";
  position: absolute;
  inset: -28% -16%;
  background:
    radial-gradient(circle at center, rgba(255, 0, 246, 0.18) 0%, rgba(255, 0, 246, 0.08) 24%, rgba(255, 0, 246, 0) 56%);
  pointer-events: none;
}

.lobnho-banner-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-top: 2px;
}

.lobnho-banner-kicker,
.lobnho-banner-accent {
  font-family: var(--lobnho-font-body);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 0.95;
}

.lobnho-banner-kicker {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.lobnho-banner-accent {
  font-size: 28px;
  font-weight: 800;
  color: #ffc24c;
}

.lobnho-banner-product {
  position: relative;
  z-index: 1;
  width: 100%;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 0 0;
}

.lobnho-banner-product-image {
  max-width: 100%;
  max-height: 90px;
  object-fit: contain;
  display: block;
  filter:
    drop-shadow(0 10px 24px rgba(0, 0, 0, 0.5))
    drop-shadow(0 4px 12px rgba(255, 0, 246, 0.12));
}

.lobnho-banner-product-title {
  position: absolute;
  left: 50%;
  bottom: 2px;
  transform: translateX(-50%);
  z-index: 1;
  margin: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  font-family: var(--lobnho-font-body);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  filter:
    drop-shadow(0 1px 2px rgba(0, 0, 0, 0.75))
    drop-shadow(0 2px 6px rgba(0, 0, 0, 0.75))
    drop-shadow(0 0 12px rgba(0, 0, 0, 0.65));
}

@media (max-width: 768px) {
  .lobnho-banner-section {
    padding: 4px 0 48px;
  }

  .lobnho-banner-strip {
    min-height: 176px;
    padding: 14px 0;
  }

  .lobnho-banner-stage {
    height: 148px;
  }

  .lobnho-banner-panel {
    width: 272px;
    height: 148px;
    padding: 10px 14px 10px;
  }

  .lobnho-banner-kicker {
    font-size: 15px;
  }

  .lobnho-banner-accent {
    font-size: 22px;
  }

  .lobnho-banner-product-image {
    max-height: 78px;
  }

  .lobnho-banner-product-title {
    font-size: 15px;
  }
}

/* Godlike parity nav, Lobnho theme */
.pill-nav-container,
.pill-nav-container * {
  box-sizing: border-box;
}

.pill-nav-container {
  z-index: 999;
  pointer-events: auto;
  position: fixed;
  top: 1.2em;
  left: 50%;
  transform: translateX(-50%);
}

.pill-nav {
  --nav-h: 44px;
  --logo: 36px;
  --pill-pad-x: 18px;
  --pill-gap: 3px;
  --glass-bg: rgba(5, 5, 6, 0.68);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-blur: 18px;
  --noise-opacity: 0.04;
  --nav-noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  align-items: center;
  gap: 6px;
  width: max-content;
  display: flex;
}

.pill-nav-container[data-initial-load="pending"] .pill-logo {
  transform: scale(0);
}

.pill-nav-container[data-initial-load="pending"] .pill-nav-items {
  width: 0;
  overflow: hidden;
}

.pill-logo {
  background: rgba(5, 5, 6, 0.68);
  width: 48px;
  height: 48px;
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  padding: 5px;
  text-decoration: none;
  display: inline-flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.58), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pill-logo::before {
  content: "";
  opacity: var(--noise-opacity);
  pointer-events: none;
  z-index: 2;
  background-image: var(--nav-noise);
  background-size: 180px 180px;
  border-radius: 50%;
  position: absolute;
  inset: 0;
}

.pill-logo img {
  object-fit: contain;
  z-index: 1;
  image-rendering: auto;
  width: 38px;
  height: 38px;
  display: block;
  position: relative;
}

.pill-nav-items {
  height: var(--nav-h);
  background: rgba(5, 5, 6, 0.68);
  -webkit-backdrop-filter: blur(28px) saturate(1) brightness(0.72);
  backdrop-filter: blur(28px) saturate(1) brightness(0.72);
  border: 1px solid var(--glass-border);
  border-radius: 9999px;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.58), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pill-nav-items::after {
  content: "";
  opacity: var(--noise-opacity);
  pointer-events: none;
  z-index: 10;
  background-image: var(--nav-noise);
  background-size: 180px 180px;
  border-radius: 9999px;
  position: absolute;
  inset: 0;
}

.glass-surface {
  isolation: isolate;
  position: relative;
  overflow: hidden;
  transition: opacity 0.26s ease-out;
}

.glass-surface__filter {
  width: 100%;
  height: 100%;
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: -1;
}

.pill-nav .glass-surface {
  background: rgba(5, 5, 6, 0.68);
  -webkit-backdrop-filter: blur(28px) saturate(var(--glass-saturation, 1)) brightness(0.72);
  backdrop-filter: blur(28px) saturate(var(--glass-saturation, 1)) brightness(0.72);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 0 1px 0.5px rgba(255, 255, 255, 0.11),
    inset 0 0 5px 2px rgba(255, 255, 255, 0.025),
    0 8px 32px rgba(0, 0, 0, 0.5);
}

.pill-nav .glass-surface--svg {
  background: rgba(5, 5, 6, 0.68);
  -webkit-backdrop-filter: var(--filter-id, blur(28px)) saturate(var(--glass-saturation, 1)) brightness(0.72);
  backdrop-filter: var(--filter-id, blur(28px)) saturate(var(--glass-saturation, 1)) brightness(0.72);
}

.pill-nav .glass-surface--fallback {
  background: rgba(5, 5, 6, 0.72);
  -webkit-backdrop-filter: blur(28px) saturate(1) brightness(0.72);
  backdrop-filter: blur(28px) saturate(1) brightness(0.72);
}

.lob-product-card.glass-surface,
.lob-product-detail-card.glass-surface {
  background: rgba(5, 5, 6, 0.68);
  -webkit-backdrop-filter: blur(28px) saturate(var(--glass-saturation, 1)) brightness(0.72);
  backdrop-filter: blur(28px) saturate(var(--glass-saturation, 1)) brightness(0.72);
  border-color: var(--lob-th-border, rgba(255, 152, 251, 0.12));
  box-shadow:
    inset 0 0 1px 0.5px rgba(255, 255, 255, 0.11),
    inset 0 0 5px 2px rgba(255, 255, 255, 0.025),
    0 0 38px var(--lob-th-glow, rgba(255, 0, 246, 0.16)),
    0 12px 40px rgba(0, 0, 0, 0.45);
}

.lob-product-card.glass-surface--svg,
.lob-product-detail-card.glass-surface--svg {
  background: rgba(5, 5, 6, 0.68);
  -webkit-backdrop-filter: var(--filter-id, blur(28px)) saturate(var(--glass-saturation, 1)) brightness(0.72);
  backdrop-filter: var(--filter-id, blur(28px)) saturate(var(--glass-saturation, 1)) brightness(0.72);
}

.lob-product-card.glass-surface--fallback,
.lob-product-detail-card.glass-surface--fallback {
  background: rgba(5, 5, 6, 0.72);
  -webkit-backdrop-filter: blur(28px) saturate(1) brightness(0.72);
  backdrop-filter: blur(28px) saturate(1) brightness(0.72);
}

.pill-list {
  align-items: stretch;
  gap: var(--pill-gap);
  z-index: 1;
  height: 100%;
  margin: 0;
  padding: 3px;
  list-style: none;
  display: flex;
  position: relative;
}

.pill-list > li {
  height: 100%;
  display: flex;
}

.pill {
  height: 100%;
  padding: 0 var(--pill-pad-x);
  color: var(--pill-text, #fefefe);
  box-sizing: border-box;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 9999px;
  justify-content: center;
  align-items: center;
  font-family: var(--lobnho-font-body);
  font-size: 13px;
  font-weight: 600;
  line-height: 0;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

.pill:hover {
  background: rgba(255, 255, 255, 0.07);
}

.pill .hover-circle {
  z-index: 1;
  pointer-events: none;
  will-change: transform;
  background: var(--lobnho-pink);
  border-radius: 50%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.pill .label-stack {
  z-index: 2;
  line-height: 1;
  display: inline-block;
  position: relative;
}

.pill .pill-label {
  z-index: 2;
  will-change: transform;
  line-height: 1;
  display: inline-block;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.pill .pill-label-hover {
  color: var(--hover-text, #0a0a0a);
  z-index: 3;
  will-change: transform, opacity;
  line-height: 1;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.pill.is-hovering .hover-circle {
  transform: translateX(-50%) scale(1.2) !important;
}

.pill.is-hovering .pill-label {
  transform: translateY(calc(-1 * (var(--pill-h) + 8px))) !important;
}

.pill.is-hovering .pill-label-hover {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.pill.is-active {
  background: rgba(255, 0, 246, 0.18);
}

.pill.is-active::after {
  content: "";
  z-index: 4;
  background: var(--lobnho-pink);
  border-radius: 50px;
  width: 12px;
  height: 12px;
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
}

.pill--accent {
  color: #fefefe !important;
  background: rgba(255, 0, 246, 0.22);
  border: 1px solid rgba(255, 0, 246, 0.45);
}

.pill--accent .hover-circle {
  background: var(--lobnho-pink-soft);
}

.pill--accent .pill-label-hover {
  color: #0a0a0a;
}

.pill--accent:hover {
  background: rgba(255, 0, 246, 0.34);
  border-color: rgba(255, 152, 251, 0.72);
}

.pill--app {
  color: rgba(255, 255, 255, 0.9) !important;
  background: linear-gradient(180deg, rgba(35, 35, 39, 0.72), rgba(6, 6, 8, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pill--app .hover-circle {
  background: #d9d9df;
}

.pill--app .pill-label,
.pill--app .pill-label-hover {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pill--app .pill-label-hover {
  color: #050506;
}

.pill--app:hover {
  background: linear-gradient(180deg, rgba(55, 55, 60, 0.78), rgba(12, 12, 14, 0.82));
  border-color: rgba(255, 255, 255, 0.22);
}

.pill-app-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex: 0 0 18px;
  display: inline-block;
  vertical-align: middle;
}

.pill--app .pill-app-icon {
  margin-right: 6px;
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

.gl-cart-btn,
.gl-lang-btn,
.mobile-menu-button {
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
  color: rgba(254, 254, 254, 0.86);
  cursor: pointer;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.gl-cart-btn {
  border-radius: 9999px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
  display: flex;
  position: relative;
  overflow: visible;
}

.gl-cart-btn:hover {
  color: #fefefe;
  background: rgba(34, 8, 34, 0.72);
  border-color: rgba(255, 0, 246, 0.45);
}

.gl-cart-btn--pulse {
  animation: gl-cart-pulse 0.55s;
}

@keyframes gl-cart-pulse {
  0% { transform: scale(1); }
  40% {
    border-color: rgba(255, 152, 251, 0.7);
    transform: scale(1.12);
  }
  100% { transform: scale(1); }
}

.gl-cart-icon {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 2;
}

.gl-cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 19px;
  height: 19px;
  padding: 0 6px;
  box-sizing: border-box;
  border-radius: 999px;
  background: #ff00f6;
  border: 2px solid #0a0a0f;
  color: #fff;
  font: 800 11px/1 var(--lobnho-font-body);
  text-align: center;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px rgba(255, 152, 251, 0.55), 0 0 10px rgba(255, 0, 246, 0.7);
  pointer-events: none;
}

.gl-lang-wrap {
  flex-shrink: 0;
  position: relative;
}

.gl-lang-btn {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 9999px;
  align-items: center;
  gap: 6px;
  height: 44px;
  padding: 0 12px;
  font-family: var(--lobnho-font-body);
  font-size: 12px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  display: flex;
}

.gl-lang-btn:hover,
.gl-lang-btn[aria-expanded="true"] {
  color: #fefefe;
  background: rgba(34, 8, 34, 0.72);
  border-color: rgba(255, 0, 246, 0.45);
}

.gl-lang-flag {
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
  width: 20px;
  height: 14px;
}

.gl-lang-code {
  font-size: 11px;
}

.gl-lang-chevron {
  opacity: 0.6;
  flex-shrink: 0;
  width: 10px;
  height: 6px;
  transition: transform 0.2s;
}

.gl-lang-chevron.is-open {
  transform: rotate(180deg);
}

.gl-lang-menu {
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  backdrop-filter: blur(24px) saturate(1.4);
  z-index: 1000;
  background: rgba(12, 12, 12, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  flex-direction: column;
  gap: 2px;
  min-width: 120px;
  padding: 6px;
  animation: gl-lang-drop 0.15s both;
  display: flex;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.gl-lang-menu[hidden] {
  display: none !important;
}

@keyframes gl-lang-drop {
  0% {
    opacity: 0;
    transform: translateY(-6px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.gl-lang-option {
  color: rgba(254, 254, 254, 0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: left;
  background: transparent;
  border: none;
  border-radius: 9px;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 7px 10px;
  font-family: var(--lobnho-font-body);
  font-size: 12px;
  font-weight: 600;
  transition: background 0.15s, color 0.15s;
  display: flex;
}

.gl-lang-option:hover {
  color: #fefefe;
  background: rgba(255, 255, 255, 0.07);
}

.gl-lang-option.is-active {
  color: #fefefe;
  background: rgba(255, 0, 246, 0.25);
}

.mobile-menu-button {
  width: var(--nav-h);
  height: var(--nav-h);
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 0;
  display: none;
}

.hamburger-line {
  transform-origin: 50%;
  background: #fefefe;
  border-radius: 1px;
  width: 16px;
  height: 2px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu-popover {
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--glass-border);
  z-index: 998;
  opacity: 0;
  transform-origin: top;
  visibility: hidden;
  background: rgba(10, 10, 10, 0.7);
  border-radius: 20px;
  position: absolute;
  top: 3.2em;
  left: 0;
  right: 0;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.mobile-menu-popover::after {
  content: "";
  opacity: var(--noise-opacity);
  pointer-events: none;
  z-index: 10;
  background-image: var(--nav-noise);
  background-size: 180px 180px;
  position: absolute;
  inset: 0;
}

.mobile-menu-list {
  z-index: 1;
  flex-direction: column;
  gap: 3px;
  margin: 0;
  padding: 6px;
  list-style: none;
  display: flex;
  position: relative;
}

.mobile-menu-popover .mobile-menu-link {
  color: #fefefe;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  padding: 12px 18px;
  font-family: var(--lobnho-font-body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  display: block;
}

.mobile-menu-popover .mobile-menu-link:hover,
.mobile-menu-popover .mobile-menu-link.is-active {
  color: #fefefe;
  background: rgba(255, 0, 246, 0.25);
}

.mobile-menu-link--accent {
  border: 1px solid rgba(255, 0, 246, 0.45);
  background: rgba(255, 0, 246, 0.22) !important;
}

.mobile-menu-link--app {
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(35, 35, 39, 0.72), rgba(6, 6, 8, 0.72)) !important;
}

@media (max-width: 768px) {
  .pill-nav-container {
    width: calc(100% - 2rem);
    left: 1rem;
    transform: none;
  }

  .pill-nav {
    justify-content: space-between;
    width: 100%;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .mobile-menu-button {
    display: flex;
  }

  .gl-lang-code,
  .gl-lang-chevron {
    display: none;
  }

  .gl-lang-btn {
    gap: 4px;
    padding: 0 10px;
  }
}

/* Lobnho Store/Admin */
.lob-route {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100vh;
  padding: 112px 24px 64px;
  box-sizing: border-box;
}

.lob-section-heading {
  width: min(1180px, 100%);
  margin: 0 auto 22px;
  text-align: center;
}

.lob-section-heading span,
.lob-admin-topbar span {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--lobnho-pink-soft);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.lob-section-heading h1,
.lob-admin-topbar h1 {
  margin: 0;
  font-family: var(--lobnho-font-logo);
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
}

.lob-products {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.lob-products-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 14px;
  align-items: end;
  margin-bottom: 24px;
}

.lob-search,
.lob-admin-form label,
.lob-admin-form .lob-admin-field {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lob-admin-field__label { color: rgba(255, 255, 255, 0.72); }

.lob-search input,
.lob-admin-form input,
.lob-admin-form textarea,
.lob-admin-form select {
  width: 100%;
  min-height: 42px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(6, 6, 8, 0.72);
  color: #ffffff;
  font: 600 14px/1.4 var(--lobnho-font-body);
  outline: none;
  padding: 0 13px;
}

.lob-admin-form textarea {
  min-height: 112px;
  padding: 12px 13px;
  resize: vertical;
}

.lob-search input:focus,
.lob-admin-form input:focus,
.lob-admin-form textarea:focus,
.lob-admin-form select:focus {
  border-color: rgba(255, 0, 246, 0.65);
  box-shadow: 0 0 0 3px rgba(255, 0, 246, 0.14);
}

.lob-category-row,

/* ===== THEME VARIABLES — DEFAULTS (rose) ===== */
:root {
  --lob-th-primary: #ff00f6;
  --lob-th-primary-light: #ff98fb;
  --lob-th-primary-dark: #cc00cc;
  --lob-th-border: rgba(255, 152, 251, 0.12);
  --lob-th-glow: rgba(255, 0, 246, 0.16);
  --lob-th-btn-bg: rgba(255, 0, 246, 0.18);
  --lob-th-btn-border: rgba(255, 0, 246, 0.34);
  --lob-th-btn-hover-bg: rgba(255, 0, 246, 0.24);
  --lob-th-btn-hover-border: rgba(255, 0, 246, 0.48);
  --lob-th-btn-shadow: rgba(255, 0, 246, 0.14);
  --lob-th-btn-active-shadow: rgba(255, 0, 246, 0.1);
  --lob-th-buy1: #ff00f6;
  --lob-th-buy2: #cc00cc;
  --lob-th-buy-h1: #ff22f7;
  --lob-th-buy-h2: #df17d6;
  --lob-th-buy-a1: #ee00e5;
  --lob-th-buy-a2: #c100ba;
  --lob-th-buy-hover-border: rgba(255, 120, 246, 0.64);
  --lob-th-buy-hover-shadow: rgba(255, 0, 246, 0.22);
  --lob-th-tag-hover-border: rgba(255, 0, 246, 0.55);
  --lob-th-tag-hover-bg: rgba(255, 0, 246, 0.2);
  --lob-th-back-hover-border: rgba(255, 0, 246, 0.5);
}

.lob-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lob-chip,
.lob-tag-row button {
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font: 700 12px/1 var(--lobnho-font-body);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0 14px;
}

.lob-chip.is-active,
.lob-chip:hover,
.lob-tag-row button:hover {
  border-color: var(--lob-th-tag-hover-border);
  background: var(--lob-th-tag-hover-bg);
  color: #ffffff;
}

.lob-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.lob-admin-form,
.lob-admin-list,
.lob-admin-login-card,
.lob-login-card {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(5, 5, 6, 0.68);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(22px) saturate(1.12);
  -webkit-backdrop-filter: blur(22px) saturate(1.12);
}

.lob-product-card {
  /* === THEME VARIABLES (default = rose) === */
  --lob-th-primary: #ff00f6;
  --lob-th-primary-light: #ff98fb;
  --lob-th-primary-dark: #cc00cc;
  --lob-th-border: rgba(255, 152, 251, 0.12);
  --lob-th-glow: rgba(255, 0, 246, 0.16);
  --lob-th-btn-bg: rgba(255, 0, 246, 0.18);
  --lob-th-btn-border: rgba(255, 0, 246, 0.34);
  --lob-th-btn-hover-bg: rgba(255, 0, 246, 0.24);
  --lob-th-btn-hover-border: rgba(255, 0, 246, 0.48);
  --lob-th-btn-shadow: rgba(255, 0, 246, 0.14);
  --lob-th-btn-active-shadow: rgba(255, 0, 246, 0.1);
  --lob-th-buy1: #ff00f6;
  --lob-th-buy2: #cc00cc;
  --lob-th-buy-h1: #ff22f7;
  --lob-th-buy-h2: #df17d6;
  --lob-th-buy-a1: #ee00e5;
  --lob-th-buy-a2: #c100ba;
  --lob-th-buy-hover-border: rgba(255, 120, 246, 0.64);
  --lob-th-buy-hover-shadow: rgba(255, 0, 246, 0.22);
  --lob-th-tag-hover-border: rgba(255, 0, 246, 0.55);
  --lob-th-tag-hover-bg: rgba(255, 0, 246, 0.2);
  --lob-th-back-hover-border: rgba(255, 0, 246, 0.5);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  border: 1px solid var(--lob-th-border);
  border-radius: 20px;
  background: rgba(5, 5, 6, 0.68);
  -webkit-backdrop-filter: blur(28px) saturate(1) brightness(0.72);
  backdrop-filter: blur(28px) saturate(1) brightness(0.72);
  box-shadow:
    inset 0 0 1px 0.5px rgba(255, 255, 255, 0.11),
    inset 0 0 5px 2px rgba(255, 255, 255, 0.025),
    0 12px 40px rgba(0, 0, 0, 0.45);
}

.lob-product-media {
  position: relative;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.lob-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lob-product-media span:not(.lob-status) {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 700;
}

.lob-status {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 0 10px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.14);
}

.lob-product-media .lob-status {
  position: absolute;
  top: 12px;
  left: 12px;
}

.lob-product-media a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.lob-product-media-hover {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  background: rgba(5, 5, 7, 0.14);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease-out;
}

.lob-product-media-hover-icon {
  width: min(34%, 132px) !important;
  height: min(34%, 132px) !important;
  object-fit: contain !important;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.46));
  transform: scale(0.92);
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.lob-product-media a:hover .lob-product-media-hover,
.lob-product-media a:focus-visible .lob-product-media-hover {
  opacity: 1;
}

.lob-product-media a:hover .lob-product-media-hover-icon,
.lob-product-media a:focus-visible .lob-product-media-hover-icon {
  transform: scale(1);
}

.lob-product-media .lob-status {
  z-index: 2;
}

.lob-product-title-link,
.lob-product-title-link:visited {
  color: inherit;
  text-decoration: none;
}

.lob-product-title-link:hover,
.lob-product-title-link:focus-visible {
  color: var(--lob-th-primary-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lob-product-duration,
.lob-stock-duration {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  margin: 6px 0;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  font-size: 0.8rem;
}
.lob-product-duration span,
.lob-stock-duration span {
  color: var(--lobnho-text-muted);
  white-space: nowrap;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.7rem;
}
.lob-product-duration select,
.lob-stock-duration select {
  flex: 1;
  min-width: 90px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(6,6,8,0.7);
  color: #fff;
  padding: 5px 8px;
  font: 500 0.8rem var(--lobnho-font-body);
  cursor: pointer;
  outline: none;
  transition: border-color 0.15s;
  appearance: auto;
}
.lob-product-duration select:hover,
.lob-stock-duration select:hover {
  border-color: rgba(255,0,246,0.3);
}
.lob-product-duration select:focus,
.lob-stock-duration select:focus {
  border-color: var(--lobnho-accent);
}

.lob-admin-form label.lob-inline-check {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  color: var(--lobnho-text-muted);
  font-size: 0.95rem;
}

.lob-inline-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--lobnho-accent);
}

.lob-duration-options {
  display: none;
  margin-left: 24px;
}
.lob-duration-options.lob-visible {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lob-duration-options select {
  background: rgba(6,6,8,0.72);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  color: #fff;
  font: 500 12px var(--lobnho-font-body);
  padding: 4px 8px;
  outline: none;
}

/* ===== PRODUCT THEME PRESETS ===== */

/* RED */
.lob-product-card.theme-red,
.lob-product-detail-card.theme-red {
  --lob-th-primary: #ff2727;
  --lob-th-primary-light: #ff7070;
  --lob-th-primary-dark: #cc0000;
  --lob-th-border: rgba(255, 39, 39, 0.15);
  --lob-th-glow: rgba(255, 39, 39, 0.16);
  --lob-th-btn-bg: rgba(255, 39, 39, 0.18);
  --lob-th-btn-border: rgba(255, 39, 39, 0.34);
  --lob-th-btn-hover-bg: rgba(255, 39, 39, 0.24);
  --lob-th-btn-hover-border: rgba(255, 39, 39, 0.48);
  --lob-th-btn-shadow: rgba(255, 39, 39, 0.14);
  --lob-th-btn-active-shadow: rgba(255, 39, 39, 0.1);
  --lob-th-buy1: #ff2727;
  --lob-th-buy2: #cc0000;
  --lob-th-buy-h1: #ff5050;
  --lob-th-buy-h2: #dd1111;
  --lob-th-buy-a1: #ee1111;
  --lob-th-buy-a2: #bb0000;
  --lob-th-buy-hover-border: rgba(255, 80, 80, 0.64);
  --lob-th-buy-hover-shadow: rgba(255, 39, 39, 0.22);
  --lob-th-tag-hover-border: rgba(255, 39, 39, 0.55);
  --lob-th-tag-hover-bg: rgba(255, 39, 39, 0.2);
  --lob-th-back-hover-border: rgba(255, 39, 39, 0.5);
}

/* BLUE */
.lob-product-card.theme-blue,
.lob-product-detail-card.theme-blue {
  --lob-th-primary: #0078ff;
  --lob-th-primary-light: #60a5fa;
  --lob-th-primary-dark: #0055cc;
  --lob-th-border: rgba(0, 120, 255, 0.15);
  --lob-th-glow: rgba(0, 120, 255, 0.16);
  --lob-th-btn-bg: rgba(0, 120, 255, 0.18);
  --lob-th-btn-border: rgba(0, 120, 255, 0.34);
  --lob-th-btn-hover-bg: rgba(0, 120, 255, 0.24);
  --lob-th-btn-hover-border: rgba(0, 120, 255, 0.48);
  --lob-th-btn-shadow: rgba(0, 120, 255, 0.14);
  --lob-th-btn-active-shadow: rgba(0, 120, 255, 0.1);
  --lob-th-buy1: #0078ff;
  --lob-th-buy2: #0055cc;
  --lob-th-buy-h1: #2288ff;
  --lob-th-buy-h2: #1166dd;
  --lob-th-buy-a1: #0066ee;
  --lob-th-buy-a2: #0044bb;
  --lob-th-buy-hover-border: rgba(34, 136, 255, 0.64);
  --lob-th-buy-hover-shadow: rgba(0, 120, 255, 0.22);
  --lob-th-tag-hover-border: rgba(0, 120, 255, 0.55);
  --lob-th-tag-hover-bg: rgba(0, 120, 255, 0.2);
  --lob-th-back-hover-border: rgba(0, 120, 255, 0.5);
}

/* YELLOW */
.lob-product-card.theme-yellow,
.lob-product-detail-card.theme-yellow {
  --lob-th-primary: #fffc24;
  --lob-th-primary-light: #fffdb3;
  --lob-th-primary-dark: #cccc00;
  --lob-th-border: rgba(255, 252, 36, 0.15);
  --lob-th-glow: rgba(255, 252, 36, 0.16);
  --lob-th-btn-bg: rgba(255, 252, 36, 0.18);
  --lob-th-btn-border: rgba(255, 252, 36, 0.34);
  --lob-th-btn-hover-bg: rgba(255, 252, 36, 0.24);
  --lob-th-btn-hover-border: rgba(255, 252, 36, 0.48);
  --lob-th-btn-shadow: rgba(255, 252, 36, 0.14);
  --lob-th-btn-active-shadow: rgba(255, 252, 36, 0.1);
  --lob-th-buy1: #fffc24;
  --lob-th-buy2: #cccc00;
  --lob-th-buy-h1: #fffd55;
  --lob-th-buy-h2: #dddd11;
  --lob-th-buy-a1: #eeee11;
  --lob-th-buy-a2: #bbbb00;
  --lob-th-buy-hover-border: rgba(255, 253, 85, 0.64);
  --lob-th-buy-hover-shadow: rgba(255, 252, 36, 0.22);
  --lob-th-tag-hover-border: rgba(255, 252, 36, 0.55);
  --lob-th-tag-hover-bg: rgba(255, 252, 36, 0.2);
  --lob-th-back-hover-border: rgba(255, 252, 36, 0.5);
}

/* GREEN */
.lob-product-card.theme-green,
.lob-product-detail-card.theme-green {
  --lob-th-primary: #00ff12;
  --lob-th-primary-light: #6aff7a;
  --lob-th-primary-dark: #00cc0e;
  --lob-th-border: rgba(0, 255, 18, 0.15);
  --lob-th-glow: rgba(0, 255, 18, 0.16);
  --lob-th-btn-bg: rgba(0, 255, 18, 0.18);
  --lob-th-btn-border: rgba(0, 255, 18, 0.34);
  --lob-th-btn-hover-bg: rgba(0, 255, 18, 0.24);
  --lob-th-btn-hover-border: rgba(0, 255, 18, 0.48);
  --lob-th-btn-shadow: rgba(0, 255, 18, 0.14);
  --lob-th-btn-active-shadow: rgba(0, 255, 18, 0.1);
  --lob-th-buy1: #00ff12;
  --lob-th-buy2: #00cc0e;
  --lob-th-buy-h1: #33ff44;
  --lob-th-buy-h2: #11dd22;
  --lob-th-buy-a1: #00ee11;
  --lob-th-buy-a2: #00bb0c;
  --lob-th-buy-hover-border: rgba(51, 255, 68, 0.64);
  --lob-th-buy-hover-shadow: rgba(0, 255, 18, 0.22);
  --lob-th-tag-hover-border: rgba(0, 255, 18, 0.55);
  --lob-th-tag-hover-bg: rgba(0, 255, 18, 0.2);
  --lob-th-back-hover-border: rgba(0, 255, 18, 0.5);
}

/* PURPLE */
.lob-product-card.theme-purple,
.lob-product-detail-card.theme-purple {
  --lob-th-primary: #a855f7;
  --lob-th-primary-light: #c084fc;
  --lob-th-primary-dark: #7c3aed;
  --lob-th-border: rgba(168, 85, 247, 0.15);
  --lob-th-glow: rgba(168, 85, 247, 0.16);
  --lob-th-btn-bg: rgba(168, 85, 247, 0.18);
  --lob-th-btn-border: rgba(168, 85, 247, 0.34);
  --lob-th-btn-hover-bg: rgba(168, 85, 247, 0.24);
  --lob-th-btn-hover-border: rgba(168, 85, 247, 0.48);
  --lob-th-btn-shadow: rgba(168, 85, 247, 0.14);
  --lob-th-btn-active-shadow: rgba(168, 85, 247, 0.1);
  --lob-th-buy1: #a855f7;
  --lob-th-buy2: #7c3aed;
  --lob-th-buy-h1: #b877f8;
  --lob-th-buy-h2: #8b5cf6;
  --lob-th-buy-a1: #9333ea;
  --lob-th-buy-a2: #6d28d9;
  --lob-th-buy-hover-border: rgba(184, 119, 248, 0.64);
  --lob-th-buy-hover-shadow: rgba(168, 85, 247, 0.22);
  --lob-th-tag-hover-border: rgba(168, 85, 247, 0.55);
  --lob-th-tag-hover-bg: rgba(168, 85, 247, 0.2);
  --lob-th-back-hover-border: rgba(168, 85, 247, 0.5);
}

/* ORANGE */
.lob-product-card.theme-orange,
.lob-product-detail-card.theme-orange {
  --lob-th-primary: #f97316;
  --lob-th-primary-light: #fb923c;
  --lob-th-primary-dark: #ea580c;
  --lob-th-border: rgba(249, 115, 22, 0.15);
  --lob-th-glow: rgba(249, 115, 22, 0.16);
  --lob-th-btn-bg: rgba(249, 115, 22, 0.18);
  --lob-th-btn-border: rgba(249, 115, 22, 0.34);
  --lob-th-btn-hover-bg: rgba(249, 115, 22, 0.24);
  --lob-th-btn-hover-border: rgba(249, 115, 22, 0.48);
  --lob-th-btn-shadow: rgba(249, 115, 22, 0.14);
  --lob-th-btn-active-shadow: rgba(249, 115, 22, 0.1);
  --lob-th-buy1: #f97316;
  --lob-th-buy2: #ea580c;
  --lob-th-buy-h1: #fb923c;
  --lob-th-buy-h2: #f97316;
  --lob-th-buy-a1: #ea580c;
  --lob-th-buy-a2: #c2410c;
  --lob-th-buy-hover-border: rgba(251, 146, 60, 0.64);
  --lob-th-buy-hover-shadow: rgba(249, 115, 22, 0.22);
  --lob-th-tag-hover-border: rgba(249, 115, 22, 0.55);
  --lob-th-tag-hover-bg: rgba(249, 115, 22, 0.2);
  --lob-th-back-hover-border: rgba(249, 115, 22, 0.5);
}

/* CYAN */
.lob-product-card.theme-cyan,
.lob-product-detail-card.theme-cyan {
  --lob-th-primary: #06b6d4;
  --lob-th-primary-light: #22d3ee;
  --lob-th-primary-dark: #0891b2;
  --lob-th-border: rgba(6, 182, 212, 0.15);
  --lob-th-glow: rgba(6, 182, 212, 0.16);
  --lob-th-btn-bg: rgba(6, 182, 212, 0.18);
  --lob-th-btn-border: rgba(6, 182, 212, 0.34);
  --lob-th-btn-hover-bg: rgba(6, 182, 212, 0.24);
  --lob-th-btn-hover-border: rgba(6, 182, 212, 0.48);
  --lob-th-btn-shadow: rgba(6, 182, 212, 0.14);
  --lob-th-btn-active-shadow: rgba(6, 182, 212, 0.1);
  --lob-th-buy1: #06b6d4;
  --lob-th-buy2: #0891b2;
  --lob-th-buy-h1: #22d3ee;
  --lob-th-buy-h2: #0ea5e9;
  --lob-th-buy-a1: #0e7490;
  --lob-th-buy-a2: #155e75;
  --lob-th-buy-hover-border: rgba(34, 211, 238, 0.64);
  --lob-th-buy-hover-shadow: rgba(6, 182, 212, 0.22);
  --lob-th-tag-hover-border: rgba(6, 182, 212, 0.55);
  --lob-th-tag-hover-bg: rgba(6, 182, 212, 0.2);
  --lob-th-back-hover-border: rgba(6, 182, 212, 0.5);
}

.lob-status--active {
  background: rgba(0, 255, 18, 0.2);
  color: #caffce;
}

.lob-status--paused {
  background: rgba(255, 252, 36, 0.16);
  color: #fffdb3;
}

.lob-status--coming_soon {
  background: rgba(0, 120, 255, 0.24);
  color: #c7e1ff;
}

.lob-status--discontinued {
  background: rgba(255, 39, 39, 0.22);
  color: #ffd0d0;
}

.lob-product-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  flex: 1;
  padding: 16px;
}

.lob-product-body h2,
.lob-admin-row h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0;
}

.lob-product-body p,
.lob-admin-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.55;
}

.lob-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lob-product-footer strong {
  display: block;
  color: #ffffff;
  font-size: 19px;
}

.lob-product-footer small {
  color: rgba(255, 255, 255, 0.48);
  font-weight: 700;
}

.lob-product-detail {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 128px 24px 72px;
}

.lob-product-back {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-bottom: 16px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.45);
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lob-product-back:hover {
  border-color: var(--lob-th-back-hover-border);
  color: #ffffff;
}

.lob-product-detail-card {
  /* === THEME VARIABLES (default = rose) === */
  --lob-th-primary: #ff00f6;
  --lob-th-primary-light: #ff98fb;
  --lob-th-primary-dark: #cc00cc;
  --lob-th-border: rgba(255, 152, 251, 0.12);
  --lob-th-glow: rgba(255, 0, 246, 0.16);
  --lob-th-btn-bg: rgba(255, 0, 246, 0.18);
  --lob-th-btn-border: rgba(255, 0, 246, 0.34);
  --lob-th-btn-hover-bg: rgba(255, 0, 246, 0.24);
  --lob-th-btn-hover-border: rgba(255, 0, 246, 0.48);
  --lob-th-btn-shadow: rgba(255, 0, 246, 0.14);
  --lob-th-btn-active-shadow: rgba(255, 0, 246, 0.1);
  --lob-th-buy1: #ff00f6;
  --lob-th-buy2: #cc00cc;
  --lob-th-buy-h1: #ff22f7;
  --lob-th-buy-h2: #df17d6;
  --lob-th-buy-a1: #ee00e5;
  --lob-th-buy-a2: #c100ba;
  --lob-th-buy-hover-border: rgba(255, 120, 246, 0.64);
  --lob-th-buy-hover-shadow: rgba(255, 0, 246, 0.22);
  --lob-th-tag-hover-border: rgba(255, 0, 246, 0.55);
  --lob-th-tag-hover-bg: rgba(255, 0, 246, 0.2);
  --lob-th-back-hover-border: rgba(255, 0, 246, 0.5);
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
  gap: 26px;
  padding: 18px;
  border: 1px solid var(--lob-th-border);
  border-radius: 20px;
  background: rgba(5, 5, 6, 0.68);
  -webkit-backdrop-filter: blur(28px) saturate(1) brightness(0.72);
  backdrop-filter: blur(28px) saturate(1) brightness(0.72);
  box-shadow:
    inset 0 0 1px 0.5px rgba(255, 255, 255, 0.11),
    inset 0 0 5px 2px rgba(255, 255, 255, 0.025),
    0 12px 40px rgba(0, 0, 0, 0.45);
}

.lob-product-detail-media {
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 6px;
}

.lob-product-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.lob-product-detail-media span {
  color: rgba(255, 255, 255, 0.48);
  font-weight: 800;
}

.lob-product-detail-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 10px 6px 8px;
}

.lob-product-detail-body h1 {
  margin: 16px 0 12px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: 0;
}

.lob-product-detail-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.65;
}

.lob-product-detail-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.lob-product-detail-footer strong {
  display: block;
  font-size: 26px;
}

.lob-product-detail-footer small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  font-weight: 800;
}

.lob-action-btn,
.lob-admin-topbar button,
.lob-admin-actions button,
.lob-row-actions button,
.lob-admin-sidebar button {
  min-height: 38px;
  border: 1px solid var(--lob-th-btn-border);
  border-radius: 8px;
  background: var(--lob-th-btn-bg);
  color: #ffffff;
  cursor: pointer;
  font: 800 12px/1 var(--lobnho-font-body);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0 14px;
  transition:
    transform 0.14s ease,
    border-color 0.14s ease,
    background 0.14s ease,
    box-shadow 0.14s ease,
    color 0.14s ease;
}

.lob-action-btn:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.lob-product-btns .lob-action-btn:not(:disabled):hover {
  transform: translateY(-1px);
  border-color: var(--lob-th-btn-hover-border);
  background: var(--lob-th-btn-hover-bg);
  box-shadow: 0 10px 24px var(--lob-th-btn-shadow);
}

.lob-product-btns .lob-action-btn:not(:disabled):active {
  transform: translateY(0) scale(0.985);
  box-shadow: 0 4px 12px var(--lob-th-btn-active-shadow);
}

.lob-product-btns {
  display: flex;
  gap: 8px;
}

.lob-buy-btn {
  background: linear-gradient(135deg, var(--lob-th-buy1), var(--lob-th-buy2));
  border-color: var(--lob-th-btn-border);
  font-weight: 800;
}

.lob-product-btns .lob-buy-btn:not(:disabled):hover {
  background: linear-gradient(135deg, var(--lob-th-buy-h1), var(--lob-th-buy-h2));
  border-color: var(--lob-th-buy-hover-border);
  box-shadow: 0 12px 26px var(--lob-th-buy-hover-shadow);
}

.lob-product-btns .lob-buy-btn:not(:disabled):active {
  background: linear-gradient(135deg, var(--lob-th-buy-a1), var(--lob-th-buy-a2));
}

.lob-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
}

.lob-admin-login,
.lob-login {
  min-height: calc(100vh - 176px);
  display: grid;
  place-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.lob-admin-login-card,
.lob-login-card {
  width: min(400px, 100%);
  display: grid;
  gap: 16px;
  padding: 32px 28px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(8, 8, 10, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.lob-login-head {
  text-align: center;
  display: grid;
  gap: 8px;
  justify-items: center;
  margin-bottom: 4px;
}

.lob-login-head img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.lob-login-head h1 {
  margin: 0;
  font-family: var(--lobnho-font-logo);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.lob-login-field {
  display: grid;
  gap: 6px;
}

.lob-login-field label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
}

.lob-login-field input {
  width: 100%;
  min-height: 44px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.45);
  color: #ffffff;
  font: 500 14px/1.4 var(--lobnho-font-body);
  padding: 0 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.lob-login-field input:focus {
  border-color: var(--lob-th-back-hover-border);
  box-shadow: 0 0 0 3px rgba(255, 0, 246, 0.1);
}

.lob-login-remember {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 9px;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.lob-login-remember input[type="checkbox"] {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--lobnho-accent);
}

.lob-admin-shell {
  width: 100%;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 24px;
}

.lob-admin-sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  background: rgba(5, 5, 6, 0.72);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.lob-admin-user {
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 4px;
}

.lob-admin-user strong,
.lob-admin-user span {
  display: block;
}

.lob-admin-user span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  text-transform: uppercase;
}

.lob-admin-sidebar button {
  width: 100%;
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.08);
  text-align: left;
}

.lob-admin-sidebar button.is-active {
  background: rgba(255, 0, 246, 0.2);
  border-color: rgba(255, 0, 246, 0.44);
}

.lob-admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.lob-admin-topbar h1 {
  font-size: 42px;
}

.lob-admin-refresh {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.lob-admin-order-search {
  width: min(460px, 100%);
  display: grid;
  gap: 6px;
}

.lob-admin-order-search span {
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lob-admin-order-search input {
  width: 100%;
  min-height: 40px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(5,5,6,0.72);
  color: #fff;
  outline: none;
  padding: 0 16px;
  font: 700 13px/1 var(--lobnho-font-body);
  box-shadow: inset 0 0 0 1px rgba(255,0,246,0.04);
}

.lob-admin-order-search input:focus {
  border-color: rgba(255,0,246,0.55);
  box-shadow: 0 0 0 3px rgba(255,0,246,0.12), inset 0 0 0 1px rgba(255,0,246,0.12);
}

.lob-admin-order-search input::placeholder {
  color: rgba(255,255,255,0.34);
}

.lob-admin-loading {
  min-height: 180px;
  display: grid;
  place-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.55);
}

.lob-admin-loading span,
.lob-btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.22);
  border-top-color: var(--lobnho-pink);
  border-radius: 999px;
  animation: lob-spin 0.75s linear infinite;
}

.lob-admin-loading p {
  margin: 0;
  font-size: 13px;
}

.lob-ban-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  padding: 16px;
}

.lob-ban-modal[hidden] {
  display: none !important;
}

.lob-ban-modal-box {
  width: min(380px, 100%);
  background: rgba(10,10,10,0.96);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 12px;
  padding: 24px;
  display: grid;
  gap: 14px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}

.lob-ban-modal-box h3 {
  margin: 0;
  font-family: var(--lobnho-font-logo);
  font-size: 24px;
  letter-spacing: 0.04em;
}

.lob-ban-modal-box label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.72);
}

.lob-ban-modal-box input {
  min-height: 40px;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 8px;
  background: rgba(6,6,8,0.72);
  color: #fff;
  font: 600 14px/1.4 var(--lobnho-font-body);
  padding: 0 13px;
  outline: none;
}

.lob-ban-modal-actions {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.lob-ban-modal-actions button { flex: 1; }

.lob-ban-btn {
  min-height: 36px;
  border: 1px solid rgba(255,39,39,0.5);
  border-radius: 6px;
  background: rgba(255,39,39,0.2);
  color: #ff8888;
  cursor: pointer;
  font: 700 11px/1 var(--lobnho-font-body);
  text-transform: uppercase;
  padding: 0 12px;
  letter-spacing: 0.04em;
}

.lob-unban-btn {
  border-color: rgba(0,255,18,0.4);
  background: rgba(0,255,18,0.12);
  color: #8fca93;
}

.lob-user-info {
  min-width: 0;
  display: grid;
  gap: 3px;
  align-content: center;
}

.lob-user-name { margin: 0; font-size: 15px; line-height: 1.15; }
.lob-user-meta {
  margin: 0;
  max-width: 100%;
  font-size: 12px;
  line-height: 1.3;
  color: rgba(255,255,255,0.6);
  overflow-wrap: anywhere;
}
.lob-user-status {
  margin: 0;
  font-size: 11px;
  line-height: 1.25;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.lob-user-ban-reason { margin: 2px 0; font-size: 11px; color: #ff7272; }
.lob-user-ips { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 2px; }
.lob-user-ips span { min-width: 0; font-size: 10px; color: rgba(255,255,255,0.35); display: inline-flex; align-items: center; gap: 2px; }

.lob-admin-grid {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: 14px;
}

.lob-admin-form {
  align-self: start;
  display: grid;
  gap: 13px;
  padding: 16px;
}

.lob-form-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.lob-admin-actions,
.lob-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lob-product-row-actions {
  align-items: center;
  justify-content: flex-end;
  min-width: 300px;
}

.lob-product-row-actions .lob-product-admin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  min-height: 38px;
  white-space: nowrap;
}

.lob-product-row-actions .lob-product-admin-btn--danger {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.12);
}

.lob-admin-actions button:nth-child(2),
.lob-row-actions button:nth-child(3),
.lob-admin-sidebar button[data-admin-logout] {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.12);
}

.lob-admin-list {
  display: grid;
  gap: 10px;
  padding: 10px;
}

.lob-admin-row {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 92px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.lob-admin-row img {
  width: 86px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
  background: #050506;
}

.lob-admin-row--user {
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 82px;
  column-gap: 14px;
}

.lob-user-avatar {
  width: 58px;
  height: 58px;
  align-self: center;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  background: rgba(255, 0, 246, 0.22);
  border: 1px solid rgba(255, 0, 246, 0.42);
  overflow: hidden;
  flex: 0 0 auto;
}

.lob-admin-row--user img.lob-user-avatar-img,
.lob-admin-row--user .lob-user-avatar-img {
  width: 58px !important;
  height: 58px !important;
  max-width: 58px;
  min-width: 58px;
  border-radius: 50% !important;
  object-fit: cover;
  display: block;
  align-self: center;
}

.lob-app-notice {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 60;
  transform: translateX(-50%);
  width: min(520px, calc(100vw - 32px));
  margin: 0;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(5, 5, 6, 0.86);
  color: #ffffff;
  text-align: center;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.36);
}

.lob-app-notice[data-type="error"] {
  border-color: rgba(255, 39, 39, 0.52);
}

@media (max-width: 980px) {
  .lob-products-toolbar,
  .lob-admin-grid {
    grid-template-columns: 1fr;
  }

  .lob-admin-topbar {
    align-items: stretch;
    flex-direction: column;
  }

  .lob-admin-order-search {
    width: 100%;
  }

  .lob-admin-shell {
    grid-template-columns: 1fr;
  }

  .lob-admin-shell { grid-template-columns: 1fr; }
  .lob-admin-sidebar {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 10px;
  }
  .lob-admin-sidebar button { flex: 1; min-width: 80px; text-align: center; padding: 0 8px; font-size: 11px; }
  .lob-admin-user { width: 100%; flex: 0 0 100%; }
  .lob-admin-grid { grid-template-columns: 1fr; }
  .lob-admin-row { grid-template-columns: 1fr; gap: 8px; min-height: auto; padding: 10px; }
  .lob-admin-row img { width: 40px; height: 40px; }
  .lob-admin-row--user { grid-template-columns: 48px minmax(0, 1fr); align-items: start; }
  .lob-admin-row--user img.lob-user-avatar-img,
  .lob-admin-row--user .lob-user-avatar-img,
  .lob-admin-row--user .lob-user-avatar { width: 48px !important; height: 48px !important; }
  .lob-row-actions { flex-direction: row; }
  .lob-row-actions button { font-size: 10px; padding: 0 8px; min-height: 30px; }

  .lob-admin-user {
    grid-column: 1 / -1;
  }

  .lob-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lob-product-detail-card {
    grid-template-columns: 1fr;
  }

  .lob-product-detail-media {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .lob-route {
    padding: 104px 14px 48px;
  }

  .lob-section-heading h1 {
    font-size: 42px;
  }

  .lob-product-grid {
    grid-template-columns: 1fr;
  }

  .lob-product-detail {
    padding: 112px 14px 52px;
  }

  .lob-product-detail-card {
    padding: 12px;
    gap: 16px;
  }

  .lob-product-detail-media {
    min-height: 240px;
  }

  .lob-product-detail-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .lob-form-duo {
    grid-template-columns: 1fr;
  }

  .lob-admin-topbar {
    align-items: stretch;
    flex-direction: column;
  }

  .lob-admin-row,
  .lob-admin-row--user {
    grid-template-columns: 1fr;
  }

  .lob-admin-row img {
    width: 100%;
    height: 160px;
  }

  .lob-admin-row--user {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .lob-admin-row--user img.lob-user-avatar-img,
  .lob-admin-row--user .lob-user-avatar-img,
  .lob-admin-row--user .lob-user-avatar {
    width: 48px !important;
    height: 48px !important;
  }
}

/* ── Order Card Expand / Collapse ────────────────────────────────────── */
.lob-order-card .lob-order-body { display: none; }
.lob-order-card.lob-order-expanded .lob-order-body { display: block; }
.lob-order-head strong { font-size: 13px; letter-spacing: 0.02em; }

/* ── Cart Drawer ────────────────────────────────────────────────────── */
.lob-cart-root {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: auto;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.lob-cart-root[hidden] {
  display: none !important;
}

.lob-cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 100vw);
  height: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border-left: 1px solid rgba(255,255,255,0.08);
  box-shadow: -8px 0 40px rgba(0,0,0,0.5);
  animation: lob-cart-slide 0.28s ease both;
}

@keyframes lob-cart-slide {
  from { transform: translateX(100%); opacity: 0.6; }
  to { transform: translateX(0); opacity: 1; }
}

.lob-cart-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}

.lob-cart-header h2 {
  margin: 0;
  flex: 1;
  font-family: var(--lobnho-font-logo);
  font-size: 18px;
  letter-spacing: 0.04em;
}

.lob-cart-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: #fff;
  cursor: pointer;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lob-cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
}

.lob-cart-empty {
  flex: 1;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 16px;
  padding: 40px 20px;
  color: rgba(255,255,255,0.55);
}

.lob-cart-continue {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  color: #fff;
  cursor: pointer;
  font: 600 12px/1 var(--lobnho-font-body);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 20px;
}

.lob-cart-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.lob-cart-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
}

.lob-cart-item-thumb {
  width: 64px;
  height: 64px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: #050506;
}

.lob-cart-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lob-cart-placeholder {
  width: 100%;
  height: 100%;
}

.lob-cart-item-info {
  flex: 1;
  min-width: 0;
}

.lob-cart-item-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.lob-cart-item-info strong {
  display: block;
  font-size: 15px;
  color: #fff;
}

.lob-cart-item-info small {
  display: block;
  color: rgba(255,255,255,0.45);
  font-size: 11px;
  font-weight: 700;
}

.lob-cart-item-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.lob-cart-qty {
  display: flex;
  align-items: center;
  gap: 4px;
}

.lob-cart-qty button {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  display: grid;
  place-items: center;
}

.lob-cart-qty button:disabled { opacity: 0.3; cursor: default; }

.lob-cart-qty span {
  min-width: 24px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.lob-cart-remove {
  border: none;
  background: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  font: 600 11px/1 var(--lobnho-font-body);
  text-decoration: underline;
}

.lob-cart-footer {
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: grid;
  gap: 12px;
  flex-shrink: 0;
}

.lob-cart-total {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.lob-cart-total span {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lob-cart-total strong {
  font-size: 20px;
  color: #fff;
}

.lob-cart-total small {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

.lob-cart-checkout-btn {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--lobnho-pink);
  border-radius: 8px;
  background: rgba(255,0,246,0.2);
  color: #fff;
  cursor: pointer;
  font: 800 13px/1 var(--lobnho-font-body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Checkout ─────────────────────────────────────────────────────────── */
.lob-checkout-empty,
.lob-checkout {
  width: min(580px, 100%);
  margin: 0 auto;
}

.lob-checkout-empty {
  display: grid;
  place-items: center;
  gap: 16px;
  padding: 60px 20px;
  text-align: center;
}

.lob-checkout-title {
  margin: 0 0 24px;
  font-family: var(--lobnho-font-logo);
  font-size: 42px;
  letter-spacing: 0.04em;
}

.lob-checkout-form {
  display: grid;
  gap: 20px;
}

.lob-checkout-section {
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 8px;
  background: rgba(5,5,6,0.72);
  backdrop-filter: blur(22px);
}

.lob-checkout-section h2 {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.lob-checkout-section label {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.72);
}

.lob-checkout-section input,
.lob-checkout-section select,
.lob-checkout-section textarea {
  width: 100%;
  min-height: 42px;
  box-sizing: border-box;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 8px;
  background: rgba(6,6,8,0.72);
  color: #fff;
  font: 600 14px/1.4 var(--lobnho-font-body);
  outline: none;
  padding: 0 13px;
}

.lob-checkout-section select {
  cursor: pointer;
  color-scheme: dark;
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #ff98fb 50%),
    linear-gradient(135deg, #ff98fb 50%, transparent 50%),
    linear-gradient(180deg, rgba(255, 0, 246, 0.1), rgba(6, 6, 8, 0.72));
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%,
    0 0;
  background-repeat: no-repeat;
  background-size:
    6px 6px,
    6px 6px,
    100% 100%;
  padding-right: 38px;
}

.lob-checkout-section select option {
  background: #050506;
  color: #ffffff;
}

.lob-checkout-section select option:checked {
  background: #ff00f6;
  color: #050506;
}

.lob-checkout-section textarea {
  min-height: 86px;
  padding: 12px 13px;
  resize: vertical;
}

.lob-checkout-section input:focus,
.lob-checkout-section select:focus,
.lob-checkout-section textarea:focus {
  border-color: rgba(255,0,246,0.65);
  box-shadow: 0 0 0 3px rgba(255,0,246,0.14);
}

.lob-payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}

.lob-payment-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-height: 80px;
  padding: 14px 10px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.72);
  cursor: pointer;
  font: 700 12px/1 var(--lobnho-font-body);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.15s;
}

.lob-payment-btn svg {
  width: 32px;
  height: 32px;
}

.lob-payment-method-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.lob-payment-method-icon--svg {
  display: grid;
  place-items: center;
  color: #ff00f6;
}

.lob-payment-method-icon--svg svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 10px rgba(255,0,246,0.3));
}

.lob-payment-btn small {
  font-size: 9px;
  color: rgba(255,255,255,0.42);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lob-payment-btn.is-disabled {
  opacity: 0.38;
  filter: grayscale(1);
  cursor: not-allowed;
  border-color: rgba(255,255,255,0.06);
  background: rgba(120,120,120,0.08);
}

.lob-payment-btn.is-selected {
  border-color: var(--lobnho-pink);
  background: rgba(255,0,246,0.15);
  color: #fff;
}

.lob-card-fields {
  display: grid;
  gap: 14px;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 0, 246, 0.18);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.38);
}

.lob-card-fields-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.lob-card-fields-head strong {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lob-card-fields-head span {
  color: rgba(255, 152, 251, 0.72);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.lob-card-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.lob-card-grid label:nth-child(1),
.lob-card-grid label:nth-child(2) {
  grid-column: span 3;
}

.lob-card-grid label:nth-child(n+3) {
  grid-column: span 1;
}

.lob-card-grid label:nth-child(6) {
  grid-column: span 2;
}

.lob-card-quote,
.lob-card-payment-status,
.lob-card-payment-chip {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.lob-card-quote span,
.lob-card-payment-status span,
.lob-card-payment-chip span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lob-card-quote strong,
.lob-card-payment-status strong,
.lob-card-payment-chip strong {
  color: #ffffff;
}

.lob-card-quote small {
  color: rgba(255, 255, 255, 0.48);
}

.lob-checkout-items {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.lob-checkout-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
}

.lob-checkout-item strong {
  color: #fff;
}

.lob-checkout-total {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.lob-checkout-total span {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}

.lob-checkout-total strong {
  font-size: 20px;
  color: #fff;
}

.lob-checkout-total small {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

.lob-checkout-submit {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--lobnho-pink);
  border-radius: 8px;
  background: rgba(255,0,246,0.25);
  color: #fff;
  cursor: pointer;
  font: 800 14px/1 var(--lobnho-font-body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: opacity 160ms ease, transform 160ms ease, background 160ms ease;
}

.lob-checkout-submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.lob-checkout-form.is-submitting .lob-checkout-submit {
  opacity: 0.82;
  background: rgba(255,0,246,0.36);
}

@keyframes lob-spin {
  to { transform: rotate(360deg); }
}

/* ── Payment Screen ─────────────────────────────────────────────────── */
.lob-payment-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  padding: 20px 0;
}

.lob-payment-header { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.lob-payment-check { font-size: 40px; }
.lob-payment-icon { font-size: 48px; line-height: 1; margin-bottom: 4px; }

.lob-payment-icon-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 4px;
}

.lob-payment-qr {
  width: 200px;
  height: 200px;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.1);
  background: #fff;
  padding: 8px;
  object-fit: contain;
}

.lob-payment-qr--placeholder {
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 12px;
}

.lob-payment-copy { display: flex; flex-direction: column; align-items: center; gap: 6px; max-width: 400px; }

.lob-payment-code-box {
  background: rgba(6,6,8,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 8px 12px;
  font: 600 11px/1.38 monospace;
  color: #00ff12;
  word-break: break-all;
  max-width: 100%;
  text-align: left;
  user-select: all;
}

.lob-payment-copy-btn {
  min-height: 32px;
  border: 1px solid rgba(0,255,18,0.3);
  border-radius: 6px;
  background: rgba(0,255,18,0.1);
  color: #00ff12;
  cursor: pointer;
  font: 700 12px/1 var(--lobnho-font-body);
  padding: 0 16px;
}

.lob-payment-amount-line {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  margin: 0 0 5px;
}

.lob-payment-exact-line {
  font-size: 14px;
  color: #f7931a;
  margin: 0 0 10px;
}

.lob-payment-card {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.lob-payment-card .lob-payment-method-icon--svg {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255, 0, 246, 0.14);
  border: 1px solid rgba(255, 0, 246, 0.24);
}

.lob-payment-card .lob-payment-method-icon--svg svg {
  width: 32px;
  height: 32px;
}

.lob-card-payment-chip,
.lob-card-payment-status {
  width: min(320px, 100%);
  text-align: center;
}

.lob-payment-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  border: 1px solid rgba(255,0,246,0.4);
  border-radius: 8px;
  background: rgba(255,0,246,0.2);
  color: #fff;
  font: 700 13px/1 var(--lobnho-font-body);
  text-decoration: none;
  padding: 0 24px;
  letter-spacing: 0.04em;
  transition: background .15s;
}
.lob-payment-link:hover { background: rgba(255,0,246,0.35); }
.lob-payment-link--crypto { border-color: rgba(247,147,26,0.4); background: rgba(247,147,26,0.15); }

.lob-payment-summary {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 12px 24px;
}

.lob-payment-summary p { margin: 0; font-size: 15px; color: rgba(255,255,255,0.7); }
.lob-payment-summary p strong { color: #fff; }

.lob-payment-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.lob-action-btn--ghost {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
}

.lob-postpay-card {
  width: min(620px, 100%);
  margin: 0 auto;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(5,5,6,0.86), rgba(8,8,10,0.72));
  box-shadow: 0 0 0 1px rgba(255,0,246,0.08), 0 24px 80px rgba(0,0,0,0.42);
  backdrop-filter: blur(24px) saturate(1.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.lob-postpay-check {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #00ff12;
  color: #000;
  font: 900 16px/1 var(--lobnho-font-body);
  letter-spacing: 0.02em;
  box-shadow: 0 0 28px rgba(0,255,18,0.34);
}

.lob-postpay-head {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}

.lob-postpay-head p {
  margin: 0;
  color: #00ff12;
  font: 800 12px/1 var(--lobnho-font-body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.lob-postpay-head h1 {
  margin: 0;
  color: #fff;
  font: 400 clamp(34px, 7vw, 56px)/0.92 var(--lobnho-font-logo);
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(255,0,246,0.35);
}

.lob-postpay-head span {
  color: rgba(255,255,255,0.42);
  font: 700 12px/1.3 var(--lobnho-font-body);
}

.lob-postpay-keys,
.lob-postpay-note,
.lob-postpay-summary,
.lob-postpay-items {
  width: 100%;
}

.lob-postpay-key {
  padding: 14px;
  border: 1px solid rgba(0,255,18,0.28);
  border-radius: 10px;
  background: rgba(0,255,18,0.075);
  display: grid;
  gap: 8px;
}

.lob-postpay-key span {
  color: rgba(255,255,255,0.55);
  font: 800 11px/1 var(--lobnho-font-body);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.lob-postpay-key code {
  display: block;
  padding: 12px;
  border-radius: 8px;
  background: rgba(0,0,0,0.58);
  color: #00ff12;
  font: 700 13px/1.35 Consolas, monospace;
  word-break: break-all;
  user-select: all;
}

.lob-postpay-key button {
  justify-self: center;
  min-height: 34px;
  border: 1px solid rgba(0,255,18,0.34);
  border-radius: 8px;
  background: rgba(0,255,18,0.12);
  color: #00ff12;
  cursor: pointer;
  font: 800 11px/1 var(--lobnho-font-body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0 16px;
}

.lob-postpay-note {
  padding: 14px;
  border: 1px solid rgba(255,0,246,0.22);
  border-radius: 10px;
  background: rgba(255,0,246,0.07);
  display: grid;
  gap: 6px;
  color: rgba(255,255,255,0.68);
}

.lob-postpay-note strong { color: #fff; }

.lob-postpay-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.lob-postpay-summary div {
  padding: 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  display: grid;
  gap: 5px;
}

.lob-postpay-summary span {
  color: rgba(255,255,255,0.42);
  font: 800 10px/1 var(--lobnho-font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.lob-postpay-summary strong {
  color: #fff;
  font: 800 13px/1.2 var(--lobnho-font-body);
}

.lob-postpay-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.lob-postpay-items li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.035);
  color: rgba(255,255,255,0.66);
  font: 700 12px/1.25 var(--lobnho-font-body);
}

.lob-field-hidden { display: none; }

.lob-order-card {
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 8px;
  background: rgba(5,5,6,0.72);
  backdrop-filter: blur(22px);
  padding: 16px;
  margin-bottom: 12px;
}

.lob-order-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.lob-order-head strong { font-size: 14px; letter-spacing: 0.02em; }

.lob-order-head-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.lob-order-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.lob-order-toggle:hover .lob-order-expand-icon {
  color: #ff00f6;
  filter: drop-shadow(0 0 6px rgba(255,0,246,0.6));
}

.lob-order-body p { margin: 0 0 4px; font-size: 13px; color: rgba(255,255,255,0.72); }
.lob-order-body p strong { color: #fff; }

.lob-order-extra {
  margin-top: 8px;
}

.lob-order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.lob-order-actions select,
.lob-order-actions input {
  min-height: 34px;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 6px;
  background: rgba(6,6,8,0.72);
  color: #fff;
  font: 600 12px/1 var(--lobnho-font-body);
  padding: 0 10px;
  outline: none;
}

.lob-order-actions button {
  min-height: 34px;
  border: 1px solid rgba(255,0,246,0.34);
  border-radius: 6px;
  background: rgba(255,0,246,0.18);
  color: #fff;
  cursor: pointer;
  font: 700 11px/1 var(--lobnho-font-body);
  text-transform: uppercase;
  padding: 0 12px;
  letter-spacing: 0.04em;
}

.lob-order-card .lob-order-actions {
  display: none;
}

.lob-order-card.lob-order-expanded .lob-order-actions {
  display: flex;
}

/* Final public guides override. Keep this at EOF so older guide blocks cannot flatten the layout. */
[data-route-guides] { padding: 112px clamp(14px, 3vw, 42px) 64px !important; }
[data-guides-page] { width: min(1380px, 100%) !important; margin: 0 auto !important; }
.lob-guides-shell {
  display: grid !important;
  grid-template-columns: minmax(240px, 310px) minmax(0, 1fr) !important;
  gap: 18px !important;
  align-items: start !important;
  width: 100% !important;
}
.lob-guides-sidebar,
.lob-guide-reader,
.lob-guide-single {
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 14px !important;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,0,246,0.035)), rgba(5,5,7,0.74) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 18px 60px rgba(0,0,0,0.38) !important;
  backdrop-filter: blur(22px) saturate(1.15) !important;
  -webkit-backdrop-filter: blur(22px) saturate(1.15) !important;
}
.lob-guides-sidebar {
  position: sticky !important;
  top: 106px !important;
  display: grid !important;
  gap: 14px !important;
  max-height: calc(100vh - 130px) !important;
  overflow: auto !important;
  padding: 16px !important;
}
.lob-guides-search { display: grid !important; gap: 8px !important; color: rgba(255,255,255,0.58) !important; font: 900 11px/1 var(--lobnho-font-body) !important; letter-spacing: .06em !important; text-transform: uppercase !important; }
.lob-guides-search input { width: 100% !important; min-height: 42px !important; border: 1px solid rgba(255,255,255,0.1) !important; border-radius: 8px !important; background: rgba(0,0,0,0.48) !important; color: #fff !important; outline: none !important; padding: 0 12px !important; font: 700 13px/1 var(--lobnho-font-body) !important; }
.lob-guides-categories { display: flex !important; flex-wrap: wrap !important; gap: 8px !important; }
.lob-guides-categories button { appearance: none !important; min-height: 32px !important; border: 1px solid rgba(255,255,255,0.1) !important; border-radius: 999px !important; background: rgba(255,255,255,0.055) !important; color: rgba(255,255,255,0.72) !important; cursor: pointer !important; padding: 0 12px !important; font: 900 10px/1 var(--lobnho-font-body) !important; letter-spacing: .06em !important; text-transform: uppercase !important; }
.lob-guides-categories button:hover,
.lob-guides-categories button.is-active { border-color: rgba(255,0,246,0.52) !important; background: rgba(255,0,246,0.2) !important; color: #fff !important; }
.lob-guides-nav { display: grid !important; gap: 8px !important; }
.lob-guides-nav a { display: grid !important; gap: 5px !important; min-width: 0 !important; padding: 12px !important; border: 1px solid transparent !important; border-radius: 10px !important; background: transparent !important; color: rgba(255,255,255,0.72) !important; text-decoration: none !important; }
.lob-guides-nav a:hover,
.lob-guides-nav a.is-active { border-color: rgba(255,0,246,0.35) !important; background: rgba(255,0,246,0.13) !important; color: #fff !important; }
.lob-guides-nav strong { overflow: hidden !important; text-overflow: ellipsis !important; color: inherit !important; font: 900 14px/1.2 var(--lobnho-font-body) !important; }
.lob-guides-nav span { display: -webkit-box !important; overflow: hidden !important; color: rgba(255,255,255,0.48) !important; font: 700 11px/1.35 var(--lobnho-font-body) !important; -webkit-box-orient: vertical !important; -webkit-line-clamp: 2 !important; }
.lob-guide-reader { min-width: 0 !important; min-height: 560px !important; padding: clamp(22px, 3.2vw, 46px) !important; }
.lob-guide-head { display: grid !important; gap: 12px !important; margin: 0 0 24px !important; }
.lob-guide-head > span { color: var(--lobnho-pink) !important; font: 900 11px/1 var(--lobnho-font-body) !important; letter-spacing: .14em !important; text-transform: uppercase !important; }
.lob-guide-head h1 { max-width: 920px !important; margin: 0 !important; color: #fff !important; font: 900 clamp(36px, 4.8vw, 68px)/.95 var(--lobnho-font-logo) !important; letter-spacing: 0 !important; }
.lob-guide-head p { max-width: 840px !important; margin: 0 !important; color: rgba(255,255,255,0.66) !important; font: 700 15px/1.6 var(--lobnho-font-body) !important; }
.lob-guide-content { max-width: 920px !important; color: rgba(255,255,255,0.82) !important; font: 600 15px/1.8 var(--lobnho-font-body) !important; }
.lob-guide-content img { display: block !important; width: auto; max-width: 100% !important; height: auto !important; border-radius: 10px !important; border: 1px solid rgba(255,255,255,0.1) !important; background: rgba(0,0,0,0.45) !important; }
.lob-guide-content p:empty { display: none !important; }
@media (max-width: 860px) {
  [data-route-guides] { padding: 96px 12px 48px !important; }
  .lob-guides-shell { grid-template-columns: 1fr !important; }
  .lob-guides-sidebar { position: relative !important; top: auto !important; max-height: none !important; }
}

/* Guides recovery: keep the public GitBook-style reader structured even after cache/agent regressions. */
[data-route-guides] {
  padding: 112px clamp(14px, 3vw, 42px) 64px;
}

[data-guides-page] {
  width: min(1380px, 100%);
  margin: 0 auto;
}

.lob-guides-shell {
  position: relative;
  z-index: 2;
  display: grid !important;
  grid-template-columns: minmax(240px, 310px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  width: 100%;
}

.lob-guides-sidebar,
.lob-guide-reader,
.lob-guide-single {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 0, 246, 0.035)),
    rgba(5, 5, 7, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 60px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(22px) saturate(1.15);
  -webkit-backdrop-filter: blur(22px) saturate(1.15);
  border-radius: 14px;
}

.lob-guides-sidebar {
  position: sticky;
  top: 106px;
  display: grid;
  gap: 14px;
  max-height: calc(100vh - 130px);
  overflow: auto;
  padding: 16px;
}

.lob-guides-search {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.58);
  font: 900 11px/1 var(--lobnho-font-body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lob-guides-search input {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.48);
  color: #fff;
  outline: none;
  padding: 0 12px;
  font: 700 13px/1 var(--lobnho-font-body);
}

.lob-guides-search input:focus {
  border-color: rgba(255, 0, 246, 0.58);
  box-shadow: 0 0 0 3px rgba(255, 0, 246, 0.12);
}

.lob-guides-categories {
  display: flex !important;
  flex-wrap: wrap;
  gap: 8px;
}

.lob-guides-categories button {
  appearance: none;
  min-height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  padding: 0 12px;
  font: 900 10px/1 var(--lobnho-font-body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lob-guides-categories button:hover,
.lob-guides-categories button.is-active {
  border-color: rgba(255, 0, 246, 0.52);
  background: rgba(255, 0, 246, 0.2);
  color: #fff;
}

.lob-guides-nav {
  display: grid !important;
  gap: 8px;
}

.lob-guides-nav a {
  display: grid !important;
  gap: 5px;
  min-width: 0;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72) !important;
  text-decoration: none !important;
}

.lob-guides-nav a:hover,
.lob-guides-nav a.is-active {
  border-color: rgba(255, 0, 246, 0.35);
  background: rgba(255, 0, 246, 0.13);
  color: #fff !important;
}

.lob-guides-nav strong {
  overflow: hidden;
  text-overflow: ellipsis;
  color: inherit;
  font: 900 14px/1.2 var(--lobnho-font-body);
}

.lob-guides-nav span {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.48);
  font: 700 11px/1.35 var(--lobnho-font-body);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.lob-guide-reader {
  min-width: 0;
  min-height: 560px;
  padding: clamp(22px, 3.2vw, 46px);
}

.lob-guide-head {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
}

.lob-guide-head > span {
  color: var(--lobnho-pink);
  font: 900 11px/1 var(--lobnho-font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lob-guide-head h1 {
  max-width: 920px;
  margin: 0;
  color: #fff;
  font: 900 clamp(36px, 4.8vw, 68px)/0.95 var(--lobnho-font-logo);
  letter-spacing: 0;
}

.lob-guide-head p {
  max-width: 840px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font: 700 15px/1.6 var(--lobnho-font-body);
}

.lob-guide-content {
  max-width: 920px;
  color: rgba(255, 255, 255, 0.82);
  font: 600 15px/1.8 var(--lobnho-font-body);
}

.lob-guide-content img {
  display: block;
  width: auto;
  max-width: 100% !important;
  height: auto !important;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.45);
}

.lob-guide-content p:empty {
  display: none;
}

@media (max-width: 860px) {
  [data-route-guides] {
    padding: 96px 12px 48px;
  }

  .lob-guides-shell {
    grid-template-columns: 1fr;
  }

  .lob-guides-sidebar {
    position: relative;
    top: auto;
    max-height: none;
  }
}

.lob-order-item { display: inline-flex; align-items: center; gap: 4px; margin: 2px 0; }
.lob-item-type { font-size: 14px; vertical-align: middle; }
.lob-item-type--physical { color: #0078ff; }
.lob-item-type--digital_key { color: #00ff12; }
.lob-item-type--digital_fw { color: #fffc24; }
.lob-item-type--service { color: #ff98fb; }
.lob-item-type--custom { color: #ff00f6; }

.lob-order-keys {
  margin: 0 0 4px;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
}

.lob-order-keys strong {
  color: #fff;
}

.lob-order-keys-list {
  display: grid;
  gap: 4px;
  margin-top: 4px;
}

.lob-order-key {
  display: block;
  width: fit-content;
  max-width: 100%;
  padding: 3px 6px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #00ff12;
  font: 600 11px/1.35 monospace;
  word-break: break-word;
}

.lob-order-file-upload {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  width: 100%;
}

.lob-order-file-upload input[type="file"] {
  flex: 1;
  min-height: 34px;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 6px;
  background: rgba(6,6,8,0.72);
  color: #fff;
  font: 600 11px/1 var(--lobnho-font-body);
  padding: 6px 10px;
  outline: none;
}

.lob-order-file-upload button {
  min-height: 34px;
  border: 1px solid rgba(255,252,36,0.34);
  border-radius: 6px;
  background: rgba(255,252,36,0.18);
  color: #fffc24;
  cursor: pointer;
  font: 700 11px/1 var(--lobnho-font-body);
  text-transform: uppercase;
  padding: 0 12px;
  letter-spacing: 0.04em;
}

.lob-stock-card {
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 8px;
  background: rgba(5,5,6,0.72);
  padding: 16px;
  margin-bottom: 12px;
}

.lob-stock-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.lob-stock-head h3 { margin: 0; font-size: 15px; flex: 1; }
.lob-stock-count { font-size: 12px; color: rgba(255,255,255,0.5); }
.lob-stock-head-actions { display: flex; gap: 4px; }

.lob-stock-export {
  min-height: 28px;
  border: 1px solid rgba(0,120,255,0.34);
  border-radius: 5px;
  background: rgba(0,120,255,0.15);
  color: #fff;
  cursor: pointer;
  font: 600 10px/1 var(--lobnho-font-body);
  padding: 0 8px;
  letter-spacing: 0.03em;
  transition: all .15s;
}
.lob-stock-export:hover { background: rgba(0,120,255,0.3); }

.lob-stock-keys {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 8px 0;
  max-height: 320px;
  overflow-y: auto;
}

.lob-stock-key-row {
  display: flex;
  align-items: center;
  gap: 4px;
}

.lob-stock-key-duration {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255,255,255,0.72);
  font-size: 11px;
  white-space: nowrap;
}

.lob-stock-key-input {
  flex: 1;
  min-height: 30px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  background: rgba(6,6,8,0.6);
  color: #00ff12;
  font: 600 11px/1.2 monospace;
  padding: 0 8px;
  outline: none;
  transition: border-color .15s;
}
.lob-stock-key-input:focus { border-color: #ff00f6; }

.lob-stock-key-save,
.lob-stock-key-delete {
  min-width: 26px;
  min-height: 26px;
  border: none;
  border-radius: 4px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  opacity: 0.6;
}
.lob-stock-key-save:hover { background: rgba(0,255,18,0.2); opacity: 1; }
.lob-stock-key-delete:hover { background: rgba(255,39,39,0.25); opacity: 1; }

.lob-stock-add {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.lob-stock-add textarea {
  min-height: 60px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  background: rgba(6,6,8,0.5);
  color: #fff;
  font: 600 11px/1.4 monospace;
  padding: 8px 10px;
  outline: none;
  resize: vertical;
}

.lob-stock-add-btn {
  min-height: 34px;
  border: 1px solid rgba(255,0,246,0.34);
  border-radius: 6px;
  background: rgba(255,0,246,0.15);
  color: #fff;
  cursor: pointer;
  font: 700 11px/1 var(--lobnho-font-body);
  text-transform: uppercase;
  padding: 0 14px;
  letter-spacing: 0.04em;
  align-self: flex-start;
  transition: background .15s;
}
.lob-stock-add-btn:hover { background: rgba(255,0,246,0.3); }
  padding: 8px 10px;
  outline: none;
  resize: vertical;
}

.lob-login-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.lob-login-tab {
  min-height: 40px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  font: 700 12px/1 var(--lobnho-font-body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.15s;
}

.lob-login-tab:hover {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.15);
}

.lob-login-tab.is-active {
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.lob-admin-login-card button,
.lob-login-card button {
  width: 100%;
  min-height: 46px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #ff00f6, #cc00cc);
  color: #ffffff;
  cursor: pointer;
  font: 800 14px/1 var(--lobnho-font-body);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0 20px;
  transition: transform 0.15s ease;
}

.lob-admin-login-card button:hover,
.lob-login-card button:hover {
  transform: translateY(-2px);
}

.lob-admin-login-card button:active,
.lob-login-card button:active {
  transform: translateY(0);
}

.lob-login-forgot {
  display: block;
  text-align: right;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  margin-top: -4px;
  transition: color 0.15s;
}

.lob-login-forgot:hover {
  color: rgba(255,255,255,0.7);
}

.lob-login-switch {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.lob-login-switch a {
  color: #ff98fb;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.15s;
}

.lob-login-switch a:hover {
  color: #fff;
}

.lob-profile-view,
.lob-profile-edit {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.lob-profile-shell {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 16px;
  align-items: start;
}

.lob-profile-sidebar {
  position: sticky;
  top: 90px;
}

@media (max-width: 700px) {
  .lob-profile-shell { grid-template-columns: 1fr; }
}

.lob-profile-form {
  display: grid;
  gap: 12px;
  text-align: left;
}

.lob-profile-form label {
  display: grid;
  gap: 4px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lob-profile-form input {
  min-height: 40px;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 8px;
  background: rgba(6,6,8,0.72);
  color: #fff;
  font: 500 14px var(--lobnho-font-body);
  padding: 0 12px;
  outline: none;
}

.lob-profile-form input:focus {
  border-color: rgba(255,0,246,0.5);
}

.lob-profile-form button { margin-top: 4px; }

.lob-profile-shell .lob-admin-content .lob-profile-card {
  width: 100%;
  max-width: 100%;
}

.lob-profile-layout {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin: 0 auto;
}

.lob-profile-card {
  width: min(420px, 100%);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 12px;
  background: rgba(5,5,6,0.72);
  backdrop-filter: blur(22px);
  padding: 32px 24px;
  text-align: center;
  display: grid;
  gap: 10px;
  justify-items: center;
}

.lob-profile-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,0,246,0.3);
}

.lob-profile-avatar--empty {
  display: grid;
  place-items: center;
  background: rgba(255,0,246,0.15);
  font-size: 36px;
  font-weight: 800;
  color: #fff;
}

.lob-profile-avatar-wrap {
  position: relative;
  display: inline-block;
}

.lob-profile-upload {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--lobnho-pink);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 16px;
  border: 2px solid #050506;
}

.lob-profile-card h1 {
  margin: 0;
  font-family: var(--lobnho-font-logo);
  font-size: 32px;
  letter-spacing: 0.04em;
}

.lob-profile-role {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lob-profile-online {
  font-size: 12px;
  font-weight: 600;
}

.lob-profile-bio {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}

.lob-profile-bio-input {
  width: 100%;
  min-height: 80px;
  box-sizing: border-box;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 8px;
  background: rgba(6,6,8,0.72);
  color: #fff;
  font: 600 13px/1.4 var(--lobnho-font-body);
  padding: 10px 13px;
  outline: none;
  resize: vertical;
}

.lob-profile-hr {
  width: 100%;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 8px 0;
}

.lob-profile-link {
  font-size: 12px;
  color: var(--lobnho-pink-soft);
  word-break: break-all;
  text-decoration: underline;
}

.lob-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  width: fit-content;
  margin: 8px auto 0;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255,0,246,0.42);
  background:
    linear-gradient(135deg, rgba(255,0,246,0.18), rgba(0,255,18,0.11)),
    rgba(8,8,10,0.74);
  color: #fff;
  font: 900 11px/1 var(--lobnho-font-body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 0 18px rgba(255,0,246,0.12), inset 0 1px 0 rgba(255,255,255,0.11);
  backdrop-filter: blur(16px);
}

.lob-verified-badge svg {
  width: 18px;
  height: 18px;
  color: #00ff12;
  filter: drop-shadow(0 0 7px rgba(0,255,18,0.45));
}

.lob-verification-card,
.lob-verification-admin-card {
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 12px;
  background: rgba(5,5,6,0.72);
  backdrop-filter: blur(22px);
  padding: 22px;
}

.lob-verification-card--verified {
  border-color: rgba(0, 255, 18, 0.18);
  background: rgba(5, 5, 6, 0.72);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: inset 0 0 1px 0.5px rgba(255, 255, 255, 0.08), 0 0 30px rgba(0, 255, 18, 0.06);
}

.lob-verification-head,
.lob-verification-admin-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.lob-verification-head span,
.lob-verification-admin-head span {
  color: rgba(255,255,255,0.48);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lob-verification-head h2 {
  margin: 4px 0 0;
  color: #fff;
  font: 900 24px/1.05 var(--lobnho-font-body);
}

.lob-verification-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.74);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.lob-verification-status--verified {
  border-color: rgba(0,255,18,0.28);
  background: rgba(0,255,18,0.12);
  color: #00ff12;
}

.lob-verification-status--pending {
  border-color: rgba(255,252,36,0.28);
  background: rgba(255,252,36,0.1);
  color: #fffc24;
}

.lob-verification-status--rejected {
  border-color: rgba(255,39,39,0.32);
  background: rgba(255,39,39,0.12);
  color: #ff2727;
}

.lob-verification-form,
.lob-verification-grid,
.lob-verification-files,
.lob-admin-verifications {
  display: grid;
  gap: 12px;
}

.lob-verification-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lob-verification-form label {
  display: grid;
  gap: 6px;
  color: rgba(255,255,255,0.64);
  font: 800 11px/1.2 var(--lobnho-font-body);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lob-verification-form input,
.lob-verification-form textarea,
.lob-verification-review textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 8px;
  background: rgba(6,6,8,0.72);
  color: #fff;
  font: 700 13px/1.4 var(--lobnho-font-body);
  padding: 10px 12px;
  outline: none;
}

.lob-verification-form input:focus,
.lob-verification-review textarea:focus {
  border-color: rgba(255,0,246,0.55);
  box-shadow: 0 0 0 3px rgba(255,0,246,0.12);
}

.lob-verification-note,
.lob-verification-pending p,
.lob-verification-rejected p,
.lob-verification-ok p {
  margin: 0;
  color: rgba(255,255,255,0.56);
  font-size: 12px;
  line-height: 1.5;
}

.lob-verification-ok,
.lob-verification-pending,
.lob-verification-rejected {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.045);
  text-align: left;
}

.lob-verification-ok--compact {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  background: transparent;
}

.lob-verification-ok--compact h2 {
  margin: 3px 0 6px;
  color: #fff;
  font: 900 22px/1.1 var(--lobnho-font-body);
}

.lob-verification-kicker {
  display: inline-flex;
  color: #00ff12;
  font: 900 10px/1 var(--lobnho-font-body);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.lob-verification-ok-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(0,255,18,0.3);
  background:
    radial-gradient(circle at 50% 35%, rgba(0,255,18,0.22), transparent 56%),
    rgba(0,0,0,0.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 0 24px rgba(0,255,18,0.12);
}

.lob-verification-ok svg {
  width: 34px;
  height: 34px;
  color: #00ff12;
}

.lob-verification-admin-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr);
  gap: 14px;
}

.lob-verification-admin-fields {
  display: grid;
  gap: 5px;
}

.lob-verification-admin-fields p {
  margin: 0;
  color: rgba(255,255,255,0.66);
  font-size: 12px;
  line-height: 1.45;
  word-break: break-word;
}

.lob-verification-admin-fields strong {
  color: #fff;
}

.lob-verification-admin-docs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.lob-verification-admin-docs a {
  display: grid;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.lob-verification-admin-docs img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  background: #050506;
}

.lob-verification-review {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-top: 14px;
}

.lob-verification-review div {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.lob-verification-review button {
  min-height: 40px;
  border: 1px solid rgba(255,0,246,0.34);
  border-radius: 8px;
  background: rgba(255,0,246,0.18);
  color: #fff;
  cursor: pointer;
  font: 900 11px/1 var(--lobnho-font-body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 14px;
}

.lob-verification-review button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.lob-verification-review [data-verify-reject] {
  border-color: rgba(255,39,39,0.34);
  background: rgba(255,39,39,0.16);
}

@media (max-width: 860px) {
  .lob-profile-layout,
  .lob-verification-admin-grid,
  .lob-verification-review {
    grid-template-columns: 1fr;
  }

  .lob-profile-card,
  .lob-verification-card {
    width: 100%;
    box-sizing: border-box;
  }

  .lob-verification-grid,
  .lob-verification-admin-docs {
    grid-template-columns: 1fr;
  }

  .lob-verification-review div {
    flex-wrap: wrap;
  }
}

.lob-user-avatar-img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  align-self: center;
  background: #050506;
}

@media (max-width: 640px) {
  .lob-payment-methods {
    grid-template-columns: 1fr;
  }

  .lob-postpay-card {
    padding: 18px;
  }

  .lob-postpay-summary {
    grid-template-columns: 1fr;
  }
}

/* ===== PROFILE SHELL WITH TABS ===== */
.lob-profile-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: start;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 128px 24px 72px;
  position: relative;
  z-index: 1;
}

.lob-profile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(5,5,6,0.68);
  border: 1px solid rgba(255,152,251,0.12);
  border-radius: 20px;
  padding: 20px 14px;
  backdrop-filter: blur(28px) saturate(1) brightness(0.72);
  -webkit-backdrop-filter: blur(28px) saturate(1) brightness(0.72);
  min-height: 400px;
}

.lob-profile-nav-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 6px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 8px;
}

.lob-profile-nav-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255,255,255,0.06);
}

.lob-profile-nav-avatar--empty {
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 800;
  color: rgba(255,255,255,0.45);
}

.lob-profile-nav-user strong {
  font-size: 14px;
  display: block;
}

.lob-profile-nav-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.lob-profile-nav-btn {
  all: unset;
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.62);
  transition: all 0.14s ease;
}

.lob-profile-nav-btn:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
}

.lob-profile-nav-btn.is-active {
  background: rgba(255,0,246,0.18);
  color: #ff98fb;
}

.lob-profile-logout-btn {
  width: 100%;
  text-align: center;
}

.lob-profile-content {
  min-height: 400px;
}

.lob-profile-tab h2 {
  margin: 0 0 16px;
  font-size: 22px;
}

.lob-profile-tab-card {
  background: rgba(5,5,6,0.68);
  border: 1px solid rgba(255,152,251,0.12);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(28px) saturate(1) brightness(0.72);
  -webkit-backdrop-filter: blur(28px) saturate(1) brightness(0.72);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lob-profile-tab-card label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
}

.lob-profile-tab-card input,
.lob-profile-tab-card textarea {
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 10px 14px;
  color: #fff;
  font: 14px/1.4 var(--lobnho-font-body);
  outline: none;
  transition: border-color 0.14s ease;
}

.lob-profile-tab-card input:focus,
.lob-profile-tab-card textarea:focus {
  border-color: rgba(255,0,246,0.4);
}

.lob-profile-avatar-wrap {
  position: relative;
  display: inline-block;
  align-self: center;
}

.lob-profile-avatar-lg {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.lob-profile-avatar-empty-lg {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: grid;
  place-items: center;
  font-size: 36px;
  font-weight: 800;
  color: rgba(255,255,255,0.3);
}

.lob-profile-upload {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,0,246,0.3);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.14s ease;
}

.lob-profile-upload:hover {
  background: rgba(255,0,246,0.5);
}

@media (max-width: 768px) {
  .lob-profile-shell {
    grid-template-columns: 1fr;
    padding: 104px 14px 48px;
  }
  .lob-profile-nav {
    min-height: auto;
  }
}

.lob-profile-hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 4px 0;
}

.lob-profile-link {
  color: rgba(255,0,246,0.7);
  font-size: 12px;
  word-break: break-all;
}

.lob-profile-link:hover {
  color: #ff98fb;
}

/* ===== GitBook-style guides ===== */
.lob-guides-shell,
.lob-guide-single {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
}

.lob-guides-shell {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.lob-guides-sidebar,
.lob-guide-reader,
.lob-guide-admin-form,
.lob-guide-editor-card {
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 8px;
  background: rgba(5,5,6,0.76);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: inset 0 0 0 1px rgba(255,0,246,0.035);
}

.lob-guides-sidebar {
  position: sticky;
  top: 96px;
  max-height: calc(100vh - 120px);
  overflow: auto;
  padding: 12px;
}

.lob-guides-search {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.lob-guides-search span,
.lob-guide-head span {
  color: var(--lobnho-pink);
  font: 900 11px/1 var(--lobnho-font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lob-guides-search input {
  width: 100%;
  min-height: 40px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: rgba(0,0,0,0.44);
  color: #fff;
  outline: none;
  padding: 0 12px;
  font: 700 13px/1 var(--lobnho-font-body);
}

.lob-guides-search input:focus {
  border-color: rgba(255,0,246,0.55);
  box-shadow: 0 0 0 3px rgba(255,0,246,0.12);
}

.lob-guides-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.lob-guides-categories button {
  min-height: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  color: rgba(255,255,255,0.68);
  cursor: pointer;
  font: 800 10px/1 var(--lobnho-font-body);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0 10px;
}

.lob-guides-categories button:hover,
.lob-guides-categories button.is-active {
  border-color: rgba(255,0,246,0.45);
  background: rgba(255,0,246,0.18);
  color: #fff;
}

.lob-guides-nav {
  display: grid;
  gap: 6px;
}

.lob-guides-nav a {
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
}

.lob-guides-nav a:hover,
.lob-guides-nav a.is-active {
  border-color: rgba(255,0,246,0.32);
  background: rgba(255,0,246,0.1);
  color: #fff;
}

.lob-guides-nav strong {
  font: 900 13px/1.2 var(--lobnho-font-body);
}

.lob-guides-nav span {
  color: rgba(255,255,255,0.42);
  font: 700 11px/1 var(--lobnho-font-body);
}

.lob-guide-reader {
  min-height: 520px;
  padding: clamp(18px, 3vw, 36px);
}

.lob-guide-head {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.lob-guide-head h1 {
  margin: 0;
  color: #fff;
  font: 900 clamp(34px, 5vw, 64px)/0.95 var(--lobnho-font-logo);
  letter-spacing: 0;
}

.lob-guide-head p {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,0.62);
  font: 600 15px/1.55 var(--lobnho-font-body);
}

.lob-guide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.lob-guide-tags small {
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  color: rgba(255,255,255,0.65);
  font: 800 10px/1 var(--lobnho-font-body);
  padding: 7px 10px;
  text-transform: uppercase;
}

.lob-guide-cover {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
  background: #050506;
}

.lob-guide-content {
  color: rgba(255,255,255,0.78);
  font: 600 15px/1.75 var(--lobnho-font-body);
}

.lob-guide-content h2,
.lob-guide-content h3,
.lob-guide-content h4 {
  margin: 1.4em 0 0.55em;
  color: #fff;
  line-height: 1.12;
}

.lob-guide-content h2 { font-size: 28px; }
.lob-guide-content h3 { font-size: 22px; }
.lob-guide-content h4 { font-size: 18px; }
.lob-guide-content p { margin: 0 0 1em; }
.lob-guide-content a { color: #ff98fb; text-decoration: underline; text-underline-offset: 3px; }
.lob-guide-content ul,
.lob-guide-content ol { padding-left: 22px; margin: 0 0 1em; }
.lob-guide-content li { margin: 0.35em 0; }
.lob-guide-content blockquote {
  margin: 1.2em 0;
  padding: 12px 14px;
  border-left: 3px solid var(--lobnho-pink);
  background: rgba(255,0,246,0.08);
  border-radius: 0 8px 8px 0;
}
.lob-guide-content pre,
.lob-guide-content code {
  border-radius: 8px;
  background: rgba(0,0,0,0.52);
  color: #00ff12;
  font-family: Consolas, monospace;
}
.lob-guide-content pre { padding: 14px; overflow: auto; }
.lob-guide-content code { padding: 2px 5px; }
.lob-guide-content img {
  max-width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
}
.lob-guide-content figure {
  margin: 18px 0;
}
.lob-guide-content figcaption {
  color: rgba(255,255,255,0.42);
  font-size: 12px;
  text-align: center;
  margin-top: 6px;
}

.lob-admin-grid--guides {
  grid-template-columns: minmax(360px, 520px) minmax(0, 1fr);
}

.lob-guide-editor-card {
  padding: 10px;
}

.lob-guide-editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 10px;
}

.lob-guide-tool-group {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 36px;
  padding: 3px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  background: rgba(0,0,0,0.2);
}

.lob-guide-editor-toolbar button,
.lob-guide-image-tool,
.lob-guide-size-tool {
  min-height: 30px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: 900 11px/1 var(--lobnho-font-body);
  padding: 0 10px;
  text-transform: uppercase;
}

.lob-guide-editor-toolbar button:hover,
.lob-guide-image-tool:hover,
.lob-guide-size-tool:hover {
  border-color: rgba(255,0,246,0.42);
  background: rgba(255,0,246,0.16);
}

.lob-guide-editor-toolbar button.is-active,
.lob-guide-color-btn.is-active {
  border-color: rgba(255,0,246,0.6);
  background: rgba(255,0,246,0.25);
  box-shadow: inset 0 -2px 0 rgba(255,0,246,0.85), 0 0 18px rgba(255,0,246,0.16);
}

.lob-guide-size-tool {
  gap: 8px;
  text-transform: none;
}

.lob-guide-size-tool span {
  color: rgba(255,255,255,0.45);
  font: 900 9px/1 var(--lobnho-font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lob-guide-size-tool select {
  min-height: 28px;
  border: none;
  background: transparent;
  color: #fff;
  font: 900 11px/1 var(--lobnho-font-body);
  outline: none;
  cursor: pointer;
}

.lob-guide-size-tool option {
  background: #09090b;
  color: #fff;
}

.lob-guide-color-tools {
  gap: 6px;
}

.lob-guide-color-btn {
  width: 26px;
  min-width: 26px;
  padding: 0;
  position: relative;
}

.lob-guide-color-btn::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--guide-color, rgba(255,255,255,0.78));
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 0 10px color-mix(in srgb, var(--guide-color, #fff) 45%, transparent);
}

.lob-guide-color-btn.is-default::before {
  background: linear-gradient(135deg, #fff 0 46%, #ff00f6 47% 53%, #fff 54%);
}

.lob-guide-image-controls {
  flex: 1 1 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 38px;
  padding: 8px;
  border: 1px solid rgba(255,0,246,0.18);
  border-radius: 8px;
  background: rgba(255,0,246,0.07);
}

.lob-guide-image-controls[hidden] {
  display: none !important;
}

.lob-guide-image-controls span {
  color: rgba(255,255,255,0.55);
  font: 900 10px/1 var(--lobnho-font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lob-guide-image-controls label {
  flex: 1 1 220px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.lob-guide-image-controls input[type="range"] {
  width: 100%;
  accent-color: var(--lobnho-pink);
}

.lob-guide-editor {
  min-height: 340px;
  max-height: 60vh;
  overflow: auto;
  outline: none;
  padding: 14px;
  border-radius: 8px;
  background: rgba(0,0,0,0.36);
  color: rgba(255,255,255,0.82);
  font: 600 14px/1.65 var(--lobnho-font-body);
}

.lob-guide-editor img,
.lob-guide-content img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  margin: 12px auto;
  box-sizing: border-box;
}

.lob-guide-editor img.is-guide-image-selected {
  outline: 2px solid var(--lobnho-pink);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(255,0,246,0.12);
  cursor: move;
}

.lob-guide-editor figure,
.lob-guide-content figure {
  max-width: 100%;
  margin: 16px 0;
  overflow: hidden;
}

.lob-guide-editor * {
  max-width: 100%;
  box-sizing: border-box;
}

.lob-admin-row--guide img {
  width: 86px;
  height: 70px;
  max-width: 86px;
  object-fit: cover;
}

.lob-guide-editor:focus {
  box-shadow: 0 0 0 2px rgba(255,0,246,0.22);
}

.lob-status--published { background: rgba(0,255,18,0.18); color: #9dffa4; }
.lob-status--draft { background: rgba(255,252,36,0.15); color: #fffc8a; }
.lob-status--archived { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.58); }

@media (max-width: 980px) {
  .lob-guides-shell,
  .lob-admin-grid--guides {
    grid-template-columns: 1fr;
  }
  .lob-guides-sidebar {
    position: static;
    max-height: none;
  }
}

@media (max-width: 640px) {
  .lob-guides-shell,
  .lob-guide-single {
    width: min(100%, calc(100vw - 28px));
  }
  .lob-guide-reader {
    padding: 16px;
  }
  .lob-guide-head h1 {
    font-size: 36px;
  }
}

/* ===== PRODUCT PAGINATION ===== */
.lob-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.lob-page-btn {
  min-height: 36px;
  min-width: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font: 700 13px/1 var(--lobnho-font-body);
  padding: 0 12px;
  transition: all 0.14s ease;
}

.lob-page-btn:hover:not(:disabled) {
  border-color: rgba(255, 0, 246, 0.4);
  background: rgba(255, 0, 246, 0.12);
  color: #fff;
}

.lob-page-btn.is-active {
  border-color: rgba(255, 0, 246, 0.5);
  background: rgba(255, 0, 246, 0.2);
  color: #fff;
  font-weight: 800;
}

.lob-page-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* ===== POSTS SYSTEM ===== */
.lob-posts {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: 128px 24px 72px;
  position: relative;
  z-index: 1;
}

.lob-posts-login-msg { text-align: center; padding: 24px; }
.lob-posts-feed { display: flex; flex-direction: column; gap: 14px; margin-top: 18px; }

.lob-post-create {
  background: rgba(5,5,6,0.68);
  border: 1px solid rgba(255,152,251,0.12);
  border-radius: 16px;
  padding: 16px;
  backdrop-filter: blur(28px) saturate(1) brightness(0.72);
}
.lob-post-create-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}
.lob-post-create-head span { font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; }
.lob-post-counter { font-size: 11px; color: rgba(255,255,255,0.45); }
.lob-post-textarea {
  width: 100%;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 12px;
  color: #fff;
  font: 14px/1.5 var(--lobnho-font-body);
  resize: none;
  outline: none;
  transition: border-color 0.14s ease;
  box-sizing: border-box;
}
.lob-post-textarea:focus { border-color: rgba(255,0,246,0.4); }
.lob-post-create-tools {
  display: flex; align-items: center; gap: 8px; margin-top: 10px; flex-wrap: wrap;
}
.lob-post-img-btn {
  cursor: pointer; font-size: 20px; opacity: 0.7; transition: opacity 0.14s ease;
}
.lob-post-img-btn:hover { opacity: 1; }
.lob-post-img-preview img {
  height: 44px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.1);
}
.lob-post-img-remove {
  background: none; border: none; color: #ff7272; cursor: pointer; font-size: 16px; margin-left: 4px;
}
.lob-post-emoji-picker { position: relative; }
.lob-post-emoji-btn { background: none; border: none; cursor: pointer; font-size: 20px; opacity: 0.7; }
.lob-post-emoji-btn:hover { opacity: 1; }
.lob-post-emoji-grid {
  position: absolute; bottom: 100%; left: 0; display: grid; grid-template-columns: repeat(8,1fr);
  gap: 2px; padding: 6px; background: #151518; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; z-index: 10; max-height: 160px; overflow-y: auto;
}
.lob-post-emoji-item {
  background: none; border: none; cursor: pointer; font-size: 20px; padding: 2px; border-radius: 4px;
}
.lob-post-emoji-item:hover { background: rgba(255,255,255,0.08); }

.lob-post-card {
  background: rgba(5,5,6,0.68);
  border: 1px solid rgba(255,152,251,0.12);
  border-radius: 16px;
  padding: 16px;
  backdrop-filter: blur(28px) saturate(1) brightness(0.72);
}
.lob-post-head { display: flex; align-items: center; gap: 10px; }
.lob-post-user { text-decoration: none; flex-shrink: 0; }
.lob-post-avatar {
  width: 42px; height: 42px; border-radius: 50%; object-fit: cover; display: block;
  background: rgba(255,255,255,0.06);
}
.lob-post-avatar--empty {
  display: grid; place-items: center; font-size: 18px; font-weight: 800; color: rgba(255,255,255,0.4);
}
.lob-post-meta { display: flex; flex-direction: column; gap: 1px; flex: 1; min-width: 0; }
.lob-post-uname {
  font-weight: 700; font-size: 14px; color: #fff; text-decoration: none;
}
.lob-post-uname:hover { color: #ff98fb; }
.lob-post-date { font-size: 11px; color: rgba(255,255,255,0.4); }
.lob-post-del {
  background: none; border: none; color: rgba(255,255,255,0.3); cursor: pointer;
  font-size: 20px; padding: 0 4px; transition: color 0.14s ease;
}
.lob-post-del:hover { color: #ff7272; }
.lob-post-body { margin-top: 10px; }
.lob-post-body p { margin: 0; font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.85); word-wrap: break-word; }
.lob-post-mention { color: #ff98fb; text-decoration: none; font-weight: 600; }
.lob-post-mention:hover { text-decoration: underline; }
.lob-post-media {
  margin-top: 10px; border-radius: 10px; overflow: hidden; position: relative;
  background: rgba(0,0,0,0.4); max-width: 100%; display: inline-block;
}
.lob-post-media img { max-width: 100%; max-height: 320px; object-fit: contain; display: block; }
.lob-post-expand-img {
  position: absolute; top: 6px; right: 6px; background: rgba(0,0,0,0.55); border: none;
  color: #fff; cursor: pointer; border-radius: 6px; padding: 4px 8px; font-size: 13px;
  opacity: 0; transition: opacity 0.14s ease;
}
.lob-post-media:hover .lob-post-expand-img { opacity: 1; }

.lob-post-actions {
  display: flex; align-items: center; gap: 12px; margin-top: 12px; flex-wrap: wrap;
}
.lob-post-reactions { display: flex; gap: 4px; flex-wrap: wrap; }
.lob-post-reaction {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px; padding: 3px 10px; cursor: pointer; font-size: 13px;
  transition: all 0.14s ease; color: rgba(255,255,255,0.7);
}
.lob-post-reaction:hover { background: rgba(255,0,246,0.12); border-color: rgba(255,0,246,0.3); }
.lob-post-reaction.is-active { background: rgba(255,0,246,0.18); border-color: rgba(255,0,246,0.4); }
.lob-post-cmds {
  background: none; border: none; color: rgba(255,255,255,0.5); cursor: pointer;
  font-size: 13px; transition: color 0.14s ease;
}
.lob-post-cmds:hover { color: #ff98fb; }

.lob-post-comments-box {
  margin-top: 10px; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 10px;
}
.lob-post-comments-inner { display: flex; flex-direction: column; gap: 8px; }
.lob-post-comment {
  display: flex; flex-direction: column; gap: 2px; padding: 8px 10px;
  background: rgba(0,0,0,0.25); border-radius: 10px; position: relative;
}
.lob-post-cuser {
  display: flex; align-items: center; gap: 6px; text-decoration: none;
  font-size: 12px; font-weight: 700; color: #fff;
}
.lob-post-cuser:hover { color: #ff98fb; }
.lob-post-cavatar {
  width: 24px; height: 24px; border-radius: 50%; object-fit: cover; display: block;
  background: rgba(255,255,255,0.06);
}
.lob-post-cavatar--empty {
  display: grid; place-items: center; font-size: 11px; font-weight: 800;
  color: rgba(255,255,255,0.4);
}
.lob-post-cuser span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lob-post-comment p { margin: 2px 0; font-size: 13px; color: rgba(255,255,255,0.8); word-wrap: break-word; }
.lob-post-comment small { font-size: 10px; color: rgba(255,255,255,0.35); }
.lob-post-cdelete {
  position: absolute; top: 6px; right: 8px; background: none; border: none;
  color: rgba(255,255,255,0.3); cursor: pointer; font-size: 11px;
}
.lob-post-cdelete:hover { color: #ff7272; }
.lob-post-cform {
  display: flex; gap: 6px; margin-top: 8px;
}
.lob-post-cinput {
  flex: 1; background: rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 8px 10px; color: #fff; font-size: 13px; outline: none;
}
.lob-post-cinput:focus { border-color: rgba(255,0,246,0.3); }
.lob-post-csend {
  background: rgba(255,0,246,0.15); border: 1px solid rgba(255,0,246,0.3);
  border-radius: 8px; color: #fff; cursor: pointer; padding: 0 12px; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.lob-post-csend:hover { background: rgba(255,0,246,0.25); }

.lob-post-lightbox {
  position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.92);
  display: grid; place-items: center; cursor: pointer; padding: 24px;
}
.lob-post-lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 8px; }
.lob-post-lightbox-close {
  position: absolute; top: 16px; right: 24px; font-size: 36px; color: #fff;
  cursor: pointer; font-weight: 300; line-height: 1;
}
.lob-post-lightbox-close:hover { color: #ff98fb; }

.lob-admin-posts-settings,
.lob-admin-post-ban {
  display: flex;
  align-items: end;
  gap: 10px;
  flex-wrap: wrap;
}

.lob-admin-posts-settings label,
.lob-admin-post-ban label {
  display: grid;
  gap: 6px;
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lob-admin-posts-settings input,
.lob-admin-post-ban input {
  min-height: 40px;
  min-width: 120px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: rgba(0,0,0,0.45);
  color: #fff;
  padding: 0 12px;
}

.lob-admin-post-ban {
  margin: 14px 0;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  background: rgba(255,255,255,0.035);
}

.lob-admin-post-ban label:nth-child(3) { flex: 1; min-width: 220px; }
.lob-admin-posts-list { display: flex; flex-direction: column; gap: 12px; }

.lob-admin-post-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  background: rgba(0,0,0,0.42);
}

.lob-admin-post-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
  color: rgba(255,255,255,0.45);
  font-size: 11px;
}

.lob-admin-post-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lob-ghost-btn,
.lob-danger-btn {
  min-height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: #fff;
  padding: 0 14px;
  font-family: inherit;
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.lob-ghost-btn:hover { border-color: rgba(255,0,246,0.45); background: rgba(255,0,246,0.12); }
.lob-danger-btn:hover { border-color: rgba(255,39,39,0.5); background: rgba(255,39,39,0.14); }

.lob-checkout-legal {
  margin: 6px 0 0;
  color: rgba(255,255,255,0.48);
  font-size: 12px;
  line-height: 1.5;
}

.lob-checkout-legal a {
  color: #ff98fb;
  text-decoration: none;
}

.lob-checkout-legal a:hover { text-decoration: underline; }

.lob-legal {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 120px 18px 56px;
}

.lob-legal-card {
  width: min(760px, 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  background: rgba(0,0,0,0.58);
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
  padding: clamp(22px, 4vw, 42px);
}

.lob-legal-card > span {
  display: inline-flex;
  color: #ff98fb;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lob-legal-card h1 {
  margin: 8px 0 18px;
  font-size: clamp(28px, 5vw, 46px);
}

.lob-legal-card p {
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
}

.lob-legal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.lob-profile-stats {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 8px 0 12px;
}

.lob-profile-stats span {
  border: 1px solid rgba(255,0,246,0.22);
  background: rgba(255,0,246,0.08);
  border-radius: 999px;
  padding: 6px 10px;
  color: rgba(255,255,255,0.82);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

/* Posts on profile */
.lob-profile-stats-container { margin: 6px 0; }
.lob-profile-stats {
  display: flex; gap: 16px; justify-content: center; margin: 8px 0;
}
.lob-profile-stats span {
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.05); padding: 4px 14px; border-radius: 999px;
}

@media (max-width: 640px) {
  .lob-posts { padding: 104px 14px 48px; }
  .lob-post-card { padding: 12px; }
  .lob-post-avatar { width: 36px; height: 36px; }
}

.lob-order-expand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: rgba(255,255,255,0.5);
  transition: transform .2s ease, color .2s ease, filter .2s ease;
  flex-shrink: 0;
}
.lob-order-expand-icon svg {
  width: 16px;
  height: 16px;
}
.lob-order-expand-icon:hover {
  color: #ff98fb;
}
.lob-order-card.lob-order-expanded .lob-order-expand-icon {
  transform: rotate(45deg);
}

.lob-appmax-calc {
  display: grid;
  gap: 16px;
}

.lob-appmax-calc-grid,
.lob-appmax-result-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}

.lob-appmax-calc label,
.lob-appmax-fees {
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,0.66);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lob-appmax-calc input,
.lob-appmax-calc select,
.lob-appmax-fees textarea {
  width: 100%;
  min-height: 42px;
  box-sizing: border-box;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  background: rgba(6,6,8,0.74);
  color: #fff;
  font: 700 13px/1.4 var(--lobnho-font-body);
  outline: none;
  padding: 0 12px;
}

.lob-appmax-calc select {
  color-scheme: dark;
}

.lob-appmax-check {
  align-content: end;
}

.lob-appmax-check input {
  width: auto;
  min-height: auto;
  accent-color: #ff00f6;
}

.lob-appmax-result {
  display: grid;
  gap: 12px;
}

.lob-appmax-result-main,
.lob-appmax-result-cards > div,
.lob-appmax-fees {
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255,0,246,0.08), rgba(255,255,255,0.035)), rgba(5,5,7,0.72);
  backdrop-filter: blur(20px);
}

.lob-appmax-result-main span,
.lob-appmax-result-cards span {
  display: block;
  color: rgba(255,255,255,0.48);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lob-appmax-result-main strong {
  display: block;
  margin: 6px 0;
  color: #fff;
  font-size: 34px;
}

.lob-appmax-result-cards strong {
  display: block;
  margin: 6px 0;
  color: #fff;
  font-size: 20px;
}

.lob-appmax-result-main small,
.lob-appmax-result-cards small {
  color: rgba(255,255,255,0.54);
  font-size: 12px;
  line-height: 1.45;
}

.lob-appmax-fees h2 {
  margin: 0;
  color: #fff;
  font-size: 15px;
}

.lob-appmax-fees textarea {
  min-height: 180px;
  padding: 12px;
  color: rgba(255,255,255,0.78);
  resize: vertical;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.55;
}



/* ===== FIX ORDENACAO DE PEDIDOS ADMIN ===== */
.lob-admin-orders { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 16px; align-items: start; }
.lob-admin-orders .lob-order-card { margin-bottom: 0; }

/* FINAL EOF GUIDES FIX - must stay after older guide blocks. */
[data-route-guides] { padding: 112px clamp(14px, 3vw, 42px) 64px !important; }
[data-guides-page] { width: min(1380px, 100%) !important; margin: 0 auto !important; }
.lob-guides-shell { display: grid !important; grid-template-columns: minmax(240px, 310px) minmax(0, 1fr) !important; gap: 18px !important; align-items: start !important; width: 100% !important; }
.lob-guides-sidebar,
.lob-guide-reader,
.lob-guide-single { border: 1px solid rgba(255,255,255,0.1) !important; border-radius: 14px !important; background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,0,246,0.035)), rgba(5,5,7,0.74) !important; box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 18px 60px rgba(0,0,0,0.38) !important; backdrop-filter: blur(22px) saturate(1.15) !important; -webkit-backdrop-filter: blur(22px) saturate(1.15) !important; }
.lob-guides-sidebar { position: sticky !important; top: 106px !important; display: grid !important; gap: 14px !important; max-height: calc(100vh - 130px) !important; overflow: auto !important; padding: 16px !important; }
.lob-guides-search { display: grid !important; gap: 8px !important; color: rgba(255,255,255,0.58) !important; font: 900 11px/1 var(--lobnho-font-body) !important; letter-spacing: .06em !important; text-transform: uppercase !important; }
.lob-guides-search input { width: 100% !important; min-height: 42px !important; border: 1px solid rgba(255,255,255,0.1) !important; border-radius: 8px !important; background: rgba(0,0,0,0.48) !important; color: #fff !important; outline: none !important; padding: 0 12px !important; font: 700 13px/1 var(--lobnho-font-body) !important; }
.lob-guides-categories { display: flex !important; flex-wrap: wrap !important; gap: 8px !important; }
.lob-guides-categories button { appearance: none !important; min-height: 32px !important; border: 1px solid rgba(255,255,255,0.1) !important; border-radius: 999px !important; background: rgba(255,255,255,0.055) !important; color: rgba(255,255,255,0.72) !important; cursor: pointer !important; padding: 0 12px !important; font: 900 10px/1 var(--lobnho-font-body) !important; letter-spacing: .06em !important; text-transform: uppercase !important; }
.lob-guides-categories button:hover,
.lob-guides-categories button.is-active { border-color: rgba(255,0,246,0.52) !important; background: rgba(255,0,246,0.2) !important; color: #fff !important; }
.lob-guides-nav { display: grid !important; gap: 8px !important; }
.lob-guides-nav a { display: grid !important; gap: 5px !important; min-width: 0 !important; padding: 12px !important; border: 1px solid transparent !important; border-radius: 10px !important; background: transparent !important; color: rgba(255,255,255,0.72) !important; text-decoration: none !important; }
.lob-guides-nav a:hover,
.lob-guides-nav a.is-active { border-color: rgba(255,0,246,0.35) !important; background: rgba(255,0,246,0.13) !important; color: #fff !important; }
.lob-guides-nav strong { overflow: hidden !important; text-overflow: ellipsis !important; color: inherit !important; font: 900 14px/1.2 var(--lobnho-font-body) !important; }
.lob-guides-nav span { display: -webkit-box !important; overflow: hidden !important; color: rgba(255,255,255,0.48) !important; font: 700 11px/1.35 var(--lobnho-font-body) !important; -webkit-box-orient: vertical !important; -webkit-line-clamp: 2 !important; }
.lob-guide-reader { min-width: 0 !important; min-height: 560px !important; padding: clamp(22px, 3.2vw, 46px) !important; }
.lob-guide-head { display: grid !important; gap: 12px !important; margin: 0 0 24px !important; }
.lob-guide-head > span { color: var(--lobnho-pink) !important; font: 900 11px/1 var(--lobnho-font-body) !important; letter-spacing: .14em !important; text-transform: uppercase !important; }
.lob-guide-head h1 { max-width: 920px !important; margin: 0 !important; color: #fff !important; font: 900 clamp(36px, 4.8vw, 68px)/.95 var(--lobnho-font-logo) !important; letter-spacing: 0 !important; }
.lob-guide-head p { max-width: 840px !important; margin: 0 !important; color: rgba(255,255,255,0.66) !important; font: 700 15px/1.6 var(--lobnho-font-body) !important; }
.lob-guide-content { max-width: 920px !important; color: rgba(255,255,255,0.82) !important; font: 600 15px/1.8 var(--lobnho-font-body) !important; }
.lob-guide-content img { display: block !important; width: auto; max-width: 100% !important; height: auto !important; border-radius: 10px !important; border: 1px solid rgba(255,255,255,0.1) !important; background: rgba(0,0,0,0.45) !important; }
.lob-guide-content p:empty { display: none !important; }
@media (max-width: 860px) {
  [data-route-guides] { padding: 96px 12px 48px !important; }
  .lob-guides-shell { grid-template-columns: 1fr !important; }
  .lob-guides-sidebar { position: relative !important; top: auto !important; max-height: none !important; }
}
'n
/* ===== TICKETS ===== */
.lob-tickets-layout { display:flex; gap:20px; align-items:flex-start; }
.lob-tickets-sidebar { flex:0 0 340px; max-width:340px; display:flex; flex-direction:column; gap:12px; }
.lob-tickets-sidebar h1 { font:800 18px var(--lobnho-font-body); color:#fff; margin:0; }
.lob-tickets-content { flex:1; min-width:0; }
.lob-tickets-welcome { padding:40px 20px; text-align:center; color:rgba(255,255,255,0.45); font-size:14px; }
#lob-tickets-list { display:flex; flex-direction:column; gap:6px; max-height:70vh; overflow-y:auto; }
.lob-ticket-new { display:grid; gap:8px; padding:16px; border:1px solid rgba(255,255,255,0.08); border-radius:10px; background:rgba(5,5,6,0.4); }
.lob-ticket-new input, .lob-ticket-new textarea { min-height:38px; border:1px solid rgba(255,255,255,0.12); border-radius:6px; background:rgba(6,6,8,0.72); color:#fff; font:500 13px var(--lobnho-font-body); padding:8px 12px; outline:none; }
.lob-ticket-new textarea { min-height:72px; resize:vertical; }
.lob-ticket-card { padding:14px; border:1px solid rgba(255,255,255,0.08); border-radius:10px; background:rgba(5,5,6,0.4); cursor:pointer; margin-bottom:8px; transition:border-color .15s; }
.lob-ticket-card:hover { border-color:rgba(255,0,246,0.3); }
.lob-ticket-status { display:inline-block; padding:2px 8px; border-radius:4px; font-size:10px; font-weight:800; text-transform:uppercase; letter-spacing:.04em; }
.lob-ticket-status--open { background:rgba(0,255,18,0.15); color:#00ff12; }
.lob-ticket-status--closed { background:rgba(255,39,39,0.15); color:#ff2727; }
.lob-ticket-messages { display:flex; flex-direction:column; gap:10px; max-height:500px; overflow-y:auto; padding:16px; border:1px solid rgba(255,255,255,0.08); border-radius:10px; background:rgba(5,5,6,0.3); margin-bottom:10px; }
.lob-ticket-msg { display:flex; gap:10px; max-width:85%; }
.lob-ticket-msg--user { align-self:flex-end; flex-direction:row-reverse; }
.lob-ticket-msg--admin { align-self:flex-start; }
.lob-ticket-msg-avatar { width:32px; height:32px; border-radius:50%; background:rgba(255,0,246,0.2); display:grid; place-items:center; font-size:14px; font-weight:800; flex-shrink:0; overflow:hidden; }
.lob-ticket-msg-avatar img { width:100%; height:100%; object-fit:cover; }
.lob-ticket-msg-body { padding:8px 12px; border-radius:12px; font-size:13px; }
.lob-ticket-msg--user .lob-ticket-msg-body { background:rgba(255,0,246,0.18); color:#fff; border-bottom-right-radius:4px; }
.lob-ticket-msg--admin .lob-ticket-msg-body { background:rgba(255,255,255,0.08); color:#fff; border-bottom-left-radius:4px; }
.lob-ticket-msg-meta { display:flex; gap:8px; align-items:center; margin-bottom:2px; }
.lob-ticket-msg-meta strong { font-size:11px; }
.lob-ticket-msg-meta small { font-size:10px; color:rgba(255,255,255,0.35); }
.lob-ticket-msg-body p { margin:0; font-size:13px; line-height:1.45; }
.lob-ticket-reply { display:flex; gap:8px; }
.lob-ticket-reply input { flex:1; min-height:38px; border:1px solid rgba(255,255,255,0.12); border-radius:8px; background:rgba(6,6,8,0.72); color:#fff; font:500 13px var(--lobnho-font-body); padding:0 12px; outline:none; }
.lob-ticket-reply button { min-height:38px; border:1px solid rgba(255,0,246,0.4); border-radius:8px; background:rgba(255,0,246,0.18); color:#fff; cursor:pointer; font:700 12px var(--lobnho-font-body); padding:0 16px; }
.lob-ticket-closed-msg { text-align:center; padding:10px; color:rgba(255,255,255,0.45); font-size:13px; border:1px solid rgba(255,255,255,0.06); border-radius:8px; background:rgba(5,5,6,0.3); }

/* Admin tickets */
.lob-admin-ticket-card { padding:14px; border:1px solid rgba(255,255,255,0.08); border-radius:10px; background:rgba(5,5,6,0.4); margin-bottom:10px; }
.lob-admin-ticket-head { display:flex; justify-content:space-between; align-items:center; gap:10px; margin-bottom:6px; }
.lob-admin-ticket-head-actions { display:flex; align-items:center; gap:8px; flex:0 0 auto; }
.lob-admin-ticket-toggle { min-width:30px; min-height:30px; }
.lob-admin-ticket-card.lob-admin-ticket-expanded .lob-order-expand-icon { transform:rotate(45deg); }
.lob-admin-ticket-details { margin-top:12px; }
.lob-admin-ticket-actions { display:flex; gap:8px; margin-top:8px; }
.lob-ticket-chat { margin-top:12px; padding:12px; border:1px solid rgba(255,255,255,0.06); border-radius:8px; background:rgba(0,0,0,0.3); }
.lob-ticket-chat .lob-ticket-reply { margin-top:8px; }

@media (max-width:760px) {
  .lob-tickets-layout { flex-direction:column; }
  .lob-tickets-sidebar { flex:none; max-width:100%; }
  #lob-tickets-list { max-height:none; }
}
@media (max-width:600px) {
  .lob-ticket-msg { max-width:92%; }
  .lob-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lob-card-grid label:nth-child(1),
  .lob-card-grid label:nth-child(2),
  .lob-card-grid label:nth-child(6) { grid-column: 1 / -1; }
  .lob-card-grid label:nth-child(n+3):nth-child(-n+5) { grid-column: span 1; }
  .lob-appmax-result-main strong { font-size: 28px; }
}

/* ── Coupon UI ──────────────────────────────────────────────── */
.lob-coupon-section { padding: 10px 16px; }
.lob-coupon-input-row { display:flex; gap:8px; align-items:center; }
.lob-coupon-input-row input { flex:1; padding:6px 10px; border-radius:6px; border:1px solid rgba(255,0,246,0.3); background:rgba(0,0,0,0.4); color:#fff; font-size:13px; }
.lob-coupon-input-row input:focus { border-color:#ff00f6; outline:none; }
.lob-coupon-apply-btn { padding:6px 14px; background:rgba(255,0,246,0.15); color:#ff00f6; border:1px solid rgba(255,0,246,0.3); border-radius:6px; cursor:pointer; font-size:13px; white-space:nowrap; }
.lob-coupon-apply-btn:hover { background:rgba(255,0,246,0.25); }
.lob-coupon-error { color:#ff2727; font-size:12px; margin:4px 0 0; }
.lob-coupon-badges { display:flex; flex-wrap:wrap; gap:6px; margin-top:8px; }
.lob-coupon-badge { display:inline-flex; align-items:center; gap:4px; padding:3px 10px; background:rgba(0,255,18,0.12); border:1px solid rgba(0,255,18,0.25); border-radius:12px; font-size:12px; color:#00ff12; }
.lob-coupon-badge .lob-coupon-remove { background:none; border:none; color:#ff2727; cursor:pointer; font-size:14px; line-height:1; padding:0; }
.lob-coupon-summary { color:#ff98fb; font-size:12px; margin:4px 0 0; }
.lob-cart-discount { color:#00ff12; font-size:11px; display:block; }
.lob-checkout-discount { padding:8px 0; border-top:1px solid rgba(255,255,255,0.08); display:flex; justify-content:space-between; }
.lob-checkout-discount span { color:#00ff12; font-size:13px; }
.lob-checkout-discount strong { color:#ff2727; font-size:13px; }
.lob-order-coupon-tag { display:inline-block; padding:2px 8px; margin:2px; background:rgba(0,255,18,0.1); border:1px solid rgba(0,255,18,0.2); border-radius:8px; font-size:11px; color:#00ff12; }
.lob-coupon-stats { color:#888; font-size:12px; margin:4px 0; }
.lob-coupon-row-icon { display:flex; align-items:center; justify-content:center; }
.lob-coupon-badge-lg { display:inline-block; padding:4px 12px; background:rgba(255,0,246,0.1); border:1px solid rgba(255,0,246,0.2); border-radius:8px; font-size:13px; font-weight:700; color:#ff00f6; white-space:nowrap; }
.lob-coupon-usage { color:#888; font-size:11px; }
.lob-row-expired { opacity:0.6; }
.lob-row-expired .lob-coupon-badge-lg { border-color:rgba(255,39,39,0.3); color:#ff2727; }

/* ── Variations editor ─────────────────────────────────────── */
.lob-variations-editor { margin: 10px 0; padding: 10px; background: rgba(255,255,255,0.03); border-radius: 8px; }
.lob-variation-row { display: flex; gap: 8px; align-items: center; margin-bottom: 8px; }
.lob-variation-row input { flex: 1; padding: 6px 10px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.1); background: rgba(0,0,0,0.3); color: #fff; font-size: 13px; }
.lob-variation-row .lob-var-price { max-width: 120px; }
.lob-var-remove { background: rgba(255,39,39,0.15); border: 1px solid rgba(255,39,39,0.3); color: #ff2727; border-radius: 6px; cursor: pointer; padding: 4px 10px; font-size: 16px; line-height: 1; }
.lob-var-add { background: rgba(0,255,18,0.1); border: 1px solid rgba(0,255,18,0.2); color: #00ff12; border-radius: 6px; cursor: pointer; padding: 6px 14px; font-size: 13px; }
.lob-var-add:hover { background: rgba(0,255,18,0.2); }
.lob-product-variation { display: block; margin: 8px 0; }
.lob-product-variation select { width:100%; min-height:42px; padding:9px 12px; border:1px solid rgba(255,0,246,.3); border-radius:6px; background:#0a090c; color:#fff; color-scheme:dark; font:700 13px var(--lobnho-font-body); outline:none; }
.lob-product-variation select:hover { border-color:rgba(255,0,246,.6); }
.lob-product-variation select:focus { border-color:#ff00f6; box-shadow:0 0 0 3px rgba(255,0,246,.12); }
.lob-product-variation select option { background:#0a090c; color:#fff; }
.lob-product-variation select option:checked { background:#ff00f6; color:#080609; }
.lob-product-variation span { display: block; font-size: 11px; color: #888; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }'
.lob-translated-file {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  margin-top: 7px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.28);
  color: rgba(255, 255, 255, 0.68);
  overflow: hidden;
}

.lob-translated-file[data-file-picker] {
  cursor: pointer;
  transition: border-color 140ms ease, background 140ms ease;
}

.lob-translated-file[data-file-picker]:hover,
.lob-translated-file[data-file-picker]:focus-visible {
  border-color: rgba(255, 0, 246, 0.58);
  background: rgba(255, 0, 246, 0.08);
  outline: none;
}

.lob-translated-file__button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  min-width: 126px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 0, 246, 0.45);
  border-radius: 5px;
  background: rgba(255, 0, 246, 0.12);
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
}

.lob-translated-file [data-file-name] {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lob-translated-file input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.lob-media-field-actions { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:8px; align-items:start; margin-top:7px; }
.lob-media-field-actions .lob-translated-file { display:grid; grid-template-rows:42px auto; min-width:0; min-height:0; margin:0; padding:0; gap:4px; border:0; border-radius:0; background:transparent; overflow:visible; }
.lob-media-field-actions .lob-translated-file[data-file-picker]:hover,
.lob-media-field-actions .lob-translated-file[data-file-picker]:focus-visible { border-color:transparent; background:transparent; outline:none; }
.lob-media-field-actions .lob-translated-file__button,
.lob-media-library-trigger { display:flex; align-items:center; justify-content:center; box-sizing:border-box; width:100%; min-width:0; max-width:100%; height:42px; min-height:42px; margin:0; padding:0 10px; overflow:hidden; border:1px solid rgba(255,0,246,.38); border-radius:6px; background:rgba(255,0,246,.10); color:#fff; font:700 10px/1 var(--lobnho-font-body); text-align:center; white-space:nowrap; text-overflow:ellipsis; cursor:pointer; }
.lob-media-field-actions .lob-translated-file[data-file-picker]:hover .lob-translated-file__button,
.lob-media-field-actions .lob-translated-file[data-file-picker]:focus-visible .lob-translated-file__button,
.lob-media-library-trigger:hover,
.lob-media-library-trigger:focus-visible { border-color:rgba(255,152,251,.7); background:rgba(255,0,246,.20); outline:none; }
.lob-media-field-actions .lob-translated-file [data-file-name] { min-width:0; padding:0 1px; color:rgba(255,255,255,.58); font:700 10px/1.25 var(--lobnho-font-body); }
.lob-media-field-actions > input { width:100%; min-width:0; margin:0; }
.lob-media-library-modal { position:fixed; inset:0; z-index:1500; display:grid; place-items:center; padding:20px; background:rgba(0,0,0,.78); backdrop-filter:blur(8px); }
.lob-media-library-modal[hidden] { display:none !important; }
.lob-media-library { width:min(980px,100%); max-height:min(760px,calc(100vh - 40px)); overflow:auto; padding:16px; border:1px solid rgba(255,0,246,.32); border-radius:8px; background:#0b0a0d; box-shadow:0 28px 80px rgba(0,0,0,.6); }
.lob-media-library > header { display:flex; align-items:center; justify-content:space-between; gap:16px; margin-bottom:14px; }
.lob-media-library > header span { display:block; color:#ff98fb; font-size:10px; font-weight:800; text-transform:uppercase; }
.lob-media-library > header h2 { margin:2px 0 0; color:#fff; font:700 22px var(--lobnho-font-logo); }
.lob-media-library-close { width:34px; height:34px; border:1px solid rgba(255,255,255,.14); border-radius:6px; background:rgba(255,255,255,.05); color:#fff; font-size:24px; line-height:1; cursor:pointer; }
.lob-media-library-toolbar { display:flex; align-items:center; gap:10px; margin-bottom:14px; }
.lob-media-library-toolbar input { flex:1 1 auto; min-width:0; height:40px; padding:0 12px; border:1px solid rgba(255,255,255,.13); border-radius:6px; background:rgba(255,255,255,.04); color:#fff; font:500 13px var(--lobnho-font-body); outline:none; }
.lob-media-library-toolbar input:focus { border-color:rgba(255,0,246,.7); }
.lob-media-library-toolbar span { color:rgba(255,255,255,.52); font-size:12px; }
.lob-media-library-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(140px,1fr)); gap:10px; min-height:160px; }
.lob-media-library-item { display:grid; grid-template-rows:auto auto auto 1fr; gap:6px; min-width:0; padding:8px; border:1px solid rgba(255,255,255,.09); border-radius:6px; background:rgba(255,255,255,.025); }
.lob-media-library-item:hover { border-color:rgba(255,0,246,.42); }
.lob-media-library-preview { position:relative; display:grid; place-items:center; aspect-ratio:1/1; overflow:hidden; background:rgba(0,0,0,.42); }
.lob-media-library-preview img, .lob-media-library-preview video { width:100%; height:100%; object-fit:contain; display:block; }
.lob-media-library-preview span { position:absolute; right:5px; bottom:5px; padding:2px 5px; border:1px solid rgba(255,255,255,.16); border-radius:4px; background:rgba(0,0,0,.7); color:#fff; font-size:9px; font-weight:800; }
.lob-media-library-item strong { overflow:hidden; color:#fff; font-size:11px; text-overflow:ellipsis; white-space:nowrap; }
.lob-media-library-item small { color:rgba(255,255,255,.46); font-size:10px; }
.lob-media-library-item button { align-self:end; min-height:30px; border:1px solid rgba(255,0,246,.36); border-radius:5px; background:rgba(255,0,246,.12); color:#fff; font:700 10px var(--lobnho-font-body); cursor:pointer; }
.lob-media-library-note { align-self:end; line-height:1.25; }
.lob-media-library-item-actions { display:flex; align-items:end; gap:6px; min-width:0; }
.lob-media-library-item-actions > :first-child { min-width:0; flex:1; }
.lob-media-library-delete { display:grid; flex:0 0 30px; width:30px; height:30px; min-height:30px; place-items:center; padding:6px; color:rgba(255,185,185,.9) !important; border-color:rgba(255,91,91,.3) !important; background:rgba(255,68,68,.08) !important; }
.lob-media-library-delete svg { width:16px; height:16px; }
.lob-media-library-delete:hover, .lob-media-library-delete:focus-visible { color:#fff !important; border-color:rgba(255,108,108,.9) !important; background:rgba(230,42,42,.78) !important; outline:none; }
.lob-media-library-delete:disabled { opacity:.5; cursor:wait; }
@media (max-width:560px) { .lob-media-library-modal { padding:10px; } .lob-media-library { max-height:calc(100vh - 20px); padding:12px; } .lob-media-library-grid { grid-template-columns:repeat(2,minmax(0,1fr)); } .lob-media-field-actions { grid-template-columns:1fr; } .lob-media-field-actions .lob-translated-file__button, .lob-media-library-trigger { min-height:38px; height:38px; } }
/* Shipping administration, checkout and tracking */
.lob-shipping-product-fields {
  margin: 4px 0 12px;
  padding: 14px;
  border: 1px solid rgba(255, 0, 246, .22);
  background: rgba(8, 8, 10, .72);
}
.lob-shipping-product-fields legend { padding: 0 8px; color: #ff98fb; font-weight: 700; }
.lob-form-quad { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.lob-shipping-status-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin-bottom: 14px; }
.lob-shipping-status-grid > div { display: flex; align-items: center; justify-content: space-between; gap: 10px; min-height: 58px; padding: 12px; border: 1px solid rgba(255,255,255,.12); background: rgba(8,8,10,.82); }
.lob-shipping-settings-form { max-width: none; margin-bottom: 18px; }
.lob-shipping-settings-form h2, .lob-shipping-orders h2 { margin: 10px 0; font-size: 18px; }
.lob-shipping-orders { display: grid; gap: 10px; }
.lob-shipping-order { padding: 14px; border: 1px solid rgba(255,255,255,.12); background: rgba(8,8,10,.82); }
.lob-shipping-order header { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.lob-shipping-order header .lob-status { margin-left: auto; }
.lob-shipping-track-row, .lob-shipping-event-row { display: grid; grid-template-columns: 160px minmax(180px,1fr) auto; gap: 8px; margin-top: 10px; }
.lob-shipping-label-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.lob-tracking-timeline { display: grid; gap: 8px; margin-top: 12px; padding-left: 12px; border-left: 2px solid rgba(255,0,246,.35); }
.lob-tracking-timeline > div { display: grid; gap: 2px; }
.lob-tracking-timeline small { color: rgba(255,255,255,.58); }
.lob-shipping-address-fields { display: grid; gap: 10px; margin-top: 10px; }
.lob-shipping-address-fields h3 { margin: 0; font-size: 15px; }
.lob-checkout-shipping { display: grid; grid-template-columns: 1fr auto; gap: 4px 12px; padding: 12px 0; border-top: 1px solid rgba(255,255,255,.1); }
.lob-checkout-shipping small { grid-column: 1 / -1; color: rgba(255,255,255,.6); }
@media (max-width: 900px) {
  .lob-form-quad, .lob-shipping-status-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .lob-form-quad, .lob-shipping-status-grid, .lob-shipping-track-row, .lob-shipping-event-row { grid-template-columns: 1fr; }
  .lob-shipping-order header .lob-status { margin-left: 0; }
}
.gl-notification-btn {
  position: relative;
}

.gl-notification-icon {
  width: 20px;
  height: 20px;
}

.lob-notification-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border: 2px solid #090909;
  border-radius: 9px;
  background: #ff2727;
  color: #fff;
  font: 700 10px/14px "Jura", sans-serif;
  text-align: center;
  box-sizing: border-box;
}

.lob-notification-panel {
  position: fixed;
  z-index: 10020;
  top: 82px;
  right: max(16px, calc((100vw - 1120px) / 2));
  width: min(390px, calc(100vw - 32px));
  max-height: min(620px, calc(100vh - 104px));
  overflow: hidden;
  border: 1px solid rgba(255, 0, 246, 0.42);
  border-radius: 8px;
  background: rgba(8, 8, 10, 0.98);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.65);
  color: #fff;
}

.lob-notification-header,
.lob-notification-views,
.lob-notification-tools {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lob-notification-views {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lob-notification-views button {
  min-width: 0;
  min-height: 34px;
  border: 1px solid rgba(255, 0, 246, 0.25);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.025);
  color: #aaa;
  font: 700 10px "Jura", sans-serif;
  cursor: pointer;
}

.lob-notification-views button:hover,
.lob-notification-views button.is-active {
  border-color: #ff00f6;
  background: rgba(255, 0, 246, 0.12);
  color: #fff;
}

.lob-notification-header {
  justify-content: space-between;
}

.lob-notification-header div {
  display: grid;
  gap: 2px;
}

.lob-notification-header strong {
  font-size: 14px;
  text-transform: uppercase;
}

.lob-notification-header span,
.lob-notification-item-copy span,
.lob-notification-item-copy time {
  color: #9c969f;
  font-size: 11px;
}

.lob-notification-close {
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  color: #aaa;
  font-size: 22px;
  cursor: pointer;
}

.lob-notification-tools {
  flex-wrap: wrap;
}

.lob-notification-tools button {
  min-height: 30px;
  padding: 5px 9px;
  border: 1px solid rgba(255, 0, 246, 0.28);
  border-radius: 4px;
  background: rgba(255, 0, 246, 0.07);
  color: #ddd;
  font: 600 10px "Jura", sans-serif;
  cursor: pointer;
}

.lob-notification-tools button:hover:not(:disabled) {
  border-color: #ff00f6;
  color: #fff;
}

.lob-notification-tools button:disabled {
  opacity: 0.4;
  cursor: default;
}

.lob-notification-list {
  max-height: 470px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.lob-notification-item {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.lob-notification-item:hover {
  background: rgba(255, 0, 246, 0.08);
}

.lob-notification-item.is-unread {
  background: rgba(255, 0, 246, 0.11);
}

.lob-notification-item.is-unread::after {
  content: "";
  position: absolute;
  right: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff00f6;
}

.lob-notification-item-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 0, 246, 0.34);
  border-radius: 50%;
  color: #ff67f9;
}

.lob-notification-item-icon svg {
  width: 17px;
  height: 17px;
}

.lob-notification-item-copy {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.lob-notification-item-copy strong,
.lob-notification-item-copy span {
  overflow-wrap: anywhere;
}

.lob-notification-empty {
  margin: 0;
  padding: 30px 16px;
  color: #999;
  text-align: center;
}

.lob-admin-notification-button {
  position: relative;
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.lob-admin-notification-button svg {
  width: 17px;
  height: 17px;
}

@keyframes lob-notif-shake {
  0%, 100% { transform: rotate(0); }
  20% { transform: rotate(-12deg); }
  40% { transform: rotate(10deg); }
  60% { transform: rotate(-7deg); }
  80% { transform: rotate(5deg); }
}

.lob-notif-shake {
  animation: lob-notif-shake 0.6s ease-in-out;
}

@media (max-width: 600px) {
  .lob-notification-panel {
    top: 72px;
    right: 10px;
    width: calc(100vw - 20px);
    max-height: calc(100vh - 84px);
  }

  .lob-notification-list {
    max-height: calc(100vh - 190px);
  }
}
