/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  background: #f5f5f5;
  color: #333;
  line-height: 1.5;
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Header Top */
.header-top {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}
.header-top::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,107,0,0.1) 0%, transparent 50%);
  animation: headerGlow 10s ease-in-out infinite;
}
@keyframes headerGlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20%, 20%); }
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 1;
}

/* Logo */
.logo {
  text-decoration: none;
  flex-shrink: 0;
}
.logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.logo-box {
  display: flex;
  border: 2px solid #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255,107,0,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}
.logo:hover .logo-box {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(255,107,0,0.5);
}
.logo-lapak {
  background: #fff;
  color: #1a1a2e;
  font-weight: 800;
  font-size: 1rem;
  padding: 8px 14px;
  letter-spacing: 0.02em;
}
.logo-akun {
  background: linear-gradient(135deg, #ff6b00, #f7931e);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 8px 14px;
  letter-spacing: 0.02em;
}
.logo-indonesia {
  display: block;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: #ff6b00;
  text-transform: uppercase;
  text-align: center;
  margin-top: 6px;
  margin-right: -0.35em;
}

/* Header Center */
.header-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.header-tagline-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header-tagline {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-tagline i {
  color: #22c55e;
}
.header-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-socials a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s;
}
.header-socials a:hover {
  transform: translateY(-2px);
}
.header-socials a[aria-label="Instagram"]:hover {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  color: #fff;
}
.header-socials a[aria-label="TikTok"]:hover {
  background: #000;
  color: #fff;
  box-shadow: 0 0 8px #00f2ea, 0 0 8px #ff0050;
}
.header-socials a[aria-label="YouTube"]:hover {
  background: #ff0000;
  color: #fff;
}
.header-socials a[aria-label="Facebook"]:hover {
  background: #1877f2;
  color: #fff;
}

/* Search */
.search-wrap {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 4px;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}
.search-wrap:focus-within {
  background: rgba(255,255,255,0.15);
  border-color: #ff6b00;
  box-shadow: 0 0 20px rgba(255,107,0,0.3);
}
.search-icon {
  color: rgba(255,255,255,0.5);
  padding: 0 16px;
  font-size: 1rem;
}
.search-input {
  flex: 1;
  padding: 12px 0;
  border: none;
  background: transparent;
  font-size: 0.95rem;
  color: #fff;
  outline: none;
  min-width: 200px;
}
.search-input::placeholder { 
  color: rgba(255,255,255,0.5); 
}
.search-btn {
  padding: 12px 24px;
  background: linear-gradient(135deg, #ff6b00, #f7931e);
  border: none;
  color: #fff;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  font-family: inherit;
}
.search-btn:hover { 
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255,107,0,0.4);
}

/* Header Stats */
.header-stats {
  display: flex;
  gap: 24px;
  flex-shrink: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 16px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}
.stat-number {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ff6b00;
}
.stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Header Bottom - Platform Tabs */
.header-bottom {
  background: #fff;
  border-bottom: 1px solid #eee;
}
.platform-tabs {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.tab-btn {
  padding: 10px 20px;
  border: 2px solid #e8e8e8;
  border-radius: 50px;
  background: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  transition: all 0.3s;
  font-family: inherit;
}
.tab-btn i {
  font-size: 1.1rem;
}

/* Platform specific hover colors */
.tab-btn.instagram:hover,
.tab-btn.instagram.active {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 15px rgba(131,58,180,0.4);
}
.tab-btn.tiktok:hover,
.tab-btn.tiktok.active {
  background: #000;
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3), inset 0 0 20px rgba(0,242,234,0.2), inset 0 0 20px rgba(255,0,80,0.2);
}
.tab-btn.youtube:hover,
.tab-btn.youtube.active {
  background: #ff0000;
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 15px rgba(255,0,0,0.4);
}
.tab-btn.facebook:hover,
.tab-btn.facebook.active {
  background: #1877f2;
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 15px rgba(24,119,242,0.4);
}
.tab-btn.threads:hover,
.tab-btn.threads.active {
  background: #000;
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.tab-btn.lainnya:hover,
.tab-btn.lainnya.active {
  background: linear-gradient(135deg, #ff6b00, #f7931e);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 15px rgba(255,107,0,0.4);
}

/* ===== Main Layout ===== */
.main-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  gap: 24px;
}

/* ===== Sidebar ===== */
.sidebar {
  width: 240px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  height: fit-content;
  position: sticky;
  top: 100px;
}
.filter-block {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}
.filter-block:last-child { border-bottom: none; margin-bottom: 0; }
.filter-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.filter-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #555;
  cursor: pointer;
  margin-bottom: 8px;
}
.filter-radio input { accent-color: #ff6b00; }
/* Desktop: baris toggle disembunyikan, list kategori selalu tampil */
.filter-block--collapsible .filter-toggle-row { display: none; }
.filter-block--collapsible .filter-category-list { max-height: none; overflow: visible; }
.price-slider-wrap { margin-top: 8px; }
.price-slider {
  width: 100%;
  margin: 4px 0;
  accent-color: #ff6b00;
}
.price-display {
  font-size: 0.85rem;
  color: #666;
  margin: 8px 0 0 0;
}

/* ===== Content ===== */
.content { flex: 1; min-width: 0; }

/* Banners */
.banners-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.banner {
  padding: 24px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  min-height: 120px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.banner:hover {
  transform: translateY(-4px);
}

/* Banner Flash Sale */
.banner-flash {
  background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 50%, #ffa500 100%);
  box-shadow: 0 10px 40px rgba(255,107,0,0.3);
}
.banner-flash:hover {
  box-shadow: 0 15px 50px rgba(255,107,0,0.4);
}
.banner-flash .banner-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 50%);
  animation: bannerGlow 3s ease-in-out infinite;
}
@keyframes bannerGlow {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  50% { transform: translate(25%, 25%) scale(1.2); opacity: 0.8; }
}
.banner-flash .banner-content {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 2;
}
.banner-flash .banner-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  animation: iconPulse 2s ease-in-out infinite;
}
@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
.banner-flash .banner-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.banner-flash .banner-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.banner-flash .banner-text strong {
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
}
.banner-flash .banner-highlight {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.banner-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #fff;
  color: #ff6b00;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.banner-badge.pulse {
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
.banner-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}
.banner-particles span {
  position: absolute;
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  animation: particleFloat 4s ease-in-out infinite;
}
.banner-particles span:nth-child(1) { left: 20%; top: 60%; animation-delay: 0s; }
.banner-particles span:nth-child(2) { left: 60%; top: 30%; animation-delay: 1s; }
.banner-particles span:nth-child(3) { left: 80%; top: 70%; animation-delay: 2s; }
@keyframes particleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
  50% { transform: translateY(-20px) scale(1.5); opacity: 1; }
}

