/* ====== RESET & BASE ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #ffffff;
  color: #333333;
  min-height: 100vh;
}

/* ====== BUY MONEY SECTION ====== */
.buy-money-container {
  max-width: 600px;
  margin: 40px auto;
  padding: 0 20px;
}

.buy-money-card {
  background: linear-gradient(135deg, #FF69B4 0%, #FF1493 50%, #FF69B4 100%);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(255, 105, 180, 0.3);
  color: white;
}

.buy-money-card h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.buy-money-card h2 i {
  font-size: 2.2rem;
  color: #fff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.money-info {
  text-align: center;
  margin-bottom: 30px;
  opacity: 0.95;
  font-size: 1.1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.money-calculator {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 16px;
  padding: 30px;
  color: #333;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.calculator-header {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #FF69B4;
  display: flex;
  align-items: center;
  gap: 10px;
}

.input-group {
  margin-bottom: 25px;
}

.input-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: #444;
  font-size: 1rem;
}

.money-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.money-input-wrapper input {
  width: 100%;
  padding: 16px 50px 16px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  font-weight: 600;
}

.money-input-wrapper input:focus {
  outline: none;
  border-color: #FF69B4;
  box-shadow: 0 0 0 4px rgba(255, 105, 180, 0.15);
}

.clear-btn {
  position: absolute;
  right: 12px;
  background: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
  color: white;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 105, 180, 0.3);
}

