*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #8b0000;
  --primary-dark: #5c0000;
  --primary-light: #fff5f5;
  --accent: #c8a44e;
  --accent-dark: #a8883e;
  --text: #1f2937;
  --text-light: #6b7280;
  --bg: #f5f5f0;
  --white: #ffffff;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --danger: #dc2626;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --radius: 12px;
  --radius-sm: 8px;

  --logo-sin: url("../assets/logo-sin.png");
  --logo-tsi: url("../assets/logo-tsi.png");
}

.logo-img {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-img img {
  height: 40px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .logo-img img {
    height: 32px;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: var(--primary);
  text-decoration: none;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Warning Bar */
.warning-bar {
  background: #1a1a1a;
  color: #ffd700;
  text-align: center;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.warning-bar .age {
  display: inline-block;
  background: var(--danger);
  color: white;
  padding: 2px 10px;
  border-radius: 3px;
  font-size: 11px;
  margin: 0 6px;
}

/* Header */
header {
  background: var(--gray-900);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 1px;
}

.logo span {
  color: var(--accent);
}

.logo small {
  font-size: 10px;
  font-weight: 400;
  color: #9ca3af;
  display: block;
  letter-spacing: 0;
}

.search-bar {
  flex: 1;
  max-width: 400px;
  position: relative;
}

.search-bar input {
  width: 100%;
  padding: 9px 16px 9px 38px;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  outline: none;
  background: var(--gray-700);
  color: white;
  transition: background 0.3s;
}

.search-bar input::placeholder {
  color: #9ca3af;
}

.search-bar input:focus {
  background: var(--gray-800);
}

.search-bar .search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 14px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-actions a {
  color: #d1d5db;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
}

.header-actions a:hover {
  color: var(--accent);
}

.cart-link {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--danger);
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: white;
}

/* Navigation */
nav {
  background: var(--gray-800);
  padding: 0 20px;
  border-top: 1px solid #374151;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 2px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-inner a {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #d1d5db;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-inner a:hover,
.nav-inner a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #111827 0%, #1f2937 50%, #111827 100%);
  color: white;
  padding: 50px 20px;
  text-align: center;
  border-bottom: 3px solid var(--accent);
}

.hero h1 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  font-size: 16px;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto 20px;
}

.hero .btn {
  display: inline-block;
  background: var(--accent);
  color: var(--gray-900);
  padding: 12px 36px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s, transform 0.2s;
}

.hero .btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* Section */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.section-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--gray-900);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-subtitle {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 14px;
}

/* Category Pills */
.category-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.pill {
  padding: 8px 22px;
  border: 2px solid var(--gray-200);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  background: var(--white);
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pill:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.pill.active {
  background: var(--gray-900);
  border-color: var(--gray-900);
  color: var(--accent);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  position: relative;
  border: 1px solid var(--gray-200);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.product-card .badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--danger);
  color: white;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  z-index: 1;
}

.product-card .badge.diskon {
  background: var(--accent);
  color: var(--gray-900);
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: var(--white);
  padding: 12px;
}

.card-body {
  padding: 14px;
  border-top: 1px solid var(--gray-200);
}

.card-body .kategori-label {
  font-size: 10px;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  display: block;
}

.card-body h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--gray-900);
}

.card-body .harga {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 2px;
}

.card-body .harga-old {
  font-size: 12px;
  color: var(--text-light);
  text-decoration: line-through;
  margin-bottom: 10px;
}

.card-body .btn-add {
  width: 100%;
  padding: 9px;
  border: none;
  background: var(--gray-900);
  color: white;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.3s;
}

.card-body .btn-add:hover {
  background: var(--primary);
}

/* Detail */
.detail-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.detail-img {
  width: 100%;
  border-radius: var(--radius);
  background: var(--white);
  padding: 20px;
  border: 1px solid var(--gray-200);
}

.detail-info h1 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.detail-info .detail-harga {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.detail-info .detail-harga-old {
  font-size: 16px;
  color: var(--text-light);
  text-decoration: line-through;
  margin-bottom: 16px;
}

.detail-info .detail-deskripsi {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 14px;
}

.detail-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--text-light);
}

.detail-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.detail-qty button {
  width: 36px;
  height: 36px;
  border: 2px solid var(--gray-200);
  background: var(--white);
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: border 0.3s;
}