/* Banner Garansi */
.banner-garansi {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  box-shadow: 0 10px 40px rgba(26,26,46,0.3);
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 12px;
}
.banner-garansi:hover {
  box-shadow: 0 15px 50px rgba(26,26,46,0.4);
}
.banner-garansi .banner-shield {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 0 30px rgba(34,197,94,0.4);
  position: relative;
}
.banner-garansi .banner-shield::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(34,197,94,0.3);
  animation: shieldRing 2s ease-out infinite;
}
@keyframes shieldRing {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}
.banner-garansi .banner-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.banner-garansi .banner-text strong {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 800;
}
.banner-garansi .banner-text span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.banner-garansi .banner-features {
  display: flex;
  gap: 16px;
  margin-top: 4px;
}
.banner-garansi .feature-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}
.banner-garansi .feature-item i {
  color: #22c55e;
  font-size: 0.8rem;
}

/* Banner New Arrival */
.banner-new {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #c084fc 100%);
  box-shadow: 0 10px 40px rgba(124,58,237,0.3);
}
.banner-new:hover {
  box-shadow: 0 15px 50px rgba(124,58,237,0.4);
}
.banner-new .banner-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  animation: fireGlow 1.5s ease-in-out infinite;
}
@keyframes fireGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(255,255,255,0.2); }
  50% { box-shadow: 0 0 30px rgba(255,255,255,0.4); }
}
.banner-new .banner-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.banner-new .banner-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.banner-new .banner-text strong {
  font-size: 1.15rem;
  color: #fff;
  font-weight: 800;
}
.banner-new .banner-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}
.banner-new .banner-arrow {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  transition: all 0.3s;
}
.banner-new:hover .banner-arrow {
  background: #fff;
  color: #7c3aed;
  transform: translateX(4px);
}

.section-heading {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 20px 0;
  color: #333;
}

.catalog-empty-msg {
  margin: 0 0 16px 0;
  padding: 14px 16px;
  border-radius: 10px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: 0 8px 24px rgba(255,107,0,.12);
  transform: translateY(-2px);
}
.card-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
}
.card-tag.new { background: #22c55e; color: #fff; }
.card-tag.hot { background: #ff6b00; color: #fff; }
.card-images {
  width: 100%;
  margin-bottom: 12px;
  border-radius: 10px;
  overflow: hidden;
  background: #f0f0f0;
  aspect-ratio: 4/3;
}
.card-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 140px;
}
.card-img-thumbs {
  display: flex;
  gap: 6px;
  margin-top: 6px;
}
.card-img-thumbs img {
  width: calc(50% - 3px);
  height: 44px;
  object-fit: cover;
  border-radius: 6px;
  background: #e8e8e8;
}
.card-download {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #eee;
}
.card-download-label {
  font-size: 0.7rem;
  color: #666;
  width: 100%;
  margin-bottom: 2px;
}
.card-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  font-size: 0.75rem;
  color: #ff6b00;
  background: #fff5ed;
  border: 1px solid #ffd4b8;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.card-download-btn:hover {
  background: #ff6b00;
  color: #fff;
  border-color: #ff6b00;
}
.card-platform {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 12px;
}
.card-handle {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 6px 0;
  color: #333;
  line-height: 1.3;
}
.card-niche {
  display: none;
}
.card-specs {
  display: none;
}
.detail-modal-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0;
}
.detail-modal-specs .specs-title {
  display: none;
}
.detail-modal-specs .spec-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #475569;
  background: #f1f5f9;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
}
.detail-modal-specs .spec-item i {
  font-size: 0.65rem;
  color: #ff6b00;
}
.card-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ff6b00;
  margin: 0 0 8px 0;
}
.card-meta {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 4px;
}
.card-meta i { color: #f59e0b; }
.card-meta span:first-child {
  display: none;
}
.sold-card .card-meta {
  justify-content: space-between;
}
.sold-card .card-meta span:first-child {
  display: inline-flex;
  align-items: center;
}
.card-seller {
  font-size: 0.75rem;
  color: #999;
  margin: 0 0 12px 0;
}
.btn-detail {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px;
  background: linear-gradient(135deg, #ff6b00, #f7931e);
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: auto;
}
.btn-detail:hover { opacity: 0.9; }

/* ===== Modal Detail Produk ===== */
.detail-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.detail-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.detail-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  cursor: pointer;
}
.detail-modal-box {
  position: relative;
  background: #fff;
  border-radius: 16px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.detail-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: none;
  background: #f0f0f0;
  color: #333;
  border-radius: 10px;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.detail-modal-close:hover {
  background: #ff6b00;
  color: #fff;
}
.detail-modal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 16px;
}
.detail-modal-gallery {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.detail-modal-main-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  background: #f5f5f5;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: grab;
}
.detail-modal-main-wrap.is-panning {
  cursor: grabbing;
}
.detail-zoom-bar {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  width: 180px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(0,0,0,0.5);
  border-radius: 20px;
  z-index: 2;
}
.detail-zoom-bar .zoom-label {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  user-select: none;
}
.detail-zoom-bar .zoom-slider {
  flex: 1;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  outline: none;
}
.detail-zoom-bar .zoom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff6b00;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
  transition: transform 0.15s;
}
.detail-zoom-bar .zoom-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}
.detail-zoom-bar .zoom-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff6b00;
  cursor: pointer;
  border: none;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.detail-zoom-bar .zoom-slider::-moz-range-track {
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
}
.detail-modal-main {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center center;
  transition: transform 0.08s ease-out;
}
.detail-modal-thumbs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.detail-modal-thumbs img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.detail-modal-thumbs img:hover,
.detail-modal-thumbs img.active {
  border-color: #ff6b00;
}
.detail-modal-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.detail-modal-platform {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #333;
}
.detail-modal-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  color: #333;
}
.detail-modal-profile-wrap {
  margin: 6px 0 0 0;
}
.detail-profile-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.2s;
}
.detail-profile-btn:hover {
  opacity: 0.95;
  transform: translateY(-1px);
  color: #fff;
}
.detail-modal-desc {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}
.detail-modal-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ff6b00;
  margin: 4px 0 0 0;
}
.detail-modal-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  color: #888;
  margin: 4px 0 0 0;
}
.detail-modal-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.detail-modal-meta i { color: #f59e0b; }
.detail-modal-seller {
  font-size: 0.85rem;
  color: #999;
  margin: 0;
}
.detail-download-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #333;
  margin: 8px 0 4px 0;
}
.detail-download-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.detail-download-btns a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  background: #fff5ed;
  color: #ff6b00;
  border: 1px solid #ffd4b8;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.detail-download-btns a:hover {
  background: #ff6b00;
  color: #fff;
  border-color: #ff6b00;
}

