body { max-width:600px;margin:0 auto;
font-family: "Bricolage Grotesque", sans-serif;
background:radial-gradient(circle at 30% 30%, rgba(0,123,255,0.15), transparent 70%),
              radial-gradient(circle at 70% 70%, rgba(255,193,7,0.15), transparent 70%);
padding-bottom: 80px;}
body::before {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background: linear-gradient(-35deg, rgba(170, 230, 175, 1) 0%, rgba(71, 158, 83, 1) 50%, rgba(21, 105, 35, 1) 100%);
  clip-path: ellipse(90% 50% at 50% 30%);
  z-index: -2;
}

:root {
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  body {
    background: #ffffff !important;
    color: #000000 !important;
  }
}

  /* Wrapper untuk slider + overlay */
  .hero-section {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
  }

  /* Semua slide di-stack */
  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .slide.active {
    opacity: 1;
  }

  /* Overlay gradasi hitam */
  .gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.0) 100%);
    z-index: 1;
  }

  /* Header */
  header {
    position: absolute;
    top: 0;
    left: 0;
    width: 95%;
    padding: 15px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
  }

  .logo img {
    height: 50px;
  }

  .icon-btn {
    font-size: 22px;
    cursor: pointer;margin-right:20px;
  }

/* Tombol Promo */
  .promo-btn {
	font-family: "Bricolage Grotesque", sans-serif;
    position: relative;
    background: none;
    color: white;
    border: solid 1px #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 300;
    cursor: pointer;
  }

  /* Badge merah kecil */
  .promo-btn::after {
    content: '';
    position: absolute;
    top: -4px;
    right: 2px;
    width: 8px;
    height: 8px;
    background: red;
    border-radius: 50%;
    border: 1px solid white;
  }

/* Wrapper kanan untuk promo + hamburger */
  .header-right {
    display: flex;
    align-items: center;
    gap: 20px;
  }

#welcomeMsg {
  position: absolute;
  top: 80%; /* atur posisi vertikal */
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

/* Bottom Navigation */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  z-index: 999;
background: rgba(255,255,255,0.7);
border-radius: 10px 10px 0 0;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
}


.nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-decoration: none;
  color: #000;
  font-size: 10px;
  padding: 8px 0;
}

.nav-item i {
  display: inline-block;
  font-size: 22px;
  margin-bottom: 1px;
  --fa-primary-color: #6BC275;
  --fa-secondary-color: #ffc107;
  transition: all 0.3s ease;
}

.nav-item::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 0;
  height: 1px;
  background: #149031;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-item:hover::after {
  width: 20px;           /* panjang garis saat hover */
}

.nav-item:hover i {
  --fa-primary-color: #149031;
  --fa-secondary-color: #149031;
}

.nav-item.active {
  color: #000;
}

.nav-item.active i {
  --fa-primary-color: #ffc107;
  --fa-secondary-color: #149031;
}

/* Center Button */
.nav-center {
  position: relative;
  top: -30px; /* naik sedikit agar menonjol */
}

.center-btn {
  width: 55px;
  height: 55px;
  background: #fff;
  color: #000;
  border-radius: 50%;border: 5px solid #149031;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 8px #149031;
}

.center-btn i {
  --fa-primary-color: #149031;
  --fa-secondary-color: #149031;
}

#menuModal .modal-content,
#daftarModal .modal-content {
  background: #fff;
  border-radius: 15px 15px 0 0;
  width: 100%;
  animation: slideUp 0.4s ease;
  max-width: 500px;
  max-height: 500px;
  overflow-y: auto;
  padding: 20px;
  position: relative;
}

#menuModal .modal-content {
  padding-bottom: 40px;height: 350px;
}

#daftarModal .modal-content {
  padding-bottom: 0px;height: 250px;
}

#menuModal h2,
#daftarModal h2 {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}

.modal-content ul li a:hover {
  color: #149031;
}
.modal-content button:hover {
  opacity: 0.9;
}
@media (max-width: 400px) {
  .modal-content div button {
    font-size: 14px;
    padding: 10px;
  }
}


