@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;
}

.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: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.harga li {
  margin: 0;
  padding: 0.75rem;
  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;
}

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

.harga li span {
  color: var(--primary);
  font-weight: 500;
}

.harga li strong {
  color: #00688B;
  font-weight: 700;
}

.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;
}

.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);
}

/* INFO BANNER - Informasi Tanpa Foto (menggantikan promo banner) */
.info-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;
}

.info-banner.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.info-banner-content {
  background: white;
  border-radius: 2rem;
  padding: 2.5rem 2rem 2rem;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  max-height: 80vh;
  overflow-y: auto;
}

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

.info-banner-content::-webkit-scrollbar {
  width: 6px;
}

.info-banner-content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.info-banner-content::-webkit-scrollbar-thumb {
  background: rgba(0, 191, 255, 0.3);
  border-radius: 10px;
}

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

.info-banner-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  font-size: 1.2rem;
  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;
  z-index: 10;
}

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

.info-banner-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), #00688B);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 20px rgba(0, 191, 255, 0.3);
}

.info-banner-icon i {
  font-size: 2.5rem;
  color: white;
}

.info-banner h3 {
  margin: 0 0 1rem 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.info-banner-body {
  margin-bottom: 2rem;
  padding: 0 0.5rem;
}

.info-banner-body p {
  margin: 0;
  color: var(--text);
  line-height: 1.8;
  white-space: pre-wrap;
  font-size: 1.1rem;
}

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

.btn-info {
  padding: 0.9rem 1.8rem;
  border-radius: 3rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 160px;
}

.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(-3px);
  box-shadow: 0 8px 20px rgba(0, 191, 255, 0.4);
}

.btn-info-secondary {
  background: rgba(0, 0, 0, 0.05);
  color: var(--text);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

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

.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(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimoni-card {
  background: var(--card-bg);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(0, 191, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimoni-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimoni-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), #4dc3ff);
}

.testimoni-number {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--primary);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.testimoni-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
  border: 2px solid rgba(0, 191, 255, 0.2);
}

.testimoni-image:hover {
  transform: scale(1.03);
}

.testimoni-bubble {
  background: rgba(0, 191, 255, 0.05);
  padding: 1rem;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  font-style: italic;
  position: relative;
  border-left: 4px solid var(--primary);
}

.testimoni-bubble::after {
  content: '"';
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.1;
  position: absolute;
  right: 10px;
  bottom: -20px;
}

.testimoni-info {
  margin-top: 0.5rem;
}

.testimoni-info p {
  margin: 0.25rem 0;
  font-size: 0.9rem;
}

.testimoni-info strong {
  color: var(--primary);
}

.testimoni-name {
  display: block;
  margin-top: 0.75rem;
  font-weight: 600;
  color: var(--dark);
  text-align: right;
}

.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: 2rem;
  cursor: zoom-out;
}

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

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

.testimoni-modal-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  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;
}

#commentsContainer {
  margin-bottom: 2rem;
  max-height: 600px;
  overflow-y: auto;
  padding-right: 10px;
}

#commentsContainer::-webkit-scrollbar {
  width: 6px;
}

#commentsContainer::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

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

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

.add-comment-section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(0, 191, 255, 0.2);
}

.comment-form-container {
  background: rgba(0, 191, 255, 0.05);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 191, 255, 0.1);
}

.form-group {
  margin-bottom: 1rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0, 191, 255, 0.2);
  border-radius: 0.75rem;
  background: var(--card-bg);
  color: var(--text);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(0, 191, 255, 0.1);
  outline: none;
}

.chat-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0, 191, 255, 0.2);
  border-radius: 0.75rem;
  background: var(--card-bg);
  color: var(--text);
  font-size: 0.9rem;
  resize: vertical;
  min-height: 100px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.chat-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(0, 191, 255, 0.1);
  outline: none;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-check-input {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid var(--primary);
  appearance: none;
  cursor: pointer;
  position: relative;
}

.form-check-input:checked {
  background-color: var(--primary);
}

.form-check-input:checked::after {
  content: '✓';
  position: absolute;
  color: white;
  font-size: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.form-check-label {
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
}

.comment-status {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  display: none;
}

.comment-status.success {
  background: rgba(0, 200, 150, 0.1);
  color: #00C896;
  border: 1px solid rgba(0, 200, 150, 0.2);
  display: block;
}

.comment-status.error {
  background: rgba(255, 107, 107, 0.1);
  color: #FF6B6B;
  border: 1px solid rgba(255, 107, 107, 0.2);
  display: block;
}

.comment-item {
  background: var(--card-bg);
  border-radius: 1rem;
  padding: 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 191, 255, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  animation: fadeIn 0.3s ease;
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.comment-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.comment-user-info {
  flex: 1;
}

.comment-user-name {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.comment-time {
  font-size: 0.8rem;
  color: var(--text-light);
}

.comment-content {
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1rem;
  padding-left: 0.5rem;
}

.comment-reply {
  background: rgba(0, 191, 255, 0.05);
  border-radius: 0.75rem;
  padding: 1rem;
  margin-top: 1rem;
  border-left: 3px solid var(--primary);
}

.reply-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.reply-label {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9rem;
}

.reply-admin {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(0, 191, 255, 0.1);
  color: var(--primary);
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.reply-content {
  color: var(--text);
  line-height: 1.5;
  padding-left: 0.5rem;
}

.loading-comments {
  text-align: center;
  padding: 2rem;
  color: var(--text-light);
}

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

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

/* Responsive */
@media (max-width: 640px) {
  .running-text {
    font-size: 0.8rem;
    padding: 6px 0;
  }
  
  .running-text-container {
    padding: 6px 0;
  }
  
  header h1 {
    font-size: 1.5rem;
  }
  
  .harga {
    grid-template-columns: 1fr;
  }
  
  .produk-container {
    grid-template-columns: 1fr;
  }
  
  .testimoni-container {
    grid-template-columns: 1fr;
  }
  
  .content-section {
    padding: 1.25rem;
  }
  
  #commentsContainer {
    max-height: 500px;
  }
  
  .comment-form-container {
    padding: 1.25rem;
  }
  
  .comment-item {
    padding: 1rem;
  }
  
  .comment-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .comment-avatar {
    width: 35px;
    height: 35px;
  }
  
  .bottom-nav-button {
    padding: 0.5rem 0.25rem;
  }
  
  .bottom-nav-button i {
    font-size: 1.1rem;
  }
  
  .bottom-nav-button span {
    font-size: 0.65rem;
  }
  
  .testimoni-image {
    height: 180px;
  }
  
  .testimoni-modal-content {
    max-width: 95%;
  }
  
  .testimoni-modal-close {
    top: 15px;
    right: 20px;
    font-size: 30px;
  }
  
  .info-banner-content {
    padding: 2rem 1.5rem 1.5rem;
    border-radius: 1.5rem;
  }
  
  .info-banner-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  
  .info-banner-icon i {
    font-size: 2rem;
  }
  
  .info-banner h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  .info-banner-body p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .btn-info {
    padding: 0.75rem 1.5rem;
    min-width: 140px;
    font-size: 0.95rem;
  }
  
  .info-banner-actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .btn-info {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .info-banner-content {
    padding: 1.75rem 1rem 1.25rem;
  }
  
  .info-banner h3 {
    font-size: 1.3rem;
  }
  
  .info-banner-body p {
    font-size: 0.95rem;
  }
}

::-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);
}