/* Ask Product Button */
.detail-modal-ask {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #eee;
}
.btn-ask-product {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 18px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}
.btn-ask-product i {
  font-size: 1.1rem;
}
.btn-ask-product:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37,211,102,0.4);
  color: #fff;
}
.btn-ask-product:active {
  transform: translateY(0);
}

/* Sold Out Section */
.sold-section {
  padding: 40px 20px 30px;
  background: radial-gradient(circle at top, rgba(255,107,0,0.12), transparent 55%), #05091a;
}
.sold-container {
  max-width: 1200px;
  margin: 0 auto;
}
.sold-header {
  text-align: center;
  margin-bottom: 28px;
}
.sold-badge-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffedd5;
  background: rgba(255,107,0,0.25);
}
.sold-badge-title i {
  color: #ffd4b8;
}
.sold-title {
  margin: 10px 0 4px 0;
  font-size: 1.5rem;
  color: #fff;
}
.sold-subtitle {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(226,232,240,0.8);
}
.sold-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}
.sold-grid .product-card,
.product-grid .product-card {
  min-width: 0;
}
.sold-grid-full {
  margin-top: 10px;
}
.sold-section .sold-grid .product-card:nth-child(n+7) {
  display: none;
}
.sold-card {
  background: #050816;
  border-radius: 12px;
  box-shadow: 0 8px 26px rgba(15,23,42,0.5);
  border: 1px solid rgba(148,163,184,0.4);
  color: #e5e7eb;
  padding: 12px;
  font-size: 0.8rem;
}
.sold-card .card-handle {
  font-size: 0.9rem;
  line-height: 1.3;
  color: #ffffff;
  word-break: break-word;
  white-space: normal;
}
.sold-card .card-specs {
  display: none;
}
.sold-card .card-platform {
  background: rgba(15,23,42,0.9);
}
.sold-card .card-price {
  color: #f97316;
}
.sold-card .card-meta {
  color: #cbd5f5;
}
.sold-thumb {
  background: #020617;
}
.sold-badge {
  position: relative;
  padding: 3px 8px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  border-radius: 999px;
  color: #fee2e2;
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  box-shadow: 0 4px 12px rgba(248,113,113,0.35);
}
.sold-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 6px 0 4px;
}
.sold-thumb .card-img-main {
  filter: saturate(0.8) contrast(0.95);
  min-height: 0;
}
.sold-more {
  margin-top: 24px;
  text-align: center;
}
.btn-sold-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #f97316, #f59e0b);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(248,150,30,0.45);
}
.btn-sold-more i {
  font-size: 0.9rem;
}
.btn-sold-more:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}
.sold-modal .terms-modal-box {
  max-width: 1100px;
}
@media (max-width: 768px) {
  .sold-modal .terms-modal-box {
    max-width: calc(100vw - 24px);
    margin: 12px;
    max-height: 90vh;
    overflow: auto;
  }
  .sold-modal .sold-grid-full {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .sold-modal .terms-modal-box {
    max-width: calc(100vw - 16px);
    margin: 8px;
  }
  .sold-modal .sold-grid-full {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
}

/* ===== Footer ===== */
.footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  margin-top: 40px;
  padding: 48px 20px 0;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 2fr 1fr;
  gap: 40px;
}

/* Footer Brand */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
}
.footer-logo-box {
  display: inline-flex;
  border: 2px solid #fff;
  border-radius: 4px;
  overflow: hidden;
}
.footer-lapak {
  background: #fff;
  color: #1a1a2e;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 6px 10px;
  letter-spacing: 0.02em;
}
.footer-akun {
  background: transparent;
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 6px 10px;
  letter-spacing: 0.02em;
}
.footer-indonesia {
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: #ff6b00;
  text-transform: uppercase;
  margin-top: 4px;
  text-align: center;
  margin-right: -0.3em;
}
.footer-desc {
  font-size: 0.85rem;
  color: #a0a0b0;
  margin: 12px 0 0 0;
  line-height: 1.6;
  max-width: 280px;
}

/* Footer Section */
.footer-section h4,
.footer-payment h4,
.footer-social-wrap h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 0 16px 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #a0a0b0;
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}
.footer-links a:hover {
  color: #ff6b00;
  transform: translateX(4px);
}
.footer-links i {
  font-size: 0.75rem;
  width: 16px;
}

/* Payment Methods */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.footer-payment {
  transition: all 0.3s;
  padding: 16px;
  margin: -16px;
  border-radius: 16px;
}
.footer-payment.highlight {
  background: rgba(255,107,0,0.1);
  box-shadow: 0 0 30px rgba(255,107,0,0.3);
  animation: highlightPulse 0.5s ease-in-out 3;
}
@keyframes highlightPulse {
  0%, 100% { box-shadow: 0 0 30px rgba(255,107,0,0.3); }
  50% { box-shadow: 0 0 50px rgba(255,107,0,0.5); }
}
.payment-warning {
  font-size: 0.7rem;
  color: #ff6b6b;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(255,107,107,0.1);
  border-radius: 8px;
  border: 1px solid rgba(255,107,107,0.3);
}
.payment-warning i {
  font-size: 0.8rem;
}
.pay-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.7rem;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.pay-logo::before {
  content: 'Klik';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 600;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s;
}
.pay-logo:hover::before {
  opacity: 1;
}
.pay-logo:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
.pay-logo .pay-text {
  white-space: nowrap;
}

