body {
    background-color: #0a0f1c;
    color: #f0f0f0;
    font-family: 'Poppins', sans-serif;
  }
  .navbar {
    background-color: #0d1b2a;
  }
  .navbar-brand {
    color: #66b2ff !important;
    font-weight: 700;
    font-size: 1.5rem;
  }
  .nav-link {
    color: #ddd !important;
    transition: 0.2s;
  }
  .nav-link:hover {
    color: #7a5cff !important;
  }
  /* === Custom Navbar Toggler === */
  .navbar-toggler.custom-toggler {
    border: 1px solid rgba(122, 92, 255, 0.6);
    background: radial-gradient(circle at center, rgba(122, 92, 255, 0.4), rgba(10, 15, 28, 0.8));
    box-shadow: 0 0 10px rgba(122, 92, 255, 0.5);
    transition: 0.3s ease;
  }
  .navbar-toggler.custom-toggler:hover {
    box-shadow: 0 0 15px rgba(122, 92, 255, 0.8);
    background: radial-gradient(circle at center, rgba(122, 92, 255, 0.6), rgba(10, 15, 28, 1));
  }
  .navbar-toggler-icon {
    background-image: linear-gradient(90deg, #7a5cff, #66b2ff);
    -webkit-mask: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    mask: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    background-size: contain;
  }


  .slider-wrapper {
      max-width: 1100px;
      margin: 100px auto 50px auto; /* Center horizontally with 'auto' */
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 0 20px rgba(102,178,255,0.15);
  }

  .carousel-item {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .carousel-item::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(10,15,28,0.55);
  }
  .carousel-caption {
    z-index: 10;
    bottom: 25%;
    animation-duration: 1.5s;
  }
  .carousel-caption h1 {
    color: #66b2ff;
    font-size: 2.3rem;
    font-weight: 700;
    text-shadow: 0 3px 6px rgba(0,0,0,0.6);
  }
  .carousel-caption p {
    color: #ccc;
    font-size: 1.05rem;
  }

  .btn-topup {
    background-color: #7a5cff;
    border: none;
    color: #fff;
    padding: 10px 25px;
    border-radius: 8px;
    transition: 0.3s;
  }
  .btn-topup:hover {
    background-color: #66b2ff;
    color: #0a0f1c;
  }

  /* --- PRODUK --- */
  .produk-section {
    /*padding: 60px 0;*/
  }

  .card {
    background: linear-gradient(145deg, #0e1424 0%, #111b33 70%);
    border: 1px solid rgba(102,178,255,0.15);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(102,178,255,0.1);
    transition: all 0.4s ease;
    position: relative;
  }

  .card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(102,178,255,0.1), rgba(122,92,255,0.15));
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .card:hover::before {
    opacity: 1;
  }

  .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(102,178,255,0.25);
    border-color: rgba(102,178,255,0.4);
  }

  /* --- GAMBAR PRODUK DENGAN BORDER ABSTRAK --- */
  .card-img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    padding: 6px;
    background: linear-gradient(130deg, rgba(102,178,255,0.4), rgba(122,92,255,0.3), rgba(0,255,255,0.2));
    animation: borderFlow 6s ease-in-out infinite;
  }

  .card-img-wrapper::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: conic-gradient(
      from 0deg,
      rgba(102,178,255,0.8),
      rgba(122,92,255,0.8),
      rgba(0,255,255,0.6),
      rgba(102,178,255,0.8)
    );
    filter: blur(10px);
    opacity: 0.5;
    z-index: 0;
    animation: rotateGlow 8s linear infinite;
  }

  .card-img-wrapper img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 140px;
    object-fit: contain;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
  }

  /* Animasi neon glow bergerak */
  @keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  @keyframes borderFlow {
    0%, 100% {
      background: linear-gradient(130deg, rgba(102,178,255,0.4), rgba(122,92,255,0.3), rgba(0,255,255,0.2));
    }
    50% {
      background: linear-gradient(310deg, rgba(122,92,255,0.5), rgba(102,178,255,0.4), rgba(0,255,255,0.3));
    }
  }

  .card-body {
    position: relative;
    z-index: 2;
  }

  .card-title {
    color: #66b2ff;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 0px;
  }

  .card-text {
    font-size: 0.85rem;
    color: #bbb;
    min-height: 50px;
  }

  /* --- RESPONSIVE --- */
  @media (max-width: 992px) {
    .carousel-item {
      height: 400px;
    }
    .carousel-caption h1 {
      font-size: 1.8rem;
    }
    .carousel-caption p {
      font-size: 0.95rem;
    }
  }

  @media (max-width: 768px) {
    .carousel-item {
      height: 300px;
    }
    .carousel-caption {
      bottom: 20%;
    }
    .carousel-caption h1 {
      font-size: 1.4rem;
    }
    .carousel-caption p {
      font-size: 0.85rem;
    }
    .btn-topup {
      padding: 8px 18px;
      font-size: 0.85rem;
    }
  }

  @media (max-width: 576px) {
    .slider-wrapper {
      margin: 75px auto 20px auto;
      border-radius: 12px;
    }
    .carousel-item {
      height: 220px;
    }
    .carousel-caption {
      bottom: 15%;
    }
    .carousel-caption h1 {
      font-size: 1.1rem;
    }
    .carousel-caption p {
      font-size: 0.75rem;
    }
    .btn-topup {
      padding: 6px 14px;
      font-size: 0.75rem;
    }
  }
  
  /* --- FOOTER --- */
    footer {
      background-color: #0d1b2a;
      color: #aaa;
      padding: 40px 0 20px;
      font-size: 0.9rem;
      border-top: 1px solid rgba(102,178,255,0.1);
    }
    footer h6 {
      color: #66b2ff;
      font-weight: 600;
      margin-bottom: 12px;
    }
    footer a {
      color: #bbb;
      text-decoration: none;
      transition: 0.3s;
    }
    footer a:hover {
      color: #7a5cff;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      margin-top: 30px;
      padding-top: 10px;
      text-align: center;
      color: #8f8f8f;
    }
    .social-links a {
      margin-right: 12px;
      color: #66b2ff;
      font-size: 1.2rem;
    }

    /* --- CARD DETAIL --- */
    .game-detail {
      background: linear-gradient(145deg, #0e1424, #101b33);
      border: 1px solid rgba(102,178,255,0.2);
      border-radius: 14px;
      padding: 20px;
      display: flex;
      gap: 20px;
      align-items: center;
      box-shadow: 0 0 20px rgba(102,178,255,0.08);
      transition: all 0.3s ease;
    }
    
    .game-detail img {
      width: 100px;
      height: 100px;
      border-radius: 12px;
      object-fit: contain;
      background: radial-gradient(circle at center, rgba(102,178,255,0.15), rgba(10,15,28,0.9));
      border: 1.5px solid rgba(122,92,255,0.5);
      box-shadow: 0 0 15px rgba(122,92,255,0.3);
      padding: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .game-detail h3 {
      color: #7a5cff;
      margin: 0;
      font-weight: 700;
    }
    .badge-custom {
      background-color: rgba(102,178,255,0.15);
      color: #66b2ff;
      font-size: 0.8rem;
      margin-right: 5px;
      border-radius: 6px;
      padding: 4px 8px;
    }
    
    /* --- RESPONSIVE MOBILE --- */
    @media (max-width: 768px) {
      .game-detail img {
        width: 180px;
        height: 100px;
        margin: 0 auto 18px auto;
        display: block;
        object-fit: contain;
      }
    }


    /* --- SECTION BOX --- */
    .section-box {
      background: #101a30;
      border: 1px solid rgba(102,178,255,0.15);
      border-radius: 10px;
      padding: 20px;
      margin-top: 25px;
      box-shadow: 0 0 10px rgba(102,178,255,0.05);
    }
    .section-box h5 {
      color: #66b2ff;
      margin-bottom: 15px;
      font-weight: 600;
    }

    /* --- INPUT (revisi lebih halus dan menyatu) --- */
    .input-group {
      display: flex;
      align-items: center;
      border-radius: 10px;
      background: rgba(16, 26, 48, 0.9);
      border: 1px solid rgba(122,92,255,0.3);
      transition: all 0.3s ease;
      backdrop-filter: blur(6px);
    }
    
    .input-group:focus-within {
      border-color: #7a5cff;
      box-shadow: 0 0 12px rgba(122,92,255,0.4);
      background: rgba(18, 30, 60, 0.95);
    }
    
    /* Label “ID” agar lebih menyatu */
    .input-group-text {
      background: transparent;
      color: rgba(102,178,255,0.85);
      font-weight: 500;
      border: none;
      padding: 10px 14px;
      transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.2s ease;
    }
    
    .input-group:focus-within .input-group-text {
      color: #7a5cff;
      text-shadow: 0 0 6px rgba(122,92,255,0.7);
      transform: translateX(1px);
    }
    
    /* Input field */
    .form-control {
      background-color: transparent !important;
      color: #fff !important;
      border: none !important;
      font-size: 0.95rem;
      padding: 10px 12px;
      caret-color: #7a5cff;
    }
    
    .form-control:focus {
      outline: none;
      box-shadow: none;
    }
    
    .form-control::placeholder {
      color: rgba(255,255,255,0.4);
    }
    
    /* --- Efek error pada input tetap --- */
    .input-error {
      border: 1px solid #ff4d4d !important;
      box-shadow: 0 0 12px rgba(255, 77, 77, 0.6);
      background: rgba(255, 77, 77, 0.05);
      transition: all 0.3s ease;
    }



    /* --- NOMINAL & PAYMENT --- */
    .nominal-card, .payment-card {
      background: linear-gradient(145deg, #0f182b, #111f3a);
      border: 1px solid rgba(102,178,255,0.15);
      border-radius: 10px;
      padding: 12px;
      text-align: center;
      cursor: pointer;
      transition: all 0.3s;
    }
    .nominal-card:hover, .payment-card:hover {
      border-color: #7a5cff;
      box-shadow: 0 0 12px rgba(122,92,255,0.3);
      transform: translateY(-3px);
    }
    .nominal-card.active, .payment-card.active {
      border-color: #66b2ff;
      background: linear-gradient(145deg, rgba(122,92,255,0.15), rgba(102,178,255,0.2));
      box-shadow: 0 0 15px rgba(122,92,255,0.25);
    }
    .nominal-card h6, .payment-card h6 {
      font-size: 0.95rem;
      color: #fff;
      margin-bottom: 4px;
    }
    .nominal-card p {
      color: #66b2ff;
      font-size: 0.85rem;
      margin: 0;
    }
    .payment-card img {
      width: 80px;
      height: 36px;
      object-fit: contain;
      margin-bottom: 8px;
      background: #fff;
      border-radius: 7px;
      padding: 5px 10px;
    }

    /* --- CHECKOUT --- */
    .checkout-box {
      background: #101a30;
      border: 1px solid rgba(102,178,255,0.2);
      border-radius: 12px;
      padding: 20px;
      color: #ddd;
      position: sticky;
      top: 100px; /* jarak dari atas navbar */
      box-shadow: 0 0 25px rgba(122,92,255,0.1);
      transition: all 0.3s ease;
    }
    .checkout-box:hover {
      box-shadow: 0 0 30px rgba(122,92,255,0.2);
    }
    .checkout-box h5 {
      color: #66b2ff;
      margin-bottom: 20px;
    }
    .btn-buy {
      width: 100%;
      background: linear-gradient(90deg, #7a5cff, #66b2ff);
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 10px 0;
      font-weight: 600;
      transition: 0.3s;
    }
    .btn-buy:hover {
      opacity: 0.9;
      transform: translateY(-2px);
    }
    #checkout-pay.text-danger {
      font-weight: 600;
      color: #ff6b6b !important;
    }
    #btn-beli:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }
    #checkout-placeholder {
      font-style: italic;
      background: rgba(122, 92, 255, 0.05);
      border: 1px dashed rgba(122, 92, 255, 0.3);
      border-radius: 8px;
      transition: all 0.3s ease-in-out;
    }
    #checkout-detail {
      transition: all 0.3s ease-in-out;
    }
    
    
    /* --- Custom toastr theme untuk dark mode --- */
    #toast-container > .toast {
      background-color: #101a30;
      color: #e0e0e0;
      border: 1px solid rgba(122,92,255,0.4);
      box-shadow: 0 0 15px rgba(122,92,255,0.2);
      border-radius: 8px;
      font-family: 'Poppins', sans-serif;
    }
    
    #toast-container > .toast-success {
      border-left: 5px solid #66b2ff;
    }
    
    #toast-container > .toast-error {
      border-left: 5px solid #ff4d4d;
    }
    
    #toast-container > .toast-info {
      border-left: 5px solid #7a5cff;
    }


    .order-container {
      max-width: 800px;
      margin: 100px auto 60px;
      background: linear-gradient(160deg, #10172b, #0e1529);
      border: 1px solid rgba(122, 92, 255, 0.3);
      border-radius: 16px;
      box-shadow: 0 0 20px rgba(122, 92, 255, 0.2);
      padding: 35px;
    }
    .order-header {
      text-align: center;
      margin-bottom: 30px;
    }
    .order-header h3 {
      color: #7a5cff;
      font-weight: 700;
    }
    .order-status {
      border-radius: 10px;
      padding: 5px 10px;
      display: inline-block;
      font-weight: 600;
      color: #66b2ff;
      margin-top: 10px;
    }

    .section-card {
      background: rgba(14, 22, 39, 0.9);
      border: 1px solid rgba(122,92,255,0.3);
      border-radius: 12px;
      padding: 20px 25px;
      margin-bottom: 20px;
      transition: 0.3s ease;
    }
    .section-card:hover {
      background: rgba(18, 27, 47, 1);
      box-shadow: 0 0 12px rgba(122, 92, 255, 0.3);
    }
    .section-title {
      color: #66b2ff;
      font-weight: 600;
      margin-bottom: 15px;
      font-size: 1.05rem;
      border-bottom: 1px solid rgba(102,178,255,0.15);
      padding-bottom: 6px;
    }

    .info-box {
      background: rgba(11, 18, 35, 0.6);
      border: 1px solid rgba(122,92,255,0.2);
      border-radius: 10px;
      padding: 12px 16px;
      margin-bottom: 12px;
      transition: 0.3s;
    }
    .info-box:hover {
      background: rgba(18, 27, 47, 1);
    }
    .info-label {
      color: #66b2ff;
      font-weight: 600;
      margin-bottom: 3px;
      font-size: 0.9rem;
    }
    .info-value {
      color: #fff;
      font-size: 1rem;
      font-weight: 500;
    }

    .btn-category {
      background: rgba(16, 26, 48, 0.8);
      border: 1px solid rgba(122, 92, 255, 0.35);
      color: #cfd4ff;
      border-radius: 10px;
      padding: 6px 16px;
      font-weight: 500;
      letter-spacing: 0.3px;
      transition: all 0.25s ease;
      box-shadow: inset 0 0 8px rgba(122,92,255,0.15);
    }
    .btn-category:hover {
      background: rgba(122, 92, 255, 0.25);
      color: #fff;
      border-color: rgba(122, 92, 255, 0.6);
      box-shadow: 0 0 12px rgba(122,92,255,0.35);
    }
    .btn-category.active {
      background: linear-gradient(90deg, #7a5cff, #66b2ff);
      color: #fff;
      border: 1px solid transparent;
      box-shadow: 0 0 18px rgba(122,92,255,0.5);
    }

    /* === Best Seller === */
    #best-seller {
      border-bottom: 1px solid rgba(122,92,255,0.15);
    }
    #best-seller .best-seller-item {
      background: rgba(18, 25, 43, 0.7);
      border: 1px solid rgba(122,92,255,0.3);
      color: #e0e0e0;
      transition: 0.3s;
      width: 260px;
    }
    #best-seller .best-seller-item:hover {
      transform: translateY(-4px);
      border-color: #7a5cff;
      box-shadow: 0 0 12px rgba(122,92,255,0.3);
    }
    #best-seller img {
      width: 50px;
      height: 50px;
      object-fit: contain;
      filter: drop-shadow(0 0 5px rgba(122,92,255,0.4));
    }
    .text-gradient {
      background: linear-gradient(90deg, #7a5cff, #66b2ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    /* === Diskon === */
    .diskon-badge {
      position: absolute;
      top: 10px;
      left: -15px;
      background: linear-gradient(135deg, #ff512f, #f09819);
      color: #fff;
      font-size: 0.8rem;
      font-weight: 600;
      padding: 5px 25px;
      transform: rotate(-15deg);
      box-shadow: 0 0 10px rgba(255,120,0,0.4);
      border-radius: 3px;
      z-index: 10;
      overflow: hidden;
    }

    .diskon-badge span {
      position: relative;
      z-index: 2;
    }

    .diskon-badge::after {
      content: "";
      position: absolute;
      top: 0;
      left: -75%;
      width: 50%;
      height: 100%;
      background: rgba(255,255,255,0.3);
      transform: skewX(-25deg);
      animation: shineBadge 2.5s infinite;
    }

    @keyframes shineBadge {
      0% { left: -75%; }
      50% { left: 125%; }
      100% { left: 125%; }
    }

    .shine {
      position: absolute;
      top: 0;
      left: -75%;
      width: 50%;
      height: 100%;
      background: linear-gradient(120deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.15) 100%);
      transform: skewX(-25deg);
      animation: shineMove 3s infinite;
    }

    @keyframes shineMove {
      0% { left: -75%; }
      50% { left: 125%; }
      100% { left: 125%; }
    } 

    /* === Keunggulan === */
    .keunggulan-card {
      background: rgba(20, 25, 45, 0.5);
      backdrop-filter: blur(6px);
      transition: all 0.3s ease;
      box-shadow: 0 0 12px rgba(122, 92, 255, 0.1);
    }
    .keunggulan-card:hover {
      transform: translateY(-6px);
      border-color: #9d85ff;
      box-shadow: 0 0 25px rgba(122, 92, 255, 0.3);
    }
    .icon-wrapper i {
      filter: drop-shadow(0 0 8px rgba(122,92,255,0.6));
      transition: 0.3s;
    }
    .keunggulan-card:hover .icon-wrapper i {
      filter: drop-shadow(0 0 15px rgba(122,92,255,0.9));
    }

    /* === Payment Action === */
    .payment-action {
      text-align: center;
      margin-top: 25px;
    }
    .qris-img {
      width: 200px;
      border-radius: 10px;
      border: 1px solid rgba(122,92,255,0.3);
      box-shadow: 0 0 15px rgba(122,92,255,0.4);
    }
    .btn-pay {
      background: linear-gradient(90deg, #7a5cff, #66b2ff);
      border: none;
      color: #fff;
      padding: 10px 25px;
      border-radius: 8px;
      font-weight: 600;
      margin-top: 15px;
      transition: 0.3s;
    }
    .btn-pay:hover {
      box-shadow: 0 0 15px rgba(122,92,255,0.4);
      opacity: 0.9;
    }
    .va-box {
      background: rgba(11,18,35,0.7);
      border: 1px solid rgba(122,92,255,0.3);
      border-radius: 10px;
      padding: 10px 15px;
      margin-top: 10px;
      font-family: monospace;
      color: #66b2ff;
      display: inline-block;
    }

    .btn-home {
      margin-top: 25px;
      display: inline-block;
      background: linear-gradient(90deg, #7a5cff, #66b2ff);
      color: #fff;
      padding: 10px 25px;
      border-radius: 8px;
      font-weight: 600;
      text-decoration: none;
      transition: 0.3s;
    }
    .btn-home:hover {
      opacity: 0.9;
      box-shadow: 0 0 12px rgba(122, 92, 255, 0.5);
    }

    @media (max-width: 768px) {
      .game-detail {
        flex-direction: column;
        align-items: flex-start;
      }
      footer .col-md-4 {
        margin-bottom: 20px;
      }
    }

    #loading-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.6); /* warna gelap transparan */
      z-index: 9999; /* pastikan paling atas */
      display: flex;
      align-items: center;
      justify-content: center;
  }
  /* --- QRIS STYLE (SP) --- */
  .qr-wrapper {
      text-align: center;
      padding: 25px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(255, 255, 255, 0.25);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
      max-width: 400px;
      margin: 35px auto;
  }

  .qr-title {
      color: #fff;
      margin-bottom: 12px;
      text-shadow: 0 0 10px rgba(0, 180, 255, 0.8);
      font-size: 22px;
  }

  .qr-frame {
      padding: 10px;
      background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
      border-radius: 18px;
      display: inline-block;
      box-shadow: 0 0 25px rgba(0, 150, 255, 0.5);
      animation: qrGlow 2s infinite alternate;
  }

  .qr-image {
      width: 240px;
      height: 240px;
      border-radius: 12px;
      background: #fff;
      padding: 12px;
  }

  .qr-text {
      margin-top: 18px;
      font-size: 15px;
      color: #e0e0e0;
      text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  }

  @keyframes qrGlow {
      from { box-shadow: 0 0 15px rgba(0, 150, 255, 0.6); }
      to   { box-shadow: 0 0 35px rgba(0, 150, 255, 1); }
  }


  /* --- CODE STYLE (DA, VA, OVO, GOPAY) --- */

  .code-wrapper {
      text-align: center;
      padding: 25px;
      border-radius: 16px;
      background: #ffffff;
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
      max-width: 380px;
      margin: 25px auto;
  }

  .code-title {
      font-size: 22px;
      font-weight: 600;
      color: #333;
  }

  .code-desc {
      margin-top: 5px;
      margin-bottom: 18px;
      color: #555;
  }

  .pay-box {
      font-size: 26px;
      font-weight: bold;
      padding: 15px;
      background: #f3f8ff;
      color: #003eaa;
      border-radius: 12px;
      border: 1px solid #cfe0ff;
      display: inline-block;
      box-shadow: 0 4px 12px rgba(0, 85, 255, 0.15);
      margin-bottom: 15px;
  }

  .btn-copy {
      padding: 10px 18px;
      background: #0066ff;
      color: #fff;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      font-size: 15px;
      box-shadow: 0 4px 12px rgba(0, 90, 255, 0.25);
  }

  .btn-copy:hover {
      background: #0051cc;
  }

  /* Tombol Link Pembayaran */
  .btn-pay-link {
      display: inline-block;
      padding: 12px 22px;
      background: #0286ff;
      color: #fff;
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 85, 255, 0.25);
      transition: 0.2s ease;
  }

  .btn-pay-link:hover {
      background: #0066d6;
  }

  /* Logo metode pembayaran (DANA, OVO, dsb) */
  .pay-logo {
      width: 110px;
      height: auto;
      margin-bottom: 10px;
      display: block;
      margin-left: auto;
      margin-right: auto;
  }

  /* WCAG AA contrast override for dark theme */
  .text-secondary {
    color: #9199a0 !important;
  }

/* ============================================================
   LANDING PAGE REDESIGN — lp- prefix
   ============================================================ */

/* ---- Navbar ---- */
.lp-navbar {
  background: rgba(8, 12, 28, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(122,92,255,.18);
  padding: 10px 0;
  transition: background .3s;
}
.lp-navbar.scrolled {
  background: rgba(8, 12, 28, 0.98);
}
.lp-navbar-brand img { height: 40px; }

.lp-nav-link {
  color: #c8cfe0 !important;
  font-size: .95rem;
  font-weight: 500;
  padding: 6px 14px !important;
  border-radius: 8px;
  transition: color .2s, background .2s;
  position: relative;
}
.lp-nav-link:hover {
  color: #fff !important;
  background: rgba(122,92,255,.15);
}
.lp-nav-link.active {
  color: #fff !important;
}
.lp-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: linear-gradient(90deg,#7a5cff,#66b2ff);
  border-radius: 2px;
}

.lp-dropdown {
  background: #111827;
  border: 1px solid rgba(122,92,255,.25);
  border-radius: 12px;
  padding: .5rem;
  min-width: 180px;
}
.lp-dropdown .dropdown-item {
  color: #c8cfe0;
  border-radius: 8px;
  font-size: .9rem;
  padding: .55rem 1rem;
  transition: background .2s;
}
.lp-dropdown .dropdown-item:hover {
  background: rgba(122,92,255,.2);
  color: #fff;
}

.lp-nav-icon-btn {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  color: #c8cfe0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.lp-nav-icon-btn:hover { background: rgba(122,92,255,.3); color: #fff; }

.lp-nav-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg,#7a5cff,#66b2ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}
.lp-nav-user {
  text-decoration: none;
  color: #c8cfe0 !important;
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
}
.lp-nav-user:hover { color: #fff !important; }
.lp-nav-user .dropdown-toggle::after { border-top-color: #c8cfe0; }

.lp-btn-login {
  background: linear-gradient(90deg,#7a5cff,#66b2ff);
  color: #fff !important;
  padding: 7px 18px;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
  white-space: nowrap;
}
.lp-btn-login:hover { opacity: .9; transform: translateY(-1px); }

/* Inline navbar search */
.lp-nav-search-wrap {
  position: relative;
}
.lp-nav-search-input {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 6px 36px 6px 16px;
  color: #e9ecff;
  font-size: .85rem;
  width: 220px;
  outline: none;
  transition: border-color .2s, background .2s, width .25s;
}
.lp-nav-search-input:focus {
  border-color: rgba(122,92,255,.55);
  background: rgba(255,255,255,.1);
  width: 260px;
}
.lp-nav-search-input::placeholder { color: #556080; }
.lp-nav-search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #8896ae;
  font-size: .88rem;
  pointer-events: none;
}
@media (max-width: 991px) {
  .lp-nav-search-wrap { width: 100%; }
  .lp-nav-search-input { width: 100%; }
  .lp-nav-search-input:focus { width: 100%; }

  /* Profile dropdown: flow inline inside collapsed navbar (not absolute-positioned) */
  #navMenu .dropdown,
  #navMenu .dropdown-menu {
    position: static !important;
  }
  #navMenu .dropdown-menu {
    box-shadow: none;
    border-color: rgba(122,92,255,.2);
    border-radius: 10px;
    margin-top: .25rem;
    width: 100%;
  }
}

/* Search dropdown results */
.lp-search-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 340px;
  background: #131827;
  border: 1px solid rgba(122,92,255,.22);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  max-height: 198px;
  overflow-y: auto;
  z-index: 300;
  scrollbar-width: thin;
  scrollbar-color: rgba(122,92,255,.3) transparent;
}
.lp-search-dropdown.active { display: block; }
.lp-search-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: background .15s;
}
.lp-search-item:first-child { border-radius: 14px 14px 0 0; }
.lp-search-item:last-child { border-bottom: none; border-radius: 0 0 14px 14px; }
.lp-search-item:hover { background: rgba(122,92,255,.12); }
.lp-search-item-img {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  background: #1a2040;
}
.lp-search-item-name { font-size: .88rem; font-weight: 600; color: #e9ecff; }
.lp-search-item-brand { font-size: .76rem; color: #8896ae; margin-top: 2px; }
.lp-search-empty { padding: 14px 16px; color: #8896ae; font-size: .86rem; }

/* Mobile search dropdown — full-width, left-aligned */
.lp-search-dropdown--mobile {
  right: auto;
  left: 0;
  width: calc(100vw - 32px);
  max-width: 360px;
}


/* ---- Hero ---- */
.lp-hero {
  background: radial-gradient(ellipse 80% 70% at 60% 40%, rgba(122,92,255,.18) 0%, transparent 60%),
              radial-gradient(ellipse 60% 50% at 10% 80%, rgba(102,178,255,.12) 0%, transparent 55%),
              #070c18;
  padding: 130px 0 60px;
  overflow: hidden;
}
.lp-hero-row { min-height: 480px; }

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(122,92,255,.18);
  border: 1px solid rgba(122,92,255,.4);
  color: #c5b8ff;
  font-size: .8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: .3px;
}

.lp-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #e9ecff;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.lp-hero-accent {
  background: linear-gradient(90deg,#00d2ff,#7a5cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lp-hero-sub {
  color: #8896ae;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg,#7a5cff,#5a3fff);
  color: #fff;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(122,92,255,.45);
  transition: transform .2s, box-shadow .2s;
}
.lp-btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(122,92,255,.6);
}
.lp-btn-outline {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.2);
  color: #e9ecff;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.lp-btn-outline:hover {
  color: #fff;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.35);
}

.lp-hero-proof {
  display: flex;
  align-items: center;
}
.lp-avatar-stack {
  display: flex;
}
.lp-avatar-stack img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #0e1627;
  object-fit: cover;
  margin-left: -10px;
  background: #1a2240;
}
.lp-avatar-stack img:first-child { margin-left: 0; }
.lp-stars-gold { color: #ffd700; font-size: 1rem; letter-spacing: 2px; }
.lp-muted-color { color: #8896ae; }

/* Hero visual */
.lp-hero-visual {
  position: relative;
  width: 540px;
  height: 420px;
  flex-shrink: 0;
}
.lp-hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122,92,255,.35) 0%, transparent 70%);
  pointer-events: none;
  animation: heroGlowPulse 4s ease-in-out infinite;
}
@keyframes heroGlowPulse {
  0%,100% { opacity:.6; transform:translate(-50%,-50%) scale(1); }
  50%      { opacity:1;  transform:translate(-50%,-50%) scale(1.12); }
}
.lp-hero-img {
  position: absolute;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0,0,0,.6);
  border: 1px solid rgba(122,92,255,.3);
}
.lp-hero-img--left {
  width: 200px; height: 260px;
  bottom: 20px; left: 0;
  z-index: 2;
  animation: heroFloat 5s ease-in-out infinite;
}
.lp-hero-img--center {
  width: 230px; height: 300px;
  top: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: heroFloat 5s ease-in-out 1.5s infinite;
}
.lp-hero-img--right {
  width: 200px; height: 260px;
  bottom: 20px; right: 0;
  z-index: 2;
  animation: heroFloat 5s ease-in-out 3s infinite;
}
@keyframes heroFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.lp-hero-img--center { animation-name: heroFloatCenter; }
@keyframes heroFloatCenter {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-12px); }
}
.lp-hero-coin {
  position: absolute;
  font-size: 2rem;
  animation: coinFloat 3s ease-in-out infinite;
  z-index: 4;
  pointer-events: none;
}
.lp-coin-1 { top: 10px; right: 80px; animation-delay: 0s; }
.lp-coin-2 { bottom: 60px; left: 30px; animation-delay: 1s; font-size: 1.5rem; }
.lp-coin-3 { top: 60px; left: 110px; animation-delay: 2s; font-size: 1.2rem; }
@keyframes coinFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-16px) rotate(20deg); }
}