.modal {display:none;position:fixed;bottom:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.7);z-index:99;justify-content:center;align-items:flex-end;}
.modal.show {display:flex;}
  

/* Animasi Slide Up */
@keyframes slideUp {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}

.extra-links {
padding:20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 15px;
  margin-top: 25px;
}

.extra-links a {
  font-size: 10px;
  color: #999;
  text-decoration: none;
  border-bottom: 1px dotted #999;
  padding-bottom: 3px;
  display: inline-block;
}
  
/* Container agar web tetap 600px max */
#app-container {
  max-width: 600px;
  margin: 0 auto;
  background: none;
  min-height: 100vh;
  box-shadow: 0 2px 6px rgba(0,0,0,0.0); /* opsional */
}

/* Grid responsive */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
@media (min-width: 601px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* HEADER */
.commodity-header {
  display: flex;margin-bottom:-10px;
  justify-content: space-between;
  align-items: center;
  background: none;
  padding: 10px;
  color: white;
  font-weight: bold;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 6px;
}
.seed-icon {
  font-size: 1.2rem;
}
.lihat-semua {
  background: none;
  border: none;
  color: white;
  font-size: 0.8rem;font-weight:300;
  cursor: pointer;
}

/* HEADER Wisata */
.wisata-header {
  display: flex;margin-bottom:-10px;
  justify-content: space-between;
  align-items: center;
  background: none;
  padding: 10px;
  color: white;
  font-weight: bold;
}
.header-wisata {
  display: flex;color:green;
  align-items: center;
  gap: 6px;
}
.wisata-icon {
  font-size: 1.2rem;color:green;
}
.lihat-semua-wisata {
  background: none;
  border: none;
  color: green;
  font-size: 0.8rem;font-weight:300;
  cursor: pointer;
}

/* CAROUSEL */
.commodity-carousel {
  display: flex;min-height:100px;
  overflow-x: auto;
  gap: 12px;
  padding: 10px 20px 20px 10px;margin-left: 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.commodity-card {
  flex: 0 0 auto;
  width: 200px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 27px 13px -28px rgba(0,0,0,0.61);
-webkit-box-shadow: 0px 27px 13px -28px rgba(0,0,0,0.61);
-moz-box-shadow: 0px 27px 13px -28px rgba(0,0,0,0.61);
  position: relative;
  scroll-snap-align: start;

  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.commodity-content {
  padding: 12px;
  position: relative;
  z-index: 2;
}
.commodity-content h3 {
  font-size: 14px;
  margin: 0;
  font-weight: 300;
}
.commodity-price {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 4px;
}
.price-change {
  font-size: 0.8rem;
  margin-top: 4px;
}
.price-change.up {
  color: green;
}
.price-change.down {
  color: red;
}
.price-change.flat {
  color: gray;
}
.commodity-card button {
  margin-top: 6px;
  padding: 6px 10px;
  background: none;
  color: #000;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.8rem;
}
.commodity-bg {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 80%;
  height: auto;
  z-index: 1;
  object-fit: contain;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 75% 100%, 0 100%);
  opacity: 0.9;
}

.loading-spinner {
  position: fixed;
  font-size: 24px;
  color: #fff;z-index:10;
}

.spinner {
  margin: 0 auto;
  width: 36px;
  height: 36px;
  border: 4px solid #ddd;
  border-top: 4px solid #149031;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* HEADER UMKM */
.umkm-header {
  display: flex;margin-bottom:-10px;
  justify-content: space-between;
  align-items: center;
  background: none;
  padding: 10px;
  color: white;
  font-weight: bold;
}
.header-umkm {
  display: flex;color:green;
  align-items: center;
  gap: 6px;
}
.umkm-icon {
  font-size: 1.2rem;color:green;
}

/* POPUP */
.popup-overlay {
  display: none;border-radius:0 0 0 0;
  position: fixed;bottom:0;left:0;
  inset: 0;max-width:600px;margin:0 auto;
  background: white;max-height:100%;height:100%;
  z-index: 991;
  overflow-y: auto;animation:slideUp 0.1s ease;
}
.popup-content {
  padding-bottom: 200px;
}
.popup-header {
  position: sticky;
  top: 0;
  background: white;
  display: flex;
  content-align: center;
  gap: 10px;
  padding-left: 20px;
box-shadow: 0px 27px 13px -28px rgba(0,0,0,0.61);
-webkit-box-shadow: 0px 27px 13px -28px rgba(0,0,0,0.61);
-moz-box-shadow: 0px 27px 13px -28px rgba(0,0,0,0.61);
  border-bottom: 1px solid #ddd;
  z-index: 10;font-size:10px;
}

.popup-headerr {
  display: flex;font-size:12px;
  align-items: center;
  justify-content: space-between; /* teks kiri, tombol kanan */
  padding: 10px 15px;
box-shadow: 0px 27px 13px -28px rgba(0,0,0,0.61);
-webkit-box-shadow: 0px 27px 13px -28px rgba(0,0,0,0.61);
-moz-box-shadow: 0px 27px 13px -28px rgba(0,0,0,0.61);
  border-bottom: 1px solid #ddd;
}

.close-btn {
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.popup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(160px,1fr));
  gap: 12px;
  padding: 12px;
}
/* CSS umum untuk semua popup card */
.popup-card, .popup-card-wisata {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}

/* CSS gambar spesifik */
.popup-card img {
  width: 100%;
  height: 100px; /* khusus popup-card */
  object-fit: cover;
}

.popup-card-wisata img {
  width: 100%;
  height: 200px; /* khusus popup-card-wisata */
  object-fit: cover;
}

/* CSS info umum */
.popup-card .info, .popup-card-wisata .info {
  padding: 8px;
}

/* CSS judul umum */
.popup-card h3, .popup-card-wisata h3 {
  font-size: 14px;
  margin: 0;
  font-weight: 300;
}

/* CSS tombol umum */
.popup-card button, .popup-card-wisata button {
  margin-top: 6px;
  padding: 4px 6px;
  background: #4CAF50;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.8rem;
}

.popup-card-wisata button {
  padding: 8px 6px;
}


////////
#popupGridWisata {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;width:100px;
  padding: 10px;
  box-sizing: border-box;
}

.footer {
font-size:10px; text-align:center;}


/* Container form */
.popup-form,
#formDaftarWisata {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  max-width: 450px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Judul (kalau ada h2 di dalam) */
.popup-form h2,
#formDaftarWisata h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  color: #2c3e50;
}