/* Payment Logo Colors */
.pay-logo.bri {
  background: linear-gradient(135deg, #003d79 0%, #0066cc 100%);
  color: #fff;
}
.pay-logo.shopeepay {
  background: linear-gradient(135deg, #ee4d2d 0%, #ff6633 100%);
  color: #fff;
}
.pay-logo.bca {
  background: linear-gradient(135deg, #003d79 0%, #005baa 100%);
  color: #fff;
}
.pay-logo.dana {
  background: linear-gradient(135deg, #108ee9 0%, #00b4d8 100%);
  color: #fff;
}
.pay-logo.seabank {
  background: linear-gradient(135deg, #00a19a 0%, #00c9b7 100%);
  color: #fff;
}
.pay-logo.bankjago {
  background: linear-gradient(135deg, #ffcc00 0%, #ffd700 100%);
  color: #1a1a2e;
}
.pay-logo.allobank {
  background: linear-gradient(135deg, #6c3ce0 0%, #9d4edd 100%);
  color: #fff;
}
.pay-logo.qris {
  background: linear-gradient(135deg, #e31937 0%, #1a1a2e 50%, #00529b 100%);
  color: #fff;
}

/* ===== Bank Modal ===== */
.bank-modal {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.bank-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.bank-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(5px);
  cursor: pointer;
}
.bank-modal-box {
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 24px;
  max-width: 420px;
  width: 100%;
  padding: 32px;
  box-shadow: 0 25px 80px rgba(0,0,0,0.5);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
}
.bank-modal.is-open .bank-modal-box {
  transform: scale(1) translateY(0);
}
.bank-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.bank-modal-close:hover {
  background: #ff6b00;
  transform: rotate(90deg);
}
.bank-modal-content {
  text-align: center;
}
.bank-modal-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  position: relative;
}
.bank-modal-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0.3;
  animation: bankIconRing 2s ease-out infinite;
}
@keyframes bankIconRing {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.3); opacity: 0; }
}
.bank-modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 24px 0;
}
.bank-modal-info {
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
}
.bank-info-item {
  margin-bottom: 16px;
}
.bank-info-item:last-child {
  margin-bottom: 0;
}
.bank-info-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.bank-info-value {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}
.bank-number-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.bank-info-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ff6b00;
  letter-spacing: 2px;
  font-family: 'Courier New', monospace;
}
.btn-copy {
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255,107,0,0.2);
  color: #ff6b00;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.2s;
}
.btn-copy:hover {
  background: #ff6b00;
  color: #fff;
  transform: scale(1.1);
}
.btn-copy.copied {
  background: #22c55e;
  color: #fff;
}
.btn-copy.copied i::before {
  content: "\f00c";
}
.bank-modal-warning {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255,107,107,0.1);
  border: 1px solid rgba(255,107,107,0.3);
  border-radius: 12px;
  font-size: 0.8rem;
  color: #ff6b6b;
}
.bank-modal-warning i {
  font-size: 1rem;
}

/* ===== Terms Modal ===== */
.terms-modal {
  position: fixed;
  inset: 0;
  z-index: 1002;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.terms-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.terms-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.terms-modal-box {
  position: relative;
  background: #fff;
  border-radius: 24px;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 25px 100px rgba(0,0,0,0.5);
  transform: scale(0.9) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.terms-modal-box .terms-modal-header {
  flex-shrink: 0;
  border-radius: 24px 24px 0 0;
}
.terms-modal.is-open .terms-modal-box {
  transform: scale(1) translateY(0);
}
.terms-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 12px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s;
}
.terms-modal-close:hover {
  background: #fff;
  color: #ff6b00;
  transform: rotate(90deg);
}

/* Terms Modal Header */
.terms-modal-header {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 32px 32px 28px;
  text-align: center;
  position: relative;
  overflow: visible;
}
.terms-modal-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255,107,0,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.terms-icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, #ff6b00 0%, #f7931e 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 30px rgba(255,107,0,0.4);
}
.terms-modal-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px 0;
  position: relative;
  z-index: 1;
}
.terms-modal-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Terms Modal Content */
.terms-modal-content {
  flex: 1;
  overflow-y: auto;
  padding: 24px 32px;
  background: #f8f9fa;
}
.terms-section {
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: all 0.3s;
  border: 1px solid transparent;
}
.terms-section:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border-color: rgba(255,107,0,0.2);
  transform: translateY(-2px);
}
.terms-section:last-child {
  margin-bottom: 0;
}
.terms-section.highlight-section {
  background: linear-gradient(135deg, #fff8f0 0%, #fff5eb 100%);
  border: 2px solid #ffd4b8;
}
.terms-section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.terms-number {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #ff6b00 0%, #f7931e 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255,107,0,0.3);
}
.terms-section-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
}
.terms-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.terms-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 0.92rem;
  color: #444;
  line-height: 1.7;
  border-bottom: 1px solid #f0f0f0;
}
.terms-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.terms-list li i {
  position: absolute;
  left: 0;
  top: 13px;
  font-size: 0.85rem;
  color: #22c55e;
}
.terms-list li i.warning-icon {
  color: #f59e0b;
}
.terms-list li strong {
  color: #1a1a2e;
  font-weight: 600;
}

/* Guarantee Badge */
.terms-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(34,197,94,0.3);
}
.terms-badge i {
  font-size: 1rem;
}
.guarantee-list li i {
  color: #22c55e;
}

