* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


body {
    font-family: 'Inter', sans-serif;
    background: #f8f9fa;
    color: #08424d;
    line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 30px 0;
}

h1, h2, h3 {
  font-weight: 600;
  letter-spacing: -0.3px;
}

h2 {
  font-size: 22px;
  margin-bottom: 16px;
}

h3 {
  font-size: 20px;
  margin-bottom: 16px;
}


p {
  color: #555;
}



/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgb(244, 251, 251);
    padding: 1rem 4rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo span {
    color: #ff6600;
}

.logo img {
    margin-left: 10px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}
nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}
nav a:hover {
    color: #001eff;
}
.header-buttons .btn {
    background: #08424D;
    border: none;
    padding: 0.6rem 1.2rem;
    color: white;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.3s;
}
.header-buttons .btn:hover {
    background: #cc5200;
}
.btn-secondary {
    background: transparent;
    border: 1px solid #ff6600;
    padding: 0.5rem 1rem;
    color: #ff6600;
    cursor: pointer;
}
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.chat-whatsapp {
    position: fixed;
    bottom: 96px; /* 🔥 di atas CTA */
    right: 20px;
    background: #25d366;
    color: #fff !important;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    z-index: 998;
    transition: all 0.2s ease-in-out;
}


.chat-whatsapp:hover {
    background: #1ebe5d;
    transform: scale(1.05);
}

.chat-whatsapp img {
    width: 24px;
    height: 24px;
}


/* ===== Glassmorphism Sidebar ===== */

.sidebar-glass {
    position: fixed;
    top: 0;
    right: -320px; /* hidden */
    width: 300px;
    height: 100%;
    padding: 2rem 1.7rem;
    z-index: 2000;

    /* Glass effect */
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    /* Rounded corner */
    border-radius: 24px 0 0 24px;

    /* Border faint */
    border-left: 1px solid rgba(255, 255, 255, 0.25);

    /* Animation */
    transition: right 0.35s ease;
}

.sidebar-glass ul {
    list-style: none;
    margin-top: 50px;
    padding-left: 0;
}

.sidebar-glass ul li {
    margin-bottom: 1.4rem;
}

.sidebar-glass ul li a {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;

    /* White glow */
    text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

.close-btn {
    font-size: 1.9rem;
    cursor: pointer;
    text-align: right;
    color: #fff;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(2px);
    z-index: 1500;
    display: none;
}

/* Hamburger Icon */
.menu-toggle {
    display: none;
    font-size: 2.3rem;
    cursor: pointer;
    color: #08424D;
}

@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
}

/* FOOTER */
footer {
    background:#0b5b5b;
    color: rgb(243, 242, 245);
    padding: 2rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer-links a {
    color: #f0af1d;
    text-decoration: none;
}

/* RESPONSIVE MENU */
@media(max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        background: white;
        position: absolute;
        top: 60px;
        right: 0;
        padding: 2rem;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        border-top: 1px solid #eee;
        animation: fadeSlide 0.3s ease forwards;
    }
    nav ul.show {
        display: flex;
    }
   .menu-toggle {
        position: absolute;
        display:block;
        right: 1rem;  /* geser sampai pinggir */
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.8rem;
        cursor: pointer;
        user-select: none;
        transition: 0.3s ease;
    }
/* ANIMASI */
    @keyframes fadeSlide {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
}

@media (max-width: 768px) {
    header {
        padding-left: 5px !important;
    }

    .logo {
        margin-left: 5px !important;
        padding-left: 5px !important;
    }

    .logo img {
        display: block;
        margin-left: 5px
    }
}


.hidden {
  display: none
}

/* =========================
   HEADER
========================= */
.tb-header {
  background: #ffffff;
  padding: 1rem 4rem;
  border-bottom: 1px solid #e5e7eb;
}

.tb-header h1 {
  font-size: 24px;
  font-weight: 700;
}

.tb-header p {
  font-size: 14px;
  color: #64748b;
  margin-top: 4px;
}

/* =========================
   CONTAINER
========================= */
.tb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 20px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

/* =========================
   STEPS
========================= */
.tb-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tb-step {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.tb-step h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;      /* 🔥 INI KUNCI */
  padding-bottom: 2px;  /* ruang aman huruf bawah */
}

@media (max-width: 768px) {
  .tb-step:first-child {
    margin-top: 1.5rem;
  }
}

/* =========================
   OPTIONS
========================= */
.tb-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tb-options button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  font-size: 14px;
  cursor: pointer;
  transition: all .2s ease;
}

.tb-options button:hover {
  border-color: #0f172a;
}