.clear-btn:hover {
  background: linear-gradient(135deg, #FF1493 0%, #FF69B4 100%);
  transform: rotate(90deg);
  box-shadow: 0 4px 12px rgba(255, 105, 180, 0.4);
}

.input-hint {
  display: block;
  margin-top: 8px;
  color: #666;
  font-size: 0.85rem;
  font-style: italic;
}

.price-display {
  background: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  margin: 25px 0;
  box-shadow: 0 8px 24px rgba(255, 105, 180, 0.3);
}

.price-label {
  color: white;
  font-size: 1rem;
  margin-bottom: 8px;
  opacity: 0.95;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.price-value {
  color: white;
  font-size: 2.5rem;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.price-info {
  text-align: center;
  padding: 12px;
  background: linear-gradient(135deg, #FCE4EC 0%, #F8BBD0 100%);
  border-radius: 8px;
  color: #FF69B4;
  margin-bottom: 20px;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 105, 180, 0.2);
}

.price-info i {
  margin-right: 6px;
}

.order-btn-money {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(255, 105, 180, 0.4);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.order-btn-money:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 105, 180, 0.5);
  background: linear-gradient(135deg, #FF1493 0%, #FF69B4 100%);
}

.order-btn-money:active:not(:disabled) {
  transform: translateY(0);
}

.money-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.feature-item {
  background: rgba(255, 255, 255, 0.25);
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.feature-item i {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 8px;
  color: #fff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.feature-item span {
  font-weight: 600;
  font-size: 0.95rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.order-summary {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 12px;
  margin: 20px 0;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-item span {
  font-size: 1rem;
}

.summary-item strong {
  font-size: 1.3rem;
}

.wa-btn {
  background: #25D366;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.wa-btn:hover {
  background: #128C7E;
  transform: translateY(-2px);
}

.copy-wa-btn {
  background: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 105, 180, 0.3);
}

.copy-wa-btn:hover {
  background: linear-gradient(135deg, #FF1493 0%, #FF69B4 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 105, 180, 0.4);
}

@media (max-width: 600px) {
  .buy-money-card {
    padding: 25px;
  }
  
  .money-calculator {
    padding: 20px;
  }
  
  .price-value {
    font-size: 2rem;
  }
  
  .money-features {
    grid-template-columns: 1fr;
  }
}

/* ====== JOKI LEVEL SECTION ====== */
.joki-level-container {
  max-width: 600px;
  margin: 40px auto;
  padding: 0 20px;
}

.joki-level-card {
  background: linear-gradient(135deg, #FF69B4 0%, #FF1493 50%, #FF69B4 100%);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(255, 105, 180, 0.3);
  color: white;
}

.joki-level-card h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.joki-level-card h2 i {
  font-size: 2.2rem;
  color: #fff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.level-info {
  text-align: center;
  margin-bottom: 30px;
  opacity: 0.95;
  font-size: 1.1rem;
}

.level-calculator {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.calculator-header {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.calculator-header i {
  font-size: 1.6rem;
}

.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.input-group input[type="number"] {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  transition: all 0.3s ease;
  font-weight: 600;
}

.input-group input[type="number"]:focus {
  outline: none;
  border-color: #FF69B4;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 105, 180, 0.2);
}

.input-hint {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  opacity: 0.85;
}

.level-display {
  background: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  margin: 20px 0;
  box-shadow: 0 8px 24px rgba(255, 105, 180, 0.3);
}

.level-label {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 8px;
  font-weight: 600;
}

.level-value {
  font-size: 1.8rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.price-display {
  background: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  margin: 25px 0;
  box-shadow: 0 8px 24px rgba(255, 105, 180, 0.3);
}

.price-label {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 8px;
  font-weight: 600;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.price-info {
  text-align: center;
  margin: 20px 0;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 0.95rem;
  opacity: 0.95;
}

.clear-btn-level {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 15px;
}

.clear-btn-level:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.order-btn-level {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(255, 105, 180, 0.4);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.order-btn-level:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 105, 180, 0.5);
  background: linear-gradient(135deg, #FF1493 0%, #FF69B4 100%);
}

.order-btn-level:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.level-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 25px;
}

.level-features .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.level-features .feature-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.level-features .feature-item i {
  font-size: 1.2rem;
  color: #fff;
}

@media (max-width: 600px) {
  .joki-level-card {
    padding: 25px;
  }
  
  .level-calculator {
    padding: 20px;
  }
  
  .price-value {
    font-size: 2rem;
  }
  
  .level-features {
    grid-template-columns: 1fr;
  }
}

/* ====== HEADER & BANNER ====== */
.header {
  background: linear-gradient(135deg, #FF69B4 0%, #FF1493 50%, #FF69B4 100%);
  padding: 16px 0 8px 0;
  box-shadow: 0 4px 24px 0 rgba(255, 105, 180, 0.3);
  position: relative;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 32px;
}
.logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: transparent;
  border: none;
}
.store-title h1 {
  color: #fff;
  font-size: 2.2rem;
  letter-spacing: 2px;
  font-weight: 800;
  margin-bottom: 2px;
}
.official {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 10px;
  border-radius: 6px;
  margin-left: 4px;
  backdrop-filter: blur(10px);
}
.banner {
  margin: 18px auto 0 auto;
  background: linear-gradient(135deg, #FF69B4 0%, #FF1493 50%, #FF69B4 100%);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  border-radius: 16px;
  padding: 18px 0;
  max-width: 900px;
  box-shadow: 0 2px 12px 0 rgba(255, 105, 180, 0.3);
}
.banner-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.banner-desc {
  font-size: 1.1rem;
  color: #f3eaff;
  margin-bottom: 8px;
}
.banner-promo {
  font-size: 1rem;
  color: #ffe9a7;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 0;
  border-radius: 8px;
  margin-top: 4px;
  backdrop-filter: blur(10px);
}

/* ====== TESTIMONIAL SECTION ====== */
.testimonial-section {
  position: absolute;
  top: 20px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 100;
}
.testimonial-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.testimonial-hint i {
  color: #ffd700;
  font-size: 1rem;
  animation: arrow-bounce 2s infinite;
}
@keyframes arrow-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(4px);
  }
  60% {
    transform: translateX(2px);
  }
}
.testimonial-btn {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #333;
  border: none;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px 0 rgba(255, 215, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
}
.testimonial-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px 0 rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
}
.testimonial-btn i {
  color: #ff6b35;
  font-size: 1rem;
}

/* ====== STATS SECTION ====== */
.stats-section {
  background: #ffffff;
  padding: 24px 0;
  margin: 0;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
}
.stats-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f5f5f5;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid #e0e0e0;
}
.stat-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.15);
  background: #f0f0f0;
}
.stat-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #666666 0%, #333333 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.2);
}
.stat-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #333333;
  line-height: 1;
}
.stat-label {
  font-size: 0.9rem;
  color: #666666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stat-timestamp {
  font-size: 0.7rem;
  color: #888;
  font-style: italic;
  margin-top: 2px;
}

/* ====== KATEGORI NAV ====== */
.category-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 32px auto 12px auto;
  max-width: 1400px;
  padding: 0 20px;
}
.category-btn {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  flex: 0 0 auto;
  min-width: fit-content;
}
.category-btn.active, .category-btn:hover {
  background: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px 0 rgba(255, 105, 180, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}
.category-btn:active {
  transform: translateY(0);
}

/* ====== SEARCH BAR ====== */
.search-bar {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}
#searchInput {
  width: 320px;
  padding: 12px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  background: #ffffff;
  color: #333333;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
}
#searchInput:focus {
  border: 2px solid #666666;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.15);
  background: #ffffff;
  transform: translateY(-1px);
}
#searchInput::placeholder {
  color: #999999;
  font-style: italic;
}

/* ====== PRODUK AREA ====== */
#product-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  padding: 0 24px 48px 24px;
  min-height: 300px;
  background: #ffffff;
}