/* Warning & Alert Boxes */
.terms-warning-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff8f0;
  border: 1px solid #ffd4b8;
  border-radius: 12px;
  padding: 16px;
  margin-top: 16px;
}
.terms-warning-box i {
  font-size: 1.2rem;
  color: #ff6b00;
  flex-shrink: 0;
}
.terms-warning-box p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}
.terms-alert-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border: 1px solid #fecaca;
  border-radius: 12px;
  padding: 18px;
}
.terms-alert-box i {
  font-size: 1.5rem;
  color: #ef4444;
  flex-shrink: 0;
}
.terms-alert-box p {
  margin: 0 0 6px 0;
  font-size: 0.95rem;
  color: #991b1b;
  font-weight: 600;
}
.terms-alert-box small {
  font-size: 0.82rem;
  color: #b91c1c;
  opacity: 0.8;
}

/* No Refund Box */
.terms-no-refund {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 16px;
}
.terms-no-refund i {
  font-size: 1.5rem;
  color: #ff6b00;
  flex-shrink: 0;
}
.terms-no-refund span {
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.5;
}
.terms-no-refund strong {
  color: #ff6b00;
}

/* Detail modal thumbnails with arrows */
.detail-modal-gallery {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.detail-modal-thumbs-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  min-width: 0;
}
.detail-modal-thumbs {
  flex: 1;
  min-width: 0;
  display: flex;
  gap: 6px;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 6px 0;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.detail-modal-thumbs::-webkit-scrollbar {
  display: none;
}
.detail-modal-thumbs img {
  flex: 0 0 auto;
  width: 56px;
  height: 44px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  background: #eee;
}
.detail-modal-thumbs img:hover {
  border-color: #ffd4b8;
}
.detail-modal-thumbs img.active {
  border-color: #ff6b00;
  box-shadow: 0 0 0 1px #ff6b00;
}
.thumbs-arrow {
  border: none;
  background: #e5e7eb;
  color: #374151;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  font-size: 0.85rem;
  transition: background 0.2s, color 0.2s, transform 0.2s, opacity 0.2s;
}
.thumbs-arrow:hover:not(:disabled) {
  background: #ff6b00;
  color: #fff;
  transform: scale(1.08);
}
.thumbs-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Note */
.terms-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #666;
  padding: 12px 16px;
  background: #f8f9fa;
  border-radius: 10px;
  margin: 0;
}
.terms-note i {
  color: #f59e0b;
  font-size: 1rem;
}

/* Terms Modal Footer */
.terms-modal-footer {
  padding: 20px 32px 24px;
  background: #fff;
  border-top: 1px solid #eee;
}
.btn-terms-accept {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #ff6b00 0%, #f7931e 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(255,107,0,0.3);
}
.btn-terms-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,107,0,0.4);
}
.btn-terms-accept:active {
  transform: translateY(0);
}
.btn-terms-accept i {
  font-size: 1.1rem;
}

/* ===== Garansi Modal Specific Styles ===== */
.garansi-header {
  background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
}
.garansi-header .terms-icon-wrap {
  background: linear-gradient(135deg, #ffffff 0%, #ecfdf5 100%);
  box-shadow: 0 10px 40px rgba(16,185,129,0.4);
}
.garansi-header .terms-icon-wrap i {
  color: #059669 !important;
}
.terms-number.garansi-num {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  box-shadow: 0 4px 15px rgba(16,185,129,0.3);
}
.btn-garansi-accept {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  box-shadow: 0 4px 20px rgba(16,185,129,0.3);
}
.btn-garansi-accept:hover {
  box-shadow: 0 8px 30px rgba(16,185,129,0.4);
}

/* Garansi Intro */
.garansi-intro {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border: 1px solid #a7f3d0;
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 20px;
}
.garansi-intro p {
  margin: 0;
  font-size: 0.95rem;
  color: #065f46;
  line-height: 1.7;
}
.garansi-intro strong {
  color: #047857;
}

/* Garansi Highlight Box */
.garansi-highlight-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: linear-gradient(135deg, #fff 0%, #ecfdf5 100%);
  border: 2px solid #10b981;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 16px;
}
.garansi-highlight-box > i {
  font-size: 2rem;
  color: #10b981;
  flex-shrink: 0;
}
.garansi-highlight-box p {
  margin: 0 0 6px 0;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}
.garansi-highlight-box p:last-child {
  margin-bottom: 0;
  color: #666;
}

/* Garansi Time Box */
.garansi-time-box {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 2px solid #f59e0b;
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 16px;
}
.time-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.time-icon i {
  font-size: 2rem;
  color: #d97706;
}
.time-icon span {
  font-size: 0.65rem;
  font-weight: 800;
  color: #92400e;
  letter-spacing: 1px;
}
.time-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.time-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #92400e;
}
.time-label {
  font-size: 0.85rem;
  color: #b45309;
}

/* Garansi Hackback Box */
.garansi-hackback-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid #93c5fd;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 16px;
}
.garansi-hackback-box > i {
  font-size: 1.8rem;
  color: #3b82f6;
  flex-shrink: 0;
}
.garansi-hackback-box p {
  margin: 0 0 6px 0;
  font-size: 0.95rem;
  color: #1e40af;
  line-height: 1.6;
}
.garansi-hackback-box small {
  font-size: 0.85rem;
  color: #3b82f6;
}

/* Garansi Step Box */
.garansi-step-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #f8f9fa;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.step-num {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-item span:last-child {
  font-size: 0.8rem;
  color: #555;
  font-weight: 600;
  max-width: 100px;
}
.step-arrow {
  color: #10b981;
  font-size: 1rem;
}

/* Garansi Description */
.garansi-desc {
  font-size: 0.92rem;
  color: #555;
  margin: 0 0 16px 0;
  line-height: 1.6;
}

/* Garansi Checklist */
.garansi-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 14px 16px;
  transition: all 0.3s;
}
.checklist-item:hover {
  background: #ecfdf5;
  transform: translateX(4px);
}
.checklist-item i {
  font-size: 1.1rem;
  color: #10b981;
  flex-shrink: 0;
}
.checklist-item span {
  font-size: 0.85rem;
  color: #333;
  line-height: 1.4;
}

