@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  --primary: deepskyblue;
  --primary-light: rgba(0, 191, 255, 0.1);
  --secondary: deepskyblue;
  --accent: #FF6B6B;
  --dark: #0A2E38;
  --light: #f8fafc;
  --success: #00C896;
  --text: #334155;
  --text-light: #64748b;
  --card-bg: rgba(255, 255, 255, 0.9);
  --backdrop: blur(16px);
}

[data-theme="dark"] {
  --primary: #4dc3ff;
  --primary-light: rgba(77, 195, 255, 0.1);
  --secondary: #4dc3ff;
  --dark: #f8fafc;
  --light: #0A2E38;
  --text: #f1f5f9;
  --text-light: #cbd5e1;
  --card-bg: rgba(15, 23, 42, 0.9);
}

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(135deg, #f0f9ff 0%, #f8fafc 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  padding-bottom: 2rem;
  transition: all 0.3s ease;
}

[data-theme="dark"] body {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.running-text-container {
  position: sticky;
  top: 0;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffeaa7, #ff6b6b);
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
  padding: 8px 0;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.running-text {
  white-space: nowrap;
  display: inline-block;
  padding-left: 100%;
  animation: marquee 25s linear infinite;
  font-weight: 600;
  color: white;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

header {
  background: linear-gradient(135deg, var(--primary) 0%, #4dc3ff 100%);
  backdrop-filter: var(--backdrop);
  -webkit-backdrop-filter: var(--backdrop);
  color: white;
  padding: 1.5rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 70%);
  transform: rotate(30deg);
  z-index: -1;
}

header h1 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
  letter-spacing: -0.5px;
}

header p {
  margin-top: 0.5rem;
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 400;
}

.info-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 5000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.info-banner.active {
  display: flex;
}

.info-banner-content {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.info-banner-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  font-size: 1.25rem;
  color: var(--text-light);
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.info-banner-close:hover {
  background: rgba(0, 0, 0, 0.1);
  color: var(--dark);
  transform: rotate(90deg);
}

.info-banner-icon {
  margin-bottom: 1rem;
  font-size: 3rem;
  color: var(--primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.info-banner h3 {
  margin: 0 0 0.75rem 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
}

.info-banner-body {
  margin-bottom: 1.5rem;
}

.info-banner-body p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

.info-banner-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-info {
  padding: 0.7rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: inherit;
}

.btn-info-primary {
  background: linear-gradient(135deg, var(--primary), #00688B);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 191, 255, 0.3);
}

.btn-info-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 191, 255, 0.4);
}

.btn-info-secondary {
  background: rgba(0, 0, 0, 0.05);
  color: var(--text);
}

.btn-info-secondary:hover {
  background: rgba(0, 0, 0, 0.1);
}

.bottom-nav-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  border-top: 1px solid rgba(0, 191, 255, 0.2);
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  padding: 0.5rem 0;
}

.bottom-nav-buttons {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.bottom-nav-button {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0.5rem;
  transition: all 0.3s ease;
  border-radius: 0.5rem;
  margin: 0 0.25rem;
}

.bottom-nav-button:hover {
  background: rgba(0, 191, 255, 0.05);
}

.bottom-nav-button.active {
  background: rgba(0, 191, 255, 0.1);
}

.bottom-nav-button i {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
  color: var(--primary);
}

.bottom-nav-button span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
}

.bottom-nav-button.home i { color: #25D366; }
.bottom-nav-button.products i { color: #FF6B6B; }
.bottom-nav-button.testimonials i { color: #FFC107; }
.bottom-nav-button.faq i { color: #673AB7; }
.bottom-nav-button.contact i { color: #2196F3; }

main {
  padding: 1rem;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 4rem;
}

.content-section {
  background: var(--card-bg);
  backdrop-filter: var(--backdrop);
  -webkit-backdrop-filter: var(--backdrop);
  margin-bottom: 1.25rem;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: none;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.content-section.active {
  display: block;
}

.content-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

h2 {
  color: var(--primary);
  margin: 0 0 1rem 0;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

ul, ol {
  padding-left: 1.25rem;
}

li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary), #00688B);
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 0.75rem;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 191, 255, 0.2);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 191, 255, 0.3);
  background: linear-gradient(135deg, #00688B, var(--primary));
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #128C7E, #25D366);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.btn-disabled {
  background: linear-gradient(135deg, #95a5a6, #7f8c8d);
  box-shadow: 0 4px 12px rgba(149, 165, 166, 0.3);
  cursor: not-allowed;
  opacity: 0.6;
}

.btn-disabled:hover {
  transform: none;
  box-shadow: 0 4px 12px rgba(149, 165, 166, 0.3);
  background: linear-gradient(135deg, #95a5a6, #7f8c8d);
}

.harga {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1rem;
  list-style: none;
  padding: 0;
}

.harga li {
  margin: 0;
  padding: 0.85rem 1rem;
  background: rgba(0, 191, 255, 0.05);
  border-radius: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  border: 1px solid rgba(0, 191, 255, 0.1);
  transition: all 0.2s ease;
  gap: 0.75rem;
  flex-wrap: nowrap;
  overflow: hidden;
}

.harga li:hover {
  background: rgba(0, 191, 255, 0.1);
}

.harga li span {
  color: var(--primary);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 1;
  min-width: 0;
}

.harga li strong {
  color: #00688B;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  text-align: right;
}

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

.produk-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 191, 255, 0.1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.produk-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.produk-image-container {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-bottom: 1px solid #eee;
}

.produk-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.produk-card:hover .produk-image {
  transform: scale(1.05);
}

.produk-info {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.produk-title {
  font-weight: 700;
  color: var(--dark);
  font-size: 1.1rem;
  line-height: 1.3;
  margin: 0;
}

.produk-price {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0;
}

.produk-description-container {
  position: relative;
  margin: 0.5rem 0;
}

.produk-description {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
  overflow: hidden;
  transition: all 0.3s ease;
}

.produk-description.collapsed {
  max-height: 4.5em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.produk-description.expanded {
  max-height: none;
  display: block;
}

.read-more-btn {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.25rem 0;
  margin-top: 0.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: all 0.3s ease;
}
.syarat-ketentuan {
  background: rgba(0, 191, 255, 0.05);
  border: 1px solid rgba(0, 191, 255, 0.2);
  border-left: 4px solid deepskyblue;
  border-radius: 10px;
  padding: 15px 20px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.syarat-ketentuan h4 {
  color: deepskyblue;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.syarat-ketentuan ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.syarat-ketentuan ul li {
  color: #666;
  font-size: 13px;
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}

.syarat-ketentuan ul li::before {
  content: "•";
  color: deepskyblue;
  font-weight: bold;
  position: absolute;
  left: 5px;
}

.read-more-btn:hover {
  color: #00688B;
}

.read-more-btn i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.read-more-btn.expanded i {
  transform: rotate(180deg);
}

.produk-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.5rem 0;
}

.produk-feature {
  background: rgba(0, 191, 255, 0.1);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.produk-status {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: auto;
  text-align: center;
}

.status-tersedia {
  background: rgba(0, 200, 150, 0.15);
  color: #00C896;
  border: 1px solid rgba(0, 200, 150, 0.3);
}

.status-tidak-tersedia {
  background: rgba(255, 107, 107, 0.15);
  color: #FF6B6B;
  border: 1px solid rgba(255, 107, 107, 0.3);
}

.produk-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 4000;
  padding: 2rem;
}

.image-modal.active {
  display: flex;
}

.image-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-modal-img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.image-modal-close {
  position: absolute;
  top: -40px;
  right: -40px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.image-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.promo-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 3000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.promo-banner.active {
  display: flex;
}

.promo-banner-content {
  background: white;
  border-radius: 2rem;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.promo-banner-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.promo-banner-close:hover {
  background: rgba(0, 0, 0, 0.1);
  color: var(--dark);
}

.promo-banner h3 {
  margin: 0 0 1rem 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
}

.promo-banner p {
  margin: 0 0 1.5rem 0;
  color: var(--text-light);
  line-height: 1.6;
}

.promo-banner-image {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  display: none;
}

.promo-banner-image.active {
  display: block;
}

.promo-banner-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn-promo {
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
}

.btn-promo-primary {
  background: linear-gradient(135deg, var(--primary), #00688B);
  color: white;
}

.btn-promo-secondary {
  background: rgba(0, 0, 0, 0.1);
  color: var(--text);
}

.accordion {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.accordion-item {
  border-bottom: 1px solid rgba(0,191,255,0.1);
}

.accordion-button {
  width: 100%;
  text-align: left;
  padding: 12px 16px;
  background: rgba(0,191,255,0.05);
  border: none;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.accordion-button:hover {
  background: rgba(0,191,255,0.1);
}

.accordion-button::after {
  content: '+';
  margin-left: auto;
  font-size: 1.2rem;
}

.accordion-button.active::after {
  content: '-';
}

.accordion-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: white;
}

.accordion-content p, 
.accordion-content ol, 
.accordion-content ul {
  padding: 0 16px 16px;
  margin: 0;
}

.warning-box {
  background: rgba(255,107,107,0.1);
  border-left: 4px solid #FF6B6B;
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
}

.warning-box ul {
  padding-left: 20px;
}

.warning-box li {
  color: var(--text);
}

footer {
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.9) 0%, rgba(0, 104, 139, 0.9) 100%);
  backdrop-filter: var(--backdrop);
  -webkit-backdrop-filter: var(--backdrop);
  color: white;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.8rem;
  margin-top: 2rem;
  border-radius: 1rem 1rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 4rem;
}

.testimoni-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimoni-card {
  background: none;
  border-radius: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  transition: none;
  position: relative;
  overflow: visible;
}

.testimoni-card:hover {
  transform: none;
  box-shadow: none;
}

.testimoni-card::before {
  content: none;
}

.testimoni-number {
  position: absolute;
  top: 6px;
  right: 6px;
  background: rgba(0,0,0,0.55);
  color: white;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.7rem;
  z-index: 2;
}

.testimoni-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0.5rem;
  cursor: pointer;
  border: none;
  display: block;
}

.testimoni-image:hover {
  transform: none;
}

.testimoni-name {
  display: block;
  padding: 0.4rem 0.25rem 0 0.25rem;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
  font-size: 0.8rem;
}

.testimoni-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 5000;
  padding: 1rem;
  cursor: zoom-out;
}

.testimoni-modal.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.testimoni-modal-content {
  max-width: 95%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.testimoni-modal-close {
  position: absolute;
  top: 10px;
  right: 20px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 5001;
}

.testimoni-modal-close:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

.no-testimoni {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-light);
  font-style: italic;
  grid-column: 1 / -1;
}

.no-testimoni i {
  font-size: 2rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

@media (max-width: 640px) {
  .running-text {
    font-size: 0.8rem;
  }
  
  .running-text-container {
    padding: 6px 0;
  }
  
  header h1 {
    font-size: 1.5rem;
  }
  
  .harga li {
    padding: 0.75rem;
    font-size: 0.8rem;
    gap: 0.5rem;
  }
  
  .harga li span {
    font-size: 0.8rem;
  }
  
  .harga li strong {
    font-size: 0.85rem;
  }
  
  .produk-container {
    grid-template-columns: 1fr;
  }
  
  .testimoni-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  
  .content-section {
    padding: 1rem;
  }
  
  .testimoni-number {
    width: 18px;
    height: 18px;
    font-size: 0.65rem;
    top: 4px;
    right: 4px;
  }
  
  .testimoni-name {
    font-size: 0.7rem;
  }
  
  .testimoni-modal-content {
    max-width: 95%;
  }
  
  .testimoni-modal-close {
    top: 8px;
    right: 15px;
    font-size: 28px;
  }
  
  .bottom-nav-button {
    padding: 0.5rem 0.25rem;
  }
  
  .bottom-nav-button i {
    font-size: 1.1rem;
  }
  
  .bottom-nav-button span {
    font-size: 0.65rem;
  }
  
  .promo-banner-content {
    padding: 1.5rem;
  }
  
  .promo-banner h3 {
    font-size: 1.2rem;
  }
  
  .info-banner-content {
    padding: 1.5rem;
    margin: 0 0.5rem;
  }
  
  .info-banner h3 {
    font-size: 1.2rem;
  }
  
  .btn-info {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 380px) {
  .harga li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  
  .harga li strong {
    text-align: left;
  }
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 191, 255, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 191, 255, 0.5);
}