/* Label */
.popup-form label,
#formDaftarWisata label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #34495e;
}

/* Input, textarea, select */
.popup-form input,
.popup-form textarea,
.popup-form select,
#formDaftarWisata input,
#formDaftarWisata textarea,
#formDaftarWisata select {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 15px;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  font-size: 14px;
  transition: border 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  box-sizing: border-box;
  resize: vertical;
  background-color: #fff;
  color: #2c3e50;
}

/* Dropdown (select) tambahan */
.popup-form select,
#formDaftarWisata select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='gray' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
}

/* Fokus efek */
.popup-form input:focus,
.popup-form textarea:focus,
.popup-form select:focus,
#formDaftarWisata input:focus,
#formDaftarWisata textarea:focus,
#formDaftarWisata select:focus {
  border-color: #27ae60;
  box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.2);
}

.popup-form .agreement,
#formDaftarWisata .persetujuan {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.popup-form .agreement input[type="checkbox"],
#formDaftarWisata .persetujuan input[type="checkbox"] {
  flex: 0 0 8%;    
  transform: scale(0.8);
  margin-right: 5px;
  cursor: pointer;
}

.popup-form .agreement label,
#formDaftarWisata .persetujuan label {
  flex: 1;
  font-size: 10px;
  font-weight: 300;
  color: #555;
  cursor: pointer;
}

/* Tombol submit */
.popup-form .btn-submit,
#formDaftarWisata .btn-submit {
  display: block;
  width: 100%;
  background: #27ae60;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.1s ease;
}

.popup-form .btn-submit:hover,
#formDaftarWisata .btn-submit:hover {
  background: #219150;
}

.popup-form .btn-submit:active,
#formDaftarWisata .btn-submit:active {
  transform: scale(0.98);
}