/* ---- Feature Strip ---- */
.lp-features {
  background: #0a0f1c;
  border-top: 1px solid rgba(122,92,255,.12);
  border-bottom: 1px solid rgba(122,92,255,.12);
  padding: 20px 0;
}
.lp-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 767px) {
  .lp-how-grid { grid-template-columns: 1fr; }
}
.lp-feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
}
.lp-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 160px;
  padding: 14px 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  transition: border-color .2s, background .2s;
}
.lp-feature-item:hover {
  background: rgba(122,92,255,.08);
  border-color: rgba(122,92,255,.3);
}
.lp-feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.lp-feat-icon--blue   { background: rgba(102,178,255,.15); color: #66b2ff; }
.lp-feat-icon--purple { background: rgba(122,92,255,.2);  color: #9d85ff; }
.lp-feat-icon--teal   { background: rgba(0,210,255,.12);  color: #00d2ff; }
.lp-feat-icon--orange { background: rgba(255,165,0,.15);  color: #ffab40; }
.lp-feat-icon--red    { background: rgba(255,80,80,.12);  color: #ff6b6b; }
.lp-feat-title { font-size: .88rem; font-weight: 700; color: #e9ecff; }
.lp-feat-sub   { font-size: .75rem; color: #8896ae; line-height: 1.4; }


/* ---- Section titles ---- */
.lp-section-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #e9ecff;
  margin-bottom: 0;
}
.lp-section-sub { color: #8896ae; font-size: .9rem; }
.lp-link-more {
  color: #7a5cff;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}
.lp-link-more:hover { color: #9d85ff; }


/* ---- Best Seller Slider ---- */
.lp-bestseller { background: #0a0f1c; }
.lp-bs-wrap { overflow: hidden; }
.lp-bs-track {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 6px;
}
.lp-bs-track::-webkit-scrollbar { display: none; }

.lp-bs-card {
  flex: 0 0 calc(33.333% - .85rem);
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  min-height: 110px;
  background-size: cover;
  background-position: center;
  background-color: #0e1222;
  border: 1px solid rgba(122,92,255,.2);
  transition: transform .3s, box-shadow .3s;
}
/* gradient overlay gelap dari bawah */
.lp-bs-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,8,20,.15) 0%,
    rgba(5,8,20,.55) 50%,
    rgba(5,8,20,.92) 100%
  );
  border-radius: inherit;
  transition: background .3s;
}
.lp-bs-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(122,92,255,.25);
}
.lp-bs-card:hover::after {
  background: linear-gradient(
    to bottom,
    rgba(5,8,20,.1) 0%,
    rgba(5,8,20,.5) 45%,
    rgba(5,8,20,.88) 100%
  );
}
@media(max-width:991px){ .lp-bs-card { flex: 0 0 calc(50% - .6rem); } }
@media(max-width:575px){ .lp-bs-card { flex: 0 0 82%; } }

/* Badge */
.lp-bs-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: .68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  z-index: 3;
}
.lp-bs-badge--orange { background: #ff6b00; color: #fff; }
.lp-bs-badge--purple { background: #7a5cff; color: #fff; }

/* Teks di atas overlay */
.lp-bs-card-body {
  position: relative;
  z-index: 2;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.lp-bs-name {
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lp-bs-price { font-size: .75rem; color: #c8cfe0; }

.lp-bs-arrow {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(122,92,255,.5);
  border: 1px solid rgba(122,92,255,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  transition: background .2s, transform .2s;
}
.lp-bs-card:hover .lp-bs-arrow {
  background: #7a5cff;
  transform: translateX(3px);
}

.lp-bs-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1rem;
}
.lp-bs-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(122,92,255,.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.lp-bs-dot.active { background: #7a5cff; transform: scale(1.4); }


/* ---- Products Section ---- */
.lp-products { background: #0e1222; }

.lp-produk-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px;
}
.lp-cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lp-cat-btn {
  background: rgba(16,26,48,.8);
  border: 1px solid rgba(122,92,255,.3);
  color: #9199c0;
  border-radius: 10px;
  padding: 7px 18px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.lp-cat-btn:hover {
  background: rgba(122,92,255,.2);
  color: #fff;
  border-color: rgba(122,92,255,.55);
}
.lp-cat-btn.active {
  background: linear-gradient(90deg,#7a5cff,#66b2ff);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 14px rgba(122,92,255,.4);
}

.lp-produk-toolbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.lp-search-box {
  display: flex;
  align-items: center;
  background: rgba(16,26,48,.9);
  border: 1px solid rgba(122,92,255,.3);
  border-radius: 10px;
  padding: 7px 12px;
  gap: 8px;
  transition: border-color .2s;
  min-width: 200px;
}
.lp-search-box:focus-within { border-color: #7a5cff; }
.lp-search-icon { color: #556080; font-size: .9rem; }
.lp-search-input {
  background: transparent;
  border: none;
  outline: none;
  color: #e9ecff;
  font-size: .88rem;
  width: 100%;
}
.lp-search-input::placeholder { color: #55607a; }
.lp-sort-select {
  background: rgba(16,26,48,.9);
  border: 1px solid rgba(122,92,255,.3);
  color: #c8cfe0;
  border-radius: 10px;
  padding: 8px 14px;
  font-size: .85rem;
  cursor: pointer;
  outline: none;
}
.lp-sort-select:focus { border-color: #7a5cff; }
.lp-sort-select option { background: #121829; }

/* Product Card */
.lp-prod-card {
  background: #121829;
  border: 1px solid rgba(122,92,255,.15);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  padding: 8px;
}
.lp-prod-card:hover {
  transform: translateY(-4px);
  border-color: rgba(122,92,255,.45);
  box-shadow: 0 8px 24px rgba(122,92,255,.2);
}


.lp-prod-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg,#ff512f,#f09819);
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 5px;
  z-index: 5;
  letter-spacing: .2px;
}

.lp-prod-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #0e1627;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.lp-prod-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.lp-prod-card:hover .lp-prod-img-wrap img { transform: scale(1.05); }

.lp-prod-body {
  padding: 8px 10px 6px;
  flex: 1;
}
.lp-prod-name {
  font-size: .78rem;
  font-weight: 700;
  color: #e9ecff;
  margin-bottom: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lp-prod-brand {
  font-size: .68rem;
  color: #8896ae;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lp-prod-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 5px;
}
.lp-stars-sm { color: #ffd700; font-size: .68rem; letter-spacing: 1px; }
.lp-rating-val { font-size: .68rem; font-weight: 700; color: #e9ecff; }
.lp-rating-cnt { font-size: .65rem; color: #8896ae; }
.lp-prod-price {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.lp-price-now {
  font-size: .78rem;
  font-weight: 700;
  color: #e9ecff;
}
.lp-price-old {
  font-size: .65rem;
  color: #8896ae;
  text-decoration: line-through;
}

.lp-btn-beli {
  display: block;
  margin: 6px 10px 10px;
  padding: 7px 6px;
  background: linear-gradient(90deg,#7a5cff,#5a3fff);
  color: #fff;
  text-align: center;
  border-radius: 8px;
  font-size: .73rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .2s, box-shadow .2s;
  box-shadow: 0 3px 10px rgba(122,92,255,.3);
  white-space: nowrap;
}
.lp-btn-beli:hover {
  color: #fff;
  opacity: .9;
  box-shadow: 0 4px 14px rgba(122,92,255,.5);
}

/* Mobile fix: tombol produk pada col-4 (kartu ~120px) */
@media (max-width: 575px) {
  .lp-btn-beli .bi-cart3 { display: none; }

  .lp-prod-card { padding: 6px; }

  .lp-prod-body { padding: 6px 6px 4px; }

  .lp-prod-name { font-size: .73rem; }

  .lp-btn-beli,
  .lp-btn-beli--unavailable {
    margin: 4px 0 0;
    padding: 6px 4px;
    font-size: .67rem;
    border-radius: 0 0 8px 8px;
  }
}

/* Unavailable product card */
.lp-prod-card--unavailable {
  opacity: .55;
  filter: grayscale(.6);
}
.lp-prod-card--unavailable:hover {
  opacity: .75;
  filter: grayscale(.35);
}
.lp-prod-badge--unavailable {
  background: #4a5263;
}
.lp-btn-beli--unavailable {
  display: block;
  margin: 6px 10px 10px;
  padding: 7px 6px;
  background: #1e2535;
  color: #8896ae;
  font-size: .72rem;
  font-weight: 600;
  border-radius: 8px;
  text-align: center;
  box-shadow: none;
  transition: none;
  text-decoration: none;
}
@media (max-width: 575px) {
  .lp-btn-beli--unavailable {
    margin: 4px 0 0;
    padding: 6px 4px;
    font-size: .67rem;
    border-radius: 0 0 8px 8px;
  }
}

.lp-btn-loadmore {
  display: inline-flex;
  align-items: center;
  background: rgba(122,92,255,.12);
  border: 1px solid rgba(122,92,255,.4);
  color: #9d85ff;
  padding: 10px 28px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.lp-btn-loadmore:hover {
  background: rgba(122,92,255,.25);
  color: #fff;
}


/* ---- Promo Section ---- */
.lp-promo-card {
  background: linear-gradient(135deg,#0d1528 0%,#13204a 60%,#0e1a3a 100%);
  border: 1px solid rgba(122,92,255,.3);
  border-radius: 20px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  overflow: hidden;
  position: relative;
}
.lp-promo-card::before {
  content: '';
  position: absolute;
  top: -80px; right: 120px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122,92,255,.2) 0%, transparent 70%);
  pointer-events: none;
}
.lp-promo-left { flex: 1; min-width: 0; }
.lp-promo-title { font-size: 1.5rem; font-weight: 800; color: #e9ecff; margin-bottom: .5rem; }
.lp-promo-sub   { color: #8896ae; font-size: .9rem; line-height: 1.6; margin-bottom: 1rem; }
.lp-promo-label { font-size: .85rem; color: #8896ae; font-weight: 500; margin-bottom: .75rem; }

.lp-countdown {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-cd-block {
  background: rgba(122,92,255,.2);
  border: 1px solid rgba(122,92,255,.35);
  border-radius: 12px;
  width: 68px;
  text-align: center;
  padding: 10px 8px 8px;
}
.lp-cd-val {
  font-size: 1.6rem;
  font-weight: 800;
  color: #e9ecff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.lp-cd-lbl { font-size: .7rem; color: #8896ae; margin-top: 4px; }
.lp-cd-sep { font-size: 1.4rem; font-weight: 800; color: #7a5cff; margin-bottom: 16px; }

/* Right decorative block */
.lp-promo-right {
  flex-shrink: 0;
  width: 180px;
  align-items: center;
  justify-content: center;
}
.lp-promo-graphic {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-promo-ticket {
  width: 110px;
  height: 110px;
  border-radius: 22px;
  background: linear-gradient(135deg,#7a5cff,#66b2ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: #fff;
  box-shadow: 0 0 40px rgba(122,92,255,.5);
  animation: promoTicketPulse 3s ease-in-out infinite;
  z-index: 2;
  position: relative;
}
@keyframes promoTicketPulse {
  0%,100% { box-shadow: 0 0 28px rgba(122,92,255,.4); }
  50%      { box-shadow: 0 0 55px rgba(122,92,255,.75); }
}

/* Floating orbs behind ticket */
.lp-promo-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(122,92,255,.25);
  z-index: 1;
}
.lp-promo-orb--1 {
  width: 48px; height: 48px;
  top: 8px; right: 8px;
  background: rgba(102,178,255,.3);
  animation: orbFloat 4s ease-in-out infinite;
}
.lp-promo-orb--2 {
  width: 28px; height: 28px;
  bottom: 14px; left: 12px;
  background: rgba(122,92,255,.4);
  animation: orbFloat 4s ease-in-out 2s infinite;
}
@keyframes orbFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* "DISKON" tag below ticket */
.lp-promo-tag {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  background: rgba(122,92,255,.25);
  border: 1px solid rgba(122,92,255,.45);
  color: #c5b8ff;
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: .5px;
}


/* ---- Testimonials ---- */
.lp-testimonials { background: #0a0f1c; }
.lp-testi-card {
  background: #121829;
  border: 1px solid rgba(122,92,255,.18);
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  transition: transform .25s, border-color .25s;
}
.lp-testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(122,92,255,.4);
}
.lp-testi-text {
  color: #c8cfe0;
  font-size: .9rem;
  line-height: 1.65;
  margin-bottom: .75rem;
  font-style: italic;
}
.lp-testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(122,92,255,.5);
}
.lp-testi-name { font-size: .9rem; font-weight: 700; color: #e9ecff; }
.lp-testi-game { font-size: .78rem; color: #8896ae; }


/* ---- Stats ---- */
.lp-stats {
  background: linear-gradient(135deg,#0d1528,#0e1a3a);
  border-top: 1px solid rgba(122,92,255,.15);
  border-bottom: 1px solid rgba(122,92,255,.15);
  padding: 40px 0;
}
.lp-stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}
.lp-stat-item { text-align: center; flex: 1 1 160px; }
.lp-stat-num {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(90deg,#7a5cff,#66b2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.lp-stat-lbl { font-size: .85rem; color: #8896ae; }




/* ---- Footer ---- */
.lp-footer {
  background: #070c18;
  border-top: 1px solid rgba(122,92,255,.18);
  padding: 60px 0 0;
}
.lp-footer-top { padding-bottom: 40px; }
.lp-footer-desc {
  color: #8896ae;
  font-size: .88rem;
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.lp-footer-socials {
  display: flex;
  gap: 10px;
}
.lp-footer-socials a {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8896ae;
  font-size: 1rem;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.lp-footer-socials a:hover {
  background: rgba(122,92,255,.25);
  color: #fff;
  border-color: rgba(122,92,255,.5);
}
.lp-footer-col-title {
  font-size: .9rem;
  font-weight: 700;
  color: #e9ecff;
  margin-bottom: 14px;
  letter-spacing: .3px;
}
.lp-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lp-footer-links li { margin-bottom: 8px; }
.lp-footer-links a {
  color: #8896ae;
  font-size: .88rem;
  text-decoration: none;
  transition: color .2s;
}
.lp-footer-links a:hover { color: #c8cfe0; }

.lp-newsletter-form {
  display: flex;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(122,92,255,.3);
}
.lp-newsletter-input {
  flex: 1;
  background: rgba(255,255,255,.05);
  border: none;
  outline: none;
  color: #e9ecff;
  padding: 10px 14px;
  font-size: .85rem;
  min-width: 0;
}
.lp-newsletter-input::placeholder { color: #4a5470; }
.lp-newsletter-btn {
  background: linear-gradient(90deg,#7a5cff,#5a3fff);
  border: none;
  color: #fff;
  padding: 10px 16px;
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity .2s;
}
.lp-newsletter-btn:hover { opacity: .9; }

.lp-footer-pay {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 14px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.lp-footer-pay-label {
  font-size: .78rem;
  color: #556080;
  white-space: nowrap;
  flex-shrink: 0;
}
.lp-footer-pay-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.lp-footer-pay-logos img {
  height: 20px;
  max-width: 52px;
  object-fit: contain;
  opacity: .65;
  filter: grayscale(30%);
  transition: opacity .2s, filter .2s;
}
.lp-footer-pay-logos img:hover { opacity: 1; filter: none; }
.lp-footer-pay-logos span {
  font-size: .72rem;
  opacity: .65;
  transition: opacity .2s;
}
.lp-footer-pay-logos span:hover { opacity: 1; }

.lp-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 14px 0;
  text-align: center;
  color: #4a5470;
  font-size: .82rem;
}


/* ---- Responsive adjustments ---- */
@media (max-width: 991px) {
  .lp-hero { padding: 110px 0 50px; }
  .lp-hero-row { min-height: auto; }
  .lp-produk-toolbar { flex-direction: column; align-items: stretch; }
  .lp-produk-toolbar-right { margin-left: 0; flex-wrap: wrap; }
  .lp-search-box { min-width: 0; flex: 1; }
  .lp-promo-card { padding: 28px 24px; gap: 20px; }
  .lp-promo-title { font-size: 1.3rem; }
}

@media (max-width: 767px) {
  .lp-hero { padding: 90px 0 40px; }
  .lp-hero-title { font-size: 2rem; }
  .lp-feature-grid { gap: 6px; }
  .lp-feature-item { flex: 1 1 45%; }
  .lp-promo-card { flex-direction: column; padding: 24px; }
  .lp-cd-block { width: 58px; }
  .lp-cd-val { font-size: 1.4rem; }
  .lp-stats-grid { gap: 16px; }
  .lp-stat-num { font-size: 1.7rem; }
}

@media (max-width: 575px) {
  .lp-feature-item { flex: 1 1 100%; }
  .lp-produk-toolbar-right { flex-direction: column; }
  .lp-search-box { width: 100%; }
  .lp-sort-select { width: 100%; }
  .lp-pay-grid { justify-content: center; }
}

/* Navbar scroll highlight handled via JS in header */



/* ============================================================
   CHECKOUT PAGE REDESIGN — co- prefix
   ============================================================ */

/* -- Progress Stepper -- */
.co-stepper {
  display: flex;
  align-items: center;
  background: rgba(10, 16, 30, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(102,178,255,0.15);
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 20px;
  position: sticky;
  top: 66px;
  z-index: 90;
  transition: box-shadow 0.3s;
}
.co-stepper.is-stuck {
  box-shadow: 0 4px 24px rgba(0,0,0,0.45);
  border-color: rgba(122,92,255,0.25);
}
.co-step {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.38;
  transition: opacity 0.35s;
}
.co-step.co-step--active { opacity: 1; }
.co-step.co-step--done   { opacity: 0.7; }
.co-step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(102,178,255,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
  color: #777;
  flex-shrink: 0;
  transition: all 0.35s;
}
.co-step.co-step--active .co-step-num {
  background: linear-gradient(135deg, #7a5cff, #66b2ff);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 14px rgba(122,92,255,0.5);
}
.co-step.co-step--done .co-step-num {
  background: rgba(102,178,255,0.12);
  border-color: #66b2ff;
  color: #66b2ff;
}
.co-step-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.co-step-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #bbb;
  transition: color 0.35s;
}
.co-step.co-step--active .co-step-name { color: #fff; }
.co-step.co-step--done  .co-step-name  { color: #66b2ff; }
.co-step-hint {
  font-size: 0.71rem;
  color: #566;
}
.co-step.co-step--active .co-step-hint { color: #99aac0; }
.co-step-sep {
  flex: 1;
  text-align: center;
  color: rgba(102,178,255,0.22);
  font-size: 0.85rem;
}

/* -- Hero Card -- */
.co-hero {
  background: linear-gradient(135deg, #0d1526 0%, #111e3a 60%, #0e1a2e 100%);
  border: 1px solid rgba(102,178,255,0.18);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 24px;
  align-items: center;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.co-hero-img-box {
  flex-shrink: 0;
  width: 175px;
  height: 185px;
  border-radius: 14px;
  background: radial-gradient(circle at center, rgba(255,160,0,0.13) 0%, rgba(10,15,28,0.95) 70%);
  border: 1px solid rgba(255,160,0,0.22);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.co-hero-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 28px 10px 36px;
}
.co-hero-stars {
  position: absolute;
  top: 8px;
  left: 0; right: 0;
  text-align: center;
  font-size: 0.88rem;
  color: #ffc107;
  z-index: 2;
  letter-spacing: 2px;
}
.co-hero-brand-tag {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(8,12,24,0.95) 0%, transparent 100%);
  padding: 18px 8px 7px;
  text-align: center;
  font-size: 0.74rem;
  font-weight: 700;
  color: #ffc107;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}
.co-hero-content { flex: 1; min-width: 0; }
.co-official-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(66,178,255,0.1);
  border: 1px solid rgba(66,178,255,0.32);
  color: #66b2ff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.co-hero-title {
  font-size: 1.65rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.25;
}
.co-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.co-hero-badges span {
  background: rgba(102,178,255,0.07);
  border: 1px solid rgba(102,178,255,0.2);
  color: #cce4ff;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
}
.co-hero-desc {
  font-size: 0.86rem;
  color: #8899b0;
  margin-bottom: 14px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.co-hero-stats {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.co-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.co-stat-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}
.co-stat-key {
  font-size: 0.69rem;
  color: #667a90;
}
.co-stat-div {
  width: 1px;
  height: 28px;
  background: rgba(102,178,255,0.18);
}

/* -- Section Header (step label row) -- */
.co-sect-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.co-sect-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #ccd3e0;
}
.co-sect-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7a5cff, #66b2ff);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(122,92,255,0.35);
}
.co-help-link {
  font-size: 0.8rem;
  color: #66b2ff;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.co-help-link:hover { color: #9d85ff; }

/* -- ID Input Row -- */
.co-id-row {
  display: flex;
  align-items: stretch;
  gap: 10px;
}
.co-id-field {
  flex: 1;
  width: 100%;
  background: rgba(16,26,48,0.9);
  border: 1px solid rgba(122,92,255,0.3);
  border-radius: 10px;
  color: #fff;
  padding: 11px 16px;
  font-size: 0.92rem;
  transition: all 0.3s ease;
  outline: none;
  -webkit-appearance: none;
}
.co-id-field:focus {
  border-color: #7a5cff;
  box-shadow: 0 0 12px rgba(122,92,255,0.35);
  background: rgba(18,30,60,0.95);
}
.co-id-field::placeholder { color: rgba(255,255,255,0.35); }
.co-cek-btn {
  display: block;
  background: linear-gradient(90deg, #7a5cff, #66b2ff);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 11px 22px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: 0.3s;
  white-space: nowrap;
}
.co-cek-btn:hover {
  opacity: 0.9;
  box-shadow: 0 0 14px rgba(122,92,255,0.45);
  transform: translateY(-1px);
}
.co-id-secure {
  font-size: 0.78rem;
  color: #667a90;
  margin-top: 8px;
}

/* -- Responsive -- */
@media (max-width: 576px) {
  .co-hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 14px;
  }
  .co-hero-img-box {
    width: 100%;
    height: 150px;
  }
  .co-hero-title { font-size: 1.3rem; }
  .co-stepper { padding: 10px 12px; }
  .co-step-num { width: 28px; height: 28px; font-size: 0.78rem; }
  .co-step-name { font-size: 0.79rem; }
}

/* -- Checkout Box (co-checkout-box) -- */
.co-checkout-box {
  background: linear-gradient(160deg, #10172b, #0e1529);
  border: 1px solid rgba(122,92,255,0.25);
  border-radius: 16px;
  padding: 20px;
  color: #ddd;
  position: sticky;
  top: 140px;
  box-shadow: 0 0 30px rgba(0,0,0,0.4);
}
.co-cb-header {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.co-cb-product {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(102,178,255,0.1);
  margin-bottom: 14px;
}
.co-cb-prod-img {
  flex-shrink: 0;
  width: 62px;
  height: 62px;
  border-radius: 10px;
  background: radial-gradient(circle at center, rgba(255,160,0,0.13), rgba(10,15,28,0.95));
  border: 1px solid rgba(255,160,0,0.22);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.co-cb-prod-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px 4px 18px;
}
.co-cb-prod-img .co-hero-stars {
  font-size: 0.48rem;
  letter-spacing: 1px;
  top: 3px;
}
.co-cb-prod-img .co-hero-brand-tag {
  font-size: 0.58rem;
  padding: 10px 4px 4px;
}
.co-cb-prod-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
  line-height: 1.3;
}
.co-cb-prod-brand {
  font-size: 0.75rem;
  color: #7a8aa0;
}
.co-cb-placeholder {
  text-align: center;
  padding: 18px 12px;
  font-size: 0.82rem;
  color: #556070;
  font-style: italic;
  background: rgba(122,92,255,0.04);
  border: 1px dashed rgba(122,92,255,0.18);
  border-radius: 10px;
}
.co-cb-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 4px;
}
.co-cb-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.co-cb-label {
  font-size: 0.8rem;
  color: #7a8aa0;
  flex-shrink: 0;
}
.co-cb-val {
  font-size: 0.88rem;
  font-weight: 600;
  color: #e0e8ff;
  text-align: right;
}
.co-cb-divider {
  height: 1px;
  background: rgba(102,178,255,0.1);
  margin: 14px 0;
}
.co-cb-total-block {
  margin-bottom: 16px;
}
.co-cb-total-label {
  font-size: 0.78rem;
  color: #7a8aa0;
  margin-bottom: 4px;
}
.co-cb-total-val {
  font-size: 1.5rem;
  font-weight: 700;
  color: #66b2ff;
  line-height: 1.2;
}
.co-cb-wa {
  margin-bottom: 14px;
}
.co-cb-wa-label {
  font-size: 0.78rem;
  color: #7a8aa0;
  display: block;
  margin-bottom: 6px;
}
.co-buy-btn {
  width: 100%;
  background: linear-gradient(90deg, #7a5cff, #66b2ff);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 13px 0;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.co-buy-btn:hover:not(:disabled) {
  opacity: 0.92;
  box-shadow: 0 0 22px rgba(122,92,255,0.55);
  transform: translateY(-1px);
}
.co-buy-btn:disabled,
.co-buy-btn.co-buy-btn--off {
  opacity: 0.38;
  cursor: not-allowed;
}
.co-buy-btn {
  touch-action: manipulation;
}
.co-trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(102,178,255,0.04);
  border: 1px solid rgba(102,178,255,0.1);
  border-radius: 10px;
  padding: 10px 14px;
}
.co-trust-icon {
  font-size: 1.35rem;
  color: #66b2ff;
  flex-shrink: 0;
}
.co-trust-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: #cce4ff;
  margin-bottom: 1px;
}
.co-trust-sub {
  font-size: 0.7rem;
  color: #7a8aa0;
}

/* -- Mobile Sticky Bottom Bar -- */
.co-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1060;
  background: linear-gradient(135deg, rgba(16,23,43,0.98), rgba(14,21,41,0.98));
  border-top: 1px solid rgba(122,92,255,0.35);
  padding: 12px 16px;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 28px rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
@media (max-width: 991.98px) {
  .co-mobile-bar { display: flex; }
  .co-mobile-bar.visible { transform: translateY(0); }
  .co-buy-btn { display: none; }
}
.co-mobile-bar-label {
  font-size: 0.72rem;
  color: #7a8aa0;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.co-mobile-bar-val {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}
.co-mobile-bar-btn {
  flex-shrink: 0;
  background: linear-gradient(90deg, #7a5cff, #66b2ff);
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 10px 20px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  line-height: 1.3;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}
.co-mobile-bar-btn:not(:disabled):hover {
  opacity: 0.9;
  box-shadow: 0 0 18px rgba(122,92,255,0.5);
}
.co-mobile-bar-btn:disabled,
.co-mobile-bar-btn.co-mb-btn--off {
  opacity: 0.38;
  cursor: not-allowed;
}
.co-mobile-bar-btn {
  touch-action: manipulation;
}
.co-mobile-bar-btn .bi-chevron-right {
  font-size: 1.1rem;
}
.co-legal-note {
  margin-top: 14px;
  font-size: 0.72rem;
  color: #7a8aa0;
  text-align: center;
  line-height: 1.6;
}
.co-legal-note a {
  color: #9b7cff;
  text-decoration: none;
  font-weight: 500;
}
.co-legal-note a:hover {
  color: #b99fff;
  text-decoration: underline;
}
.co-legal-note .bi-chevron-right {
  font-size: 0.65rem;
  vertical-align: middle;
}

/* -- ID Check Result Card -- */
.co-id-result {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(10,16,30,0.8);
  border: 1px solid rgba(122,92,255,0.2);
  border-radius: 14px;
  padding: 14px 16px;
  margin-top: 10px;
}
.co-id-result-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: #1db954;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  line-height: 1;
  color: #fff;
  box-shadow: 0 0 12px rgba(29,185,84,0.35);
}
.co-id-result-title {
  font-size: 0.78rem;
  color: #a0b0c8;
  margin-bottom: 5px;
}
.co-id-result-nick {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
  flex-wrap: wrap;
}
.co-id-valid-badge {
  font-size: 0.68rem;
  font-weight: 600;
  color: #fff;
  background: #1db954;
  border-radius: 20px;
  padding: 2px 9px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.co-id-result-note {
  font-size: 0.72rem;
  color: #7a8aa0;
}
.co-id-result--danger {
  background: rgba(229,62,62,0.08);
  border-color: rgba(229,62,62,0.35);
}
.co-id-result--danger .co-id-result-icon {
  background: #e53e3e !important;
  box-shadow: 0 0 12px rgba(229,62,62,0.4) !important;
}
.co-id-result-title--danger {
  color: #ff6b6b;
}
.co-id-invalid-badge {
  font-size: 0.68rem;
  font-weight: 600;
  color: #fff;
  background: #e53e3e;
  border-radius: 20px;
  padding: 2px 9px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
@keyframes co-field-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(122,92,255,0.7), 0 0 0 0 rgba(102,178,255,0.4); border-color: rgba(122,92,255,0.8); }
  50%  { box-shadow: 0 0 0 6px rgba(122,92,255,0.2), 0 0 18px 2px rgba(102,178,255,0.25); border-color: #7a5cff; }
  100% { box-shadow: 0 0 0 0 rgba(122,92,255,0), 0 0 0 0 rgba(102,178,255,0); border-color: rgba(122,92,255,0.8); }
}
.co-id-field--highlight {
  animation: co-field-pulse 0.6s ease-out 3;
}
.co-field-error {
  font-size: 0.72rem;
  color: #ff6b6b;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.2s ease, opacity 0.2s ease;
}
.co-field-error::before {
  content: "\F333";
  font-family: "bootstrap-icons";
  font-size: 0.75rem;
  flex-shrink: 0;
}
.co-field-error.visible {
  max-height: 2rem;
  opacity: 1;
}

/* ============================================
   ORDER DETAIL v2
   ============================================ */

.od-page {
  margin-top: 4.5rem;
  padding-bottom: 4rem;
  min-height: 100vh;
  background: #060d1a;
}

/* --- HERO --- */
.od-hero {
  position: relative;
  overflow: hidden;
  padding: 32px 20px 24px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(122,92,255,0.18) 0%, transparent 65%),
              linear-gradient(180deg, #0c1628 0%, #060d1a 100%);
}
.od-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(122,92,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.od-hero-inner { position: relative; z-index: 1; }

.od-check {
  width: 68px; height: 68px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: #fff;
  margin-bottom: 14px;
}
.od-check--success {
  background: radial-gradient(circle, #2dce66, #1db954);
  box-shadow: 0 0 0 12px rgba(29,185,84,0.12), 0 0 40px rgba(29,185,84,0.5), 0 0 80px rgba(29,185,84,0.2);
}
.od-check--pending {
  background: radial-gradient(circle, #ffa040, #f97316);
  box-shadow: 0 0 0 12px rgba(249,115,22,0.12), 0 0 40px rgba(249,115,22,0.5);
}
.od-check--process {
  background: radial-gradient(circle, #60a5fa, #3b82f6);
  box-shadow: 0 0 0 12px rgba(59,130,246,0.12), 0 0 40px rgba(59,130,246,0.5);
}
.od-check--failed {
  background: radial-gradient(circle, #f87171, #e53e3e);
  box-shadow: 0 0 0 12px rgba(229,62,62,0.12), 0 0 40px rgba(229,62,62,0.5);
}

.od-hero-title {
  font-size: 1.45rem; font-weight: 800; color: #fff; margin-bottom: 6px;
}
.od-hero-sub {
  font-size: 0.85rem; color: rgba(216,222,255,0.72);
  margin-bottom: 16px; line-height: 1.5;
}
.od-hero-trxid {
  display: inline-block;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 10px 16px; text-align: left;
}
.od-trxid-label {
  font-size: 0.66rem; color: rgba(216,222,255,0.45);
  letter-spacing: 0.1em; font-weight: 700; margin-bottom: 6px;
}
.od-trxid-row { display: flex; align-items: center; gap: 12px; }
.od-trxid-val {
  font-size: 0.95rem; font-weight: 700; color: #fff;
  letter-spacing: 0.03em; font-family: monospace;
}
.od-copy-btn {
  background: rgba(122,92,255,0.2);
  border: 1px solid rgba(122,92,255,0.5);
  color: #d8deff; border-radius: 8px;
  padding: 5px 12px; font-size: 0.78rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
}
.od-copy-btn:hover { background: rgba(122,92,255,0.4); color: #fff; }
.od-trxid-date {
  font-size: 0.75rem; color: rgba(216,222,255,0.45); margin-top: 8px;
}

/* --- PROGRESS BAR --- */
.od-progress-bar {
  background: rgba(255,255,255,0.025);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 14px 0;
}
.od-steps {
  display: flex; align-items: center;
  justify-content: center; flex-wrap: nowrap; gap: 0;
}
.od-step {
  display: flex; align-items: center; gap: 9px;
  opacity: 0.35; transition: opacity 0.3s; flex-shrink: 0;
}
.od-step--done { opacity: 1; }
.od-step-dot {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,0.07);
  border: 2px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; color: rgba(216,222,255,0.4);
  transition: all 0.3s;
}
.od-step--done .od-step-dot {
  background: #1db954; border-color: #1db954; color: #fff;
  box-shadow: 0 0 12px rgba(29,185,84,0.45);
}
.od-step-body { display: flex; flex-direction: column; }
.od-step-name {
  font-size: 0.78rem; font-weight: 600; color: rgba(216,222,255,0.55);
  white-space: nowrap;
}
.od-step--done .od-step-name { color: #d8deff; }
.od-step-time { font-size: 0.66rem; color: rgba(216,222,255,0.4); }
.od-step-sep {
  flex: 1; height: 2px; background: rgba(255,255,255,0.1);
  min-width: 24px; max-width: 70px; margin: 0 6px;
  transition: background 0.3s;
}
.od-sep--done { background: #1db954; }

/* --- MAIN CONTENT --- */
.od-main { margin-top: 30px; }

.od-card {
  background: rgba(10,16,30,0.8);
  border: 1px solid rgba(122,92,255,0.18);
  border-radius: 18px; padding: 22px;
}
.od-card-head {
  font-size: 0.9rem; font-weight: 700; color: #d8deff;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 16px;
  display: flex; align-items: center;
}

/* product row */
.od-prod-row {
  display: flex; align-items: center; gap: 16px; margin-bottom: 20px;
}
.od-prod-imgbox {
  position: relative; flex-shrink: 0; width: 80px;
}
.od-prod-imgbox .co-hero-stars {
  position: absolute; top: 4px; left: 50%; transform: translateX(-50%);
  font-size: 0.48rem; color: #f5c518; white-space: nowrap; z-index: 1;
  background: rgba(0,0,0,0.55); border-radius: 4px; padding: 1px 4px;
}
.od-prod-imgbox img {
  width: 80px; height: 80px; object-fit: cover;
  border-radius: 12px; border: 2px solid rgba(122,92,255,0.3);
  display: block;
}
.od-prod-brand {
  position: absolute; bottom: 0; left: 0; right: 0;
  font-size: 0.52rem; font-weight: 700; text-align: center;
  background: rgba(122,92,255,0.85); color: #fff;
  padding: 2px 4px; border-radius: 0 0 10px 10px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.od-prod-name {
  font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 7px;
}
.od-prod-badge {
  display: inline-flex; align-items: center;
  background: rgba(122,92,255,0.18);
  border: 1px solid rgba(122,92,255,0.38);
  color: #b8a6ff; font-size: 0.75rem; font-weight: 600;
  border-radius: 20px; padding: 3px 11px;
}

/* detail rows */
.od-detail-rows { display: flex; flex-direction: column; }
.od-detail-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.055); gap: 12px;
}
.od-detail-row:last-child { border-bottom: none; }
.od-detail-label {
  font-size: 0.81rem; color: rgba(216,222,255,0.52);
  display: flex; align-items: center; flex-shrink: 0;
}
.od-detail-val {
  font-size: 0.84rem; color: #d8deff; font-weight: 500; text-align: right;
}
.od-total-row {
  margin: 4px -22px 0; padding: 12px 22px !important;
  background: rgba(122,92,255,0.07);
  border-bottom: none !important; border-radius: 0 0 14px 14px;
}
.od-total-val { font-size: 1rem; font-weight: 700; color: #fff; }

/* status message */
.od-status-msg {
  display: flex; align-items: flex-start; gap: 10px;
  border-radius: 12px; padding: 13px 15px; margin-top: 16px;
  font-size: 0.83rem; font-weight: 500; line-height: 1.5;
}
.od-status-msg--success {
  background: rgba(29,185,84,0.1); border: 1px solid rgba(29,185,84,0.3);
  color: #4ade80;
}
.od-status-msg--failed {
  background: rgba(229,62,62,0.1); border: 1px solid rgba(229,62,62,0.3);
  color: #ff6b6b;
}

/* --- SIDE CARDS --- */
.od-side-card { padding: 18px 20px; }
.od-side-head {
  font-size: 0.88rem; font-weight: 700; color: #d8deff;
  margin-bottom: 8px; display: flex; align-items: center;
}
.od-side-desc {
  font-size: 0.77rem; color: rgba(216,222,255,0.52);
  margin-bottom: 14px; line-height: 1.5;
}
.od-wa-btn {
  display: flex; align-items: center; justify-content: center; width: 100%;
  background: linear-gradient(90deg, #1db954, #15a846);
  color: #fff; font-weight: 700; font-size: 0.88rem;
  border-radius: 12px; padding: 11px; text-decoration: none;
  transition: opacity 0.2s;
}
.od-wa-btn:hover { opacity: 0.85; color: #fff; }
.od-sec-btn {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.11);
  color: #d8deff; font-size: 0.78rem; font-weight: 600;
  border-radius: 10px; padding: 9px 12px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.od-sec-btn:hover {
  background: rgba(122,92,255,0.15); border-color: rgba(122,92,255,0.4); color: #fff;
}
.od-secure-list { display: flex; flex-direction: column; gap: 13px; }
.od-secure-item { display: flex; align-items: flex-start; gap: 11px; }
.od-secure-item > i { font-size: 1.1rem; margin-top: 1px; flex-shrink: 0; }
.od-secure-name { font-size: 0.81rem; font-weight: 600; color: #d8deff; }
.od-secure-sub  { font-size: 0.7rem; color: rgba(216,222,255,0.48); }

/* --- CTA --- */
.od-cta {
  background: linear-gradient(135deg, rgba(122,92,255,0.12), rgba(89,169,255,0.07));
  border: 1px solid rgba(122,92,255,0.28); border-radius: 18px;
  padding: 24px 28px; margin-top: 30px; gap: 20px; flex-wrap: wrap;
}
.od-cta-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, #7a5cff, #59a9ff);
  border-radius: 16px; display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem; color: #fff; flex-shrink: 0;
}
.od-cta-text { flex: 1; min-width: 160px; }
.od-cta-title { font-size: 1rem; font-weight: 700; color: #fff; }
.od-cta-sub { font-size: 0.77rem; color: rgba(216,222,255,0.58); }

.od-btn-topup {
  background: linear-gradient(90deg, #7a5cff, #59a9ff);
  color: #fff; font-weight: 700; font-size: 0.88rem;
  border-radius: 12px; padding: 11px 22px; text-decoration: none; border: none;
  display: inline-flex; align-items: center; justify-content: center;
  transition: opacity 0.2s;
}
.od-btn-topup:hover { opacity: 0.85; color: #fff; }
.od-btn-riwayat {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: #d8deff; font-weight: 600; font-size: 0.88rem;
  border-radius: 12px; padding: 11px 22px; text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.od-btn-riwayat:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* --- TRUST BADGES --- */
.od-trust-badges {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 28px; margin-top: 34px; padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.od-tbadge { display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center; }
.od-tbadge > i { font-size: 1.4rem; color: #7a5cff; margin-bottom: 2px; }
.od-tbadge-title { font-size: 0.83rem; font-weight: 700; color: #d8deff; }
.od-tbadge-sub   { font-size: 0.68rem; color: rgba(216,222,255,0.48); }

/* --- MOBILE ACTIONS --- */
.od-mob-actions { margin-top: 16px; }
.od-trust-strip {
  display: flex; align-items: center; gap: 12px;
  background: rgba(29,185,84,0.09);
  border: 1px solid rgba(29,185,84,0.25);
  border-radius: 12px; padding: 12px 15px; margin-bottom: 16px;
}
.od-trust-strip > i:first-child { font-size: 1.3rem; color: #1db954; flex-shrink: 0; }
.od-trust-strip-title { font-size: 0.82rem; font-weight: 700; color: #4ade80; }
.od-trust-strip-sub   { font-size: 0.7rem; color: rgba(216,222,255,0.52); }
.od-trust-strip-lock  { font-size: 1rem; color: rgba(216,222,255,0.3); margin-left: auto; flex-shrink: 0; }
.od-mob-cs {
  font-size: 0.76rem; color: rgba(216,222,255,0.52); text-align: center; padding-top: 6px;
}
.od-mob-cs a { color: #7a5cff; text-decoration: none; font-weight: 600; }

#odPayAction .qr-wrapper {
  padding: 12px 16px;
  margin: 0 auto;
  max-width: 320px;
}
#odPayAction .qr-title {
  font-size: 0.88rem;
  margin-bottom: 8px;
}
#odPayAction .qr-frame {
  padding: 6px;
  border-radius: 12px;
}
#odPayAction .qr-image {
  max-width: 140px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 6px;
}
#odPayAction .qr-text {
  margin-top: 8px;
  font-size: 0.75rem;
  margin-bottom: 0;
}

.od-qr-zoomable { transition: opacity 0.2s; }
.od-qr-zoomable:hover { opacity: 0.85; }

.od-qr-modal {
  background: #0f182b;
  border: 1px solid rgba(122,92,255,0.3);
  border-radius: 16px;
}
.od-qr-modal-header {
  background: rgba(122,92,255,0.1);
  border-bottom: 1px solid rgba(122,92,255,0.2);
  padding: 12px 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.od-qr-modal-title {
  font-size: 0.88rem; font-weight: 700; color: #d8deff;
}
.od-qr-modal-footer {
  background: transparent;
  border-top: 1px solid rgba(255,255,255,0.07);
  justify-content: center; padding: 12px;
}

.od-qr-download-btn {
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 10px;
  padding: 6px 14px;
  background: rgba(122,92,255,0.15);
  border: 1px solid rgba(122,92,255,0.45);
  color: #d8deff; font-size: 0.75rem; font-weight: 600;
  border-radius: 8px; text-decoration: none;
  transition: all 0.2s;
}
.od-qr-download-btn:hover {
  background: rgba(122,92,255,0.3);
  border-color: rgba(122,92,255,0.7);
  color: #fff;
}

/* --- RESPONSIVE --- */
@media (max-width: 575.98px) {
  .od-hero-title  { font-size: 1.3rem; }
  .od-trxid-val   { font-size: 0.82rem; }
  .od-step-body   { display: none; }
  .od-step-sep    { min-width: 28px; flex: 1; }
}
@media (max-width: 991.98px) {
  .od-hero    { padding: 24px 16px 18px; }
  .od-btn-topup, .od-btn-riwayat { padding: 12px; width: 100%; }
}

/* ============================================
   UNAVAILABLE PRODUCT STATE — item-checkout
   ============================================ */
.co-unavailable-wrap {
  text-align: center;
  padding: 52px 24px 48px;
  background: #0e1627;
  border: 1px solid rgba(122,92,255,.15);
  border-radius: 18px;
  margin-bottom: 32px;
}
.co-unavailable-icon {
  font-size: 4.5rem;
  color: #3a4260;
  margin-bottom: 20px;
  line-height: 1;
}
.co-unavailable-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #c0cde0;
  margin-bottom: 12px;
}
.co-unavailable-sub {
  font-size: .9rem;
  color: #8896ae;
  max-width: 400px;
  margin: 0 auto 28px;
  line-height: 1.65;
}
.co-unavailable-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.co-unavailable-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
}
.co-unavailable-btn:hover { opacity: .85; transform: translateY(-1px); }
.co-unavailable-btn--primary {
  background: linear-gradient(90deg,#7a5cff,#5a3fff);
  color: #fff;
  box-shadow: 0 4px 14px rgba(122,92,255,.3);
}
.co-unavailable-btn--outline {
  border: 1px solid rgba(122,92,255,.4);
  color: #a89aff;
  background: transparent;
}
.co-unavailable-btn--outline:hover { color: #a89aff; }

/* ============================================
   RELATED PRODUCTS — item-checkout
   ============================================ */
.co-related-section {
  padding: 20px 0 28px;
  background: #060d1a;
}
.co-related-box {
  background: #0b1322;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 12px 14px;
}
.co-related-title {
  font-size: 0.78rem; font-weight: 600; color: rgba(216,222,255,0.7);
  display: flex; align-items: center; gap: 6px; margin-bottom: 12px;
}
.co-related-title i { font-size: 0.8rem; color: #7a5cff; }
.co-related-row {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.co-related-card {
  flex: 0 0 auto;
  display: flex; flex-direction: column; align-items: center;
  text-decoration: none;
  width: 76px;
  transition: opacity 0.2s;
}
.co-related-card:hover { opacity: 0.8; }
.co-related-img-wrap {
  width: 64px; height: 64px;
  border-radius: 16px;
  overflow: hidden;
  background: #0a1020;
  border: 1px solid rgba(122,92,255,0.2);
  flex-shrink: 0;
}
.co-related-img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.co-related-name {
  margin-top: 6px;
  font-size: 0.7rem; font-weight: 500; color: #d8deff;
  text-align: center;
  width: 100%;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ============================================
   PRINT STYLES — order-detail
   ============================================ */
@media print {
  @page { margin: 8mm 10mm; size: A4 portrait; }
  * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }

  /* ── Receipt footer ── */
  .od-page::after {
    content: "itemkilat.com  ·  Dokumen ini adalah bukti transaksi yang sah";
    display: block;
    text-align: center;
    font-size: 0.65rem;
    color: #888 !important;
    border-top: 1px solid #ddd;
    padding-top: 7px;
    margin-top: 12px;
  }

  /* ── Hide UI chrome ── */
  footer,
  #odPayAction, .od-progress-bar,
  .od-mob-actions, .od-cta, .od-trust-badges,
  .col-lg-4, .od-copy-btn, #loading-overlay { display: none !important; }

  /* ── Navbar → stripped to logo only, acts as print header ── */
  .lp-navbar {
    position: static !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    border-bottom: 2px solid #7a5cff !important;
    padding: 0 0 7px !important;
    margin-bottom: 10px !important;
  }
  .lp-navbar .container {
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  .lp-navbar .container::after {
    content: "BUKTI TRANSAKSI";
    font-size: 0.68rem;
    font-weight: 700;
    color: #5b3fd8 !important;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: #f0ecff;
    padding: 2px 8px;
    border-radius: 4px;
  }
  .lp-nav-search-wrap,
  .navbar-toggler,
  .navbar-collapse { display: none !important; }
  .lp-navbar-brand { padding: 0 !important; margin: 0 !important; }
  .lp-navbar-brand img {
    filter: brightness(0) !important;
    height: 26px !important;
  }

  /* ── Page base ── */
  html, body { background: #fff !important; color: #222 !important; }
  .od-page { background: #fff !important; padding: 0 !important; }

  /* ── Hero: compact, transparent trxid (no white-box contrast) ── */
  .od-hero {
    background: #f7f5ff !important;
    border: 1.5px solid #c8b8ff !important;
    border-radius: 8px !important;
    padding: 10px 16px !important;
    margin-bottom: 8px !important;
  }
  .od-hero-inner { text-align: center !important; }
  .od-check {
    width: 36px !important; height: 36px !important;
    font-size: 1rem !important;
    margin-bottom: 4px !important;
  }
  .od-check--success { background: #1db954 !important; color: #fff !important; }
  .od-check--pending { background: #ff8c00 !important; color: #fff !important; }
  .od-check--process { background: #3366ff !important; color: #fff !important; }
  .od-check--failed  { background: #e04055 !important; color: #fff !important; }
  .od-hero-title {
    font-size: 0.95rem !important; font-weight: 700 !important;
    color: #1a1a2e !important; margin-bottom: 1px !important;
  }
  .od-hero-sub { font-size: 0.72rem !important; color: #555 !important; margin-bottom: 6px !important; }
  /* trxid: transparent bg so it blends into hero, no white-box effect */
  .od-hero-trxid {
    display: inline-block !important;
    background: transparent !important;
    border: 1px solid rgba(122,92,255,0.35) !important;
    border-radius: 6px !important;
    padding: 4px 10px !important;
    margin-top: 0 !important;
    text-align: center !important;
  }
  .od-trxid-label { color: #7a5cff !important; font-size: 0.6rem !important; letter-spacing: .5px; }
  .od-trxid-val   { color: #1a1a2e !important; font-size: 0.8rem !important; font-weight: 700 !important; }
  .od-trxid-date  { color: #555 !important; font-size: 0.65rem !important; margin-top: 1px; }

  /* ── Layout ── */
  .od-main { margin-top: 0 !important; }
  .col-lg-8 { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }

  /* ── Receipt card ── */
  .od-card {
    background: #fff !important;
    border: 1.5px solid #e0e0e0 !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    page-break-inside: avoid;
  }
  .od-card-head {
    color: #1a1a2e !important;
    font-size: 0.82rem !important; font-weight: 700 !important;
    border-bottom: 1px solid #ebebeb !important;
    padding: 10px 16px !important;
  }
  .od-card-body, .od-card > *:not(.od-card-head) { padding: 0 16px !important; }

  /* ── Product row ── */
  .od-prod-imgbox { display: none !important; }
  .od-prod-info   { padding: 8px 0 0 !important; }
  .od-prod-row    { margin-bottom: 4px !important; }
  .od-prod-name   { color: #1a1a2e !important; font-size: 0.9rem !important; }
  .od-prod-badge  {
    background: #f0ecff !important;
    color: #5b3fd8 !important;
    border: 1px solid #c8b8ff !important;
    font-size: 0.72rem !important;
  }

  /* ── Detail rows ── */
  .od-detail-row  { border-bottom-color: #f2f2f2 !important; padding: 6px 0 !important; }
  .od-detail-label { color: #555 !important; font-size: 0.74rem !important; }
  .od-detail-val  { color: #1a1a2e !important; font-size: 0.78rem !important; font-weight: 500 !important; }
  .od-detail-val img { height: 14px !important; filter: none !important; }
  .od-total-row   { background: #f0ecff !important; border-radius: 0 0 6px 6px !important; }
  .od-total-val   { color: #5b3fd8 !important; font-size: 0.95rem !important; font-weight: 700 !important; }

  /* ── Status messages ── */
  .od-status-msg { display: flex !important; border-radius: 6px !important; font-size: 0.75rem !important; padding: 8px 12px !important; margin: 6px 0 !important; }
  .od-status-msg--success {
    background: #edfbf3 !important;
    border: 1px solid #b2f0ce !important;
    color: #1a6b3a !important;
  }
  .od-status-msg--failed {
    background: #fdecea !important;
    border: 1px solid #f8b4b4 !important;
    color: #9b2828 !important;
  }
}

/* =============================================
   Transaction Page
   ============================================= */
.trx-page { padding: 96px 0 60px; }

/* ── Hero ── */
.trx-hero {
  background: linear-gradient(145deg, #0e1424 0%, #111b33 60%, #0f182b 100%);
  border: 1px solid rgba(102,178,255,0.15);
  border-radius: 18px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.trx-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(122,92,255,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.trx-hero-left { flex: 1; min-width: 0; }
.trx-hero-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 10px;
}
.trx-hero-title span { color: #a78bfa; }
.trx-hero-desc {
  font-size: 0.9rem;
  color: #9ca3af;
  margin-bottom: 16px;
  line-height: 1.55;
}
.trx-example-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.35);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.78rem;
  color: #fcd34d;
}
.trx-example-chip i { color: #f59e0b; }
.trx-example-chip code {
  color: #c4b5fd;
  font-size: 0.8rem;
  background: none;
  padding: 0;
}
.trx-hero-illus {
  flex-shrink: 0;
  width: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trx-hero-illus i {
  font-size: 80px;
  color: #7a5cff;
  opacity: 0.7;
  filter: drop-shadow(0 0 24px rgba(122,92,255,0.5));
}
.trx-hero-right { flex: 1.1; min-width: 0; }
.trx-input-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #9ca3af;
  margin-bottom: 8px;
}
.trx-input-wrap {
  position: relative;
  margin-bottom: 10px;
}
.trx-input-wrap i {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
  font-size: 1rem;
  pointer-events: none;
}
.trx-input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(122,92,255,0.25);
  border-radius: 10px;
  color: #fff;
  font-size: 0.9rem;
  padding: 12px 16px 12px 40px;
  outline: none;
  transition: border-color .2s;
}
.trx-input::placeholder { color: #6b7280; }
.trx-input:focus { border-color: #7a5cff; background: rgba(122,92,255,0.08); }
.trx-btn-search {
  width: 100%;
  background: linear-gradient(90deg, #7a5cff, #5b3fd8);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity .2s;
}
.trx-btn-search:hover { opacity: .88; }
.trx-secure-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  color: #6b7280;
  margin-top: 8px;
}
.trx-secure-note i { color: #7a5cff; }
.trx-input.is-warn { border-color: #f59e0b; background: rgba(245,158,11,0.07); }
.trx-input-warn {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #f59e0b;
  margin-top: 6px;
}
.trx-input-warn.show { display: flex; }
@keyframes trx-shake {
  0%,100% { transform: translateX(0); }
  20%,60%  { transform: translateX(-5px); }
  40%,80%  { transform: translateX(5px); }
}
.trx-input.shake { animation: trx-shake 0.35s ease; }

/* ── Result area ── */
.trx-result {
  background: linear-gradient(145deg, #0e1424 0%, #111b33 100%);
  border: 1px solid rgba(102,178,255,0.12);
  border-radius: 18px;
  padding: 48px 24px;
  margin-bottom: 20px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trx-empty { text-align: center; }
.trx-empty-icon {
  width: 72px; height: 72px;
  background: rgba(122,92,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.trx-empty-icon i { font-size: 2rem; color: #7a5cff; }
.trx-empty-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.trx-empty-desc { font-size: 0.84rem; color: #6b7280; line-height: 1.5; }

/* ── Result table ── */
.trx-result-inner { width: 100%; }
.trx-table-wrap { overflow-x: auto; }
.trx-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.trx-table thead tr { border-bottom: 1px solid rgba(122,92,255,0.2); }
.trx-table th {
  padding: 10px 14px;
  color: #9ca3af;
  font-weight: 600;
  text-align: left;
  white-space: nowrap;
}
.trx-table td {
  padding: 12px 14px;
  color: #e5e7eb;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  vertical-align: middle;
}
.trx-table tbody tr:last-child td { border-bottom: none; }
.trx-table tbody tr:hover td { background: rgba(122,92,255,0.06); }
.trx-status-pill {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid;
}
.trx-btn-detail {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(122,92,255,0.15);
  border: 1px solid rgba(122,92,255,0.35);
  color: #c4b5fd;
  border-radius: 7px;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
}
.trx-btn-detail:hover { background: rgba(122,92,255,0.3); color: #fff; }

/* ── Mobile cards ── */
.trx-cards { display: none; flex-direction: column; gap: 10px; width: 100%; }
.trx-card-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(102,178,255,0.12);
  border-radius: 12px;
  padding: 14px 16px;
}
.trx-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.trx-card-ref {
  font-family: monospace;
  font-size: 0.78rem;
  color: #c4b5fd;
  word-break: break-all;
  flex: 1;
  margin-right: 10px;
}
.trx-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.82rem;
}
.trx-card-row:last-of-type { border-bottom: none; }
.trx-card-label { color: #6b7280; }
.trx-card-val   { color: #e5e7eb; font-weight: 500; }
.trx-card-total { color: #7a5cff; font-weight: 700; }
.trx-btn-detail-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: 12px;
  background: rgba(122,92,255,0.15);
  border: 1px solid rgba(122,92,255,0.35);
  color: #c4b5fd;
  border-radius: 8px;
  padding: 9px;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
}
.trx-btn-detail-full:hover { background: rgba(122,92,255,0.3); color: #fff; }

/* show/hide per breakpoint */
.trx-desktop-only { display: block; }

/* ── Feature badges ── */
.trx-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}
.trx-feat-item {
  background: linear-gradient(145deg, #0e1424, #111b33);
  border: 1px solid rgba(102,178,255,0.12);
  border-radius: 14px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.trx-feat-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.trx-feat-title { font-size: 0.85rem; font-weight: 700; color: #fff; }
.trx-feat-sub   { font-size: 0.76rem; color: #9ca3af; margin-top: 2px; }

/* ── CTA ── */
.trx-cta {
  background: linear-gradient(145deg, #0e1424, #111b33);
  border: 1px solid rgba(102,178,255,0.15);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.trx-cta-icon { font-size: 3rem; color: #7a5cff; flex-shrink: 0; }
.trx-cta-text { flex: 1; }
.trx-cta-title { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 5px; }
.trx-cta-desc  { font-size: 0.84rem; color: #9ca3af; line-height: 1.5; }
.trx-cta-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: #e5e7eb;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
  white-space: nowrap;
}
.trx-cta-btn:hover { background: rgba(122,92,255,0.2); color: #fff; }

@media (max-width: 768px) {
  .trx-page { padding: 80px 0 40px; }
  .trx-hero { flex-direction: column; padding: 24px 18px; gap: 20px; }
  .trx-hero-illus { display: none; }
  .trx-hero-left, .trx-hero-right { width: 100%; }
  .trx-hero-title { font-size: 1.3rem; }
  .trx-hero-desc { font-size: 0.84rem; }
  .trx-example-chip { font-size: 0.74rem; }
  .trx-input { font-size: 0.84rem; padding: 11px 14px 11px 38px; }
  .trx-btn-search { font-size: 0.88rem; padding: 11px; }
  .trx-result { padding: 36px 16px; border-radius: 14px; }
  .trx-desktop-only { display: none !important; }
  .trx-cards { display: flex; }
  .trx-features { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .trx-feat-item { padding: 14px 12px; gap: 10px; }
  .trx-feat-icon { width: 36px; height: 36px; font-size: 1rem; }
  .trx-feat-title { font-size: 0.8rem; }
  .trx-feat-sub { font-size: 0.71rem; }
  .trx-cta { flex-direction: column; text-align: center; padding: 22px 18px; gap: 16px; }
  .trx-cta-icon { font-size: 2.2rem; }
  .trx-cta-btn { width: 100%; justify-content: center; }
}

/* =========================================================
   Flash Sale Section
   ========================================================= */
.lp-flashsale { background: linear-gradient(135deg, #0e1424 0%, #1a1040 100%); }

/* Header row */
.lp-fs-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.lp-fs-title-badge {
  background: linear-gradient(135deg, #ff4d4d, #ff8c00);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 1px;
  padding: 8px 18px;
  border-radius: 6px;
  text-transform: uppercase;
  line-height: 1;
}

/* Countdown */
.lp-fs-countdown { display: flex; align-items: center; gap: 10px; flex-wrap: nowrap; }
@media (max-width: 575px) {
  .lp-fs-countdown { flex: 1 1 100%; justify-content: space-between; }
}
.lp-fs-countdown-label { color: rgba(255,255,255,.6); font-size: .82rem; }
.lp-fs-timer { display: flex; align-items: center; gap: 4px; }
.lp-fs-timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,77,77,.15);
  border: 1px solid rgba(255,77,77,.3);
  border-radius: 8px;
  padding: 4px 10px;
  min-width: 48px;
}
.lp-fs-timer-block span { font-size: 1.2rem; font-weight: 700; color: #ff6b6b; line-height: 1; }
.lp-fs-timer-block small { font-size: .65rem; color: rgba(255,255,255,.5); margin-top: 2px; }
.lp-fs-timer-sep { color: #ff6b6b; font-weight: 700; font-size: 1.1rem; }
.lp-fs-ended { color: #ff6b6b; font-size: .9rem; font-weight: 600; }

/* Condition note */
.lp-fs-condition {
  background: rgba(255,140,0,.08);
  border: 1px solid rgba(255,140,0,.25);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: .82rem;
  color: rgba(255,255,255,.65);
}

/* Card scroll row */
.lp-fs-scroll-wrap { position: relative; }
.lp-fs-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: #fff; width: 34px; height: 34px; border-radius: 50%;
  cursor: pointer; z-index: 2; font-size: 1.4rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lp-fs-nav:hover { background: rgba(255,255,255,.25); }
.lp-fs-nav--prev { left: -17px; }
.lp-fs-nav--next { right: -17px; }
@media (max-width: 575px) { .lp-fs-nav { display: none; } }
.lp-fs-grid {
  display: flex; flex-wrap: nowrap; gap: 12px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; padding-bottom: 6px;
}
.lp-fs-grid::-webkit-scrollbar { height: 4px; }
.lp-fs-grid::-webkit-scrollbar-track { background: rgba(255,255,255,.05); border-radius: 2px; }
.lp-fs-grid::-webkit-scrollbar-thumb { background: rgba(255,255,255,.2); border-radius: 2px; }

.lp-fs-card {
  flex: 0 0 160px; scroll-snap-align: start;
  background: linear-gradient(145deg, #111b33, #0e1424);
  border: 1px solid rgba(255,77,77,.2);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex;
  flex-direction: column;
}
.lp-fs-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255,77,77,.2);
  border-color: rgba(255,77,77,.5);
}

.lp-fs-card-img { position: relative; aspect-ratio: 1/1; overflow: hidden; background: #0d1220; }
.lp-fs-card-img img { width: 100%; height: 100%; object-fit: cover; }
.lp-fs-card-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: linear-gradient(135deg, #ff4d4d, #ff8c00);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 12px;
}

.lp-fs-card-body { padding: 10px 12px 12px; flex: 1; display: flex; flex-direction: column; gap: 4px; }
.lp-fs-card-product { font-size: .72rem; color: rgba(255,255,255,.5); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lp-fs-card-sku { font-size: .85rem; font-weight: 600; color: #e8eaf6; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lp-fs-card-prices { display: flex; flex-direction: column; gap: 1px; margin-top: 4px; }
.lp-fs-price-old { font-size: .72rem; color: rgba(255,255,255,.4); text-decoration: line-through; }
.lp-fs-price-new { font-size: .92rem; font-weight: 700; color: #ff6b6b; }

/* SweetAlert2 — site theme */
.swal2-popup {
  background: #0f182b !important;
  border: 1px solid rgba(122,92,255,0.3) !important;
  border-radius: 18px !important;
}
.swal2-header {
  background: linear-gradient(135deg, rgba(122,92,255,0.15), rgba(102,178,255,0.08)) !important;
  border-bottom: 1px solid rgba(122,92,255,0.2) !important;
}
.swal2-title { color: #fff !important; }
.swal2-html-container { color: rgba(255,255,255,0.65) !important; }
.swal2-confirm {
  background: linear-gradient(90deg, #7a5cff, #5b3fd8) !important;
  box-shadow: 0 4px 16px rgba(122,92,255,0.4) !important;
}
.swal2-confirm:focus { box-shadow: 0 4px 16px rgba(122,92,255,0.4) !important; }
.swal2-cancel {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  color: #c8cfe0 !important;
}
.swal2-cancel:hover { background: rgba(255,255,255,0.12) !important; color: #fff !important; }
.swal2-icon.swal2-warning { border-color: #f59e0b !important; color: #f59e0b !important; }
.swal2-icon.swal2-error   { border-color: #ef4444 !important; color: #ef4444 !important; }
.swal2-icon.swal2-info    { border-color: #66b2ff !important; color: #66b2ff !important; }
.swal2-icon.swal2-success { border-color: #22c55e !important; }
.swal2-icon.swal2-success .swal2-success-ring { border-color: rgba(34,197,94,0.3) !important; }