/* Garansi Closing */
.garansi-closing {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  border-radius: 16px;
  padding: 20px 24px;
  margin-top: 20px;
}
.garansi-closing > i {
  font-size: 1.8rem;
  color: #fff;
  flex-shrink: 0;
}
.garansi-closing p {
  margin: 0;
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.7;
}
.garansi-closing strong {
  color: #d1fae5;
}

/* Garansi Responsive */
@media (max-width: 640px) {
  .garansi-time-box {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .garansi-step-box {
    flex-direction: column;
    gap: 16px;
  }
  .step-arrow {
    transform: rotate(90deg);
  }
  .garansi-checklist {
    grid-template-columns: 1fr;
  }
  .garansi-highlight-box,
  .garansi-hackback-box {
    flex-direction: column;
    text-align: center;
  }
  .garansi-closing {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== Privacy Modal Specific Styles ===== */
.privacy-header {
  background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 50%, #a78bfa 100%);
}
.privacy-icon {
  background: linear-gradient(135deg, #fff 0%, #f5f3ff 100%) !important;
  box-shadow: 0 10px 40px rgba(124,58,237,0.4) !important;
}
.privacy-icon i {
  color: #7c3aed !important;
}
.terms-number.privacy-num {
  background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
  box-shadow: 0 4px 15px rgba(124,58,237,0.3);
}
.btn-privacy-accept {
  background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
  box-shadow: 0 4px 20px rgba(124,58,237,0.3);
}
.btn-privacy-accept:hover {
  box-shadow: 0 8px 30px rgba(124,58,237,0.4);
}
.terms-section.privacy-highlight {
  background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
  border: 2px solid #c4b5fd;
}

/* Privacy Intro */
.privacy-intro {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
  border: 1px solid #c4b5fd;
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 20px;
}
.privacy-intro > i {
  font-size: 2rem;
  color: #7c3aed;
  flex-shrink: 0;
}
.privacy-intro p {
  margin: 0;
  font-size: 0.95rem;
  color: #4c1d95;
  line-height: 1.7;
}
.privacy-intro strong {
  color: #6d28d9;
}

/* Privacy Description */
.privacy-desc {
  font-size: 0.92rem;
  color: #555;
  margin: 0 0 16px 0;
  line-height: 1.6;
}

/* Privacy Data Grid */
.privacy-data-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.privacy-data-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 16px;
  transition: all 0.3s;
}
.privacy-data-item:hover {
  background: #f5f3ff;
  transform: translateX(4px);
}
.data-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.data-icon i {
  font-size: 1.1rem;
  color: #fff;
}
.data-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.data-content strong {
  font-size: 0.9rem;
  color: #333;
}
.data-content span {
  font-size: 0.82rem;
  color: #666;
}

/* Privacy Notice */
.privacy-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 16px;
}
.privacy-notice > i {
  font-size: 1.3rem;
  color: #a78bfa;
  flex-shrink: 0;
}
.privacy-notice span {
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.5;
}
.privacy-notice strong {
  color: #a78bfa;
}

/* Privacy Security Badge */
.privacy-security-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(124,58,237,0.3);
}
.privacy-security-badge i {
  font-size: 1.1rem;
}

/* Privacy No Share */
.privacy-no-share {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border: 1px solid #fecaca;
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 16px;
}
.privacy-no-share > i {
  font-size: 1.5rem;
  color: #ef4444;
  flex-shrink: 0;
}
.privacy-no-share p {
  margin: 0;
  font-size: 0.95rem;
  color: #991b1b;
  line-height: 1.5;
}

/* Privacy Rights Grid */
.privacy-rights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.rights-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  background: #f8f9fa;
  border-radius: 14px;
  padding: 20px 16px;
  transition: all 0.3s;
}
.rights-item:hover {
  background: #f5f3ff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(124,58,237,0.1);
}
.rights-item > i {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
}
.rights-item span {
  font-size: 0.85rem;
  color: #444;
  line-height: 1.5;
}
.rights-item strong {
  color: #7c3aed;
}

/* Privacy Cookies Box */
.privacy-cookies-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 1px solid #fbbf24;
  border-radius: 14px;
  padding: 20px;
}
.privacy-cookies-box > i {
  font-size: 2rem;
  color: #d97706;
  flex-shrink: 0;
}
.privacy-cookies-box p {
  margin: 0 0 6px 0;
  font-size: 0.95rem;
  color: #92400e;
  line-height: 1.6;
}
.privacy-cookies-box small {
  font-size: 0.85rem;
  color: #b45309;
}