//////////////////
.install-btn {
  font-family: "Bricolage Grotesque", sans-serif;
  position: relative;
  background: none;
  color: white;
  border: none;
  font-size: 18px;
  font-weight: 300;
  cursor: pointer;
}

/* Popup instruksi iOS */
.ios-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.ios-popup-content {
  background: #fff;
  color: #000;
  padding: 20px;
  border-radius: 12px;
  max-width: 300px;
  text-align: left;
  font-family: "Bricolage Grotesque", sans-serif;

  display: flex;
  flex-direction: column;
}

.ios-popup-content button {
  align-self: flex-end; /* dorong tombol ke kanan */
  margin-top: 15px;
  background: #149031;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
}

#menuModal .modal-content{
  background: #fff;
  border-radius: 15px 15px 0 0;
  width: 100%;
  animation: slideUp 0.4s ease;
  max-width: 500px;
  max-height: 100%;
  overflow-y: auto;
  padding: 20px;
  position: relative;
}

#menuModal .modal-content {
  padding-bottom: 70px;height:70vh;
}

.harga-coret {
  text-decoration: line-through;
  color: #999;
  font-size: 10px;
}

.tiket-carousel {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 10px;
}

.tiket-carousel img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: none;
}

.tiket-carousel img.active {
  display: block;
}

.tiket-carousel .prev,
.tiket-carousel .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.0);
  color: #fff;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 50%;
}

.tiket-carousel .prev { left: 10px; }
.tiket-carousel .next { right: 10px; }

.tiket-deskripsi {
  font-size: 14px;
  line-height: 1.5;
  margin: 8px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.deskripsi-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #333;
}

.deskripsi-item i {
  color: #28a745; /* hijau untuk centang */
}

input.invalid-date {
  background-color: #eee;
  color: #888;
}

.popup-theader {
  position: sticky;
  top: 0;
  background: white;
  max-width: 600px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  box-shadow: 0px 27px 13px -28px rgba(0,0,0,0.61);
  border-bottom: 1px solid #ddd;
  z-index: 10;
  font-size: 10px;
  justify-content: space-between;
}

/////////////////
  /* Popup Overlay */
  .promo-popup {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 993;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  /* Show Popup */
  .promo-popup.show {
    opacity: 1;
    pointer-events: auto;
  }

  /* Konten Popup */
  .promo-content {
    position: relative;
    background: none;
    border-radius: 10px;
    overflow: hidden;
    max-width: 90%;
    animation: zoomIn 0.3s ease;
  }

  @keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }

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

////////////////////////
#promoBanner {
  position: fixed;
  bottom: 200px;
  right: 5px;
  width: 80px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  transform: translateX(120%); /* awal tersembunyi di kanan */
  transition: transform 0.4s ease;
  z-index: 993;
}
#promoBanner.show {
  transform: translateX(0); /* masuk ke layar */
}
#promoBanner.hide {
  transform: translateX(120%); /* sembunyi ke kanan */
}
#promoBanner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#closeBanner {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  font-size: 14px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  color: white;
  cursor: pointer;
  z-index: 10;
}

//////////////////////
  .calendar-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;font-family: &quot;Bricolage Grotesque&quot;, sans-serif;
    background: #e6f9e6; /* Hijau lembut */
    color: #2e7d32;      /* Hijau teks */
    border-radius: 5px;
    padding: 10px 18px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    transition: all 0.2s ease-in-out;
    flex-direction: row;
  }
  .calendar-btn i {
    font-size: 20px;
  }
  .text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .title {
    font-size: 12px;
    font-weight: bold;
  }
  .time {
    font-size: 10px;
    color: #555;
    font-weight: normal;
  }
  .calendar-btn:hover {
    background: #d9f5d9;
  }

////////////////////
.penampung {
  display: none;
  position: fixed;
  z-index: 993;
  bottom: 0;
  width: 100%; 
  height: 450px;

}

.penampung-content {
  background:#fff;
  border-radius:15px 15px 0 0;
  width:90%;
  max-width:550px;
  max-height:500px;height:450px;
  overflow-y:auto;
  padding:20px;
  position:relative;
  animation: slideUp 0.4s ease;
  
  box-shadow:0 0 0 9999px rgba(0,0,0,0.5);
}
 