/* ====== CARD PRODUK ====== */
.product-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  padding: 22px 20px 18px 20px;
  width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.15s, box-shadow 0.15s, background 0.3s ease;
  position: relative;
  border: 1px solid #e0e0e0;
}
.product-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 6px 24px 0 rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #ffffff 0%, #f1f3f5 100%);
}
.product-img {
  width: 80px;
  height: 80px;
  object-fit: fill;
  border-radius: 12px;
  margin-bottom: 12px;
  background: #FF69B4;
  transition: transform 0.3s ease;
}
.product-card:hover .product-img {
  transform: scale(1.05);
}
.product-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 8px;
  text-align: center;
  transition: color 0.3s ease;
}
.product-card:hover .product-title {
  color: #000000;
}
.product-desc {
  font-size: 1rem;
  color: #666666;
  margin-bottom: 10px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.product-spec {
  font-size: 0.98rem;
  color: #666666;
  margin-bottom: 8px;
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.product-price {
  font-size: 1.1rem;
  color: #333333;
  font-weight: 700;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
.product-card:hover .product-price {
  color: #000000;
}
.order-btn {
  background: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
  color: #fff;
  border: none;
  padding: 10px 28px;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px 0 rgba(255, 105, 180, 0.4);
  position: relative;
  overflow: hidden;
}
.order-btn:hover {
  background: linear-gradient(135deg, #FF1493 0%, #FF69B4 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px 0 rgba(255, 105, 180, 0.5);
}
.order-btn:active {
  transform: translateY(0);
}

/* ====== JOKI LEVEL KALKULATOR ====== */
.joki-calc {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(255, 20, 147, 0.2);
  padding: 28px 24px 18px 24px;
  width: 350px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  border: 1px solid rgba(248, 165, 194, 0.3);
}
.joki-calc label {
  font-weight: 600;
  color: #FF69B4;
  margin-bottom: 4px;
  text-align: center;
  width: 100%;
}
.joki-calc input {
  width: 120px;
  padding: 8px 10px;
  border: 2px solid rgba(248, 165, 194, 0.5);
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  margin-right: 8px;
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
  background: rgba(42, 42, 42, 0.9);
  color: #ffffff;
  pointer-events: auto;
  -webkit-user-select: auto;
  user-select: auto;
  -webkit-touch-callout: auto;
  -webkit-appearance: none;
  appearance: none;
}
.joki-calc input:focus {
  border: 2px solid #FF69B4;
}
.joki-calc .max-btn {
  background: rgba(248, 165, 194, 0.2);
  color: #FF69B4;
  border: none;
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  margin-left: 4px;
  transition: background 0.2s, color 0.2s;
}
.joki-calc .max-btn:hover {
  background: #FF69B4;
  color: #fff;
}
.joki-calc .total-harga {
  font-size: 1.1rem;
  color: #FF69B4;
  font-weight: 700;
  margin-top: 8px;
}

/* ====== POPUP ORDER ====== */
.order-popup {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: opacity 0.2s;
}
.order-popup.hidden {
  display: none;
}
.order-popup-content {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(248, 165, 194, 0.3);
  padding: 32px 28px 22px 28px;
  min-width: 320px;
  max-width: 95vw;
  text-align: center;
  position: relative;
  border: 1px solid rgba(248, 165, 194, 0.3);
  color: #ffffff;
}
.close-popup {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #FF69B4;
  cursor: pointer;
}
.wa-contact {
  margin: 18px 0 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.wa-contact span i {
  margin-right: 6px;
  color: #FF69B4;
}
.wa-contact button {
  background: #FF69B4;
  color: #fff;
  border: none;
  padding: 6px 18px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.wa-contact button:hover {
  background: #FF1493;
}

/* ====== EXECUTOR POPUP STYLES ====== */
.executor-info {
  margin-top: 20px;
}

.executor-step {
  background: rgba(255, 105, 180, 0.1);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 4px solid #FF69B4;
}

.executor-step h3 {
  color: #FF69B4;
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.executor-step p {
  color: #cccccc;
  margin-bottom: 15px;
  line-height: 1.5;
}

.payment-info {
  background: rgba(42, 42, 42, 0.8);
  border-radius: 8px;
  padding: 15px;
  border: 1px solid rgba(248, 165, 194, 0.3);
}

.payment-method {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.payment-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.payment-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  color: white;
}

.checkout-btn {
  background: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
  box-shadow: 0 2px 8px rgba(255, 105, 180, 0.3);
}

.checkout-btn:hover {
  box-shadow: 0 4px 12px rgba(255, 105, 180, 0.4);
  color: white;
}

.executor-note {
  text-align: center;
  margin-top: 20px;
  padding: 15px;
  background: rgba(255, 105, 180, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(248, 165, 194, 0.3);
}

.executor-note small {
  color: #FF69B4;
  font-weight: 500;
}

.executor-note i {
  color: #FF69B4;
  margin-right: 5px;
}

/* ====== POPUP DESKRIPSI ====== */
.desc-popup {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1100;
  transition: opacity 0.2s;
}
.desc-popup.hidden {
  display: none;
}
.desc-popup-content {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 16px;
  padding: 28px 32px 22px 32px;
  min-width: 420px;
  max-width: 98vw;
  box-shadow: 0 2px 16px 0 rgba(248, 165, 194, 0.3);
  position: relative;
  text-align: left;
  border: 1px solid rgba(248, 165, 194, 0.3);
  color: #ffffff;
}
#desc-popup-text {
  font-size: 1.05rem;
  color: #FF69B4;
  line-height: 1.7;
  white-space: pre-line;
  margin-top: 12px;
  background: rgba(255, 105, 180, 0.1);
  border-radius: 8px;
  padding: 14px 16px;
  word-break: break-word;
}
.close-desc-popup {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #FF69B4;
  cursor: pointer;
}
.desc-btn {
  background: rgba(248, 165, 194, 0.2);
  color: #FF69B4;
  border: none;
  padding: 8px 22px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 10px;
  margin-top: 6px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.1s;
  display: inline-block;
  box-shadow: 0 2px 8px 0 rgba(248, 165, 194, 0.2);
  position: relative;
  outline: 2px solid #FF69B4;
  outline-offset: 2px;
}
.desc-btn::after {
  content: 'Klik untuk baca';
  color: #FF69B4;
  font-size: 0.92em;
  font-weight: 700;
  margin-left: 8px;
  letter-spacing: 0.5px;
  vertical-align: middle;
}
.desc-btn:hover, .desc-btn:focus {
  background: #FF69B4;
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(255, 105, 180, 0.3);
  transform: scale(1.04);
  outline: 2.5px solid #FF69B4;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 700px) {
  .header { padding: 14px 0 10px 0; }
  .logo-area { margin-left: 6vw; gap: 10px; }
  .logo { width: 48px; height: 48px; }
  .store-title h1 { font-size: 1.5rem; }
  .official { font-size: 0.95rem; padding: 2px 8px; }
  .banner { font-size: 1rem; padding: 10px 0; }
  .testimonial-section {
    top: 8px;
    right: 8px;
    gap: 8px;
  }
  .testimonial-hint {
    font-size: 0.8rem;
    gap: 6px;
  }
  .testimonial-hint i {
    font-size: 0.9rem;
  }
  .testimonial-btn {
    padding: 6px 10px;
    font-size: 0.7rem;
    min-width: 36px;
    height: 36px;
  }
  .testimonial-popup-content {
    padding: 20px;
    max-width: 95%;
  }
  .testimonial-popup-content h2 {
    font-size: 1.2rem;
  }
  .review-form {
    padding: 16px;
  }
  .review-form h3 {
    font-size: 1rem;
  }
  .form-group input,
  .form-group textarea {
    font-size: 0.9rem;
  }
  .star-input i {
    font-size: 1.1rem;
  }
  .submit-review-btn {
    font-size: 0.95rem;
    padding: 10px 20px;
  }
  .stats-container { 
    gap: 12px; 
    padding: 0 16px;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .stat-item { 
    padding: 10px 12px;
    min-width: 120px;
    flex: 1;
  }
  .stat-icon { 
    width: 36px; 
    height: 36px; 
    font-size: 1.1rem; 
  }
  .stat-number { font-size: 1.2rem; }
  .stat-label { font-size: 0.75rem; }
  .stat-timestamp { font-size: 0.65rem; }
  .category-nav { 
    gap: 8px; 
    margin: 18px 0 8px 0; 
    padding: 0 10px;
    max-width: 100%;
  }
  .category-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  #searchInput { width: 90vw; }
  #product-area { gap: 16px; padding: 0 4vw 32px 4vw; }
  .product-card, .joki-calc { width: 98vw; max-width: 350px; }
  .order-popup-content { min-width: 90vw; padding: 18px 6vw 18px 6vw; }
  .banner-title { font-size: 1.15rem; }
  .banner-desc { font-size: 0.98rem; }
  .banner-promo { font-size: 0.93rem; }
  .product-title { font-size: 1.05rem; }
  .product-spec, .product-desc, .product-price { font-size: 0.95rem; }
  .order-btn, .desc-btn { font-size: 0.98rem; padding: 8px 10px; }
}

@media (max-width: 500px) {
  .header { padding: 10px 0 8px 0; }
  .logo-area { margin-left: 2vw; gap: 8px; }
  .logo { width: 38px; height: 38px; }
  .store-title h1 { font-size: 1.15rem; }
  .official { font-size: 0.88rem; padding: 2px 6px; }
  .banner { padding: 6px 0; border-radius: 10px; }
  .testimonial-section {
    top: 6px;
    right: 6px;
    gap: 6px;
  }
  .testimonial-hint {
    font-size: 0.7rem;
    gap: 4px;
  }
  .testimonial-hint i {
    font-size: 0.8rem;
  }
  .testimonial-btn {
    padding: 4px 8px;
    font-size: 0.6rem;
    min-width: 32px;
    height: 32px;
  }
  .testimonial-popup-content {
    padding: 16px;
    max-width: 98%;
  }
  .testimonial-popup-content h2 {
    font-size: 1.1rem;
  }
  .review-form {
    padding: 12px;
  }
  .review-form h3 {
    font-size: 0.95rem;
  }
  .form-group input,
  .form-group textarea {
    font-size: 0.85rem;
  }
  .star-input i {
    font-size: 1rem;
  }
  .submit-review-btn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
  .testimonial-item {
    padding: 12px;
  }
  .testimonial-name {
    font-size: 1rem;
  }
  .testimonial-text {
    font-size: 0.9rem;
  }
  .stats-section { padding: 12px 0; }
  .stats-container { 
    gap: 8px; 
    padding: 0 12px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .stat-item { 
    flex: 1;
    min-width: 100px;
    padding: 8px 10px;
  }
  .stat-icon { 
    width: 32px; 
    height: 32px; 
    font-size: 1rem; 
  }
  .stat-number { font-size: 1.1rem; }
  .stat-label { font-size: 0.7rem; }
  .stat-timestamp { font-size: 0.6rem; }
  .banner-title { font-size: 0.98rem; }
  .banner-desc { font-size: 0.88rem; }
  .banner-promo { font-size: 0.85rem; }
  .category-btn { 
    font-size: 0.85rem; 
    padding: 8px 12px; 
    min-width: auto;
  }
  .category-nav {
    gap: 6px;
    padding: 0 8px;
  }
  .product-card, .joki-calc { max-width: 99vw; padding: 12px 4vw 12px 4vw; }
  .order-popup-content, .desc-popup-content { min-width: 98vw; padding: 10px 2vw 10px 2vw; }
} 

.info-pengiriman {
  color: #00ff88;
  font-weight: 700;
  font-size: 1.08rem;
  margin-bottom: 8px;
  margin-top: 2px;
  letter-spacing: 0.01em;
  display: block;
} 

.star-rating {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 8px;
  margin-top: -2px;
}
.star {
  color: #ffc107;
  font-size: 1.15rem;
  text-shadow: 0 1px 2px rgba(255, 20, 147, 0.3);
} 

.best-seller-label {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8a50 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 4px 8px;
  border-radius: 6px;
  margin-bottom: 8px;
  text-align: center;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(255, 107, 53, 0.4);
}
.aman-label {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 4px 8px;
  border-radius: 6px;
  margin-bottom: 8px;
  text-align: center;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(40, 167, 69, 0.4);
} 

.aman-label {
  position: absolute;
  top: 8px;
  right: 8px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  box-shadow: 0 2px 8px 0 rgba(40, 167, 69, 0.4);
}

/* ====== TESTIMONIAL POPUP ====== */
.testimonial-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(5px);
}
.testimonial-popup.hidden {
  display: none;
}
.testimonial-popup-content {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 16px;
  padding: 24px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px 0 rgba(255, 20, 147, 0.3);
  position: relative;
  border: 1px solid rgba(255, 20, 147, 0.3);
  color: #ffffff;
}
.close-testimonial-popup {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #FF69B4;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.close-testimonial-popup:hover {
  background: rgba(248, 165, 194, 0.2);
  color: #FF1493;
}
.testimonial-popup-content h2 {
  color: #FF69B4;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.testimonial-popup-content h2 i {
  color: #ffd700;
}
.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-item {
  background: rgba(255, 105, 180, 0.1);
  border-radius: 12px;
  padding: 16px;
  border-left: 4px solid #FF69B4;
  transition: all 0.3s ease;
}
.testimonial-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px 0 rgba(248, 165, 194, 0.2);
}
.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.testimonial-name {
  font-weight: 700;
  color: #FF69B4;
  font-size: 1.1rem;
}
.testimonial-rating {
  display: flex;
  gap: 2px;
}
.testimonial-rating .star {
  color: #ffd700;
  font-size: 1rem;
}
.testimonial-text {
  color: #cccccc;
  font-size: 0.95rem;
  line-height: 1.5;
  font-style: italic;
}

/* ====== REVIEW FORM ====== */
.review-form {
  background: rgba(255, 105, 180, 0.1);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
  border: 2px dashed #FF69B4;
}
.review-form h3 {
  color: #FF69B4;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.review-form h3 i {
  color: #ffd700;
}
.form-group {
  margin-bottom: 16px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid rgba(248, 165, 194, 0.3);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: rgba(42, 42, 42, 0.8);
  color: #ffffff;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #FF69B4;
  box-shadow: 0 0 0 3px rgba(248, 165, 194, 0.2);
}
.form-group textarea {
  resize: vertical;
  min-height: 80px;
}
.rating-input {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rating-input span {
  color: #cccccc;
  font-weight: 600;
  font-size: 0.9rem;
}
.star-input {
  display: flex;
  gap: 4px;
}
.star-input i {
  color: #ddd;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.star-input i:hover,
.star-input i.active {
  color: #ffd700;
  transform: scale(1.1);
}
.submit-review-btn {
  background: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
}
.submit-review-btn:hover {
  background: linear-gradient(135deg, #FF1493 0%, #FF69B4 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px 0 rgba(255, 105, 180, 0.4);
}
.submit-review-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ====== PREMIUM PRODUCT BANNERS ====== */
.premium-banner {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffd700 100%);
  color: #fff;
  padding: 16px 20px;
  border-radius: 12px;
  margin: 12px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px 0 rgba(255, 107, 53, 0.3);
  border: 2px solid #fff;
  animation: premium-glow 3s ease-in-out infinite alternate;
}

@keyframes premium-glow {
  0% {
    box-shadow: 0 4px 16px 0 rgba(255, 107, 53, 0.3);
  }
  100% {
    box-shadow: 0 6px 24px 0 rgba(255, 107, 53, 0.5);
  }
}

/* ====== EXECUTOR BANNER STYLES ====== */
.premium-banner.executor-banner {
  background: linear-gradient(135deg, #FF69B4 0%, #FF1493 50%, #FF69B4 100%);
  box-shadow: 0 4px 16px 0 rgba(102, 126, 234, 0.3);
  animation: executor-glow 3s ease-in-out infinite alternate;
}

.premium-banner.pottasium-banner {
  background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 50%, #ff6b6b 100%);
  box-shadow: 0 4px 16px 0 rgba(255, 65, 108, 0.3);
  animation: pottasium-glow 3s ease-in-out infinite alternate;
}

.premium-banner.zenith-banner {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 50%, #43e97b 100%);
  box-shadow: 0 4px 16px 0 rgba(79, 172, 254, 0.3);
  animation: zenith-glow 3s ease-in-out infinite alternate;
}

.premium-banner.cloud-banner {
  background: linear-gradient(135deg, #FF69B4 0%, #FF1493 50%, #FF69B4 100%);
  box-shadow: 0 4px 16px 0 rgba(102, 126, 234, 0.3);
  animation: cloud-glow 3s ease-in-out infinite alternate;
}

@keyframes executor-glow {
  0% {
    box-shadow: 0 4px 16px 0 rgba(102, 126, 234, 0.3);
  }
  100% {
    box-shadow: 0 6px 24px 0 rgba(102, 126, 234, 0.5);
  }
}

@keyframes pottasium-glow {
  0% {
    box-shadow: 0 4px 16px 0 rgba(255, 65, 108, 0.3);
  }
  100% {
    box-shadow: 0 6px 24px 0 rgba(255, 65, 108, 0.5);
  }
}

@keyframes zenith-glow {
  0% {
    box-shadow: 0 4px 16px 0 rgba(79, 172, 254, 0.3);
  }
  100% {
    box-shadow: 0 6px 24px 0 rgba(79, 172, 254, 0.5);
  }
}

@keyframes cloud-glow {
  0% {
    box-shadow: 0 4px 16px 0 rgba(102, 126, 234, 0.3);
  }
  100% {
    box-shadow: 0 6px 24px 0 rgba(102, 126, 234, 0.5);
  }
}

.premium-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.premium-banner-content {
  position: relative;
  z-index: 2;
}

.premium-banner-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 6px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

.premium-banner-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.95;
  margin-bottom: 4px;
}

.premium-banner-price {
  font-size: 1.3rem;
  font-weight: 900;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  margin: 4px 0;
}

.premium-banner-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 6px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.vip-banner {
  background: linear-gradient(135deg, #7c5fa3 0%, #a88fc7 50%, #d4a5ff 100%);
}

.prem-banner {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffd700 100%);
}

.maker-banner {
  background: linear-gradient(135deg, #28a745 0%, #20c997 50%, #17a2b8 100%);
}

.hotpremium-banner {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8a50 50%, #ffa726 100%);
  box-shadow: 0 4px 16px 0 rgba(255, 107, 53, 0.4);
  animation: hotpremium-glow 3s ease-in-out infinite alternate;
}

@keyframes hotpremium-glow {
  0% {
    box-shadow: 0 4px 16px 0 rgba(255, 107, 53, 0.4);
  }
  100% {
    box-shadow: 0 6px 24px 0 rgba(255, 107, 53, 0.6);
  }
}

/* ====== RESPONSIVE PREMIUM BANNERS ====== */
@media (max-width: 700px) {
  .premium-banner {
    padding: 12px 16px;
    margin: 8px 0;
  }
  .premium-banner-title {
    font-size: 1rem;
  }
  .premium-banner-subtitle {
    font-size: 0.85rem;
  }
  .premium-banner-price {
    font-size: 1.1rem;
  }
  .premium-banner-badge {
    font-size: 0.75rem;
    padding: 3px 10px;
  }
}

@media (max-width: 500px) {
  .premium-banner {
    padding: 10px 12px;
    margin: 6px 0;
  }
  .premium-banner-title {
    font-size: 0.9rem;
  }
  .premium-banner-subtitle {
    font-size: 0.8rem;
  }
  .premium-banner-price {
    font-size: 1rem;
  }
  .premium-banner-badge {
    font-size: 0.7rem;
    padding: 2px 8px;
  }
}

/* ====== UI REBUILD (MODERN GLASS PINK) ====== */
body {
  background:
    radial-gradient(circle at top left, #ffe6f3 0%, transparent 30%),
    radial-gradient(circle at top right, #f0dcff 0%, transparent 35%),
    linear-gradient(180deg, #f8f9fd 0%, #f2f4fb 45%, #eef2fa 100%);
  color: #1f1f29;
}

.header {
  background: linear-gradient(115deg, #ff4fa1 0%, #ff5dc1 45%, #9461ff 100%);
  padding: 18px 0 22px 0;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  box-shadow: 0 18px 40px rgba(176, 88, 255, 0.25);
}

.logo-area {
  margin-left: 28px;
}

.logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.22);
  padding: 6px;
}

.store-title h1 {
  font-size: 1.75rem;
  letter-spacing: 1px;
}

.official {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.banner {
  max-width: 720px;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.banner-title {
  font-size: 1.3rem;
}

.banner-desc {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.banner-promo {
  font-size: 0.88rem;
}

.stats-section {
  background: transparent;
  box-shadow: none;
  padding: 18px 0 10px;
}

.stats-container {
  gap: 14px;
  padding: 0 18px;
  flex-wrap: wrap;
}

.stat-item {
  min-width: 170px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(76, 40, 130, 0.12);
  border-radius: 14px;
  padding: 12px 16px;
}

.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-size: 1rem;
  background: linear-gradient(135deg, #ff4fa1 0%, #8d4dff 100%);
}

.stat-number {
  font-size: 1.1rem;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.8px;
}

.category-nav {
  margin: 22px auto 10px;
  padding: 0 14px;
  gap: 8px;
}

.category-btn {
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.84rem;
  border: 1px solid #d9dce6;
  background: #ffffff;
  color: #2c2f38;
  box-shadow: 0 4px 10px rgba(20, 28, 45, 0.08);
}

.category-btn.active,
.category-btn:hover {
  background: linear-gradient(120deg, #ff4fa1 0%, #8f4fff 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 16px rgba(191, 86, 240, 0.32);
}

.search-bar {
  margin-bottom: 20px;
}

#searchInput {
  width: min(520px, 92vw);
  border-radius: 999px;
  border: 1px solid #d7dce8;
  box-shadow: 0 8px 20px rgba(31, 37, 68, 0.08);
  padding: 12px 18px;
  font-size: 0.92rem;
}

#searchInput:focus {
  border-color: #a06bff;
  box-shadow: 0 10px 24px rgba(149, 88, 255, 0.2);
  transform: none;
}

#product-area {
  gap: 16px;
  padding: 8px 14px 42px;
}

.product-card {
  width: 250px;
  border-radius: 16px;
  border: 1px solid #e4e8f2;
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  box-shadow: 0 10px 24px rgba(50, 60, 95, 0.12);
  padding: 12px 12px 14px;
}

.product-card:hover {
  transform: translateY(-4px);
  background: linear-gradient(180deg, #ffffff 0%, #f4f7ff 100%);
  box-shadow: 0 14px 28px rgba(50, 60, 95, 0.18);
}

.product-img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #ff6cb7 0%, #8f57ff 100%);
}

.product-title {
  font-size: 0.98rem;
  line-height: 1.25;
  min-height: 2.4em;
  margin-bottom: 6px;
}

.info-pengiriman {
  font-size: 0.8rem;
  color: #00a869;
}

.star {
  font-size: 0.9rem;
}

.best-seller-label,
.aman-label {
  font-size: 0.62rem;
  padding: 3px 7px;
  border-radius: 999px;
  letter-spacing: 0.3px;
}

.aman-label {
  top: 10px;
  right: 10px;
}

.product-spec {
  font-size: 0.79rem;
  line-height: 1.35;
  color: #5b6070;
  margin-bottom: 8px;
}

.product-price {
  font-size: 1rem;
  margin-bottom: 8px;
}

.order-btn {
  width: 100%;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 0.82rem;
  box-shadow: 0 8px 16px rgba(214, 75, 176, 0.26);
}

.desc-btn {
  width: 100%;
  font-size: 0.8rem;
  border-radius: 10px;
  padding: 7px 10px;
  outline: none;
}

.desc-btn::after {
  display: none;
}

.joki-level-card,
.buy-money-card {
  border-radius: 20px;
  background: linear-gradient(145deg, #ff4fa1 0%, #ff5bbe 45%, #935fff 100%);
  box-shadow: 0 16px 34px rgba(151, 66, 209, 0.28);
}

.joki-level-card h2,
.buy-money-card h2 {
  font-size: 1.6rem;
}

@media (max-width: 700px) {
  .header {
    border-radius: 0 0 18px 18px;
    padding-top: 14px;
  }

  .testimonial-hint {
    display: none;
  }

  .store-title h1 {
    font-size: 1.35rem;
  }

  .stat-item {
    min-width: calc(50% - 8px);
  }

  .product-card {
    width: calc(50% - 10px);
    min-width: 160px;
  }
}

@media (max-width: 480px) {
  .product-card {
    width: 100%;
  }

  .category-btn {
    font-size: 0.78rem;
    padding: 8px 12px;
  }
}