/* Privacy Contact Grid */
.privacy-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s;
}
.contact-item > i {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.contact-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-item strong {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-item span {
  font-size: 0.9rem;
  font-weight: 600;
}
.contact-item.email {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid #93c5fd;
}
.contact-item.email i {
  color: #3b82f6;
}
.contact-item.email strong {
  color: #1d4ed8;
}
.contact-item.email span {
  color: #1e40af;
}
.contact-item.email:hover {
  background: #3b82f6;
  border-color: #3b82f6;
}
.contact-item.email:hover i,
.contact-item.email:hover strong,
.contact-item.email:hover span {
  color: #fff;
}
.contact-item.whatsapp {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border: 1px solid #6ee7b7;
}
.contact-item.whatsapp i {
  color: #22c55e;
}
.contact-item.whatsapp strong {
  color: #15803d;
}
.contact-item.whatsapp span {
  color: #166534;
}
.contact-item.whatsapp:hover {
  background: #22c55e;
  border-color: #22c55e;
}
.contact-item.whatsapp:hover i,
.contact-item.whatsapp:hover strong,
.contact-item.whatsapp:hover span {
  color: #fff;
}

/* Privacy Responsive */
@media (max-width: 640px) {
  .privacy-intro {
    flex-direction: column;
    text-align: center;
  }
  .privacy-rights-grid {
    grid-template-columns: 1fr;
  }
  .privacy-contact-grid {
    grid-template-columns: 1fr;
  }
  .privacy-data-item {
    flex-direction: column;
    text-align: center;
  }
  .privacy-no-share {
    flex-direction: column;
    text-align: center;
  }
  .privacy-cookies-box {
    flex-direction: column;
    text-align: center;
  }
}

/* Terms Modal Responsive */
@media (max-width: 640px) {
  .terms-modal {
    padding: 12px;
  }
  .terms-modal-box {
    border-radius: 20px;
  }
  .terms-modal-header {
    padding: 32px 20px 24px;
  }
  .terms-icon-wrap {
    width: 64px;
    height: 64px;
    font-size: 1.6rem;
    border-radius: 18px;
  }
  .terms-modal-title {
    font-size: 1.4rem;
  }
  .terms-modal-subtitle {
    font-size: 0.9rem;
  }
  .terms-modal-content {
    padding: 16px;
  }
  .terms-section {
    padding: 16px 18px;
    border-radius: 14px;
  }
  .terms-section-header h3 {
    font-size: 0.95rem;
  }
  .terms-number {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  .terms-list li {
    font-size: 0.85rem;
    padding: 8px 0 8px 24px;
  }
  .terms-list li i {
    top: 11px;
  }
  .terms-badge {
    font-size: 0.75rem;
    padding: 8px 14px;
  }
  .terms-modal-footer {
    padding: 16px 20px 20px;
  }
  .btn-terms-accept {
    padding: 14px 20px;
    font-size: 0.95rem;
    border-radius: 12px;
  }
}

/* Footer Social */
.footer-social-wrap {
  display: flex;
  flex-direction: column;
}
.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s;
}
.footer-social a:hover {
  transform: translateY(-3px);
}
.footer-social a[aria-label="Facebook"]:hover {
  background: #1877f2;
}
.footer-social a[aria-label="YouTube"]:hover {
  background: #ff0000;
}
.footer-social a[aria-label="Instagram"]:hover {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}
.footer-social a[aria-label="TikTok"]:hover {
  background: #000;
  box-shadow: 0 0 10px #00f2ea, 0 0 10px #ff0050;
}
.footer-social a[aria-label="Twitter"]:hover {
  background: #000;
}

/* Footer Bottom */
.footer-bottom {
  max-width: 1280px;
  margin: 40px auto 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.8rem;
  color: #6a6a7a;
}

/* ===== Testimonial Section ===== */
.testimonial-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}
.testimonial-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,107,0,0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(124,58,237,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.testimonial-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.testimonial-header {
  text-align: center;
  margin-bottom: 40px;
}
.testimonial-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff6b00 0%, #f7931e 100%);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.testimonial-badge i {
  font-size: 0.9rem;
}
.testimonial-title {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px 0;
}
.testimonial-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 24px;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  border-color: rgba(255,107,0,0.3);
}
.testimonial-images {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  background: rgba(255,255,255,0.05);
}
.testimonial-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.testimonial-card:hover .testimonial-images img {
  transform: scale(1.05);
}
.testi-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(255,107,0,0.1) 0%, rgba(124,58,237,0.1) 100%);
  color: rgba(255,255,255,0.4);
}
.testi-img-placeholder i {
  font-size: 2rem;
}
.testi-img-placeholder span {
  font-size: 0.8rem;
  font-weight: 600;
}
.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.testimonial-rating i {
  color: #fbbf24;
  font-size: 1rem;
}
.testimonial-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin: 0 0 20px 0;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ff6b00 0%, #f7931e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}
.author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.author-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.author-product {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 6px;
}
.author-product i {
  font-size: 0.9rem;
}
.testimonial-verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #22c55e;
  background: rgba(34,197,94,0.1);
  padding: 6px 12px;
  border-radius: 20px;
}
.testimonial-verified i {
  font-size: 0.8rem;
}

.testimonial-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
}
.stat-box {
  text-align: center;
}
.stat-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #ff6b00;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.testimonial-more {
  text-align: center;
  margin-top: 32px;
}
.btn-show-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #ff6b00 0%, #f7931e 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(255,107,0,0.4);
}
.btn-show-more:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255,107,0,0.5);
}
.btn-show-more:active {
  transform: translateY(0);
}
.btn-show-more i {
  font-size: 0.9rem;
  transition: transform 0.3s;
}
.btn-show-more:hover i {
  transform: translateX(4px);
}

