/* === Inline Style Block 1 === */
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: #0a0a0f; }
    :root {
      --bg-primary: #0a0a0f;
      --bg-secondary: #12121a;
      --bg-card: #12121a;
      --bg-hover: #1a1a28;
      --accent: #7c3aed;
      --accent-hover: #6d28d9;
      --accent-light: #a78bfa;
      --cyan: #06b6d4;
      --border: #1e1e2e;
    }
    .gradient-text {
      background: linear-gradient(135deg, #a78bfa, #7c3aed);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .btn-gradient {
      background: #7c3aed;
      color: #fff;
      border: none;
      padding: 12px 28px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-gradient:hover {
      background: #6d28d9; transform: translateY(-1px);
      box-shadow: 0 4px 20px rgba(124, 58, 237, 0.25);
    }
    .btn-outline-accent {
      background: transparent;
      border: 1px solid #7c3aed;
      color: #a78bfa;
      padding: 10px 24px;
      border-radius: 8px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s;
    }
    .btn-outline-accent:hover {
      background: rgba(124, 58, 237, 0.1);
      border-color: #a78bfa;
    }

    /* ===== Legal Pages ===== */
    .legal-page-content {
      max-width: 900px;
      margin: 0 auto;
      padding: 120px 24px 60px;
      color: #cbd5e1;
      line-height: 1.8;
      font-size: 15px;
    }
    .legal-page-content h1 {
      font-size: 36px;
      font-weight: 800;
      background: linear-gradient(135deg, #a78bfa, #7c3aed);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 32px;
      text-align: center;
    }
    .legal-page-content h2, .legal-page-content h3, .legal-page-content h4 {
      color: #e2e8f0;
      margin-top: 28px;
      margin-bottom: 12px;
    }
    .legal-page-content h2 { font-size: 24px; font-weight: 700; }
    .legal-page-content h3 { font-size: 20px; font-weight: 600; }
    .legal-page-content h4 { font-size: 18px; font-weight: 600; }
    .legal-page-content p { margin-bottom: 14px; }
    .legal-page-content a { color: #a78bfa; text-decoration: underline; }
    .legal-page-content a:hover { color: #c4b5fd; }
    .legal-page-content ul, .legal-page-content ol { margin: 12px 0 12px 24px; }
    .legal-page-content li { margin-bottom: 6px; }
    .legal-page-content strong { color: #e2e8f0; }
    .legal-back-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: #a78bfa;
      background: none;
      border: 1px solid rgba(124,58,237,0.3);
      padding: 8px 18px;
      border-radius: 8px;
      cursor: pointer;
      font-size: 14px;
      margin-bottom: 24px;
      transition: all 0.2s;
    }
    .legal-back-btn:hover {
      background: rgba(124,58,237,0.1);
      border-color: #7c3aed;
    }
    /* ===== Hero Animated Orbs ===== */
    @keyframes heroOrb1 {
      0%, 100% { transform: translate(0, 0) scale(1); }
      25% { transform: translate(80px, -60px) scale(1.1); }
      50% { transform: translate(-40px, 40px) scale(0.95); }
      75% { transform: translate(60px, 80px) scale(1.05); }
    }
    @keyframes heroOrb2 {
      0%, 100% { transform: translate(0, 0) scale(1); }
      25% { transform: translate(-70px, 50px) scale(1.08); }
      50% { transform: translate(50px, -30px) scale(0.92); }
      75% { transform: translate(-30px, -70px) scale(1.12); }
    }
    @keyframes heroOrb3 {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(60px, 40px) scale(1.06); }
      66% { transform: translate(-50px, -50px) scale(0.97); }
    }
    @keyframes gradientShift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .hero {
      padding: 150px 24px 100px;
      background: linear-gradient(180deg, #0a0a0f 0%, #0d0b1a 30%, #110e20 50%, #0a0a0f 100%);
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    /* Subtle grid pattern overlay */
    .hero-grid-overlay {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(124, 58, 237, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.03) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
      z-index: 0;
      mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.4) 0%, transparent 70%);
      -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.4) 0%, transparent 70%);
    }

    /* Animated floating orbs */
    .hero-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(100px);
      pointer-events: none;
      z-index: 0;
    }
    .hero-orb--purple {
      width: 600px;
      height: 600px;
      background: rgba(124, 58, 237, 0.12);
      top: -200px;
      left: 20%;
      animation: heroOrb1 20s ease-in-out infinite;
    }
    .hero-orb--blue {
      width: 500px;
      height: 500px;
      background: rgba(59, 130, 246, 0.08);
      top: 50%;
      right: 10%;
      animation: heroOrb2 25s ease-in-out infinite;
    }
    .hero-orb--cyan {
      width: 450px;
      height: 450px;
      background: rgba(6, 182, 212, 0.07);
      bottom: -150px;
      left: 5%;
      animation: heroOrb3 18s ease-in-out infinite;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      animation: fadeInUp 0.8s ease-out both;
    }

    .hero h1 {
      font-size: 56px;
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 24px;
      letter-spacing: -2px;
      color: #fff;
    }
    .hero h1 .hero-headline-gradient {
      display: block;
      font-size: 64px;
      font-weight: 900;
      background: linear-gradient(135deg, #a78bfa, #7c3aed, #06b6d4, #a78bfa);
      background-size: 200% 200%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: gradientShift 4s ease-in-out infinite;
      text-shadow: none;
      filter: drop-shadow(0 0 30px rgba(124, 58, 237, 0.3));
    }
    .hero p {
      font-size: 17px;
      color: #9ca3af;
      max-width: 520px;
      margin: 0 auto 44px;
      line-height: 1.7;
    }

    /* Hero buttons */
    .hero-cta {
      display: flex;
      gap: 16px;
      justify-content: center;
      align-items: center;
      animation: fadeInUp 0.8s ease-out 0.2s both;
    }
    .hero-btn-primary {
      background: linear-gradient(135deg, #7c3aed, #6d28d9);
      color: #fff;
      border: none;
      padding: 14px 32px;
      border-radius: 12px;
      font-weight: 600;
      font-size: 15px;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 4px 24px rgba(124, 58, 237, 0.3), 0 0 0 0 rgba(124, 58, 237, 0);
      font-family: inherit;
    }
    .hero-btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 32px rgba(124, 58, 237, 0.45), 0 0 60px rgba(124, 58, 237, 0.15);
    }
    .hero-btn-glass {
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(167, 139, 250, 0.25);
      color: #c4b5fd;
      padding: 14px 32px;
      border-radius: 12px;
      font-weight: 600;
      font-size: 15px;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: inherit;
    }
    .hero-btn-glass:hover {
      transform: translateY(-3px);
      background: rgba(124, 58, 237, 0.12);
      border-color: rgba(167, 139, 250, 0.5);
      color: #e2e8f0;
      box-shadow: 0 8px 32px rgba(124, 58, 237, 0.15);
    }

    /* Stats bar with glass card */
    .stats-bar {
      display: flex;
      justify-content: center;
      gap: 0;
      margin-top: 64px;
      position: relative;
      z-index: 2;
      animation: fadeInUp 0.8s ease-out 0.4s both;
    }
    .stats-glass-card {
      display: flex;
      gap: 0;
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(124, 58, 237, 0.12);
      border-radius: 16px;
      padding: 28px 12px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }
    .stats-bar .stat-item {
      text-align: center;
      padding: 0 40px;
      position: relative;
    }
    .stats-bar .stat-item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 1px;
      height: 40px;
      background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.2), transparent);
    }
    .stats-bar .stat-num {
      font-size: 32px;
      font-weight: 800;
      background: linear-gradient(135deg, #a78bfa, #7c3aed);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .stats-bar .stat-label {
      font-size: 11px;
      color: #64748b;
      margin-top: 6px;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: 500;
    }
    .section { max-width: 1240px; }
    .section-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 28px;
    }
    .section-title { font-size: 24px; font-weight: 800; letter-spacing: -0.5px; }
    .section-divider {
      width: 40px;
      height: 2px;
      background: #7c3aed;
      border-radius: 2px;
      margin-top: 8px;
    }
    .product-card {
      background: #12121a;
      border: 1px solid rgba(30, 30, 46, 0.6);
      transition: all 0.25s ease;
      border-radius: 10px;
      overflow: hidden;
    }
    .product-card:hover {
      border-color: rgba(124, 58, 237, 0.35);
      transform: translateY(-3px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(124,58,237,0.1);
    }
    .product-img {
      background: linear-gradient(135deg, #14102a 0%, #0e1525 100%);
      position: relative;
    }
    .product-img .img-placeholder {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;
      font-size: 14px;
      color: #4a4a6a;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 600;
    }
    .product-price {
      color: #a78bfa; font-weight: 700;
    }
    .product-card .wishlist-btn {
      position: absolute;
      top: 12px;
      left: 12px;
      background: rgba(10,10,15,0.7);
      border: 1px solid #2a2a3a;
      color: #94a3b8;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 14px;
      transition: all 0.2s;
      backdrop-filter: blur(4px);
    }
    .product-card .wishlist-btn:hover,
    .product-card .wishlist-btn.active { color: #ef4444; border-color: #ef4444; }
    .filter-bar {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 28px;
      flex-wrap: wrap;
    }
    .filter-bar .search-wrap {
      flex: 1;
      min-width: 240px;
      position: relative;
    }
    .filter-bar .search-wrap input {
      width: 100%;
      padding: 10px 16px 10px 40px;
      background: #12121a;
      border: 1px solid #1e1e2e;
      border-radius: 8px;
      color: #e2e8f0;
      font-size: 14px;
    }
    .filter-bar .search-wrap input:focus { border-color: #7c3aed; outline: none; }
    .filter-bar .search-wrap .search-icon {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      color: #4a4a6a;
      font-size: 14px;
    }
    .filter-bar select {
      padding: 10px 14px;
      background: #12121a;
      border: 1px solid #1e1e2e;
      border-radius: 8px;
      color: #e2e8f0;
      font-size: 14px;
      cursor: pointer;
    }
    .filter-bar select:focus { border-color: #7c3aed; outline: none; }
    .cat-pill {
      background: #12121a;
      border: 1px solid #1e1e2e;
      font-size: 13px;
      padding: 8px 20px;
      transition: all 0.2s;
    }
    .cat-pill:hover { border-color: #7c3aed; color: #e2e8f0; }
    .cat-pill.active {
      background: linear-gradient(135deg, #7c3aed, #6d28d9);
      border-color: #7c3aed;
      color: #fff;
    }
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0,0,0,0.7);
      backdrop-filter: blur(16px) saturate(1.2);
      -webkit-backdrop-filter: blur(16px) saturate(1.2);
      z-index: 200;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s;
    }
    .modal-overlay.active {
      opacity: 1;
      pointer-events: auto;
    }
    .modal {
      background: rgba(18, 18, 30, 0.75);
      backdrop-filter: blur(40px) saturate(1.4);
      -webkit-backdrop-filter: blur(40px) saturate(1.4);
      border: 1px solid rgba(124, 58, 237, 0.15);
      border-radius: 16px;
      max-width: 440px;
      padding: 40px 36px 32px;
      box-shadow:
        0 0 60px rgba(124, 58, 237, 0.08),
        0 25px 80px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
      position: relative;
      animation: modalSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }
    @keyframes modalSlideIn {
      from { opacity: 0; transform: translateY(20px) scale(0.97); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }
    .modal-lg {
      max-width: 900px;
      max-height: 90vh;
      padding: 32px;
    }
    .modal-close {
      position: absolute;
      top: 14px;
      right: 14px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.06);
      color: #64748b;
      font-size: 18px;
      cursor: pointer;
      width: 34px;
      height: 34px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      transition: all 0.25s ease;
      z-index: 5;
      line-height: 1;
    }
    .modal-close:hover {
      background: rgba(124, 58, 237, 0.15);
      border-color: rgba(124, 58, 237, 0.3);
      color: #e2e8f0;
      transform: rotate(90deg);
    }

    /* ===== Premium Auth Modal Styles ===== */
    .auth-modal-title {
      font-size: 24px;
      font-weight: 800;
      margin-bottom: 4px;
      letter-spacing: -0.5px;
      background: linear-gradient(135deg, #e2e8f0 0%, #c4b5fd 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .auth-modal-subtitle {
      color: #64748b;
      font-size: 14px;
      margin-bottom: 28px;
    }
    .auth-input-group {
      position: relative;
      margin-bottom: 18px;
    }
    .auth-input-group label {
      display: block;
      font-size: 13px;
      font-weight: 500;
      color: #94a3b8;
      margin-bottom: 6px;
    }
    .auth-input-wrap {
      position: relative;
      display: flex;
      align-items: center;
    }
    .auth-input-icon {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 15px;
      color: #4a4a6a;
      pointer-events: none;
      transition: color 0.3s ease;
      z-index: 2;
    }
    .auth-input-wrap input {
      width: 100%;
      padding: 12px 16px 12px 42px;
      background: rgba(10, 10, 18, 0.7);
      border: 1px solid rgba(30, 30, 50, 0.8);
      border-radius: 12px;
      color: #e2e8f0;
      font-size: 14px;
      font-family: inherit;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      outline: none;
    }
    .auth-input-wrap input::placeholder {
      color: #3a3a5a;
    }
    .auth-input-wrap input:focus {
      border-color: rgba(124, 58, 237, 0.6);
      background: rgba(10, 10, 18, 0.9);
      box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12), 0 0 20px rgba(124, 58, 237, 0.06);
    }
    .auth-input-wrap:focus-within .auth-input-icon {
      color: #a78bfa;
    }
    .auth-btn {
      width: 100%;
      padding: 13px 24px;
      border: none;
      border-radius: 12px;
      font-size: 15px;
      font-weight: 600;
      font-family: inherit;
      color: #fff;
      cursor: pointer;
      background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 50%, #5b21b6 100%);
      box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 6px;
      position: relative;
      overflow: hidden;
    }
    .auth-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
      transition: left 0.5s ease;
    }
    .auth-btn:hover::before {
      left: 100%;
    }
    .auth-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
    .auth-btn:active {
      transform: translateY(0);
    }
    .auth-link {
      text-align: center;
      margin-top: 22px;
      font-size: 14px;
      color: #64748b;
    }
    .auth-link a {
      color: #a78bfa;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      position: relative;
      transition: color 0.25s ease;
    }
    .auth-link a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 1.5px;
      background: linear-gradient(90deg, #a78bfa, #7c3aed);
      transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      border-radius: 1px;
    }
    .auth-link a:hover {
      color: #c4b5fd;
    }
    .auth-link a:hover::after {
      width: 100%;
    }
    .modal-logo-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(109, 40, 217, 0.1));
      border: 1px solid rgba(124, 58, 237, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      font-size: 22px;
    }
    .pd-modal-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }
    .pd-modal-img {
      height: 320px;
      background: linear-gradient(135deg, #14102a, #0e1525);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      border: 1px solid #1e1e2e;
    }
    .pd-modal-img img { width: 100%; height: 100%; object-fit: cover; }
    .pd-modal-info h2 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
    .pd-modal-vendor { color: #64748b; font-size: 13px; margin-bottom: 16px; }
    .pd-modal-price { font-size: 28px; font-weight: 800; margin-bottom: 20px; }
    .pd-modal-desc { color: #94a3b8; font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
    .pd-modal-stats {
      display: flex;
      gap: 24px;
      margin-bottom: 20px;
      padding: 12px 0;
      border-top: 1px solid #1e1e2e;
      border-bottom: 1px solid #1e1e2e;
    }
    .pd-modal-stat { text-align: center; }
    .pd-modal-stat .val { font-size: 17px; font-weight: 700; color: #e2e8f0; }
    .pd-modal-stat .lbl { font-size: 11px; color: #64748b; text-transform: uppercase; letter-spacing: 0.5px; }
    .pd-modal-actions { display: flex; gap: 12px; margin-top: 16px; }
    .reviews-list { margin-top: 24px; border-top: 1px solid #1e1e2e; padding-top: 20px; }
    .reviews-list h3 { font-size: 16px; font-weight: 700; margin-bottom: 16px; }
    .review-item {
      padding: 14px;
      background: #0a0a0f;
      border-radius: 8px;
      margin-bottom: 10px;
      border: 1px solid #1e1e2e;
    }
    .review-item .review-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 6px;
    }
    .review-item .review-author { font-weight: 600; font-size: 13px; }
    .review-item .review-date { font-size: 12px; color: #64748b; }
    .review-item .review-stars { margin-bottom: 6px; }
    .review-item .review-body { color: #94a3b8; font-size: 13px; line-height: 1.6; }
    .auth-link {
      text-align: center;
      margin-top: 20px;
      font-size: 14px;
      color: #64748b;
    }
    .auth-link a { color: #a78bfa; font-weight: 500; cursor: pointer; }
    .auth-link a:hover { color: #7c3aed; }
    .profile-tabs {
      display: flex;
      gap: 4px;
      background: #0a0a0f;
      border-radius: 10px;
      padding: 4px;
      margin-bottom: 24px;
      border: 1px solid #1e1e2e;
    }
    .profile-tab {
      padding: 10px 20px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 500;
      color: #64748b;
      cursor: pointer;
      transition: all 0.2s;
      border: none;
      background: none;
    }
    .profile-tab:hover { color: #e2e8f0; }
    .profile-tab.active { background: #7c3aed; color: #fff; }
    .profile-section { display: none; }
    .profile-section.active { display: block !important; }
    .order-card {
      background: #12121a;
      border: 1px solid #1e1e2e;
      border-radius: 10px;
      padding: 16px 20px;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: border-color 0.2s;
    }
    .order-card:hover { border-color: #2a2a3a; }
    .order-info { display: flex; align-items: center; gap: 16px; }
    .order-thumb {
      width: 48px;
      height: 48px;
      background: #14102a;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      color: #4a4a6a;
      overflow: hidden;
    }
    .order-thumb img { width: 100%; height: 100%; object-fit: cover; }
    .order-title { font-weight: 600; font-size: 14px; }
    .order-sub { font-size: 12px; color: #64748b; margin-top: 2px; }
    .order-price { font-weight: 700; font-size: 16px; color: #a78bfa; }
    .order-status { font-size: 12px; margin-top: 2px; text-align: right; }
    .footer {
      background: #0d0d14;
      border-top: 1px solid #1e1e2e;
      margin-top: 80px;
    }
    .footer-brand { font-size: 20px; }
    .footer-bottom { color: #4a4a6a; font-size: 12px; }
    .wishlist-card {
      background: #12121a;
      border: 1px solid #1e1e2e;
      border-radius: 10px;
      padding: 14px 18px;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: border-color 0.2s;
    }
    .wishlist-card:hover { border-color: #2a2a3a; }
    /* base .nav - overridden by premium navbar styles below */
    .review-form {
      margin-top: 16px;
      padding: 16px;
      background: #0a0a0f;
      border-radius: 8px;
      border: 1px solid #1e1e2e;
    }
    .star-input { display: flex; gap: 4px; margin-bottom: 12px; }
    .star-input span {
      font-size: 24px;
      color: #2a2a3a;
      cursor: pointer;
      transition: color 0.15s;
    }
    .star-input span.active,
    .star-input span:hover { color: #f59e0b; }
    .page-view { display: none; }
    .page-view.active { display: block; }
    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { background: #0a0a0f; }
    ::-webkit-scrollbar-thumb { background: #1e1e2e; border-radius: 4px; }
    ::-webkit-scrollbar-thumb:hover { background: #2a2a3a; }
    @media(max-width: 768px) {
      .hero { padding: 120px 24px 80px; }
      .hero h1 { font-size: 32px; }
      .hero h1 .hero-headline-gradient { font-size: 38px; }
      .hero-cta { flex-direction: column; }
      .stats-bar { gap: 0; }
      .stats-glass-card { flex-direction: column; gap: 20px; padding: 24px 32px; }
      .stats-bar .stat-item { padding: 0; }
      .stats-bar .stat-item:not(:last-child)::after { display: none; }
      .pd-modal-grid { grid-template-columns: 1fr; }
      .filter-bar { flex-direction: column; }
      .profile-tabs { overflow-x: auto; }
      .modal-lg { max-width: 95vw; }
    }
    @media(max-width: 480px) {
      .stats-bar .stat-num { font-size: 28px; }
      .product-grid { grid-template-columns: 1fr; }
    }

    /* ===== Premium Navbar Styles ===== */
    .nav {
      background: rgba(10, 10, 15, 0.72) !important;
      backdrop-filter: blur(24px) saturate(1.5) !important;
      -webkit-backdrop-filter: blur(24px) saturate(1.5) !important;
      border-bottom: 1px solid rgba(124, 58, 237, 0.06) !important;
      padding: 0 32px !important;
      height: 64px !important;
      display: flex !important;
      align-items: center !important;
      justify-content: space-between !important;
      position: fixed !important;
      top: 0 !important;
      left: 0 !important;
      right: 0 !important;
      z-index: 1000 !important;
      transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease !important;
      box-shadow: 0 1px 20px rgba(0, 0, 0, 0.2);
    }
    .nav.scrolled {
      background: rgba(10, 10, 15, 0.92) !important;
      border-bottom-color: rgba(124, 58, 237, 0.12) !important;
      box-shadow: 0 4px 32px rgba(0, 0, 0, 0.45);
    }
    .nav-brand {
      font-size: 20px !important;
      font-weight: 800 !important;
      letter-spacing: 1.5px !important;
      text-transform: uppercase !important;
      text-decoration: none !important;
      flex-shrink: 0;
      transition: opacity 0.3s ease;
      background: linear-gradient(135deg, #e2e8f0 0%, #a78bfa 50%, #7c3aed 100%) !important;
      -webkit-background-clip: text !important;
      -webkit-text-fill-color: transparent !important;
      background-clip: text !important;
    }
    .nav-brand:hover { opacity: 0.85; }

    .nav-links {
      display: flex !important;
      align-items: center !important;
      gap: 4px !important;
    }

    /* Main nav links (Startseite, Produkte) */
    .nav-link {
      position: relative;
      font-size: 13.5px !important;
      font-weight: 500 !important;
      color: #94a3b8 !important;
      padding: 7px 16px !important;
      border-radius: 8px !important;
      transition: all 0.3s ease !important;
      text-decoration: none !important;
      white-space: nowrap;
      cursor: pointer;
      border: 1px solid transparent;
    }
    .nav-link:hover {
      color: #e2e8f0 !important;
      background: rgba(148, 163, 184, 0.07) !important;
    }
    .nav-link.active {
      color: #e2e8f0 !important;
      background: rgba(148, 163, 184, 0.1) !important;
      font-weight: 600 !important;
    }

    /* Divider between main links and categories */
    .nav-divider {
      width: 1px;
      height: 20px;
      background: linear-gradient(180deg, transparent, rgba(148, 163, 184, 0.15), transparent);
      margin: 0 10px;
      flex-shrink: 0;
    }

    /* Category nav links - pill style */
    .nav-link.cat-link {
      font-size: 12.5px !important;
      color: #64748b !important;
      padding: 6px 15px !important;
      border-radius: 20px !important;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
      font-weight: 500 !important;
      position: relative;
      letter-spacing: 0.01em;
      border: 1px solid transparent;
    }
    .nav-link.cat-link:hover {
      color: #c4b5fd !important;
      background: rgba(124, 58, 237, 0.08) !important;
      border-color: rgba(124, 58, 237, 0.12) !important;
      transform: translateY(-1px);
    }
    .nav-link.cat-link.active-cat {
      color: #fff !important;
      background: rgba(124, 58, 237, 0.18) !important;
      border-color: rgba(124, 58, 237, 0.3) !important;
      box-shadow: 0 0 20px rgba(124, 58, 237, 0.2), 0 0 6px rgba(124, 58, 237, 0.12) !important;
      font-weight: 600 !important;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    /* Responsive navbar adjustments */
    @media(max-width: 768px) {
      .nav { padding: 0 16px !important; }
      .nav-divider { display: none; }
      .nav-links { gap: 2px !important; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
      .nav-links::-webkit-scrollbar { display: none; }
    }

    .purchase-card { background: #12121a; border: 1px solid #1e1e2e; border-radius: 10px; padding: 16px 20px; margin-bottom: 12px; display: flex; align-items: center; justify-content: space-between; transition: border-color 0.2s; }
    .purchase-card:hover { border-color: #2a2a3a; }
    .purchase-actions { display: flex; gap: 8px; align-items: center; }
    .btn-download { background: linear-gradient(135deg, #059669, #047857); color: #fff; border: none; padding: 8px 16px; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.2s; display: inline-flex; align-items: center; gap: 6px; }
    .btn-download:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(5,150,105,0.3); }
    .btn-invoice { background: transparent; border: 1px solid #1e1e2e; color: #94a3b8; padding: 8px 14px; border-radius: 8px; font-size: 12px; cursor: pointer; transition: all 0.2s; }
    .btn-invoice:hover { border-color: #7c3aed; color: #a78bfa; }
    .download-count { font-size: 11px; color: #64748b; margin-top: 2px; }
    .ticket-card { background: #12121a; border: 1px solid #1e1e2e; border-radius: 10px; padding: 16px 20px; margin-bottom: 12px; cursor: pointer; transition: all 0.2s; }
    .ticket-card:hover { border-color: #7c3aed; transform: translateY(-1px); }
    .ticket-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
    .ticket-subject { font-weight: 600; font-size: 15px; color: #e2e8f0; }
    .ticket-meta { display: flex; gap: 12px; font-size: 12px; color: #64748b; }
    .badge-status { padding: 3px 10px; border-radius: 12px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
    .badge-open { background: rgba(34,197,94,0.15); color: #22c55e; }
    .badge-pending { background: rgba(234,179,8,0.15); color: #eab308; }
    .badge-resolved { background: rgba(59,130,246,0.15); color: #3b82f6; }
    .badge-closed { background: rgba(107,114,128,0.15); color: #6b7280; }
    .badge-category { padding: 2px 8px; border-radius: 8px; font-size: 11px; font-weight: 500; background: rgba(124,58,237,0.12); color: #a78bfa; }
    .ticket-chat { max-height: 500px; overflow-y: auto; padding: 16px 0; }
    .chat-message { display: flex; gap: 12px; margin-bottom: 16px; padding: 12px 16px; border-radius: 10px; }
    .chat-message.msg-user { background: rgba(59,130,246,0.08); border: 1px solid rgba(59,130,246,0.15); }
    .chat-message.msg-admin { background: rgba(124,58,237,0.08); border: 1px solid rgba(124,58,237,0.15); }
    .chat-message.msg-vendor { background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.15); }
    .chat-avatar { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; flex-shrink: 0; }
    .chat-avatar.av-user { background: rgba(59,130,246,0.2); color: #3b82f6; }
    .chat-avatar.av-admin { background: rgba(124,58,237,0.2); color: #a78bfa; }
    .chat-avatar.av-vendor { background: rgba(34,197,94,0.2); color: #22c55e; }
    .chat-sender { font-weight: 600; font-size: 13px; }
    .chat-sender .role-badge { padding: 1px 6px; border-radius: 4px; font-size: 10px; margin-left: 6px; font-weight: 600; text-transform: uppercase; }
    .role-badge.rb-user { background: rgba(59,130,246,0.2); color: #60a5fa; }
    .role-badge.rb-admin { background: rgba(124,58,237,0.2); color: #c4b5fd; }
    .role-badge.rb-vendor { background: rgba(34,197,94,0.2); color: #4ade80; }
    .chat-time { font-size: 11px; color: #64748b; margin-left: 8px; }
    .chat-text { color: #d1d5db; font-size: 14px; line-height: 1.6; margin-top: 4px; }
    .chat-input-area { display: flex; gap: 12px; padding-top: 16px; border-top: 1px solid #1e1e2e; margin-top: 16px; }
    .chat-input-area textarea { flex: 1; background: #0a0a0f; border: 1px solid #1e1e2e; color: #e2e8f0; padding: 10px 14px; border-radius: 8px; resize: none; font-family: inherit; font-size: 14px; }
    .chat-input-area textarea:focus { border-color: #7c3aed; outline: none; }
    .ticket-participants { padding: 12px; background: #0a0a0f; border-radius: 8px; border: 1px solid #1e1e2e; margin-bottom: 16px; }
    .participant-badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 16px; font-size: 12px; margin: 2px 4px; }
    .participant-badge.pb-user { background: rgba(59,130,246,0.12); color: #60a5fa; }
    .participant-badge.pb-admin { background: rgba(124,58,237,0.12); color: #c4b5fd; }
    .participant-badge.pb-vendor { background: rgba(34,197,94,0.12); color: #4ade80; }
    .msg-conversation { background: #12121a; border: 1px solid #1e1e2e; border-radius: 10px; padding: 14px 18px; margin-bottom: 10px; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: space-between; }
    .msg-conversation:hover { border-color: #7c3aed; }
    .msg-unread { background: rgba(124,58,237,0.05); border-color: rgba(124,58,237,0.2); }
    .msg-unread-badge { background: #7c3aed; color: #fff; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 10px; min-width: 20px; text-align: center; }
    .msg-bubble { padding: 10px 14px; border-radius: 12px; max-width: 75%; margin-bottom: 8px; font-size: 14px; line-height: 1.5; }
    .msg-bubble.sent { background: rgba(124,58,237,0.15); color: #e2e8f0; margin-left: auto; border-bottom-right-radius: 4px; }
    .msg-bubble.received { background: #1a1a28; color: #d1d5db; border-bottom-left-radius: 4px; }
    .msg-bubble-time { font-size: 10px; color: #64748b; margin-top: 2px; }
    .invoice-modal { background: #12121a; border: 1px solid #1e1e2e; border-radius: 12px; padding: 32px; max-width: 500px; margin: 0 auto; }
    .invoice-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #1a1a28; }
    .invoice-total { font-size: 20px; font-weight: 800; color: #a78bfa; }
    .btn-msg-vendor { background: transparent; border: 1px solid rgba(34,197,94,0.3); color: #4ade80; padding: 8px 14px; border-radius: 8px; font-size: 12px; cursor: pointer; transition: all 0.2s; display: inline-flex; align-items: center; gap: 6px; }
    .btn-msg-vendor:hover { background: rgba(34,197,94,0.1); border-color: #22c55e; }
    .ticket-form-group { margin-bottom: 16px; }
    .ticket-form-group label { display: block; font-size: 13px; font-weight: 500; color: #94a3b8; margin-bottom: 6px; }
    .ticket-form-group input, .ticket-form-group select, .ticket-form-group textarea { width: 100%; padding: 10px 14px; background: #0a0a0f; border: 1px solid #1e1e2e; border-radius: 8px; color: #e2e8f0; font-size: 14px; font-family: inherit; }
    .ticket-form-group input:focus, .ticket-form-group select:focus, .ticket-form-group textarea:focus { border-color: #7c3aed; outline: none; }

    /* ===== V3 FEATURE STYLES ===== */
    .discord-btn { display:flex; align-items:center; justify-content:center; gap:8px; width:100%; padding:12px 20px; background:#5865F2; color:#fff; border:none; border-radius:10px; font-size:14px; font-weight:600; cursor:pointer; margin-bottom:16px; transition:all .3s; }
    .discord-btn:hover { background:#4752C4; transform:translateY(-1px); box-shadow:0 4px 20px rgba(88,101,242,.4); }
    .discord-btn svg { width:20px; height:20px; }
    .auth-divider { display:flex; align-items:center; gap:12px; margin:16px 0; color:#4a4a6a; font-size:12px; }
    .auth-divider::before,.auth-divider::after { content:''; flex:1; height:1px; background:#1e1e2e; }
    .blog-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(320px,1fr)); gap:24px; }
    .blog-card { background:linear-gradient(135deg,#12121a 0%,#0f0f17 100%); border:1px solid #1e1e2e; border-radius:16px; overflow:hidden; transition:all .3s; cursor:pointer; }
    .blog-card:hover { transform:translateY(-4px); border-color:#7c3aed; box-shadow:0 8px 30px rgba(124,58,237,.15); }
    .blog-card-img { width:100%; height:200px; object-fit:cover; background:#1a1a2e; }
    .blog-card-body { padding:20px; }
    .blog-card-cat { display:inline-block; padding:4px 12px; background:rgba(124,58,237,.15); color:#a78bfa; border-radius:20px; font-size:11px; font-weight:600; text-transform:uppercase; margin-bottom:8px; }
    .blog-card-title { font-size:18px; font-weight:700; color:#e2e8f0; margin-bottom:8px; }
    .blog-card-excerpt { color:#64748b; font-size:13px; line-height:1.5; }
    .blog-card-meta { display:flex; justify-content:space-between; align-items:center; margin-top:16px; padding-top:12px; border-top:1px solid #1e1e2e; color:#4a4a6a; font-size:12px; }
    .blog-filter-pills { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:24px; }
    .blog-pill { padding:8px 16px; background:#12121a; border:1px solid #1e1e2e; border-radius:20px; color:#94a3b8; font-size:13px; cursor:pointer; transition:all .2s; }
    .blog-pill.active,.blog-pill:hover { background:#7c3aed; color:#fff; border-color:#7c3aed; }
    .aff-stats-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:16px; margin-bottom:24px; }
    .aff-stat-card { background:#12121a; border:1px solid #1e1e2e; border-radius:12px; padding:20px; text-align:center; }
    .aff-stat-num { font-size:28px; font-weight:800; background:linear-gradient(135deg,#a78bfa,#7c3aed); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
    .aff-stat-label { font-size:12px; color:#64748b; margin-top:4px; }
    .aff-link-box { background:#0a0a0f; border:1px solid #1e1e2e; border-radius:8px; padding:12px; display:flex; align-items:center; gap:8px; margin:16px 0; }
    .aff-link-box input { flex:1; background:transparent; border:none; color:#e2e8f0; font-size:13px; outline:none; }
    .aff-link-box button { padding:6px 16px; background:#7c3aed; color:#fff; border:none; border-radius:6px; cursor:pointer; font-size:12px; }
    .email-pref-row { display:flex; justify-content:space-between; align-items:center; padding:12px 0; border-bottom:1px solid #1e1e2e; }
    .email-pref-label { color:#e2e8f0; font-size:14px; }
    .email-pref-desc { color:#64748b; font-size:12px; }
    .toggle-switch { position:relative; width:44px; height:24px; }
    .toggle-switch input { opacity:0; width:0; height:0; }
    .toggle-slider { position:absolute; cursor:pointer; top:0; left:0; right:0; bottom:0; background:#1e1e2e; transition:.3s; border-radius:24px; }
    .toggle-slider:before { position:absolute; content:''; height:18px; width:18px; left:3px; bottom:3px; background:#64748b; transition:.3s; border-radius:50%; }
    .toggle-switch input:checked + .toggle-slider { background:#7c3aed; }
    .toggle-switch input:checked + .toggle-slider:before { transform:translateX(20px); background:#fff; }
    .newsletter-box { background:linear-gradient(135deg,rgba(124,58,237,.1),rgba(99,102,241,.05)); border:1px solid #2d2d4a; border-radius:16px; padding:32px; margin-top:24px; text-align:center; }
    .newsletter-box h4 { font-size:18px; color:#e2e8f0; margin-bottom:8px; }
    .newsletter-box p { color:#64748b; font-size:13px; margin-bottom:16px; }
    .newsletter-form { display:flex; gap:8px; max-width:400px; margin:0 auto; }
    .newsletter-form input { flex:1; padding:10px 14px; background:#0a0a0f; border:1px solid #1e1e2e; border-radius:8px; color:#e2e8f0; font-size:14px; outline:none; }
    .newsletter-form input:focus { border-color:#7c3aed; }
    .newsletter-form button { padding:10px 24px; background:#7c3aed; color:#fff; border:none; border-radius:8px; font-weight:600; cursor:pointer; transition:all .3s; white-space:nowrap; }
    .newsletter-form button:hover { background:#6d28d9; }
    .hero-particles { position:absolute; top:0; left:0; width:100%; height:100%; pointer-events:none; overflow:hidden; z-index:0; }
    .hero-particle { position:absolute; border-radius:50%; background:rgba(167,139,250,.3); animation:floatParticle linear infinite; }
    @keyframes floatParticle { 0%{transform:translateY(100vh) scale(0);opacity:0;} 10%{opacity:1;} 90%{opacity:1;} 100%{transform:translateY(-10vh) scale(1);opacity:0;} }
    .why-section { padding:80px 24px; text-align:center; }
    .why-section h2 { font-size:32px; font-weight:800; margin-bottom:16px; background:linear-gradient(135deg,#e2e8f0,#a78bfa); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
    .why-section .subtitle { color:#64748b; font-size:16px; margin-bottom:48px; }
    .why-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:24px; max-width:1200px; margin:0 auto; }
    .why-card { background:linear-gradient(135deg,#12121a 0%,#0f0f17 100%); border:1px solid #1e1e2e; border-radius:16px; padding:32px; text-align:center; transition:all .4s; }
    .why-card:hover { border-color:#7c3aed; transform:translateY(-6px); box-shadow:0 12px 40px rgba(124,58,237,.15); }
    .why-card-icon { font-size:40px; margin-bottom:16px; }
    .why-card h3 { font-size:18px; font-weight:700; color:#e2e8f0; margin-bottom:8px; }
    .why-card p { color:#64748b; font-size:13px; line-height:1.6; }
    .testimonials-section { padding:80px 24px; background:linear-gradient(180deg,transparent,rgba(124,58,237,.03),transparent); }
    .testimonials-section h2 { text-align:center; font-size:32px; font-weight:800; margin-bottom:48px; background:linear-gradient(135deg,#e2e8f0,#a78bfa); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
    .testimonials-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:24px; max-width:1200px; margin:0 auto; }
    .testimonial-card { background:#12121a; border:1px solid #1e1e2e; border-radius:16px; padding:28px; position:relative; }
    .testimonial-text { color:#94a3b8; font-size:14px; line-height:1.6; margin-bottom:16px; padding-top:16px; }
    .testimonial-author { display:flex; align-items:center; gap:12px; }
    .testimonial-avatar { width:40px; height:40px; border-radius:50%; background:linear-gradient(135deg,#7c3aed,#a78bfa); display:flex; align-items:center; justify-content:center; color:#fff; font-weight:700; font-size:16px; }
    .testimonial-name { font-size:14px; font-weight:600; color:#e2e8f0; }
    .testimonial-role { font-size:12px; color:#64748b; }
    .trust-section { padding:60px 24px; text-align:center; }
    .trust-badges { display:flex; justify-content:center; gap:48px; flex-wrap:wrap; max-width:900px; margin:0 auto; }
    .trust-badge { display:flex; flex-direction:column; align-items:center; gap:8px; }
    .trust-badge-icon { width:56px; height:56px; border-radius:12px; background:rgba(124,58,237,.1); border:1px solid #2d2d4a; display:flex; align-items:center; justify-content:center; font-size:24px; }
    .trust-badge-text { font-size:13px; color:#94a3b8; font-weight:600; }
    .scroll-reveal { opacity:0; transform:translateY(30px); transition:all .8s cubic-bezier(.4,0,.2,1); }
    .scroll-reveal.revealed { opacity:1; transform:translateY(0); }
    @media(max-width:768px) {
      .why-grid,.testimonials-grid { grid-template-columns:1fr; }
      .trust-badges { gap:24px; }
      .newsletter-form { flex-direction:column; }
      .blog-grid { grid-template-columns:1fr; }
    }

  
    /* ===== VENDOR PROFILE PAGE ===== */
    .vendor-profile-page { max-width: 1200px; margin: 0 auto; padding: 24px; }
    .vendor-profile-header { display: flex; align-items: center; gap: 24px; padding: 32px; background: var(--bg-card); border-radius: 16px; border: 1px solid rgba(124,58,237,0.15); margin-bottom: 24px; }
    .vendor-profile-avatar { width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), #a855f7); display: flex; align-items: center; justify-content: center; font-size: 40px; color: white; font-weight: 700; flex-shrink: 0; overflow: hidden; }
    .vendor-profile-avatar img { width: 100%; height: 100%; object-fit: cover; }
    .vendor-profile-info { flex: 1; }
    .vendor-profile-name { font-size: 28px; font-weight: 800; color: #f1f5f9; display: flex; align-items: center; gap: 10px; }
    .vendor-verified-badge { background: linear-gradient(135deg, #10b981, #059669); color: white; padding: 3px 10px; border-radius: 12px; font-size: 12px; font-weight: 600; }
    .vendor-profile-bio { color: #94a3b8; margin-top: 8px; font-size: 15px; line-height: 1.6; }
    .vendor-profile-meta { display: flex; gap: 24px; margin-top: 12px; }
    .vendor-profile-meta span { color: #64748b; font-size: 13px; }
    .vendor-profile-meta span strong { color: #e2e8f0; }
    .vendor-profile-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; margin-bottom: 24px; }
    .vendor-stat-card { background: var(--bg-card); border-radius: 12px; padding: 20px; text-align: center; border: 1px solid rgba(124,58,237,0.1); }
    .vendor-stat-value { font-size: 28px; font-weight: 800; background: linear-gradient(135deg, var(--accent), #a855f7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
    .vendor-stat-label { font-size: 12px; color: #64748b; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
    .vendor-products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }
    .vendor-product-card { background: var(--bg-card); border-radius: 12px; overflow: hidden; border: 1px solid rgba(124,58,237,0.1); transition: all 0.3s; cursor: pointer; }
    .vendor-product-card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 8px 30px rgba(124,58,237,0.2); }
    .vendor-product-img { width: 100%; height: 160px; object-fit: cover; background: var(--bg-secondary); }
    .vendor-product-info { padding: 16px; }
    .vendor-product-title { font-size: 15px; font-weight: 600; color: #e2e8f0; margin-bottom: 8px; }
    .vendor-product-price { font-size: 18px; font-weight: 800; color: var(--accent); }

    /* ===== PAYOUT MODAL ===== */

    /* === VENDOR CREDIT CARD === */
    .vendor-credit-card {
      width: 400px; max-width: 100%; aspect-ratio: 1.586 / 1; border-radius: 15px; padding: 28px 32px;
      background: linear-gradient(135deg, #1a0533 0%, #0d0015 40%, #12001f 70%, #0a0a0f 100%);
      position: relative; overflow: hidden; cursor: default; box-sizing: border-box;
      box-shadow: 0 10px 40px rgba(124, 58, 237, 0.25), 0 2px 10px rgba(0,0,0,0.5);
      display: flex; flex-direction: column; justify-content: space-between;
      transition: transform 0.4s ease, box-shadow 0.4s ease; margin-bottom: 16px;
      border: 1px solid rgba(124, 58, 237, 0.15);
    }
    .vendor-credit-card:hover {
      transform: perspective(800px) rotateY(-3deg) rotateX(2deg) scale(1.02);
      box-shadow: 0 15px 50px rgba(124, 58, 237, 0.35), 0 5px 20px rgba(0,0,0,0.6);
    }
    .vendor-credit-card::before {
      content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
      background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.03) 45%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.03) 55%, transparent 60%);
      pointer-events: none; z-index: 2;
    }
    .vendor-credit-card::after {
      content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
      background: radial-gradient(circle at 20% 80%, rgba(124,58,237,0.08) 0%, transparent 50%),
                  radial-gradient(circle at 80% 20%, rgba(6,182,212,0.05) 0%, transparent 50%);
      pointer-events: none; z-index: 1;
    }
    .vcc-dots { position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; z-index: 0;
      background-image: radial-gradient(rgba(124,58,237,0.06) 1px, transparent 1px);
      background-size: 20px 20px;
    }
    .vcc-top { display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 3; }
    .vcc-bank-name { font-size: 15px; font-weight: 800; letter-spacing: 1.5px;
      background: linear-gradient(135deg, #a78bfa, #7c3aed); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .vcc-contactless { font-size: 22px; opacity: 0.5; color: #a78bfa; }
    .vcc-chip { width: 45px; height: 34px; border-radius: 6px; position: relative; z-index: 3; margin-top: 2px;
      background: linear-gradient(135deg, #c9a84c 0%, #f0d97a 30%, #c9a84c 50%, #a8883a 70%, #c9a84c 100%);
      box-shadow: inset 0 1px 2px rgba(255,255,255,0.3), 0 1px 3px rgba(0,0,0,0.3); }
    .vcc-chip::before { content: ''; position: absolute; top: 6px; left: 6px; right: 6px; bottom: 6px;
      border: 1.5px solid rgba(160,120,40,0.5); border-radius: 3px; }
    .vcc-chip::after { content: ''; position: absolute; top: 50%; left: 6px; right: 6px; height: 1.5px;
      background: rgba(160,120,40,0.4); transform: translateY(-50%); }
    .vcc-middle { position: relative; z-index: 3; }
    .vcc-balance-label { font-size: 11px; color: #64748b; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; font-weight: 500; }
    .vcc-balance-amount { font-size: 30px; font-weight: 800; color: #e2e8f0; letter-spacing: 2px;
      text-shadow: 0 0 20px rgba(124,58,237,0.3); }
    .vcc-bottom { display: flex; justify-content: space-between; align-items: flex-end; position: relative; z-index: 3; }
    .vcc-vendor-name { font-size: 12px; font-weight: 600; color: #94a3b8; letter-spacing: 2px; text-transform: uppercase; }
    .vcc-card-type { font-size: 11px; font-weight: 700; color: #7c3aed; letter-spacing: 2px; text-transform: uppercase;
      border: 1px solid rgba(124,58,237,0.3); padding: 4px 10px; border-radius: 4px; }
    @media (max-width: 480px) {
      .vendor-credit-card { width: 100%; padding: 22px 24px; }
      .vcc-balance-amount { font-size: 24px; }
    }

    .payout-modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(4px); z-index: 1000; display: flex; align-items: center; justify-content: center; }
    .payout-modal { background: var(--bg-card); border-radius: 16px; padding: 32px; max-width: 480px; width: 90%; border: 1px solid rgba(124,58,237,0.2); }
    .payout-modal h3 { font-size: 20px; font-weight: 700; color: #f1f5f9; margin-bottom: 20px; }
    .payout-method-btns { display: flex; gap: 12px; margin-bottom: 20px; }
    .payout-method-btn { flex: 1; padding: 16px; border-radius: 12px; background: var(--bg-secondary); border: 2px solid transparent; cursor: pointer; text-align: center; transition: all 0.3s; color: #94a3b8; }
    .payout-method-btn.active { border-color: var(--accent); color: var(--accent); background: rgba(124,58,237,0.1); }
    .payout-method-btn span { display: block; font-size: 24px; margin-bottom: 4px; }
    .payout-balance { text-align: center; padding: 16px; background: rgba(124,58,237,0.05); border-radius: 12px; margin-bottom: 20px; }
    .payout-balance .amount { font-size: 28px; font-weight: 800; color: #10b981; }

    /* ===== VENDOR STATS DASHBOARD ===== */
    .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin-bottom: 24px; }
    .stat-box { background: var(--bg-secondary); border-radius: 12px; padding: 20px; text-align: center; border: 1px solid rgba(124,58,237,0.1); }
    .stat-box .value { font-size: 24px; font-weight: 800; color: var(--accent); }
    .stat-box .label { font-size: 12px; color: #64748b; margin-top: 4px; }
    .stats-chart { background: var(--bg-secondary); border-radius: 12px; padding: 20px; margin-bottom: 24px; border: 1px solid rgba(124,58,237,0.1); }
    .stats-chart h4 { color: #e2e8f0; margin-bottom: 16px; font-size: 16px; }
    .chart-bars { display: flex; align-items: flex-end; gap: 4px; height: 150px; padding-top: 10px; }
    .chart-bar { flex: 1; background: linear-gradient(to top, var(--accent), #a855f7); border-radius: 4px 4px 0 0; min-height: 2px; position: relative; transition: all 0.3s; cursor: pointer; }
    .chart-bar:hover { opacity: 0.8; }
    .chart-bar:hover::after { content: attr(data-tooltip); position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%); background: #1e1e2e; color: #e2e8f0; padding: 4px 8px; border-radius: 6px; font-size: 11px; white-space: nowrap; z-index: 10; }
    .top-products-list { background: var(--bg-secondary); border-radius: 12px; padding: 20px; border: 1px solid rgba(124,58,237,0.1); }
    .top-products-list h4 { color: #e2e8f0; margin-bottom: 16px; }
    .top-product-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(124,58,237,0.05); }
    .top-product-item:last-child { border-bottom: none; }
    .top-product-name { color: #e2e8f0; font-weight: 500; }
    .top-product-rev { color: #10b981; font-weight: 700; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .vendor-profile-header { flex-direction: column; text-align: center; }
      .vendor-profile-meta { justify-content: center; flex-wrap: wrap; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
    }

  
/* ===== DARK/LIGHT MODE ===== */
:root {
  --bg-primary: #0f0a1a;
  --bg-secondary: #1a1025;
  --bg-card: #241830;
  --bg-input: #1a1025;
  --text-primary: #f3f0ff;
  --text-secondary: #a89cc8;
  --text-muted: #6b5f8a;
  --border-color: #2d2540;
  --accent: #7c3aed;
  --accent-hover: #6d28d9;
  --shadow-color: rgba(0,0,0,0.4);
  --nav-bg: rgba(15,10,26,0.95);
  --modal-bg: #1e1530;
  --badge-bg: rgba(124,58,237,0.15);
  --badge-text: #a78bfa;
}
[data-theme="light"] {
  --bg-primary: #f5f3ff;
  --bg-secondary: #ede9fe;
  --bg-card: #ffffff;
  --bg-input: #f5f3ff;
  --text-primary: #1e1530;
  --text-secondary: #4c3d6b;
  --text-muted: #7c6f9a;
  --border-color: #d4c8f0;
  --accent: #7c3aed;
  --accent-hover: #6d28d9;
  --shadow-color: rgba(124,58,237,0.08);
  --nav-bg: rgba(245,243,255,0.95);
  --modal-bg: #ffffff;
  --badge-bg: rgba(124,58,237,0.1);
  --badge-text: #7c3aed;
}
body { background: var(--bg-primary) !important; color: var(--text-primary) !important; transition: background 0.3s, color 0.3s; }
.nav { background: var(--nav-bg) !important; transition: background 0.3s; }
.product-card, .stat-card, .feature-card { background: var(--bg-card) !important; border-color: var(--border-color) !important; transition: background 0.3s, border-color 0.3s; }
.modal { background: var(--modal-bg) !important; color: var(--text-primary) !important; }
input, textarea, select { background: var(--bg-input) !important; color: var(--text-primary) !important; border-color: var(--border-color) !important; }
.badge { background: var(--badge-bg) !important; color: var(--badge-text) !important; }
.text-secondary, .product-card p, .stat-label { color: var(--text-secondary) !important; }

/* ===== THEME & LANG TOGGLE ===== */
.theme-toggle {
  background: var(--bg-input); border: 1px solid var(--border-color); color: var(--text-primary);
  padding: 6px 10px; border-radius: 8px; cursor: pointer; font-size: 14px; transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 4px;
}
.theme-toggle:hover { border-color: var(--accent); background: var(--accent); color: #fff; }
.lang-switcher {
  display: inline-flex; border-radius: 8px; overflow: hidden; border: 1px solid var(--border-color);
  font-size: 13px; font-weight: 600;
}
.lang-switcher button {
  padding: 6px 12px; border: none; cursor: pointer; transition: all 0.3s;
  background: var(--bg-input); color: var(--text-muted, #64748b); font-weight: 600; font-size: 13px; font-family: inherit;
}
.lang-switcher button:first-child { border-right: 1px solid var(--border-color); }
.lang-switcher button.active { background: var(--accent, #7c3aed); color: #fff; }
.lang-switcher button:hover:not(.active) { background: rgba(124,58,237,0.15); color: var(--accent-light, #a78bfa); }

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.92); z-index: 10000; justify-content: center; align-items: center;
  cursor: pointer; animation: fadeIn 0.2s;
}
.lightbox-overlay.active { display: flex; }
.lightbox-overlay img { max-width: 90%; max-height: 90%; border-radius: 12px; box-shadow: 0 0 40px rgba(124,58,237,0.3); }
.lightbox-close {
  position: absolute; top: 20px; right: 30px; color: #fff; font-size: 36px; cursor: pointer;
  background: rgba(0,0,0,0.5); width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; border: none;
}

/* ===== PRODUCT GALLERY ===== */
.product-gallery { display: flex; gap: 8px; flex-wrap: wrap; margin: 16px 0; }
.product-gallery .gallery-thumb {
  width: 80px; height: 80px; border-radius: 8px; object-fit: cover; cursor: pointer;
  border: 2px solid var(--border-color); transition: all 0.2s;
}
.product-gallery .gallery-thumb:hover, .product-gallery .gallery-thumb.active {
  border-color: var(--accent); transform: scale(1.05);
}
.product-gallery .gallery-main {
  width: 100%; max-height: 350px; object-fit: cover; border-radius: 12px; margin-bottom: 8px; cursor: pointer;
}
.gallery-video { width: 100%; border-radius: 12px; margin-bottom: 8px; }

/* ===== SIMILAR PRODUCTS ===== */
.similar-products { margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--border-color); }
.similar-products h3 { font-size: 16px; margin-bottom: 12px; color: var(--text-primary); }
.similar-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
.similar-item {
  background: var(--bg-secondary); border-radius: 10px; padding: 8px; cursor: pointer;
  border: 1px solid var(--border-color); transition: all 0.2s;
}
.similar-item:hover { border-color: var(--accent); transform: translateY(-2px); }
.similar-item img { width: 100%; height: 80px; object-fit: cover; border-radius: 6px; }
.similar-item .sim-title { font-size: 12px; font-weight: 600; margin-top: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.similar-item .sim-price { font-size: 12px; color: var(--accent); font-weight: 700; }

/* ===== COMPARE BAR ===== */
.compare-bar {
  position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-secondary);
  border-top: 2px solid var(--accent); padding: 12px 20px; z-index: 9000;
  display: none; align-items: center; justify-content: space-between;
  box-shadow: 0 -4px 20px var(--shadow-color); animation: slideUp 0.3s;
}
.compare-bar.active { display: flex; }
.compare-bar-items { display: flex; gap: 12px; align-items: center; }
.compare-bar-item {
  background: var(--bg-card); border-radius: 8px; padding: 6px 12px;
  display: flex; align-items: center; gap: 8px; border: 1px solid var(--border-color);
}
.compare-bar-item .remove-compare { cursor: pointer; color: #ef4444; font-weight: bold; }
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }

/* ===== COMPARE MODAL ===== */
.compare-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.compare-table th, .compare-table td {
  padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--border-color);
  font-size: 14px;
}
.compare-table th { color: var(--text-muted); font-weight: 500; width: 120px; }
.compare-table td { color: var(--text-primary); }

/* ===== QR POPUP ===== */
.qr-popup {
  text-align: center; padding: 20px;
}
.qr-popup img { margin: 16px auto; display: block; border-radius: 12px; background: #fff; padding: 12px; }
.qr-popup .qr-url { font-size: 12px; color: var(--text-muted); word-break: break-all; margin-top: 8px; }

/* ===== VENDOR SHOP BANNER ===== */
.vendor-banner {
  width: 100%; height: 200px; object-fit: cover; border-radius: 16px; margin-bottom: 16px;
}
.vendor-social-links { display: flex; gap: 12px; margin-top: 8px; }
.vendor-social-links a {
  color: var(--accent); text-decoration: none; font-size: 14px;
  padding: 4px 10px; border: 1px solid var(--border-color); border-radius: 6px;
  transition: all 0.2s;
}
.vendor-social-links a:hover { background: var(--accent); color: #fff; }

/* ===== NOTIFICATION TOGGLE ===== */
.notif-toggle {
  background: var(--bg-input); border: 1px solid var(--border-color); color: var(--text-primary);
  padding: 6px 10px; border-radius: 8px; cursor: pointer; font-size: 13px;
}


    /* ==================== V4 FEATURES CSS ==================== */
    /* Forum */
    .forum-container { max-width: 900px; margin: 0 auto; }
    .forum-cats { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
    .forum-cat-btn { padding: 8px 16px; border-radius: 20px; border: 1px solid #1e1e2e; background: transparent; color: #94a3b8; cursor: pointer; font-size: 13px; transition: all .2s; }
    .forum-cat-btn:hover, .forum-cat-btn.active { background: var(--accent); color: #fff; border-color: var(--accent); }
    .forum-cat-badge { display:inline-block; background:rgba(124,58,237,0.3); color:#c4b5fd; font-size:11px; padding:1px 6px; border-radius:10px; margin-left:4px; font-weight:600; min-width:18px; text-align:center; }
    .forum-cat-btn.active .forum-cat-badge { background:rgba(255,255,255,0.25); color:#fff; }
    .forum-top-bar { display:flex; align-items:center; gap:12px; margin-bottom:16px; flex-wrap:wrap; }
    .forum-thread-card { background: linear-gradient(135deg, #12121a, #16162a); border: 1px solid #1e1e2e; border-radius: 12px; padding: 16px 20px; margin-bottom: 12px; cursor: pointer; transition: all .2s; display: flex; justify-content: space-between; align-items: center; }
    .forum-thread-card:hover { border-color: var(--accent); transform: translateY(-1px); }
    .forum-thread-title { font-size: 16px; font-weight: 600; color: #e2e8f0; margin-bottom: 4px; }
    .forum-thread-meta { font-size: 12px; color: #64748b; }
    .forum-thread-stats { display: flex; gap: 16px; font-size: 12px; color: #64748b; text-align: center; flex-shrink: 0; }
    .forum-thread-stats span { display: flex; flex-direction: column; align-items: center; }
    .forum-thread-stats .stat-num { font-size: 16px; font-weight: 700; color: #94a3b8; }
    .forum-detail-header { margin-bottom: 24px; }
    .forum-detail-body { background: linear-gradient(135deg, #12121a, #16162a); border: 1px solid #1e1e2e; border-radius: 12px; padding: 20px; margin-bottom: 24px; color: #cbd5e1; line-height: 1.7; white-space: pre-wrap; }
    .forum-reply { background: #0f0f18; border: 1px solid #1e1e2e; border-radius: 10px; padding: 16px; margin-bottom: 10px; }
    .forum-reply-header { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 13px; }
    .forum-reply-author { color: var(--accent); font-weight: 600; }
    .forum-reply-date { color: #64748b; }
    .forum-reply-body { color: #cbd5e1; line-height: 1.6; white-space: pre-wrap; }
    .forum-new-btn { margin-bottom: 20px; }
    .forum-form { background: linear-gradient(135deg, #12121a, #16162a); border: 1px solid #1e1e2e; border-radius: 12px; padding: 20px; margin-bottom: 24px; }
    .forum-form textarea, .forum-form input, .forum-form select { width: 100%; background: #0a0a0f; border: 1px solid #1e1e2e; color: #e2e8f0; padding: 10px 14px; border-radius: 8px; margin-bottom: 12px; font-size: 14px; }
    .forum-form textarea { min-height: 120px; resize: vertical; }
    .forum-back-btn { background: transparent; border: 1px solid #1e1e2e; color: #94a3b8; padding: 8px 16px; border-radius: 8px; cursor: pointer; margin-bottom: 16px; font-size: 13px; }
    .forum-back-btn:hover { border-color: var(--accent); color: #e2e8f0; }
    .forum-pinned-badge { background: #fbbf24; color: #0a0a0f; font-size: 10px; padding: 2px 8px; border-radius: 10px; font-weight: 700; margin-left: 8px; }
    .forum-locked-badge { background: #ef4444; color: #fff; font-size: 10px; padding: 2px 8px; border-radius: 10px; font-weight: 700; margin-left: 8px; }
    /* Vendor Follow */
    .follow-btn { padding: 8px 20px; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all .2s; border: none; }
    .follow-btn.follow { background: var(--accent); color: #fff; }
    .follow-btn.follow:hover { background: #6d28d9; }
    .follow-btn.unfollow { background: transparent; border: 1px solid #ef4444; color: #ef4444; }
    .follow-btn.unfollow:hover { background: #ef4444; color: #fff; }
    .follower-count { font-size: 13px; color: #64748b; margin-left: 8px; }
    .following-card { background: linear-gradient(135deg, #12121a, #16162a); border: 1px solid #1e1e2e; border-radius: 12px; padding: 16px; display: flex; align-items: center; gap: 16px; margin-bottom: 10px; cursor: pointer; transition: all .2s; }
    .following-card:hover { border-color: var(--accent); }
    .following-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; color: #fff; flex-shrink: 0; }
    .following-info { flex: 1; }
    .following-name { font-weight: 600; color: #e2e8f0; font-size: 15px; }
    .following-stats { font-size: 12px; color: #64748b; margin-top: 2px; }
    /* Q&A */
    .qa-section { margin-top: 24px; padding-top: 24px; border-top: 1px solid #1e1e2e; }
    .qa-title { font-size: 16px; font-weight: 700; color: #e2e8f0; margin-bottom: 16px; }
    .qa-question { background: #0f0f18; border: 1px solid #1e1e2e; border-radius: 10px; padding: 14px; margin-bottom: 10px; }
    .qa-question-text { color: #e2e8f0; font-weight: 600; margin-bottom: 4px; }
    .qa-question-meta { font-size: 12px; color: #64748b; margin-bottom: 8px; }
    .qa-answer { background: #12121a; border-left: 3px solid var(--accent); padding: 10px 14px; margin: 8px 0 8px 16px; border-radius: 0 8px 8px 0; }
    .qa-answer-vendor { border-left-color: #22c55e; }
    .qa-answer-text { color: #cbd5e1; font-size: 14px; }
    .qa-answer-meta { font-size: 11px; color: #64748b; margin-top: 4px; display: flex; align-items: center; gap: 8px; }
    .qa-vendor-badge { background: #22c55e; color: #0a0a0f; font-size: 10px; padding: 1px 6px; border-radius: 8px; font-weight: 700; }
    .qa-upvote-btn { background: transparent; border: 1px solid #1e1e2e; color: #64748b; padding: 2px 8px; border-radius: 6px; cursor: pointer; font-size: 12px; transition: all .2s; }
    .qa-upvote-btn:hover { border-color: var(--accent); color: var(--accent); }
    .qa-form { margin-top: 12px; }
    .qa-form textarea { width: 100%; background: #0a0a0f; border: 1px solid #1e1e2e; color: #e2e8f0; padding: 10px; border-radius: 8px; min-height: 60px; resize: vertical; font-size: 13px; }
    .qa-form button { margin-top: 8px; }
    /* Leaderboard */
    .leaderboard-container { max-width: 900px; margin: 0 auto; }
    .leaderboard-tabs { display: flex; gap: 8px; margin-bottom: 24px; }
    .lb-tab { padding: 8px 16px; border-radius: 20px; border: 1px solid #1e1e2e; background: transparent; color: #94a3b8; cursor: pointer; font-size: 13px; transition: all .2s; }
    .lb-tab:hover, .lb-tab.active { background: var(--accent); color: #fff; border-color: var(--accent); }
    .lb-card { background: linear-gradient(135deg, #12121a, #16162a); border: 1px solid #1e1e2e; border-radius: 12px; padding: 16px 20px; margin-bottom: 10px; display: flex; align-items: center; gap: 16px; transition: all .2s; }
    .lb-card:hover { border-color: var(--accent); }
    .lb-rank { font-size: 24px; font-weight: 800; width: 40px; text-align: center; flex-shrink: 0; }
    .lb-rank.gold { color: #fbbf24; }
    .lb-rank.silver { color: #94a3b8; }
    .lb-rank.bronze { color: #cd7f32; }
    .lb-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; color: #fff; flex-shrink: 0; }
    .lb-info { flex: 1; }
    .lb-name { font-weight: 600; color: #e2e8f0; font-size: 15px; }
    .lb-detail { font-size: 12px; color: #64748b; margin-top: 2px; }
    .lb-stats { display: flex; gap: 20px; font-size: 13px; color: #94a3b8; text-align: center; flex-shrink: 0; }
    .lb-stats div { display: flex; flex-direction: column; }
    .lb-stats .lb-stat-val { font-size: 18px; font-weight: 700; color: #e2e8f0; }
    .lb-trophy { font-size: 28px; }
    /* Badges */
    .badge-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
    .badge-card { background: linear-gradient(135deg, #12121a, #16162a); border: 1px solid #1e1e2e; border-radius: 12px; padding: 16px; text-align: center; transition: all .2s; }
    .badge-card:hover { border-color: var(--accent); transform: translateY(-2px); }
    .badge-card.earned { border-color: var(--accent); }
    .badge-card.locked { opacity: 0.5; }
    .badge-icon { font-size: 36px; margin-bottom: 8px; }
    .badge-name { font-weight: 600; color: #e2e8f0; font-size: 14px; margin-bottom: 4px; }
    .badge-desc { font-size: 12px; color: #64748b; }
    .badge-tier { font-size: 10px; padding: 2px 8px; border-radius: 10px; font-weight: 700; display: inline-block; margin-top: 6px; }
    .badge-tier.gold { background: #fbbf2420; color: #fbbf24; }
    .badge-tier.silver { background: #94a3b820; color: #94a3b8; }
    .badge-tier.bronze { background: #cd7f3220; color: #cd7f32; }
    .badge-popup { position: fixed; top: 20px; right: 20px; background: linear-gradient(135deg, #1a1a2e, #16162a); border: 2px solid var(--accent); border-radius: 16px; padding: 20px; z-index: 10000; animation: badgePopIn 0.5s ease-out; box-shadow: 0 0 40px rgba(124,58,237,0.3); max-width: 300px; }
    @keyframes badgePopIn { from { transform: translateY(-50px) scale(0.8); opacity: 0; } to { transform: translateY(0) scale(1); opacity: 1; } }
    .badge-popup-icon { font-size: 48px; text-align: center; margin-bottom: 8px; }
    .badge-popup-title { font-size: 18px; font-weight: 700; color: #fbbf24; text-align: center; margin-bottom: 4px; }
    .badge-popup-name { font-size: 14px; color: #e2e8f0; text-align: center; }

/* === Inline Style Block 2 === */
.flash-sale-banner {
    background: linear-gradient(135deg, #7c3aed 0%, #dc2626 50%, #7c3aed 100%);
    background-size: 200% 200%;
    animation: flashGradient 3s ease infinite;
    padding: 16px 24px;
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: opacity 0.3s;
    position: relative;
    overflow: hidden;
  }
  .flash-sale-banner:hover { opacity: 0.95; }
  @keyframes flashGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  .flash-sale-badge {
    display: inline-block;
    background: #dc2626;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    animation: pulse 2s infinite;
  }
  @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }
  .flash-countdown { font-family: 'Courier New', monospace; font-weight: 700; color: #fbbf24; font-size: 14px; }
  .flash-original-price { text-decoration: line-through; color: #94a3b8; font-size: 13px; margin-right: 6px; }
  .flash-sale-price { color: #ef4444; font-weight: 800; }
  .wallet-card {
    background: linear-gradient(135deg, #1a1030 0%, #12121a 100%);
    border: 1px solid rgba(124,58,237,0.2);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 24px;
    text-align: center;
  }
  .wallet-balance-display {
    font-size: 42px; font-weight: 900;
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 8px;
  }
  .wallet-label { color: #64748b; font-size: 14px; margin-bottom: 20px; }
  .topup-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-bottom: 20px; }
  .topup-btn {
    background: rgba(124,58,237,0.1); border: 1px solid rgba(124,58,237,0.2);
    border-radius: 10px; padding: 14px 8px; color: #a78bfa; font-weight: 700;
    font-size: 16px; cursor: pointer; transition: all 0.2s; text-align: center;
  }
  .topup-btn:hover { background: rgba(124,58,237,0.25); border-color: #7c3aed; transform: translateY(-2px); }
  .tx-list { max-height: 400px; overflow-y: auto; }
  .tx-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; border-bottom: 1px solid rgba(124,58,237,0.05); }
  .tx-item:last-child { border-bottom: none; }
  .tx-amount.positive { color: #10b981; }
  .tx-amount.negative { color: #ef4444; }
  .security-card { background: var(--bg-secondary); border: 1px solid rgba(124,58,237,0.1); border-radius: 12px; padding: 24px; margin-bottom: 16px; }
  .security-card h4 { color: #e2e8f0; font-size: 16px; margin-bottom: 12px; }
  .tfa-status { display: inline-block; padding: 4px 12px; border-radius: 6px; font-size: 13px; font-weight: 600; }
  .tfa-enabled { background: rgba(16,185,129,0.15); color: #10b981; }
  .tfa-disabled { background: rgba(239,68,68,0.15); color: #ef4444; }
  .setup-key-box {
    background: #0a0a0f; border: 1px solid #1e1e2e; border-radius: 8px;
    padding: 14px; font-family: 'Courier New', monospace; font-size: 15px;
    color: #a78bfa; word-break: break-all; text-align: center; margin: 12px 0; letter-spacing: 2px; user-select: all;
  }
  .backup-codes-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin: 12px 0; }
  .backup-code {
    background: #0a0a0f; border: 1px solid #1e1e2e; border-radius: 6px;
    padding: 8px; text-align: center; font-family: 'Courier New', monospace; font-size: 13px; color: #e2e8f0; user-select: all;
  }
  .login-log-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(124,58,237,0.05); font-size: 13px; }
  .login-log-success { color: #10b981; }
  .login-log-failed { color: #ef4444; }
  .report-reasons { display: flex; flex-direction: column; gap: 8px; margin: 12px 0; }
  .report-reason-btn {
    background: rgba(124,58,237,0.05); border: 1px solid rgba(124,58,237,0.15);
    border-radius: 8px; padding: 12px 16px; color: #94a3b8; cursor: pointer;
    transition: all 0.2s; text-align: left; font-size: 14px;
  }
  .report-reason-btn:hover, .report-reason-btn.selected { background: rgba(124,58,237,0.15); border-color: #7c3aed; color: #e2e8f0; }
  .tfa-login-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.8); backdrop-filter: blur(16px);
    display: flex; align-items: center; justify-content: center; z-index: 10000;
  }
  .tfa-login-modal {
    background: rgba(18,18,30,0.95); border: 1px solid rgba(124,58,237,0.2);
    border-radius: 16px; padding: 40px; max-width: 400px; width: 90%; text-align: center;
  }
  .tfa-login-modal h3 { color: #e2e8f0; margin-bottom: 8px; }
  .tfa-login-modal p { color: #64748b; font-size: 14px; margin-bottom: 20px; }
  .tfa-code-input {
    width: 100%; padding: 14px; background: #0a0a0f; border: 1px solid #1e1e2e;
    border-radius: 10px; color: #e2e8f0; font-size: 24px; text-align: center;
    letter-spacing: 8px; font-family: 'Courier New', monospace; margin-bottom: 16px; box-sizing: border-box;
  }
  .tfa-code-input:focus { border-color: #7c3aed; outline: none; }
  .nav-wallet-badge {
    background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(109,40,217,0.1));
    border: 1px solid rgba(124,58,237,0.3); border-radius: 8px; padding: 4px 10px;
    font-size: 12px; color: #a78bfa; font-weight: 600; cursor: pointer;
    transition: all 0.2s; display: inline-flex; align-items: center; gap: 4px;
  }
  .nav-wallet-badge:hover { background: rgba(124,58,237,0.25); border-color: #7c3aed; }
  @media (max-width: 768px) {
    .topup-grid { grid-template-columns: repeat(3, 1fr); }
    .backup-codes-grid { grid-template-columns: repeat(3, 1fr); }
  }

/* === Inline Style Block 3 === */
#cookie-banner{position:fixed;bottom:0;left:0;right:0;z-index:99999;transform:translateY(100%);transition:transform .5s cubic-bezier(.4,0,.2,1);font-family:'Inter',Arial,sans-serif;}
#cookie-banner.cb-visible{transform:translateY(0);}
.cb-backdrop{position:fixed;inset:0;background:rgba(0,0,0,.4);backdrop-filter:blur(4px);-webkit-backdrop-filter:blur(4px);z-index:99998;opacity:0;transition:opacity .4s;pointer-events:none;}
.cb-backdrop.cb-visible{opacity:1;pointer-events:auto;}
.cb-container{background:#1a1a2e;border-top:1px solid rgba(124,58,237,.3);padding:20px 24px;box-shadow:0 -8px 32px rgba(0,0,0,.5);}
.cb-inner{max-width:1200px;margin:0 auto;display:flex;align-items:center;gap:20px;flex-wrap:wrap;}
.cb-text{flex:1;min-width:280px;color:#94a3b8;font-size:14px;line-height:1.6;}
.cb-text a{color:#a78bfa;text-decoration:underline;cursor:pointer;}
.cb-buttons{display:flex;gap:10px;flex-wrap:wrap;align-items:center;}
.cb-btn{padding:10px 22px;border-radius:8px;font-size:14px;font-weight:600;cursor:pointer;transition:all .2s;border:none;white-space:nowrap;}
.cb-btn-accept{background:linear-gradient(135deg,#7c3aed,#6d28d9);color:#fff;}
.cb-btn-accept:hover{background:linear-gradient(135deg,#8b5cf6,#7c3aed);transform:translateY(-1px);box-shadow:0 4px 12px rgba(124,58,237,.4);}
.cb-btn-necessary{background:transparent;color:#e2e8f0;border:1px solid rgba(124,58,237,.4);}
.cb-btn-necessary:hover{background:rgba(124,58,237,.1);border-color:#7c3aed;}
.cb-btn-settings{background:none;border:none;color:#64748b;font-size:13px;cursor:pointer;padding:8px 12px;text-decoration:underline;}
.cb-btn-settings:hover{color:#a78bfa;}

/* Cookie Settings Modal */
#cookie-modal{position:fixed;inset:0;z-index:100000;display:none;align-items:center;justify-content:center;padding:20px;}
#cookie-modal.cb-modal-visible{display:flex;}
.cb-modal-overlay{position:absolute;inset:0;background:rgba(0,0,0,.6);backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);}
.cb-modal-content{position:relative;background:#1a1a2e;border:1px solid rgba(124,58,237,.3);border-radius:16px;max-width:520px;width:100%;max-height:80vh;overflow-y:auto;padding:30px;box-shadow:0 20px 60px rgba(0,0,0,.5);}
.cb-modal-title{color:#e2e8f0;font-size:20px;font-weight:700;margin:0 0 8px;}
.cb-modal-desc{color:#64748b;font-size:13px;margin:0 0 24px;line-height:1.5;}
.cb-category{background:#12121f;border:1px solid rgba(124,58,237,.15);border-radius:12px;padding:16px;margin-bottom:12px;}
.cb-cat-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:6px;}
.cb-cat-name{color:#e2e8f0;font-weight:600;font-size:15px;}
.cb-cat-desc{color:#64748b;font-size:12px;line-height:1.5;}
.cb-cat-badge{background:rgba(124,58,237,.2);color:#a78bfa;font-size:11px;padding:2px 8px;border-radius:4px;font-weight:600;}
/* Toggle switch */
.cb-toggle{position:relative;width:44px;height:24px;flex-shrink:0;}
.cb-toggle input{opacity:0;width:0;height:0;}
.cb-toggle-slider{position:absolute;inset:0;background:#374151;border-radius:24px;cursor:pointer;transition:.3s;}
.cb-toggle-slider:before{content:'';position:absolute;width:18px;height:18px;left:3px;bottom:3px;background:#fff;border-radius:50%;transition:.3s;}
.cb-toggle input:checked+.cb-toggle-slider{background:#7c3aed;}
.cb-toggle input:checked+.cb-toggle-slider:before{transform:translateX(20px);}
.cb-toggle input:disabled+.cb-toggle-slider{opacity:.6;cursor:not-allowed;}
.cb-modal-actions{display:flex;gap:10px;margin-top:20px;}
.cb-modal-actions .cb-btn{flex:1;}
.cb-modal-close{position:absolute;top:16px;right:16px;background:none;border:none;color:#64748b;font-size:20px;cursor:pointer;padding:4px;line-height:1;}
.cb-modal-close:hover{color:#e2e8f0;}

@media(max-width:640px){
  .cb-inner{flex-direction:column;text-align:center;}
  .cb-buttons{width:100%;flex-direction:column;}
  .cb-btn{width:100%;text-align:center;}
  .cb-modal-content{padding:20px;}
  .cb-modal-actions{flex-direction:column;}
}


/* ===== FORUM EXPANSION STYLES ===== */
.forum-rank-badge { display:inline-block; font-size:10px; padding:2px 8px; border-radius:10px; font-weight:700; color:#fff; margin-left:6px; vertical-align:middle; }
.forum-rank-neuling { background:#64748b; }
.forum-rank-mitglied { background:#3b82f6; }
.forum-rank-aktiv { background:#22c55e; }
.forum-rank-veteran { background:#a855f7; }
.forum-rank-legende { background:#fbbf24; color:#0a0a0f; }
.forum-rank-moderator { background:#f97316; }
.forum-rank-admin { background:#ef4444; }
.forum-rank-verkaeufer { background:#22c55e; }

.forum-pinned { border-left:3px solid #fbbf24 !important; }
.forum-locked { opacity:0.75; }
.forum-locked::after { content:''; }

.forum-solved-badge { background:#22c55e; color:#fff; font-size:10px; padding:2px 8px; border-radius:10px; font-weight:700; margin-left:8px; }

.forum-like-btn { background:transparent; border:1px solid #1e1e2e; color:#94a3b8; padding:4px 12px; border-radius:8px; cursor:pointer; font-size:13px; transition:all .2s; display:inline-flex; align-items:center; gap:4px; }
.forum-like-btn:hover, .forum-like-btn.liked { color:#ef4444; border-color:#ef4444; }
.forum-like-btn.liked { background:rgba(239,68,68,0.1); }
.forum-like-btn-sm { padding:2px 8px; font-size:12px; }

.forum-quote { background:#0f0f18; border-left:3px solid #7c3aed; padding:12px 16px; margin-bottom:12px; border-radius:0 8px 8px 0; color:#94a3b8; font-size:13px; line-height:1.5; }
.forum-quote strong { color:#a78bfa; }

.forum-code-block { background:#0a0a0f; border:1px solid #1e1e2e; border-radius:8px; padding:16px; margin:12px 0; overflow-x:auto; font-family:'Fira Code','Cascadia Code','Consolas',monospace; font-size:13px; line-height:1.6; color:#e2e8f0; }
.forum-code-block code { color:#a5b4fc; }
.forum-inline-code { background:#1e1e2e; color:#a5b4fc; padding:2px 6px; border-radius:4px; font-family:'Fira Code','Cascadia Code','Consolas',monospace; font-size:12px; }

.forum-search-bar { display:flex; gap:8px; margin-bottom:16px; }
.forum-online-users { display:flex; align-items:center; gap:6px; font-size:13px; color:#94a3b8; margin-bottom:16px; padding:8px 16px; background:linear-gradient(135deg,#12121a,#16162a); border:1px solid #1e1e2e; border-radius:8px; }

.forum-report-btn { background:transparent; border:1px solid #1e1e2e; color:#64748b; padding:4px 10px; border-radius:8px; cursor:pointer; font-size:13px; transition:all .2s; }
.forum-report-btn:hover { color:#f97316; border-color:#f97316; }
.forum-report-btn-sm { padding:2px 6px; font-size:11px; }

.forum-action-btn { background:transparent; border:1px solid #1e1e2e; color:#94a3b8; padding:4px 12px; border-radius:8px; cursor:pointer; font-size:12px; transition:all .2s; }
.forum-action-btn:hover { color:#e2e8f0; border-color:#7c3aed; background:rgba(124,58,237,0.1); }
.forum-action-btn-sm { background:transparent; border:1px solid #1e1e2e; color:#94a3b8; padding:2px 8px; border-radius:6px; cursor:pointer; font-size:11px; transition:all .2s; }
.forum-action-btn-sm:hover { color:#e2e8f0; border-color:#7c3aed; }
.forum-delete-btn { color:#64748b; }
.forum-delete-btn:hover { color:#ef4444 !important; border-color:#ef4444 !important; background:rgba(239,68,68,0.1) !important; }

.forum-quote-btn { background:transparent; border:1px solid #1e1e2e; color:#94a3b8; padding:2px 8px; border-radius:6px; cursor:pointer; font-size:11px; transition:all .2s; }
.forum-quote-btn:hover { color:#7c3aed; border-color:#7c3aed; }

.forum-pagination { display:flex; gap:6px; justify-content:center; margin-top:24px; padding:16px 0; }
.forum-page-btn { background:transparent; border:1px solid #1e1e2e; color:#94a3b8; padding:8px 14px; border-radius:8px; cursor:pointer; font-size:13px; transition:all .2s; }
.forum-page-btn:hover, .forum-page-btn.active { background:#7c3aed; color:#fff; border-color:#7c3aed; }

.forum-reply-date { font-size:11px; color:#475569; margin-top:6px; }