.tb-options button.active {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

/* =========================
   OPTION GRID (CARDS)
========================= */
/* GRID DESTINASI */
#destinationList.tb-option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}


.tb-option-card {
  border: 1px solid #ddd;
  padding: 16px;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: all .2s ease;
}

/* CARD DESTINASI */
#destinationList .tb-option-card {
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  cursor: pointer;
  transition: all .2s ease;

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 44px;
}
#destinationList .tb-option-card:hover {
  border-color: #f7f8f9;
}

#destinationList .tb-option-card.active {
  background: #0f172a;
  border-color: #0f172a;
}

#destinationList .tb-option-card h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;

  text-transform: capitalize;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* DESTINATION ACTIVE STATE */
#destinationList .tb-option-card.active {
  background: #0f172a;
  border-color: #0f172a;
}

#destinationList .tb-option-card.active h3 {
  color: #ffffff;
}





.tb-option-grid .card p {
  font-size: 12px;
  color: #64748b;
  margin-top: 4px;
}

/* =========================
   FIELD
========================= */
.tb-field input,
.tb-field select {
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font-size: 14px;
}

.tb-field small {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #64748b;
}

/* =========================
   INFO
========================= */
.tb-info {
  font-size: 13px;
  color: #475569;
  margin-bottom: 12px;
}

/* =========================
   SUBSTEP
========================= */
.tb-substep {
  margin-top: 12px;
}

/* =========================
   SUMMARY
========================= */
.tb-summary {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: sticky;
  top: 20px;
  height: fit-content;
}

.tb-summary h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.tb-summary-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.tb-summary-list li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.tb-summary-list span {
  color: #64748b;
}

.tb-price {
  border-top: 1px dashed #e5e7eb;
  padding-top: 16px;
  margin-top: 16px;
}

.tb-price p {
  font-size: 13px;
  color: #64748b;
}

.tb-price h3 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 4px;
}

/* =========================
   BUTTON
========================= */
.tb-btn-primary {
  margin-top: 20px;
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: #0f172a;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.tb-btn-primary:hover {
  background: #020617;
}

/* =========================
   FOOTER
========================= */
.tb-footer {
  text-align: center;
  padding: 24px 0;
  font-size: 13px;
  color: #64748b;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 900px) {

  .tb-container {
    grid-template-columns: 1fr;
    padding-bottom: 120px;
  }

  .tb-summary {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
    z-index: 10;
  }

  .tb-summary-list {
    display: none;
  }

  .tb-price h3 {
    font-size: 20px;
  }

  .tb-btn-primary {
    margin-top: 12px;
  }
}

.tb-prestep {
  border-left: 5px solid #0f172a;
}




.tb-option-card.active {
  border-color: #0d6efd;
  background: #f0f6ff;
}

.tb-step.locked {
  opacity: .4;
  pointer-events: none;
}

.tb-option-btn {
  border: 1px solid #ddd;
  background: #fff;
  padding: 14px 16px;
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
}

.tb-option-btn small {
  display: block;
  opacity: .6;
  font-size: 13px;
}

.tb-option-btn.active {
  border-color: #1d4ed8;
  background: #eff6ff;
  font-weight: 600;
}

#dayTypeOptions .tb-option-btn.active {
  border-color: #0f172a;
  background: #0f172a;
  color: #fff;
}

#dayTypeOptions .tb-option-btn.active small {
  color: #e5e7eb;
}


[data-step="5"] .tb-option-btn.active,
[data-step="5"] button.active {
  border-color: #0f172a;
  background: #0f172a;
  color: #fff;
}
/* === DESTINATION OPTIONS (COMPACT) === */

.tb-option-grid .card h4 {
  text-transform: capitalize;
  line-height: 1.2;
  white-space: nowrap;
}

.tb-step[data-step="1"] .tb-option-grid {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.tb-step[data-step="1"] .card {
  min-height: 44px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}



.tb-step[data-step="1"] .card h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  text-transform: capitalize;
  white-space: nowrap;
}


.tb-step[data-step="1"] .card p {
  display: none; /* destinasi gak perlu deskripsi */
}

.tb-link-btn {
  margin-top: 8px;
  font-size: 13px;
  background: none;
  border: none;
  color: #0f172a;
  cursor: pointer;
  padding: 0;
}


.tb-option-card.active {
  border: 2px solid #1e88e5;
  background: #e3f2fd;
}

.tb-option-card.disabled {
  opacity: 0.5;
  pointer-events: none;
}


/* ===============================
   ACCOMMODATION ROOM – COMPACT
================================ */

#accommodationUnitList .tb-option-card {
  padding: 10px 12px;
  border-radius: 12px;
  box-shadow: none;
}

#accommodationUnitList .tb-option-card h3 {
  font-size: 20px;       /* dari sebelumnya ±18–20px */
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 4px;
}

