  html,
  body {
      max-width: 100%;
      overflow-x: hidden;
  }

  /* FONT SETUP */
  @font-face {
      font-family: 'Spline Sans';
      src: url('SplineSansAll.ttf') format('truetype');
      font-weight: 300 700;
      /* Light, Regular, Medium, SemiBold, Bold */
  }

  /* GENERAL STYLES */
  :root {
      --primary-yellow: #F9E800;
      --primary-red: #D81E1E;
      --text-dark: #1a1a1a;
      --text-light: #fff;
      --border-color: #e0e0e0;
  }

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

  body {
      font-family: 'Spline Sans', sans-serif;
      color: var(--text-dark);
      background-color: #fff;
  }

  .container {
      width: 95%;
      margin: 0 auto;
  }

  a {
      text-decoration: none;
      color: inherit;
  }

  button {
      font-family: 'Spline Sans', sans-serif;
      cursor: pointer;
      background: none;
      border: none;
  }

  /* HEADER */
  /*
========================================
  HEADER STYLES (REVISED)
========================================
*/
  .header {
      /* Menghapus border bawah dari header lama */
      border-bottom: none;
  }

  .arrow-pagination {
      height: 24px;
      width: 24px;
  }

  .header-main {
      border-bottom: 1px solid black;
  }

  .header-main .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 80px;
      /* Tinggi header utama */
  }

  .header-left,
  .header-right {
      display: flex;
      align-items: center;
      gap: 40px;
  }

  .logo img {
      height: 55px;
      display: block;
      /* Mencegah spasi ekstra */
  }

  .nav-main,
  .nav-user {
      display: flex;
      gap: 30px;
      font-weight: 600;
      font-size: 20px;
      text-transform: uppercase;
  }

  .nav-main {
      padding-left: 180px;
  }

  .nav-main a.active {
      font-weight: 600;
  }

  .lang-switcher span {
      color: #888;
  }

  /* Breadcrumb Bar */
  .breadcrumb-bar {
      border-bottom: 1px solid black;
  }

  .breadcrumb-bar .container {
      height: 40px;
      display: flex;
      align-items: center;
      font-size: 0.8rem;
      font-weight: 500;
      text-transform: uppercase;
  }

  .breadcrumb-bar .container-2 {
      justify-content: space-between;
  }

  .breadcrumb-bar a {
      text-decoration: underline;
  }

  .breadcrumb-bar span {
      color: #888;
      font-size: 18px;
      margin-left: 8px;
  }

  .breadcrumb-bar a {
      margin-right: 8px;
      font-size: 18px;
  }

  .breadcrumb-bar nm {
      font-size: 18px;
      font-weight: 400;
  }

  .breadcrumb-bar a:hover {
      text-decoration: none;
  }

  .cart-mobile {
      font-weight: 600;
      font-size: 16px;
      display: block;
  }

  .cart-mobile-menu {
      font-weight: 600;
      font-size: 16px;
      display: block;
  }

  /* Mobile Header (Sembunyikan nav desktop dan tampilkan hamburger) */
  .menu-toggle {
      display: none;
  }

  @media (max-width: 1024px) {

      .nav-main,
      .nav-user {
          display: none;
      }

      .header-left {
          gap: 0;
      }

      /*.header .container { justify-content: space-between; }*/
      .menu-toggle {
          display: block;
          margin-right: 20px;
      }
  }




  /* FOOTER */
  .footer {
      padding: 30px 0;
      border-top: 1px solid black;
      display: block;
  }

  .footer .container {
      text-align: center;
      font-size: 0.9rem;
  }

  .footer-top {
      margin-bottom: 20px;
  }

  .lang-switcher {
      margin-bottom: 30px;
      font-weight: 600;
  }

  .active-lang {
      font-weight: 600;
  }

  .inactive-lang {
      font-weight: 600;
      color: #888;
  }

  .footer-links {
      display: flex;
      flex-direction: column;
      margin-bottom: 30px;
  }

  .lang-switcher a {

      text-decoration: none;
  }

  .footer-links a {
      margin: 0 10px;
      font-weight: 500;
  }

  .footer-bottom {
      margin-bottom: 20px;
      /*line-height: 1.5;*/
  }

  .footer-bottom p {
      font-weight: 500;
  }

  .copyright {
      font-size: 16px;
      color: black;
      display: flex;
      justify-content: center;
      gap: 5px;
  }

  .copyright-desktop {
      font-size: 18px;
      color: black;
      display: flex;
      /*justify-content: center;*/
      gap: 5px;
  }

  .footer-desktop {
      display: none;
  }

  .more-btn {
      padding-top: 30px;
      display: none;
  }

  .more-btn-1 {
      padding-top: 20px;
      display: block;
  }

  /* DESKTOP STYLES - Media Query */
  @media (min-width: 1024px) {
      .container {
          width: 98%;
      }

      .more-btn {
          padding-top: 30px;
          display: block;
      }

      .more-btn-1 {
          padding-top: 30px;
          display: block;
      }

      .footer-desktop {
          display: block;
          padding-top: 30px;
          padding-bottom: 30px;
          border-top: 1px solid black;
      }

      .group-footer {
          display: flex;
          justify-content: space-between;
      }

      .address-footer {
          font-size: 18px;
      }

      .item-footer {
          display: flex;
          flex-direction: column;
          gap: 30px;
      }

      .cart-mobile {
          font-weight: 600;
          font-size: 16px;
          display: none;
      }

      .cart-mobile-menu {
          font-weight: 600;
          font-size: 16px;
          display: none;
      }

      .arrow-pagination {
          height: 32px;
          width: 32px;
      }

      /* HEADER - DESKTOP */
      .menu-toggle {
          display: none;
      }

      .logo-mobile {
          display: none;
      }

      .logo-desktop {
          display: block;
      }

      .logo-desktop img {
          height: 24px;
      }

      .nav-desktop {
          display: flex;
          gap: 25px;
      }

      .header .container {
          /* justify-content: space-between;*/
          /*height: 80px;*/
      }

      .header-left {
          gap: 40px;
      }

      .header-right {
          gap: 40px;
      }

      .nav-desktop a {
          font-weight: 500;
      }

      .nav-desktop a.active {
          padding-bottom: 5px;
          border-bottom: 2px solid var(--text-dark);
      }


      /* WHAT'S ON - DESKTOP */
      /*.whats-on { padding: 80px 0; }*/
      .whats-on h2 {
          font-size: 1.5rem;
      }

      .see-more-mobile {
          display: none;
      }

      /* RECAP - DESKTOP */
      .recap {
          padding: 80px 0;
      }

      .recap .container {
          display: flex;
          gap: 50px;
          align-items: center;
          text-align: left;
          max-height: 521px;
      }

      .recap-image {
          flex: 1;
      }

      .recap-content {
          flex: 1;
          max-width: 465px;
      }

      .recap-content h2 {
          font-size: 24px;
      }

      .recap-nav {
          justify-content: flex-start;
      }

      /* FOOTER - DESKTOP */
      .footer {
          display: none
      }

      .footer .container {
          text-align: left;
      }

      .footer-top {
          display: flex;
          justify-content: space-between;
          align-items: center;
      }

      .footer-bottom {
          display: flex;
          justify-content: space-between;
          align-items: center;
          margin-bottom: 30px;
      }

      .lang-switcher,
      .footer-bottom p {
          margin: 0;
      }
  }


  /*
========================================
  POPUP / MODAL STYLES
========================================
*/

  /* 1. Overlay (Latar Belakang Gelap) */
  .popup-overlay {
      position: fixed;
      /* Menempel di viewport */
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      /* Warna overlay semi-transparan */

      /* Menggunakan flexbox untuk memposisikan konten di tengah */
      display: flex;
      align-items: center;
      justify-content: center;

      z-index: 1000;
      /* Pastikan berada di atas semua elemen lain */
      opacity: 1;
      visibility: visible;
      transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  /* Kelas untuk menyembunyikan popup */
  .popup-overlay.is-hidden {
      opacity: 0;
      visibility: hidden;
  }

  /* 2. Konten Popup (Kotak Putih) */
  .popup-content {
      background-color: #fff;
      border: 1px solid #ccc;
      padding: 40px;
      max-width: 600px;
      /* Lebar maksimum popup */
      width: 90%;
      /* Lebar di layar kecil */
      position: relative;
      /* Agar tombol close bisa diposisikan di dalamnya */

      /* Efek transisi saat muncul */
      transform: scale(1);
      transition: transform 0.3s ease;
  }

  .popup-overlay.is-hidden .popup-content {
      transform: scale(0.95);
  }

  /* 3. Tombol Close (X) */
  .popup-close {
      position: absolute;
      top: 20px;
      right: 20px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 5px;
  }

  .popup-close svg {
      width: 24px;
      height: 24px;
      color: #333;
  }

  /* 4. Styling Teks di Dalam Popup */
  .popup-status {
      color: #D81E1E;
      /* Merah */
      font-weight: 700;
      font-size: 0.8rem;
      text-transform: uppercase;
      margin-bottom: 20px;
  }

  .popup-instructor {
      font-size: 0.9rem;
      margin-bottom: 5px;
  }

  .popup-title {
      font-size: 2rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 30px;
  }

  .popup-schedule {
      margin-bottom: 30px;
      font-size: 1rem;
      line-height: 1.6;
  }

  .popup-description {
      line-height: 1.6;
      margin-bottom: 40px;
  }

  /* 5. Tombol Aksi (BOOK A CLASS) */
  .popup-action-btn {
      width: 100%;
      padding: 16px;
      background-color: #fff;
      border: 1px solid #000;
      font-weight: 700;
      font-size: 0.9rem;
      text-transform: uppercase;
      cursor: pointer;
      transition: background-color 0.2s, color 0.2s;
  }

  .popup-action-btn:hover {
      background-color: #000;
      color: #fff;
  }

  /* Penyesuaian untuk mobile */
  @media (max-width: 768px) {
      .popup-content {
          padding: 25px;
      }

      .popup-title {
          font-size: 1.5rem;
      }

      .logo img {
          height: 35px;
          display: block;
          /* Mencegah spasi ekstra */
      }

      .breadcrumb-bar span {
          color: #888;
          font-size: 16px;
          margin-left: 8px;
      }

      .breadcrumb-bar a {
          margin-right: 8px;
          font-size: 16px;
      }

      .breadcrumb-bar nm {
          font-size: 16px;
          font-weight: 400;
      }
  }