.penampung-content h3 {
  margin-top: 0;
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
  z-index: 10;
}

.penampung .close {
  position: sticky;
  top: 0;
  float: right;
  font-size: 30px;
  cursor: pointer;
  color: #000;
  z-index: 11;
}

.penampung-item {
  padding: 8px 12px;
  border-bottom: 1px solid #eee;
}

///////////////////////
.wisata-carousel {  
  display: flex;  
  gap: 12px;min-height:200px;  
  overflow-x: auto;  
  scroll-behavior: smooth;  
  padding: 10px 20px 20px 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}  

.wisata-carousel::-webkit-scrollbar {  
  display: block;
  scroll-snap-align: start;  
}  

.wisata-card {  
  position: relative;  
  width: 150px;  
  height: 260px;  
  border-radius: 10px;  
  overflow: hidden;  
  background-size: cover;  
  background-position: center;  
  display: flex;  
  align-items: flex-end;  
  color: white;  
  font-family: &quot;Bricolage Grotesque&quot;, sans-serif;  
  flex-shrink: 0;  
  box-shadow: 0px 27px 13px -28px rgba(0,0,0,0.61);
  -webkit-box-shadow: 0px 27px 13px -28px rgba(0,0,0,0.61);
  -moz-box-shadow: 0px 27px 13px -28px rgba(0,0,0,0.61);
}  

.wisata-gradient {  
  position: absolute;  
  inset: 0;  
  background: linear-gradient(to top, rgba(0,128,0,1), rgba(0,128,0,0) 20%);  
}  

.wisata-info {  
  position: relative;  
  padding: 12px;  
  z-index: 2;
  width: 150px;  
}  

.wisata-info h3 {  
  margin: 0;  
  font-size: 14px;  
  font-weight: 600;  
}  

.wisata-info .harga {  
  font-size: 10px; 
  margin-bottom: -5px; 
  opacity: 0.9;  
}  

.header-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.left-info h3 {
  margin: 0;
  font-size: 16px;
}

.left-info .wisata-harga {
  font-weight: 300;
  font-size: 10px;
  color: #4CAF50;
}

.icon-lokasi {
  cursor: pointer;
  font-size: 20px;
  color: #2196F3;
}

.btn-beli,
.btn-penampung{
  width: 100%;
  background-color: #4CAF50;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
}

///////////////////
/* 🔹 Container scroll */
.tiket-list-container {
  max-height: 60vh;
  overflow-y: auto;
  padding: 5px 6px 20px 0;
}

/* 🔹 Popup */
.tiket {
  display: none;
  position: fixed;
  z-index: 995;width: 100%;max-width:600px;height: 80vh;
  bottom: 0;
  align-items: flex-end;
  justify-content: center;
}

.tiket-content {
  background: #fff;
  border-radius: 15px 15px 0 0;
  width: 90%;
  max-width: 550px;
  height: 80vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 20px;
  padding-bottom: 90px;
  margin: 0 auto;
  position: relative;
  animation: slideUp 0.4s ease;
  box-shadow: 0 0 0 9999px rgba(0,0,0,0.5);
}

.tiket-content h3 {
  margin: 0;
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
  z-index: 10;
}

/* 🔹 Close button klasik (pojok kanan) */
.tiket .close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 30px;
  cursor: pointer;
  color: #000;
  z-index: 11;
}

/* 🔹 Tiket item */
.tiket-item {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 12px;
  background: #fafafa;
}

.tiket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
}

.tiket-header .harga {
  color: #149031;
  font-weight: bold;
}

/* 🔹 Deskripsi kecil + icon */
.tiket-deskripsi {
  font-size: 10px;
  color: #444;
  margin: 6px 0 10px;
  line-height: 1.4;
}