.detail-qty button:hover {
  border-color: var(--primary);
}

.detail-qty input {
  width: 56px;
  height: 36px;
  text-align: center;
  border: 2px solid var(--gray-200);
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  outline: none;
}

.detail-qty input:focus {
  border-color: var(--primary);
}

.btn-beli {
  padding: 12px 36px;
  border: none;
  background: var(--gray-900);
  color: white;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.btn-beli:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

/* Warning Box */
.warning-box {
  background: #1a1a1a;
  color: #ffd700;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  margin-top: 20px;
  line-height: 1.6;
}

.warning-box .age-badge {
  display: inline-block;
  background: var(--danger);
  color: white;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 10px;
  margin: 0 4px;
}

/* Cart */
.cart-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-item {
  display: flex;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
  align-items: center;
  border: 1px solid var(--gray-200);
}

.cart-item img {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  object-fit: contain;
  background: var(--white);
}

.cart-item-info {
  flex: 1;
}

.cart-item-info h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.cart-item-info .item-harga {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-item-qty button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
}

.cart-item-qty span {
  width: 28px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}

.cart-item .item-total {
  font-weight: 700;
  font-size: 14px;
  min-width: 80px;
  text-align: right;
}

.cart-item .btn-remove {
  background: none;
  border: none;
  color: var(--danger);
  cursor: pointer;
  font-size: 16px;
  padding: 4px;
}

.cart-summary {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 100px;
  border: 1px solid var(--gray-200);
}

.cart-summary h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-200);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 13px;
}

.summary-row.total {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  border-top: 2px solid var(--gray-200);
  padding-top: 10px;
  margin-top: 10px;
}

.btn-checkout {
  width: 100%;
  padding: 13px;
  border: none;
  background: var(--accent);
  color: var(--gray-900);
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 14px;
}

.btn-checkout:hover {
  background: var(--accent-dark);
}

/* Checkout */
.checkout-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 20px;
}

.checkout-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 9px 12px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 14px;
  outline: none;
  transition: border 0.3s;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}

.form-group textarea {
  height: 80px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Payment Info */
.payment-info {
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin: 18px 0;
  border: 1px solid #fecaca;
}

.payment-info h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary);
}

.payment-info p {
  font-size: 13px;
  color: var(--text);
  margin-bottom: 3px;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 50px 20px;
}

.empty-state .icon {
  font-size: 56px;
  margin-bottom: 14px;
  opacity: 0.3;
}

.empty-state h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.empty-state p {
  color: var(--text-light);
  margin-bottom: 18px;
  font-size: 14px;
}

.empty-state .btn {
  display: inline-block;
  padding: 10px 28px;
  background: var(--gray-900);
  color: white;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--gray-900);
  color: white;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s;
  z-index: 999;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Why Us */