#accommodationUnitList .tb-option-card p {
  font-size: 12px;
  line-height: 1.4;
  color: #6b7280;
  margin: 0;
}

/* ===============================
   ROOM GRID LAYOUT
================================ */

#accommodationUnitList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}

#accommodationUnitList .tb-option-card {
  padding: 10px;
  border-radius: 12px;
  box-shadow: none;
  border: 1px solid #e5e7eb;
  background: #fff;
}

#accommodationUnitList h3 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}

#accommodationUnitList .room-meta {
  font-size: 11px;
  color: #6b7280;
}


@media (max-width: 1024px) {
  #accommodationUnitList {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  #accommodationUnitList {
    grid-template-columns: 1fr;
  }
}


/* ===============================
   ACCOMMODATION & ACTIVITY LIST
   VERTICAL COMPACT MODE
================================ */

#accommodationList,
#activityList {
  display: flex !important;
  flex-direction: column;
  gap: 10px;
}


#accommodationList .tb-option-card h3,
#activityList .tb-option-card h3 {
  font-size: 15px;
  margin: 0;
}

#accommodationList .tb-option-card p,
#activityList .tb-option-card p {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

#accommodationList .tb-option-card:hover,
#activityList .tb-option-card:hover {
  border-color: #0f172a;
  background: #f8fafc;
}

#accommodationList .tb-option-card.active,
#activityList .tb-option-card.active {
  border-color: #0845d3;
  background: #eef2ff;
}

.tb-option-card.disabled {
  opacity: 0.5;
  pointer-events: none;
  background: #f9fafb;
}

.activity-badge {
  margin-top: 4px;
  font-size: 11px;
  color: #b45309;
  background: #fef3c7;
  padding: 2px 8px;
  border-radius: 999px;
  align-self: flex-start;
}

/* ===============================
   VEHICLE SELECTION (TRANSPORT)
   =============================== */

#vehicleWrap {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Satu baris kendaraan */
.vehicle-row {
  display: grid;
  grid-template-columns: 1fr 90px;
  align-items: center;
  gap: 12px;

  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #ffffff;
}

/* Label kendaraan */
.vehicle-label {
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  line-height: 1.4;
}

/* Input unit */
.vehicle-row input {
  width: 100%;
  height: 38px;
  padding: 6px 10px;

  border-radius: 8px;
  border: 1px solid #d1d5db;

  font-size: 14px;
  text-align: center;
}

.vehicle-row input:focus {
  outline: none;
  border-color: #111827;
  box-shadow: 0 0 0 2px rgba(17, 24, 39, 0.08);
}

@media (max-width: 640px) {
  .vehicle-row {
    grid-template-columns: 1fr;
  }

  .vehicle-row input {
    text-align: left;
  }
}

.vehicle-row input::placeholder {
  color: #9ca3af;
  font-size: 13px;
}

.vehicle-row:hover {
  border-color: #c7d2fe;
  background: #f9fafb;
}

.vehicle-row.active {
  border-color: #111827;
  background: #f3f4f6;
}


.vehicle-row.invalid {
  border: 1px solid #e74c3c;
  background: #fff5f5;
}

.vehicle-row.valid {
  border: 1px solid #2ecc71;
  background: #f4fff8;
}

.vehicle-warning {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 8px;

  background: #fff1f1;
  border: 1px solid #e74c3c;
  color: #c0392b;

  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.vehicle-warning::before {
  content: "⚠ ";
  font-weight: 700;
}


.tb-readonly {
  opacity: 0.6;
  position: relative;
}

.tb-readonly::after {
  content: "Ubah akan menghapus pilihan setelahnya";
  position: absolute;
  top: 6px;
  right: 10px;
  font-size: 11px;
  color: #ff9800;
}


.unit-capacity-info {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: #6b7280;
}

.unit-capacity-info.valid {
  color: #16a34a;
  font-weight: 600;
}


.unit-counter {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.unit-counter button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #eef2ff;
  color: #4f46e5;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
}

.unit-counter button:hover {
  background: #4f46e5;
  color: #fff;
}

.unit-input {
  width: 60px;
  text-align: center;
  font-size: 14px;
  border: none;
  background: #f9fafb;
  border-radius: 10px;
  padding: 6px 0;
}


.meal-row.locked {
  opacity: 0.7;
}
.meal-row.locked::after {
  content: "Include penginapan";
  font-size: 11px;
  color: #2e7d32;
  margin-left: auto;
}


#mealsContainer {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.meal-card {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.meal-head {
  display: flex;
  gap: 12px;
  align-items: center;
}

.meal-icon {
  font-size: 26px;
}

.meal-title {
  font-weight: 600;
}