/* Testimonial Responsive */
@media (max-width: 1024px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .testimonial-section {
    padding: 40px 16px;
  }
  .testimonial-title {
    font-size: 1.5rem;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .testimonial-stats {
    flex-wrap: wrap;
    gap: 30px;
  }
  .stat-num {
    font-size: 2rem;
  }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .banners-row { 
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .banner-garansi {
    grid-column: span 2;
  }
  .banner {
    min-height: 100px;
    padding: 20px;
  }
}
@media (max-width: 640px) {
  .banners-row {
    grid-template-columns: 1fr;
  }
  .banner-garansi {
    grid-column: span 1;
  }
  .banner-flash .banner-highlight {
    font-size: 1.2rem;
  }
  .banner-garansi .banner-shield {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }
  .banner-garansi .banner-features {
    display: none;
  }
}
@media (max-width: 1024px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 20px;
  }
  .header-stats {
    display: none;
  }
  .header-center {
    flex: 1 1 100%;
    order: 3;
  }
}
@media (max-width: 768px) {
  .header-top {
    padding: 16px 0;
  }
  .header-inner { 
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }
  .logo {
    order: 1;
  }
  .header-center {
    order: 2;
    flex: 1 1 100%;
  }
  .header-tagline-wrap {
    display: none;
  }
  .search-wrap {
    width: 100%;
  }
  .search-btn span {
    display: none;
  }
  .search-btn {
    padding: 12px 16px;
  }
  .platform-tabs { 
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 10px 16px;
    gap: 8px;
    justify-content: flex-start;
    scrollbar-width: none;
  }
  .platform-tabs::-webkit-scrollbar {
    display: none;
  }
  .tab-btn {
    flex-shrink: 0;
    padding: 8px 14px;
    font-size: 0.8rem;
  }
  .tab-btn i {
    font-size: 1rem;
  }
  .main-layout { 
    flex-direction: column; 
    padding: 12px 16px;
  }
  .content {
    padding: 0;
    min-width: 0;
  }
  .sidebar {
    width: 100%;
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    padding: 16px;
  }
  /* Categories: satu baris [ Semua v ] — klik buka daftar, bisa di-scroll */
  .sidebar .filter-block--collapsible {
    grid-column: 1 / -1;
    margin-bottom: 12px;
    padding-bottom: 0;
    border-bottom: 1px solid #eee;
  }
  .sidebar .filter-block--collapsible .filter-title {
    margin: 0 0 8px 0;
  }
  .sidebar .filter-block--collapsible .filter-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: border-color 0.2s ease, background 0.2s ease;
  }
  .sidebar .filter-block--collapsible .filter-toggle-row:hover {
    border-color: #ff6b00;
    background: #fffaf5;
  }
  .sidebar .filter-block--collapsible .filter-toggle-label {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
  }
  .sidebar .filter-block--collapsible .filter-toggle-arrow {
    font-size: 0.85rem;
    color: #666;
    transition: transform 0.25s ease;
  }
  .sidebar .filter-block--collapsible.is-open .filter-toggle-arrow {
    transform: rotate(180deg);
  }
  .sidebar .filter-block--collapsible .filter-category-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .sidebar .filter-block--collapsible.is-open .filter-category-list {
    max-height: 220px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-top: 8px;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
  }
  .sidebar .filter-block--collapsible .filter-category-list .filter-radio {
    margin-bottom: 8px;
  }
  .sidebar .filter-block--collapsible .filter-category-list .filter-radio:last-child {
    margin-bottom: 0;
  }
  .sidebar .filter-block--collapsible .filter-toggle-row {
    display: flex;
  }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card {
    padding: 14px;
    min-width: 0;
  }
  .card-handle {
    font-size: 0.9rem;
    word-break: break-word;
  }
  .card-price {
    font-size: 1rem;
  }
  .btn-detail {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
  .sold-section {
    padding: 24px 16px 20px;
  }
  .sold-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
  .sold-section .sold-grid .product-card:nth-child(n+7) {
    display: none;
  }
  .sold-card {
    padding: 10px;
    min-width: 0;
  }
  .sold-card .card-handle {
    font-size: 0.75rem;
    line-height: 1.25;
  }
  .detail-modal-box {
    max-width: calc(100vw - 24px);
    margin: 12px;
    max-height: 85vh;
  }
  .detail-modal-inner {
    grid-template-columns: 1fr;
    padding: 12px;
  }
  .detail-modal-gallery { order: 1; }
  .detail-modal-info { order: 2; }
  .detail-modal-title {
    font-size: 1rem;
  }
  .detail-modal-specs {
    gap: 6px;
  }
  .detail-modal-specs .spec-item {
    font-size: 0.7rem;
    padding: 4px 8px;
  }
  .detail-download-btns {
    gap: 6px;
  }
  .detail-download-btns a {
    font-size: 0.7rem;
    padding: 5px 8px;
  }
  .footer-inner { 
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .payment-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 576px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .footer-brand {
    align-items: center;
  }
  .footer-desc {
    max-width: 100%;
  }
  .footer-links a {
    justify-content: center;
  }
  .payment-warning {
    justify-content: center;
    font-size: 0.65rem;
  }
  .payment-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  .pay-logo {
    padding: 10px 6px;
    font-size: 0.55rem;
  }
  .pay-logo::before {
    font-size: 0.5rem;
  }
  .footer-social {
    justify-content: center;
  }
  /* Bank Modal Mobile */
  .bank-modal-box {
    padding: 24px 20px;
    margin: 16px;
    border-radius: 20px;
  }
  .bank-modal-icon {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
  }
  .bank-modal-title {
    font-size: 1.1rem;
  }
  .bank-info-number {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }
  .btn-copy {
    width: 36px;
    height: 36px;
  }
}
@media (max-width: 640px) {
  .main-layout {
    padding: 10px 12px;
  }
  .banners-row {
    gap: 12px;
    margin-bottom: 20px;
  }
  .section-heading {
    font-size: 1.1rem;
    margin-bottom: 14px;
  }
  .sold-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .sold-card .card-handle {
    font-size: 0.7rem;
  }
  .sold-badge {
    font-size: 0.6rem;
    padding: 2px 6px;
  }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; gap: 16px; }
  .logo-text { font-size: 0.9rem; }
  .product-card {
    padding: 16px;
  }
  .detail-modal-box {
    max-width: calc(100vw - 16px);
    margin: 8px;
    border-radius: 12px;
  }
  .detail-modal-inner {
    padding: 10px;
  }
  .floating-buttons {
    bottom: 20px;
    right: 12px;
    gap: 10px;
  }
  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
}

/* ===== Floating Buttons ===== */
.floating-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.float-item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.float-tooltip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  animation: tooltipBounce 2s ease-in-out infinite;
  transform-origin: right center;
}
@keyframes tooltipBounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-5px); }
}
.float-tooltip span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
}
.float-tooltip-close {
  background: none;
  border: none;
  font-size: 1.1rem;
  color: #999;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s;
}
.float-tooltip-close:hover {
  color: #333;
}
.float-tooltip.hidden {
  display: none;
}

.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  border: none;
  cursor: pointer;
}
.float-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.3;
  animation: floatPulse 2s ease-out infinite;
}
@keyframes floatPulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.5); opacity: 0; }
}
.float-btn:hover {
  transform: scale(1.1);
}
.float-btn:active {
  transform: scale(0.95);
}

/* Payment Button */
.payment-btn {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  box-shadow: 0 4px 20px rgba(124,58,237,0.4);
}
.payment-btn::before {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
}
.payment-btn:hover {
  box-shadow: 0 6px 30px rgba(124,58,237,0.5);
  transform: scale(1.1) rotate(10deg);
}

/* WhatsApp Button */
.wa-btn {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  font-size: 1.8rem;
}
.wa-btn::before {
  background: linear-gradient(135deg, #25d366, #128c7e);
}
.wa-btn:hover {
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
  transform: scale(1.1) rotate(-10deg);
}

@media (max-width: 480px) {
  .floating-buttons {
    bottom: 16px;
    right: 16px;
    gap: 12px;
  }
  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  .wa-btn {
    font-size: 1.5rem;
  }
  .float-tooltip {
    padding: 8px 12px;
  }
  .float-tooltip span {
    font-size: 0.75rem;
  }
}