.why-section {
  background: var(--gray-900);
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.why-grid {
  max-width: 1200px;
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.why-item {
  padding: 20px;
}

.why-item .icon {
  font-size: 36px;
  margin-bottom: 8px;
}

.why-item h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.why-item p {
  font-size: 13px;
  color: #9ca3af;
}

/* FAQ Section */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

.faq-question {
  padding: 14px 18px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.faq-question:hover {
  background: var(--gray-100);
}

.faq-question .arrow {
  transition: transform 0.3s;
  font-size: 12px;
}

.faq-question.open .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

.faq-answer.open {
  padding: 14px 18px;
  max-height: 300px;
}

/* Info Section */
.info-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: transform 0.3s;
}

.info-card:hover {
  transform: translateY(-2px);
}

.info-card .icon {
  font-size: 40px;
  margin-bottom: 10px;
}

.info-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.info-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

.info-card .btn {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 24px;
  background: var(--gray-900);
  color: white;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

/* Footer */
footer {
  background: var(--gray-900);
  color: white;
  padding: 40px 20px 20px;
  margin-top: 40px;
  border-top: 3px solid var(--accent);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.footer-inner h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-inner p,
.footer-inner a {
  font-size: 13px;
  color: #9ca3af;
  line-height: 2;
  display: block;
}

.footer-inner a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #374151;
  font-size: 12px;
  color: #6b7280;
}

/* Success Page */
.success-page {
  max-width: 560px;
  margin: 50px auto;
  padding: 40px 20px;
  text-align: center;
}

.success-page .check-icon {
  font-size: 64px;
  margin-bottom: 14px;
}

.success-page h1 {
  font-size: 24px;
  margin-bottom: 6px;
}

.success-page p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 14px;
}

.success-page .order-number {
  background: var(--primary-light);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 20px;
  display: inline-block;
  border: 1px solid #fecaca;
}

/* Responsive */
@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .search-bar {
    order: 3;
    max-width: 100%;
    flex-basis: 100%;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-inner {
    display: none;
  }

  .nav-inner.open {
    display: flex;
    flex-direction: column;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .cart-layout {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 24px;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 14px;
  }

  .card-img {
    height: 150px;
  }

  .header-actions a {
    gap: 3px;
  }
  .header-actions a span {
    font-size: 11px;
  }

  .warning-bar {
    font-size: 9px;
    padding: 4px 8px;
    line-height: 1.3;
  }

  .warning-bar .age {
    font-size: 9px;
    padding: 1px 5px;
  }

  .slider-text h2 { font-size: 18px; }
  .slider-text p { font-size: 12px; }
  .slider-text .btn { padding: 8px 20px; font-size: 11px; }
}

/* ===== BANNER SLIDER ===== */
.slider-container {
  position: relative;
  overflow: hidden;
  background: var(--gray-900);
}

.slider-track {
  display: flex;
  transition: transform 0.6s ease;
}

.slider-slide {
  min-width: 100%;
  padding: 50px 20px;
  text-align: center;
  color: white;
}

.slider-text h2 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.slider-text h2 span { color: var(--accent); }

.slider-text p {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 16px;
}

.slider-text .btn {
  display: inline-block;
  padding: 10px 28px;
  background: var(--accent);
  color: var(--gray-900);
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.3s;
}

.slider-text .btn:hover { background: var(--accent-dark); }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: var(--gray-900);
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4b5563;
  cursor: pointer;
  transition: background 0.3s;
  border: none;
}

.slider-dot.active { background: var(--accent); }

/* ===== WHATSAPP FLOATING ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.wa-float:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  color: white;
}

.wa-float .wa-icon {
  font-size: 22px;
}

@media (max-width: 768px) {
  .wa-float {
    padding: 10px 16px;
    font-size: 13px;
    bottom: 16px;
    right: 16px;
  }
  .wa-float .wa-text { display: none; }
  .wa-float { padding: 14px; }
}

/* ===== BEST SELLER ===== */
.best-seller-section {
  background: var(--white);
  border-top: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
}

.best-seller-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

/* ===== TESTIMONI ===== */
.testimoni-section {
  background: var(--gray-100);
  padding: 40px 20px;
}

.testimoni-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimoni-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.testimoni-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}

.testimoni-card .stars {
  color: var(--accent);
  font-size: 16px;
  margin-bottom: 8px;
}

.testimoni-card .text {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 12px;
  font-style: italic;
}

.testimoni-card .author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimoni-card .author .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-900);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.testimoni-card .author .name {
  font-weight: 600;
  font-size: 13px;
}

.testimoni-card .author .city {
  font-size: 11px;
  color: var(--text-light);
}

/* ===== LEGALITAS ===== */
.legalitas-section {
  background: var(--gray-900);
  color: white;
  padding: 30px 20px;
  text-align: center;
}

.legalitas-grid {
  max-width: 1000px;
  margin: 16px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.legalitas-item {
  padding: 16px;
  border: 1px solid #374151;
  border-radius: var(--radius-sm);
}

.legalitas-item .icon {
  font-size: 28px;
  margin-bottom: 6px;
}

.legalitas-item h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--accent);
}

.legalitas-item p {
  font-size: 12px;
  color: #9ca3af;
}

/* ===== PRICE LIST ===== */
.pricelist-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.pricelist-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pricelist-table th {
  background: var(--gray-900);
  color: var(--accent);
  padding: 12px 16px;
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricelist-table td {
  padding: 10px 16px;
  font-size: 13px;
  border-bottom: 1px solid var(--gray-100);
}

.pricelist-table tr:hover td {
  background: var(--gray-100);
}

.pricelist-table .kategori-header td {
  background: var(--primary-light);
  font-weight: 700;
  font-size: 14px;
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

.pricelist-table .harga-pl {
  font-weight: 700;
  color: var(--primary);
}

.pricelist-table .diskon-pl {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
}
