/* ============================================================
   MARKICU OVERRIDES - Only Markicu-specific styles
   GA dark theme (ga-style.css) is the base.
   DO NOT duplicate GA styles here.
   ============================================================ */

/* Body - force GA dark background */
body {
  background-color: var(--bg-color1, #1F2235) !important;
  color: var(--body-color, #e2e3e7);
  font-family: var(--body-font, "Urbanist", sans-serif);
}

/* Override GA sidebar margin - Markicu has no left sidebar */
main,
body main,
.main-content {
  margin-left: 0 !important;
  padding-left: 0 !important;
}

/* ============================================================
   NAVBAR FIX - force GA nav to display correctly
   ============================================================ */
.custom-nav {
  background-color: var(--bg-color2, #24293D) !important;
  border-bottom: 1px solid var(--border-color1, #2e3347);
  padding: 0;
  z-index: 1030;
}

.custom-nav .desktop-view-wrapper {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding: 10px 0;
  gap: 0;
  flex-wrap: nowrap !important;
}

/* Main menu areas share space */
nav.custom-nav .desktop-view .desktop-view-wrapper .main-menu {
  flex-shrink: 1;
}

/* Push right-side nav (search, theme, login/avatar) to far right */
nav.custom-nav .desktop-view .desktop-view-wrapper > ul.custom-nav,
nav.custom-nav .desktop-view .desktop-view-wrapper > .profile-box {
  margin-left: auto !important;
  flex-shrink: 0;
}

nav.custom-nav .desktop-view .container .desktop-view-wrapper .logo,
nav.custom-nav .desktop-view .container .desktop-view-wrapper a.logo {
  flex-shrink: 0 !important;
  min-width: 180px !important;
  margin-right: 24px !important;
  text-decoration: none !important;
  width: auto !important;
}

nav.custom-nav .desktop-view .main-menu nav > ul {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav.custom-nav .desktop-view .main-menu nav > ul > li {
  position: relative;
  display: block !important;
  float: none !important;
}

nav.custom-nav .desktop-view .main-menu nav > ul > li > a {
  display: block;
  padding: 10px 14px;
  color: var(--body-color, #e2e3e7);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s;
}

nav.custom-nav .desktop-view .main-menu nav > ul > li > a:hover {
  color: rgb(var(--primary-color, 111, 79, 242));
}

/* Submenu (dropdown) - hidden by default */
nav.custom-nav .desktop-view .main-menu nav ul ul,
nav.custom-nav .desktop-view .main-menu nav ul .sub-menu {
  display: none !important;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--bg-color2, #24293D);
  border: 1px solid var(--border-color1, #2e3347);
  border-radius: 8px;
  padding: 8px 0;
  list-style: none;
  z-index: 1050;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

nav.custom-nav .desktop-view .main-menu nav ul li:hover > ul,
nav.custom-nav .desktop-view .main-menu nav ul li:hover > .sub-menu {
  display: block !important;
}

nav.custom-nav .desktop-view .main-menu nav ul .sub-menu li,
nav.custom-nav .desktop-view .main-menu nav ul ul li {
  display: block !important;
}

nav.custom-nav .desktop-view .main-menu nav ul .sub-menu li a,
nav.custom-nav .desktop-view .main-menu nav ul ul li a {
  display: block;
  padding: 8px 20px;
  color: var(--body-color);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s;
  white-space: nowrap;
}

nav.custom-nav .desktop-view .main-menu nav ul .sub-menu li a:hover,
nav.custom-nav .desktop-view .main-menu nav ul ul li a:hover {
  background: var(--bg-color3);
  color: rgb(var(--primary-color));
}

/* Right side: profile, search, theme toggle */
.custom-nav .profile-box,
.custom-nav .right-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.custom-nav .search-box2 input {
  background: var(--bg-color3, #2F3448);
  border: 1px solid var(--border-color1);
  color: var(--body-color);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 0.85rem;
  width: 180px;
  outline: none;
}

.custom-nav .search-box2 input::placeholder {
  color: var(--body-color);
  opacity: 0.5;
}

.custom-nav .login-btn {
  background: linear-gradient(135deg, rgb(var(--primary-color)), #332f8c);
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.custom-nav .login-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(111, 79, 242, 0.3);
  color: #fff;
}

/* User dropdown */
.custom-nav .user-dropdown {
  position: relative;
}

.custom-nav .user-dropdown img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid var(--border-color1);
}

.custom-nav .user-dropdown .dropdown-menu {
  background: var(--bg-color2);
  border: 1px solid var(--border-color1);
  border-radius: 8px;
  min-width: 180px;
}

.custom-nav .user-dropdown .dropdown-menu a {
  color: var(--body-color);
  padding: 8px 16px;
  font-size: 0.85rem;
}

.custom-nav .user-dropdown .dropdown-menu a:hover {
  background: var(--bg-color3);
  color: rgb(var(--primary-color));
}

/* Header top section */
.header-top-section {
  background: var(--bg-color1, #1F2235);
  border-bottom: 1px solid var(--border-color1, #2e3347);
  padding: 6px 0;
  font-size: 0.8rem;
}

.header-top-section .top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-top-section .contact-info {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-top-section .contact-info a {
  color: var(--body-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-top-section .contact-info a:hover {
  color: rgb(var(--primary-color));
}

.header-top-section .social-box {
  display: flex;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-top-section .social-box a {
  color: var(--body-color);
  text-decoration: none;
  font-size: 0.9rem;
}

.header-top-section .social-box a:hover {
  color: rgb(var(--primary-color));
}

/* Mobile menu - hide on desktop */
.mobile-menu { display: none; }

@media (max-width: 991.98px) {
  .custom-nav .main-menu { display: none !important; }
  .custom-nav .desktop-view-wrapper {
    padding: 8px 0;
  }
  .header-top-section { display: none; }
}

/* Sandbox banner offset */
body.sandbox-mode,
html body.sandbox-mode {
  padding-top: 104px !important;
}

/* ============================================================
   CAROUSEL (Markicu banner coverflow)
   ============================================================ */
.carousel-coverflow-container {
  max-width: 700px;
  width: 100%;
  margin: 0 auto 1.5rem auto;
  position: relative;
  z-index: 2;
}

.carousel-coverflow {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 0;
  padding-bottom: 39.375%;
  perspective: 1200px;
  user-select: none;
}

.carousel-slide {
  width: 100%;
  max-width: 700px;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scale(0.7);
  opacity: 0;
  transition: all 0.5s cubic-bezier(.4, 0, .2, 1);
  z-index: 1;
  pointer-events: none;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.carousel-slide.active {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  z-index: 3;
  pointer-events: auto;
}

.carousel-slide.left {
  opacity: 0.6;
  transform: translateX(-110%) scale(0.82) rotateY(8deg);
  z-index: 2;
}

.carousel-slide.right {
  opacity: 0.6;
  transform: translateX(10%) scale(0.82) rotateY(-8deg);
  z-index: 2;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.carousel-indicators span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-color1, #2e3347);
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-indicators span.active {
  background: rgb(var(--primary-color, 111, 79, 242));
  transform: scale(1.2);
}

@media (max-width: 600px) {
  .carousel-coverflow-container {
    width: 90vw;
  }
  .carousel-slide.left,
  .carousel-slide.right {
    opacity: 0;
  }
}

/* ============================================================
   BELANJA PAGE UTILITIES
   ============================================================ */
.text-white-var { color: rgb(var(--white)); }
.text-body-var { color: var(--body-color); }
.text-primary-var { color: rgb(var(--primary-color)); }
.text-vivid-orange { color: var(--vivid-orange, #fb6116); }
.bg-color2 { background: var(--bg-color2); }
.bg-color3 { background: var(--bg-color3); }
.border-color1 { border: 1px solid var(--border-color1); }

.belanja-breadcrumb-sep { font-size: 0.6rem; opacity: 0.5; }
.belanja-search-input {
  background: var(--bg-color3);
  border: 1px solid var(--border-color1);
  border-radius: 9999px;
  padding: 12px 45px 12px 20px;
  color: rgb(var(--white));
  font-size: 0.9rem;
  outline: none;
}
.belanja-search-btn {
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: rgb(var(--white));
}
.belanja-pill {
  background: var(--bg-color3);
  color: rgb(var(--white));
  padding: 4px 14px;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 600;
}
.belanja-card {
  background: var(--bg-color2);
  border: 1px solid var(--border-color1);
  border-radius: 10px;
  padding: 14px;
}
.belanja-card-title { font-size: 0.88rem; font-weight: 600; color: rgb(var(--white)); }
.belanja-card-subtitle { font-size: 0.72rem; color: var(--body-color); }
.belanja-card-price { color: rgb(var(--white)); font-weight: 700; font-size: 0.92rem; }
.belanja-card-oldprice { font-size: 0.68rem; color: var(--body-color); }
.belanja-card-discount { color: var(--vivid-orange, #fb6116); }
.belanja-progress-track {
  height: 4px;
  background: var(--bg-color3);
  border-radius: 4px;
}
.belanja-progress-bar {
  height: 100%;
  background: rgb(var(--primary-color));
  border-radius: 4px;
}
.belanja-card-remaining { color: var(--body-color); font-size: 0.68rem; }
.belanja-note { color: var(--body-color); opacity: 0.5; font-size: 0.75rem; }
.belanja-countdown { color: var(--vivid-orange, #fb6116); font-size: 0.9rem; }
.belanja-section-title { color: rgb(var(--white)); font-weight: 700; }
.belanja-section-desc { color: var(--body-color); font-size: 0.85rem; }

/* ============================================================
   FLASH SALE TIMER
   ============================================================ */
.flash-timer {
  background: linear-gradient(135deg, rgb(var(--primary-color)), #332f8c);
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 700;
  color: #fff;
}

/* ============================================================
   SANDBOX BANNER
   ============================================================ */
.sandbox-banner {
  background: #ff6b00;
  color: white;
  text-align: center;
  padding: 4px 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1031;
}

/* ============================================================
   TRUST SECTION
   ============================================================ */
.trust-section {
  background: var(--bg-color2, #24293D);
  padding: 48px 20px;
  border-top: 1px solid var(--border-color1, #2e3347);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-item {
  text-align: center;
  padding: 24px 16px;
}

.trust-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgb(var(--primary-color)), #332f8c);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  color: #fff;
}

.trust-item h6 {
  color: rgb(var(--white, 255, 255, 255));
  font-weight: 700;
  margin-bottom: 8px;
}

.trust-item p {
  color: var(--body-color);
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 992px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .trust-grid { grid-template-columns: 1fr; gap: 16px; }
  .trust-item { padding: 16px; }
}

/* ============================================================
   FOOTER (Markicu branded)
   ============================================================ */
footer {
  background: var(--bg-color1, #1F2235) !important;
  padding: 40px 0 0;
  color: var(--body-color);
  border-top: 1px solid var(--border-color1, #2e3347);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
}

.footer-brand-logo {
  width: 44px;
  height: 44px;
  max-width: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-brand-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: rgb(var(--white));
}

.footer-tagline {
  color: var(--body-color);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-color3);
  color: var(--body-color);
  font-size: 16px;
  text-decoration: none;
  margin-right: 8px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: rgb(var(--primary-color));
  color: #fff;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-weight: 600;
  margin-bottom: 16px;
  color: rgb(var(--white));
  font-size: 0.95rem;
}

.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: var(--body-color);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: rgb(var(--primary-color)); }

.payments img {
  width: 56px;
  height: 36px;
  margin: 0 6px 6px 0;
  background: white;
  padding: 6px;
  border-radius: 6px;
  object-fit: contain;
}

.footer-trust-badge { color: var(--body-color); font-size: 0.8rem; }
.footer-trust-badge .stars { color: var(--vivid-orange, #fb6116); margin-right: 6px; }

.footer-bottom {
  background: var(--bg-color2, #24293D);
  padding: 20px 0;
  font-size: 0.78rem;
  color: var(--body-color);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.footer-bottom-inner p { margin: 0; }

.footer-links a {
  color: var(--body-color);
  text-decoration: none;
  margin-left: 20px;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgb(var(--primary-color)); }

.footer-regulatory {
  color: var(--body-color);
  font-size: 0.72rem;
  margin: 0;
  line-height: 1.6;
  opacity: 0.6;
}
.footer-regulatory a { color: var(--vivid-orange); text-decoration: none; }

@media (max-width: 992px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; text-align: center; }
  .footer-social { display: flex; justify-content: center; gap: 8px; }
  .footer-social a { margin-right: 0; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 8px; }
  .footer-links a { margin: 0 10px; }
  .footer-regulatory { text-align: center; }
}

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  background-color: #25d366;
  color: white;
  font-size: 16px;
  white-space: nowrap;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  color: white;
}

/* ============================================================
   MOBILE SIDEBAR (Markicu custom)
   ============================================================ */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
}
.sidebar-overlay.active { display: block; }

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 280px;
  height: 100vh;
  background: var(--bg-color1, #1F2235);
  z-index: 1050;
  transition: left 0.3s ease;
  overflow-y: auto;
  border-right: 1px solid var(--border-color1, #2e3347);
}
.mobile-sidebar.active { left: 0; }

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid var(--border-color1);
}

.sidebar-close {
  background: none;
  border: none;
  color: rgb(var(--white));
  font-size: 1.2rem;
  cursor: pointer;
}

.sidebar-nav { list-style: none; padding: 8px 0; margin: 0; }

.sidebar-nav-item { }

.sidebar-nav-link {
  display: block;
  padding: 12px 20px;
  color: var(--body-color);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}
.sidebar-nav-link:hover {
  background: var(--bg-color3);
  color: rgb(var(--white));
}
.sidebar-nav-link i { margin-right: 10px; width: 20px; text-align: center; }

.sidebar-divider {
  height: 1px;
  background: var(--border-color1);
  margin: 8px 16px;
}

/* ============================================================
   MODALS (Login, Coming Soon)
   ============================================================ */
#modalLogin .modal-content,
#modalPembayaranAndLogin .modal-content {
  background: var(--bg-color2, #24293D);
  border: 1px solid var(--border-color1);
}

#modalLogin .modal-header,
#modalPembayaranAndLogin .modal-header {
  background: linear-gradient(135deg, rgb(var(--primary-color)), #332f8c);
}

#modalLogin .modal-body,
#modalPembayaranAndLogin .modal-body {
  background: var(--bg-color2);
}

#modalComingSoon .modal-content {
  background: var(--bg-color2);
}

/* ============================================================
   GRADIENT TEXT (Markicu brand)
   ============================================================ */
.gradient-text {
  background: linear-gradient(135deg, var(--vivid-orange, #fb6116), #ff4d4d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-page .faq-search {
  background: var(--bg-color3);
  border: 1px solid var(--border-color1);
  border-radius: 9999px;
  padding: 12px 45px 12px 20px;
  color: rgb(var(--white));
  font-size: 0.9rem;
  outline: none;
  width: 100%;
}

.faq-page .faq-search-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.faq-page .faq-tab {
  padding: 8px 18px;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s;
  background: var(--bg-color3);
  color: var(--body-color);
}

.faq-page .faq-tab.active {
  background: linear-gradient(135deg, rgb(var(--primary-color)), #332f8c);
  color: #fff;
}

.faq-page .accordion-button {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 20px;
}

.faq-page .accordion-body {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--body-color);
}

.faq-page .accordion-item {
  border: 1px solid var(--border-color1);
}

.faq-page .faq-cta {
  background: linear-gradient(135deg, rgb(var(--primary-color)), #332f8c);
}

.faq-page .faq-cta-btn {
  background: var(--vivid-orange);
  color: #fff;
  padding: 10px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
}

.faq-page .faq-cta-btn:hover {
  color: #fff;
  opacity: 0.9;
}

/* ============================================================
   PARTNERSHIP PAGE
   ============================================================ */
.mk-card {
  background: var(--bg-color2);
  border: 1px solid var(--border-color1);
  border-radius: 12px;
  padding: 24px;
}

.mk-card-lg {
  background: var(--bg-color2);
  border: 1px solid var(--border-color1);
  border-radius: 16px;
  padding: 32px 24px;
}

.mk-card-featured {
  background: var(--bg-color2);
  border: 2px solid rgb(var(--primary-color));
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 8px 30px rgba(var(--primary-color), 0.15);
}

.mk-hero-gradient {
  background: linear-gradient(135deg, rgb(var(--primary-color)), #332f8c);
  border-radius: 16px;
  padding: 48px 32px;
}

.mk-text-primary { color: rgb(var(--primary-color)); }
.mk-text-orange { color: var(--vivid-orange); }

.mk-btn-primary {
  display: block;
  background: linear-gradient(135deg, rgb(var(--primary-color)), #332f8c);
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
}
.mk-btn-primary:hover { color: #fff; opacity: 0.9; }

.mk-btn-orange {
  display: inline-block;
  background: var(--vivid-orange);
  color: #fff;
  padding: 14px 36px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
}
.mk-btn-orange:hover { color: #fff; opacity: 0.9; }

.mk-btn-orange-block {
  display: block;
  background: var(--vivid-orange);
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
}
.mk-btn-orange-block:hover { color: #fff; opacity: 0.9; }

.mk-badge-orange {
  background: linear-gradient(135deg, var(--vivid-orange), #FFA500);
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.mk-text-white-85 { color: rgba(255,255,255,0.85); }
.mk-text-white-60 { color: rgba(255,255,255,0.6); }

.mk-btn-ghost {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 14px 36px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.3);
}
.mk-btn-ghost:hover { color: #fff; opacity: 0.9; }

.mk-icon-box {
  min-width: 40px;
  height: 40px;
  background: var(--bg-color3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--primary-color));
  font-size: 1.1rem;
}

.mk-step-circle {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgb(var(--primary-color)), #332f8c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
}

.mk-badge-primary {
  background: linear-gradient(135deg, rgb(var(--primary-color)), #332f8c);
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.mk-badge-muted {
  background: var(--bg-color3);
  color: var(--body-color);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.mk-list-check {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}
.mk-list-check li {
  padding: 8px 0;
  color: var(--body-color);
  border-bottom: 1px solid var(--border-color1);
  font-size: 0.85rem;
}
.mk-list-check li:last-child { border-bottom: none; }
.mk-list-check li i { color: rgb(var(--primary-color)); margin-right: 8px; }

/* ============================================================
   RESELLER DEPOSIT VIEW UTILITIES
   ============================================================ */
.mk-bg-1 { background: var(--bg-color1, #1F2235); }
.mk-bg-2 { background: var(--bg-color2, #24293D); }
.mk-bg-accent-subtle { background: rgba(111,79,242,0.15); }
.mk-text-accent { color: rgb(111,79,242); }
.mk-border-accent-left { border-left: 4px solid rgb(111,79,242); }
.mk-border-accent-left-sm { border-left: 3px solid rgb(111,79,242); }
.mk-border-color1 { border-color: var(--border-color1, #2e3347); }
.mk-border-warning-left { border-left: 3px solid var(--bs-warning) !important; }
.mk-border-danger-left { border-left: 3px solid var(--bs-danger) !important; }
.mk-border-success-left { border-left: 3px solid var(--bs-success) !important; }
.mk-back-btn { width: 36px; height: 36px; }
.mk-qr-img { width: 200px; height: 200px; }
.mk-bg-danger-subtle { background: rgba(220,53,69,0.1); border: 1px solid rgba(220,53,69,0.3); }
.mk-tracking-wide { letter-spacing: 1px; }

/* ============================================================
   TOTP SETUP PAGE
   ============================================================ */
.totp-card {
  background: var(--bg-color2);
  border: 1px solid var(--border-color1);
  border-radius: 12px;
  overflow: hidden;
}

.totp-header {
  background: linear-gradient(135deg, rgb(var(--primary-color)), #332f8c);
  padding: 20px 24px;
}

.totp-header h5 {
  color: #fff;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.totp-header img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: white;
  padding: 4px;
}

.totp-qr {
  width: 180px;
  border-radius: 12px;
  background: white;
  padding: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.totp-otp-input {
  width: 180px;
  background: var(--bg-color3);
  border: 2px solid var(--border-color1);
  border-radius: 10px;
  color: rgb(var(--white));
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.5rem;
  padding: 12px;
  font-family: monospace;
  outline: none;
  transition: all 0.2s;
}

.totp-otp-input:focus {
  border-color: rgb(var(--primary-color)) !important;
  box-shadow: 0 0 0 3px rgba(var(--primary-color), 0.2);
}

.totp-otp-input.valid {
  border-color: #10B981 !important;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.totp-info-box {
  background: var(--bg-color3);
  border-radius: 8px;
  border-left: 3px solid rgb(var(--primary-color));
  font-size: 0.78rem;
  color: var(--body-color);
}

.totp-submit-btn {
  background: linear-gradient(135deg, rgb(var(--primary-color)), #332f8c);
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}

.totp-submit-btn:hover {
  opacity: 0.9;
  color: #fff;
}

.totp-setup-text {
  color: var(--body-color);
  font-size: 0.85rem;
  line-height: 1.6;
}

.totp-setup-text strong {
  color: rgb(var(--white));
}

.totp-label {
  color: var(--body-color);
  font-size: 0.85rem;
}

.totp-info-icon {
  color: rgb(var(--primary-color));
}

/* ============================================================
   TICKET VIEW
   ============================================================ */
.tv-card {
  background: var(--bg-color2);
  border: 1px solid var(--border-color1);
  border-radius: 14px;
  overflow: hidden;
}

.tv-card-header { display: flex; }

.tv-card-header-icon {
  background: linear-gradient(135deg, rgb(var(--primary-color)), #332f8c);
  color: #fff;
  font-weight: 700;
  padding: 12px 16px;
  display: flex;
  align-items: center;
}

.tv-card-header-title {
  flex: 1;
  background: var(--bg-color3);
  color: #fff;
  font-weight: 600;
  padding: 12px 16px;
  margin: 0;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.tv-field-icon {
  color: rgb(var(--primary-color));
  width: 20px;
  margin-right: 8px;
}

.tv-field-label {
  color: var(--body-color);
  font-weight: 600;
  font-size: 0.85rem;
}

.tv-field-value {
  padding-left: 28px;
  color: #fff;
}

.tv-btn-copy {
  background: linear-gradient(135deg, rgb(var(--primary-color)), #332f8c);
  color: #fff;
  border: none;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  cursor: pointer;
}

.tv-total-box {
  background: linear-gradient(135deg, rgb(var(--primary-color)), #332f8c);
  border-radius: 12px;
  padding: 14px 16px;
  color: #fff;
}

.tv-total-amount {
  font-size: 1.3rem;
  font-weight: 700;
}

.tv-receipt-icon {
  font-size: 1.1rem;
  opacity: 0.6;
}

.tv-payment-box {
  background: var(--bg-color3);
  border: 1px solid var(--border-color1);
  border-radius: 12px;
  padding: 16px;
}

.tv-payment-label {
  color: var(--body-color);
  font-size: 0.78rem;
}

.tv-payment-img {
  height: 36px;
  width: auto;
}

.tv-qr-img {
  max-width: 180px;
  border: 4px solid #fff;
  border-radius: 12px;
  background: #fff;
}

.tv-voucher-box {
  background: linear-gradient(135deg, rgba(16,185,129,0.15), var(--bg-color2));
  border: 1px solid rgba(16,185,129,0.4);
  border-radius: 12px;
  padding: 14px 16px;
}

.tv-voucher-code {
  color: #34d399;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.tv-voucher-icon {
  color: #34d399;
  width: 20px;
  margin-right: 8px;
}

.tv-btn-copy-green {
  background: linear-gradient(135deg, rgba(16,185,129,1), #128c7e);
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

.tv-btn-cek-status {
  width: 100%;
  background: var(--vivid-orange);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.tv-wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 30px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.tv-wa-float:hover { color: #fff; }

.tv-badge-status {
  font-size: 0.8rem;
  padding: 5px 12px;
  border-radius: 8px;
}

.tv-expire-label {
  color: var(--body-color);
  font-size: 0.78rem;
}

/* ============================================================
   PAYMENT LIST (paymentList fragment)
   ============================================================ */
#paymentList {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  padding: 0.5rem;
}

.payment-item {
  position: relative;
  display: flex;
  align-items: center;
}

.payment-radio {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 18px;
  height: 18px;
  accent-color: #6F4FF2;
  cursor: pointer;
}

.payment-card {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 14px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.25s ease;
  gap: 12px;
  border: 1px solid #2e3347;
  outline: 1px solid transparent;
  background-color: #2F3448;
  color: #fff;
  position: relative;
  margin: 0;
}

.payment-card:hover {
  border-color: rgba(111, 79, 242, 0.5);
  background-color: rgba(111, 79, 242, 0.05);
}

.payment-radio:checked + .payment-card {
  background-color: rgba(111, 79, 242, 0.1);
  border-color: #6F4FF2;
  outline: 1px solid #6F4FF2;
  box-shadow: 0 0 12px rgba(111, 79, 242, 0.15);
}

.payment-img-area {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-img-area img {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  padding: 4px;
}

.payment-content-area {
  flex: 1;
  padding-right: 30px;
}

.payment-content-area h5 {
  margin: 0 0 2px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.payment-price {
  font-size: 14px;
  font-weight: 700;
  color: #FF6B35;
}

.badge-termurah {
  position: absolute;
  top: -8px;
  left: 10px;
  background: linear-gradient(135deg, #10B981, #059669);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
  z-index: 3;
}

.payment-fullwidth {
  grid-column: 1 / -1;
}

.btn-bayar {
  background: linear-gradient(135deg, #FF6B35, #ff4d4d);
  color: white;
  border-radius: 12px;
  padding: 16px 24px;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 77, 77, 0.3);
  transition: all 0.25s ease;
}

.btn-bayar:hover:not(:disabled) {
  background: linear-gradient(135deg, #E55A2B, #e03e3e);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 77, 77, 0.4);
  color: white;
}

.btn-bayar:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  color: white;
}

.popup-container {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
}

.popup-box {
  position: relative;
  background: #2F3448;
  width: 100%;
  max-width: 280px;
  border-radius: 16px;
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  animation: slideUp 0.3s ease-out;
  color: white;
  border: 1px solid #2e3347;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.popup-header {
  text-align: center;
  padding: 16px 16px 12px;
  background: #2F3448;
}

.success-icon {
  margin: 0 auto 8px;
  display: inline-block;
}

.success-icon svg {
  width: 32px;
  height: 32px;
}

.popup-title {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 4px;
  color: white;
}

.popup-subtitle {
  font-size: 11px;
  margin: 0;
  opacity: 0.9;
  line-height: 1.3;
  color: #D1D5DB;
}

.popup-body {
  padding: 0 16px 16px;
}

.details-card {
  background: #1E2233;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #2e3347;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 11px;
}

.detail-row:not(:last-child) {
  border-bottom: 1px solid #3a3f54;
}

.detail-label {
  color: #9CA3AF;
  font-weight: 500;
}

.detail-value {
  color: white;
  font-weight: 600;
  text-align: right;
  max-width: 60%;
  word-break: break-word;
}

.disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 10px;
  line-height: 1.3;
}

.checkbox-label {
  color: #D1D5DB;
  cursor: pointer;
  user-select: none;
}

.action-buttons {
  display: flex;
  gap: 8px;
}

.btn-cancel,
.btn-confirm {
  flex: 1;
  padding: 10px 12px;
  border: none;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-cancel {
  background: #4B5563;
  color: white;
}

.btn-cancel:hover {
  background: #374151;
  transform: translateY(-1px);
}

.btn-confirm {
  background: linear-gradient(135deg, #6F4FF2, #9B59B6);
  color: white;
  box-shadow: 0 3px 8px rgba(111, 79, 242, 0.25);
}

.btn-confirm:hover {
  background: linear-gradient(135deg, #5C3ED4, #8E44AD);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(111, 79, 242, 0.35);
}

@media (max-width: 576px) {
  #paymentList {
    grid-template-columns: 1fr;
  }
  .payment-card {
    padding: 12px;
    gap: 10px;
  }
  .payment-img-area,
  .payment-img-area img {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
  }
  .payment-content-area h5 {
    font-size: 13px;
  }
  .payment-price {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .popup-container {
    padding: 10px;
  }
  .popup-box {
    max-width: 260px;
    border-radius: 14px;
  }
  .popup-header {
    padding: 14px 14px 10px;
  }
  .popup-title {
    font-size: 16px;
  }
  .popup-subtitle {
    font-size: 10px;
  }
  .popup-body {
    padding: 0 14px 14px;
  }
  .details-card {
    padding: 10px;
    border-radius: 8px;
  }
  .detail-row {
    padding: 5px 0;
    font-size: 10px;
  }
  .disclaimer {
    font-size: 9px;
    gap: 6px;
  }
  .btn-cancel,
  .btn-confirm {
    font-size: 11px;
    padding: 9px 10px;
  }
  .success-icon svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 360px) {
  .popup-box {
    max-width: 240px;
  }
  .popup-header {
    padding: 12px 12px 8px;
  }
  .popup-body {
    padding: 0 12px 12px;
  }
  .details-card {
    padding: 8px;
  }
}

/* ============================================================
   CART PAGE
   ============================================================ */
.cart-section .cart-table {
  background: #1e1a22;
  border-radius: 12px;
  overflow: hidden;
}

.cart-section .table {
  color: #c5c0cb;
  margin-bottom: 0;
}

.cart-section .table thead th {
  background: #2b262f;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  border: none;
  padding: 14px 16px;
}

.cart-section .table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
}

.cart-section .table tbody tr:hover {
  background: rgba(255,255,255,0.03);
}

.cart-section .table tbody td {
  padding: 16px;
  vertical-align: middle;
  border: none;
}

.cart-section .cart-item .text-box .title a {
  color: #fff;
  text-decoration: none;
}

.cart-section .cart-item .text-box small {
  color: #9b95a1;
}

.cart-summary-card {
  background: #1e1a22;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}

.cart-summary-card .card-body {
  padding: 24px;
}

.cart-summary-card h4 {
  color: #fff;
  font-weight: 700;
}

.cmn-list2 .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.cmn-list2 .item span {
  color: #9b95a1;
}

.cmn-list2 .item h6,
.cmn-list2 .item h5 {
  color: #fff;
}

.cmn-list2 hr {
  border-color: rgba(255,255,255,0.1);
  margin: 4px 0;
}

.cmn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: linear-gradient(135deg, #7b2ff7, #c850c0);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.cmn-btn:hover {
  background: linear-gradient(135deg, #6a1de6, #b740af);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(123,47,247,0.3);
  color: #fff;
}

.btn-remove {
  background: rgba(220,53,69,0.15);
  color: #ff6b7a;
  border: 1px solid rgba(220,53,69,0.25);
  border-radius: 6px;
  padding: 6px 10px;
  transition: all 0.2s;
}

.btn-remove:hover {
  background: rgba(220,53,69,0.3);
  color: #ff8a96;
}

.btn-clear {
  background: rgba(255,193,7,0.12);
  color: #ffc107;
  border: 1px solid rgba(255,193,7,0.2);
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-clear:hover {
  background: rgba(255,193,7,0.25);
  color: #ffd43b;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
}

.cart-empty i {
  font-size: 4rem;
  color: #9b95a1;
  opacity: 0.3;
}

.cart-empty h5 {
  color: #9b95a1;
  margin-top: 16px;
}

.quantity-badge {
  background: rgba(123,47,247,0.15);
  color: #c084fc;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.cart-total-purple {
  color: #c084fc !important;
}

@media (max-width: 991.98px) {
  .cart-section .table thead {
    display: none;
  }
  .cart-section .table tbody tr {
    display: block;
    padding: 16px;
    margin-bottom: 8px;
    background: #252029;
    border-radius: 8px;
  }
  .cart-section .table tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border: none;
  }
  .cart-section .table tbody td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #9b95a1;
    font-size: 0.8rem;
    text-transform: uppercase;
  }
}

/* ============================================================
   PRODUCT LIST (productList fragment)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=New+Rocker&display=swap');

.product-grid {
  --bg-color1: #1F2235;
  --bg-color2: #24293D;
  --border-color1: #2e3347;
}

.card-animate {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.5s ease-out forwards;
  will-change: transform, opacity;
}

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

.category-box {
  background-color: var(--bg-color2);
  border: 1px solid var(--border-color1);
  padding: 10px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.3s ease-in-out;
}

.category-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border-color: #EC4C3C;
}

.category-box:hover .img-box img {
  transform: scale(1.05);
}

.category-box .img-box {
  overflow: hidden;
  border-radius: 5px;
  aspect-ratio: 1;
}

.category-box .img-box img {
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.category-box .text-box .title {
  font-family: 'New Rocker', serif;
  font-weight: 400;
  font-size: 0.85rem;
  color: #fff;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  line-height: 1.3;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.category-box a.product-link {
  text-decoration: none;
  color: inherit;
}

@media (max-width: 579px) {
  .category-box {
    padding: 6px;
    gap: 6px;
  }
  .category-box .text-box .title {
    font-size: 0.75rem;
  }
}

/* ============================================================
   LIGHT THEME SUPPORT (minimal)
   ============================================================ */
body.light-theme {
  --bg-color1: #f5f5f5;
  --bg-color2: #ffffff;
  --bg-color3: #e8e8e8;
  --body-color: #333;
  --heading-color: 0, 0, 0;
  --white: 0, 0, 0;
  --border-color1: #ddd;
  --border-color2: #ccc;
}

/* ============================================================
   SUPPORT PAGE
   ============================================================ */
.support-header {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(180deg, rgba(53, 46, 41, 0.8) 0%, transparent 100%);
  border-radius: 20px;
  margin-bottom: 30px;
}

.support-hero-wrapper {
  /* placeholder: used with Bootstrap utilities in template */
}

.support-hero-img {
  max-height: 250px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
}

.support-speech-bubble {
  position: absolute;
  top: 20px;
  left: -80px;
  background: #fff;
  color: #333;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  animation: support-float 3s ease-in-out infinite;
}

.support-speech-bubble::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 10px 0 10px 15px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
}

@keyframes support-float {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.support-label {
  color: #ff6b6b;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.support-title {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(to right, #ff6b6b, #ffa500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.support-subtitle {
  color: #888;
  font-size: 1rem;
}

/* Support Cards Grid */
.support-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 40px;
}

.support-card {
  background: linear-gradient(180deg, #352E29 0%, #1E1E1E 100%);
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.support-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 107, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.support-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.8rem;
  color: #fff;
}

.support-faq-icon {
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
}

.support-wa-icon {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.support-ig-icon {
  background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
}

.support-tiktok-icon {
  background: linear-gradient(135deg, #000, #25F4EE);
}

.support-card h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.support-card p {
  color: #888;
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.4;
}

/* Section Title */
.support-section-title {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

/* Quick Contact Section */
.support-quick-contact {
  margin-bottom: 40px;
}

.support-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.support-contact-item {
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #352E29 0%, #1E1E1E 100%);
  border-radius: 12px;
  padding: 18px 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.support-contact-item:hover {
  border-color: rgba(255, 107, 107, 0.3);
  transform: translateX(5px);
}

.support-contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  flex-shrink: 0;
}

.support-faq-bg {
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
}

.support-email-bg {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.support-wa-bg {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.support-ig-bg {
  background: linear-gradient(135deg, #833AB4, #E1306C);
}

.support-contact-info {
  flex: 1;
  margin-left: 15px;
}

.support-contact-info h5 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.support-contact-info p {
  color: #888;
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.4;
}

.support-contact-item > .fa-chevron-right {
  color: #666;
  font-size: 1.2rem;
}

/* Feedback Section */
.support-feedback-section {
  margin-bottom: 30px;
}

.support-feedback-card {
  background: linear-gradient(180deg, #352E29 0%, #1E1E1E 100%);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.support-feedback-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: #fff;
}

.support-feedback-card h4 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.support-feedback-card p {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.support-btn-feedback {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.support-btn-feedback:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
  color: #fff;
}

/* Support Page Responsive */
@media (max-width: 768px) {
  .support-title {
    font-size: 1.8rem;
  }

  .support-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .support-card {
    padding: 20px 15px;
  }

  .support-card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .support-card h4 {
    font-size: 1rem;
  }

  .support-card p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .support-header {
    padding: 30px 15px;
  }

  .support-title {
    font-size: 1.5rem;
  }

  .support-contact-item {
    padding: 15px;
  }

  .support-contact-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

/* ============================================================
   GLOBAL UTILITY CLASSES (pengganti inline style)
   ============================================================ */

/* Dimensions */
.icon-36 { width: 36px !important; height: 36px !important; min-width: 36px; max-width: 36px; }
.icon-44 { width: 44px !important; height: 44px !important; min-width: 44px; max-width: 44px; }
.max-w-550 { max-width: 550px; }
.max-w-560 { max-width: 560px; }
.max-w-600 { max-width: 600px; }
.max-w-650 { max-width: 650px; }
.w-60 { width: 60%; }
.w-85 { width: 85%; }

/* Backgrounds */
.bg-gradient-primary { background: linear-gradient(135deg, rgb(var(--primary-color)), #332f8c); }
.bg-vivid-orange { background: var(--vivid-orange, #fb6116); border: none; }
.bg-primary-solid { background: rgb(111, 79, 242); border: none; }

/* Text colors (CSS variable) */
.text-primary-var { color: rgb(var(--primary-color)); }
.text-body-var { color: var(--body-color); }

/* Font size */
.fs-xxs { font-size: 0.6rem; }

/* Decorative circles (welcome cards) */
.circle-deco-tr { position: absolute; top: -30px; right: -30px; width: 140px; height: 140px; border-radius: 50%; background: rgba(255,255,255,0.06); }
.circle-deco-br { position: absolute; bottom: -20px; right: 80px; width: 90px; height: 90px; border-radius: 50%; background: rgba(255,255,255,0.04); }

/* Layout - Sidebar */
.sidebar-fixed { position: fixed; top: 0; left: 0; height: 100vh; overflow-y: auto; z-index: 1030; }

/* Sandbox banner */
.sandbox-banner-bar { background: var(--vivid-orange, #fb6116); color: white; text-align: center; padding: 4px 0; font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; position: fixed; top: 0; width: 100%; z-index: 2000; }

/* Header title */
.header-title { color: #fff; font-weight: 600; font-size: 0.95rem; }