/* 🔹 Opsi jumlah tanggal */
.tiket-opsi {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.tiket-opsi .jumlah {
  display: flex;
  align-items: center;
  gap: 4px;
}

.tiket-opsi .jumlah input[type=&quot;number&quot;] {
  width: 40px;     
  text-align: center;
  padding: 4px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

/* Wrapper tanggal biar rapi */
.tanggal {
  position: relative;
  display: inline-block;
}

.tanggal input[type=&quot;date&quot;] {
  width: 130px;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  color: #444;
  background: #fff;
}

/* Placeholder custom */
.tanggal .placeholder {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 13px;
  pointer-events: none;
  transition: 0.2s ease;
}

/* Kalau ada value, placeholder menghilang */
.tanggal input[type=&quot;date&quot;]:valid + .placeholder,
.tanggal input[type=&quot;date&quot;]:focus + .placeholder {
  top: 4px;
  font-size: 11px;
  color: #666;
}

.tiket-opsi button {
  background: #eee;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

.tiket-opsi button:hover {
  background: #ddd;
}

/* 🔹 Tombol pesan */
.btn-pesan {
  width: 100%;
  background: #149031;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}

.btn-pesan:hover {
  background: #0f7527;
}

/* 🔹 Notifikasi */
.notif-sukses, .notif-error {
  margin-top: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.notif-sukses {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.notif-error {
  position: fixed;
  top: 1%;
  left: 50%;
  transform: translate(-50%, -100%); /* mulai di luar layar */
  background: white;
  color: #000;
  padding: 10px 20px;
  border-radius: 6px;
  box-shadow: 0 0 0 9999px rgba(0,0,0,0.7);
  width: 300px;text-align:center;
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0; /* awalnya transparan */
  z-index: 9999;
  font-size: 14px;
}

/* Kalau notif aktif, tambah class .show */
.notif-error.show {
  transform: translate(-50%, 0); /* turun ke posisi normal */
  opacity: 1;
}


.notif-sukses.show, .notif-error.show {
  opacity: 1;
  max-height: 500px;
}

/* 🔹 Animasi popup */
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

///////////////////////////
.parent {
    display: grid;
    grid-template-columns: 50%;
    grid-template-rows: auto auto; 
    gap: 12px;
    max-width: 600px;
    margin: 10px auto;
    padding: 10px;
    box-sizing: border-box;
}

/* Kotak umum */
.parent &gt; div {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    color: white;
    padding: 16px;
}

/* Teks kanan atas */
.text {
    position: absolute;
    top: 12px;
    right: 12px;
    font-weight: bold;
    padding: 10px;
    text-align: right;
}
  

/* Font tiap div */
.div1 .text { font-size: 20px; }
.div2 .text { font-size: 16px; }
.div3 .text { font-size: 12px;color:#000 }

/* Gambar kiri bawah */
.img-bottom-left {
    position: absolute;
    bottom: -10px;
    right: -20px;
    width: 100%;
    height: auto;
}

.div1 { background-color: #007BFF; height: 250px; grid-row: span 2; }
.div2 { background-color: #28A745; height: 180px; }
.div3 { background-color: #ccc; height: 25px; }


.div2 { grid-column: 2; grid-row: 1; }
.div3 { grid-column: 2; grid-row: 2; }

////////////////////
/* ==== HEADER ==== */
.umkm-header {
  display: flex;margin-bottom:-10px;
  justify-content: space-between;
  align-items: center;
  background: none;
  padding: 10px;
  color: white;
  font-weight: bold;
}
.header-umkm {
  display: flex;color:green;
  align-items: center;
  gap: 6px;
}
.umkm-icon {
  font-size: 1.2rem;color:green;
}

.travel-header {
  display: flex;margin-bottom:-10px;
  justify-content: space-between;
  align-items: center;
  background: none;
  padding: 10px;
  color: white;
  font-weight: bold;
}
.header-travel {
  display: flex;color:green;
  align-items: center;
  gap: 6px;
}
.travel-icon {
  font-size: 1.2rem;color:green;
}
  
/* ==== LIST CARD ==== */
.umkm-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 10px;
}

/* ==== CARD STYLE ==== */
.umkm-card {
  position: relative;
  height: 200px;
  border-radius: 14px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  box-shadow: 0px 27px 13px -28px rgba(0,0,0,0.61);
  display: flex;
  align-items: flex-end;
  transition: transform 0.3s ease;
}

/* Overlay Gradasi */
.umkm-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0) 40%);
  z-index: 1;
}

/* Info di atas gambar */
.umkm-info {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 12px;
  width: 100%;
  font-family: &quot;Bricolage Grotesque&quot;, sans-serif;
}
.umkm-info h3 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
}
.umkm-info .harga {
  font-size: 14px;display:none;
  opacity: 0.9;
  margin-top: 2px;
}
.umkm-info .deskripsi {
  font-size: 12px;
  margin-top: 2px;
  line-height: 1.4;
  opacity: 0.85;
}

/////////////////////
  #tabs {
    display: flex;width:100%;
    justify-content: right;
  }

  #tabs button {
    flex: 1;
    padding: 10px 50px;
    margin: 0 5px;
    border: none;
    border-radius: 8px;
    background: #e0e0e0;
    color: #333;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;font-family: &#39;Bricolage Grotesque&#39;, sans-serif;
  }

  #tabs button.active {
    background: #149031;
    color: white;
  }

  .section {
    display: none;
  }

  .section.active {
    display: block;
  }

  h2 {
    margin-bottom: 12px;
    color: #333;
  }

  label {
    display: block;
    margin-top: 10px;
    margin-bottom: 4px;
    font-weight: bold;
  }

  select, input, textarea {
    width: 100%;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #fafafa;
    margin-bottom: 10px;
    box-sizing: border-box;
  }

  textarea {
    resize: none;
  }

  button#pesanBtn, button#pesanRentalBtn {
    width: 100%;
    background: #149031;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
  }

  button#pesanBtn:hover, button#pesanRentalBtn:hover {
    background: #0f6f25;
  }

  /* Seat Map */
  #seat-map {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px 0 20px;
  }

  .seat-row {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
  }

  .seat {
    width: 40px;
    height: 40px;
    background: #149031;
    margin: 0 5px;
    border-radius: 6px;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
  }

  .seat:hover {
    background: #149031;
  }

  .seat.selected {
    background: #69cdff;color:#000;
  }

  .seat.booked {
    background: #999;
    cursor: not-allowed;
  }

  .seat.empty {
    background: transparent;
    cursor: default;
  }

  .seat.driver {
    background: #444;
  }