.meal-price {
  font-size: 13px;
  color: #777;
}

.meal-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
}

.meal-counter button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: #eef2ff;
  font-size: 18px;
  cursor: pointer;
}

.meal-qty {
  min-width: 22px;
  text-align: center;
  font-weight: 600;
}

.meal-unit {
  font-size: 12px;
  color: #666;
}

.meal-card.locked {
  background: #f4fdf8;
  border: 1px solid #cceedd;
}

.meal-locked {
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  color: #1a7f37;
  font-weight: 600;
}

.meal-note {
  margin-left: 6px;
  font-size: 12px;
  color: #16a34a;
  font-weight: 500;
}


/* =========================
   MEALS (KONSUMSI)
   ========================= */

.meal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.meal-label {
  font-size: 14px;
  line-height: 1.3;
}

.meal-label small {
  display: block;
  font-size: 12px;
  color: #6b7280;
  margin-top: 2px;
}

/* counter wrapper */
.meal-row .unit-counter {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* tombol + - */
.meal-row .unit-counter button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: #eef2ff;
  color: #4338ca;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.meal-row .unit-counter button:hover {
  background: #e0e7ff;
}

/* input number */
.meal-row .unit-counter input {
  width: 44px;
  height: 28px;
  font-size: 13px;
  text-align: center;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  padding: 0;
}

/* note sarapan */
.meal-note {
  font-size: 12px;
  color: #16a34a;
  margin-left: 4px;
}


.meal-row .unit-counter button {
  width: 24px;
  height: 24px;
  font-size: 14px;
}

.meal-row .unit-counter input {
  width: 38px;
  height: 24px;
  font-size: 12px;
}

.meal-input-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

.meal-input-wrap input {
  width: 60px;
  text-align: center;
}

.meal-suffix {
  font-size: 12px;
  color: #6b7280;
  white-space: nowrap;
}

.per-pax {
  margin-top: 6px;
  color: #666;
  display: flex;
  justify-content: center;
  gap: 4px;
  font-size: 13px;
}

.per-pax strong {
  font-weight: 600;
}


.summary-sublist {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.summary-sublist li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin: 2px 0;
}

.summary-sublist small {
  color: #666;
}


@media (max-width: 768px) {
  .tb-container {
    display: block;
    padding: 0 14px;
  }

  .tb-steps {
    width: 100%;
  }

  .tb-summary {
    width: 100%;
    margin-top: 24px;
  }
}

.tb-step h2 {
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.tb-field select,
.tb-field input {
  width: 100%;
  min-height: 46px;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 12px;
}

#durationOptions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

#durationOptions .tb-option-btn {
  padding: 14px 6px;
  border-radius: 14px;
  font-size: 13px;
  text-align: center;
}

#durationOptions .tb-option-btn strong {
  display: block;
  font-size: 14px;
}

#durationOptions .tb-option-btn small {
  font-size: 11px;
  opacity: 0.75;
}

#dayTypeOptions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

#dayTypeOptions .tb-option-btn {
  padding: 16px 10px;
  border-radius: 16px;
  text-align: center;
}

#dayTypeOptions strong {
  display: block;
  font-size: 14px;
}

#dayTypeOptions small {
  font-size: 12px;
  opacity: 0.75;
}

.tb-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.tb-options button {
  width: 100%;
  min-height: 46px;
  border-radius: 16px;
  font-size: 14px;
}


.tb-option-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}




@media (max-width: 768px) {
  .tb-summary {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 18px 18px 0 0;
    padding: 16px;
    box-shadow: 0 -6px 20px rgba(0,0,0,.08);
    z-index: 99;
    background: #fff;
  }

  .tb-container {
    padding-bottom: 220px; /* ruang buat summary */
  }
}


.tb-btn-primary {
  width: 100%;
  min-height: 48px;
  font-size: 15px;
  border-radius: 16px;
}


/* =========================
   RUNDOWN
========================= */

#rundownContainer {
  margin-top: 16px;
}

.rundown-day {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

.rundown-day h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #0d6efd;
}

/* LIST RESET */
.rundown-day ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rundown-day li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed #eaeaea;
  position: relative;
  padding-left: 18px;
}

.rundown-day li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #0d6efd;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 18px;
}

.rundown-day li:last-child {
  border-bottom: none;
}

/* TEXT */
.rundown-day li strong {
  font-size: 14px;
  font-weight: 600;
  color: #222;
}

.rundown-day li span {
  font-size: 12px;
  color: #6c757d;
  white-space: nowrap;
}


.rundown-badge {
  background: #f1f3f5;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  color: #495057;
}

.rundown-time {
  font-size: 12px;
  color: #6c757d;
  margin-top: 2px;
}