//////////////////////
  .accordion {
    width: 100%;
    max-width: 500px;
    margin: 10px auto;padding-bottom:40px;
    font-family: &#39;Bricolage Grotesque&#39;, sans-serif;
  }

  .accordion-item {
    border-bottom: 1px solid #ddd;
  }

  .accordion-header {
    width: 100%;
    padding: 10px;
    background: #fff;font-family: &#39;Bricolage Grotesque&#39;, sans-serif;
    font-size: 16px;
    font-weight: 600;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .chevron {
    transition: transform 0.3s ease;
  }

  .accordion-content {
    max-height: 0;
    overflow: hidden;
    background: #fff;font-size:12px;
    padding: 0 10px;color:474747;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .accordion-content p {
    margin: 10px 0;
  }

  .accordion-item.active .accordion-content {
    max-height: 100%;
    padding: 15px;
  }

  .accordion-item.active .chevron {
    transform: rotate(90deg);
  }

////////////////////
.kalua {
  font-family: "Bricolage Grotesque", sans-serif;
    position: relative;
    background: none;
    color: black;
    border: none;
    font-size: 18px;
    font-weight: 300;
    cursor: pointer;
}

.fasilitas-list,
.fasilitas-negatif {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 8px 0;
  list-style: none;
}

/* positif (hijau) */
.fasilitas-list li {
  display: flex;
  align-items: center;
  background: #e6f4ea; /* hijau lembut */
  color: #1b5e20;
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 10px;
}

.fasilitas-list li i {
  margin-right: 6px;
  color: #2e7d32; /* icon hijau */
}

/* negatif (merah) */
.fasilitas-negatif li {
  display: flex;
  align-items: center;
  background: #fdecea; /* merah lembut */
  color: #b71c1c;
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 10px;
}

.fasilitas-negatif li i {
  margin-right: 6px;
  color: #d32f2f; /* icon merah */
}