  /* ================= GLOBAL ================= */
    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      background: #fffaf3;
      color: #222;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

/* HEADER */
.header {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo a {
  font-size: 22px;
  font-weight: bold;
  color: #111;
  text-decoration: none;
}

.logo span {
  color: #e44c2a;
}

/* NAV DESKTOP */
.nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
  align-items: center;
}

.nav a,
.dropdown-toggle {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav a:hover,
.dropdown-toggle:hover {
  color: #e44c2a;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.submenu {
  position: absolute;
  top: 45px;
  left: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  min-width: 220px;
  padding: 10px 0;

  display: flex;
  flex-direction: column;

  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: 0.25s ease;
}

.submenu li {
  width: 100%;
}

.submenu li a {
  display: block;
  padding: 12px 18px;
  color: #333;
}

.submenu li a:hover {
  background: #eef2ff;
  color: #e44c2a;
}

.dropdown.active .submenu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.burger span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 4px 0;
}

/* OVERLAY */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  display: none;
  z-index: 900;
}

#overlay.active {
  display: block;
}

/* MOBILE */
@media (max-width: 768px) {

  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    right: -100%;
    top: 0;
    width: 260px;
    height: 100%;
    background: #fff;
    transition: 0.3s;
    z-index: 1001;
    display: flex;
    flex-direction: column;
  }

  .nav.active {
    right: 0;
  }

  /* HEADER MENU MOBILE */
  .nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
    font-weight: 600;
  }

  #closeMenu {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
  }

  .nav ul {
    flex-direction: column;
    width: 100%;
    align-items: flex-start; /* penting */
  }

  .nav li {
    border-bottom: 1px solid #eee;
    width: 100%;
  }

  .nav a,
  .dropdown-toggle {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: left;
    justify-content: flex-start;
    padding-left: 20px; /* biar rapi */
  }

  /* SUBMENU MOBILE */
  .submenu {
    position: static;
    box-shadow: none;
    border-radius: 0;

    max-height: 0;
    overflow: hidden;

    opacity: 0;
    transition: all 0.3s ease;
  }

  .dropdown.active .submenu {
    max-height: 300px; /* cukup untuk isi menu */
    opacity: 1;
  }
}

/* HIDE MENU HEADER DI DESKTOP */
.nav-header {
  display: none;
}

/* TAMPILKAN HANYA DI MOBILE */
@media (max-width: 768px) {
  .nav-header {
    display: flex;
  }
}

    /* ================= HERO ================= */
    .menu-hero img {
      width: 100%;
      display: block;
    }

    /* ================= ABOUT ================= */
    .about {
      background: #4b4b4b;
      color: #fff;

    }

    .body-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .about-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 15px 0;
    }

    .about-logo img {
      max-height: 58px;
      display: block;
    }

    .about-info {
      flex: 1;
      min-width: 0;
    }

    .about-info h1 {
      font-size: 22px;
      margin: 0 0 4px;
      line-height: 1.2;
    }

    .about-info p {
      margin: 2px 0;
      font-size: 14px;
      color: #e0e0e0;
    }

    .about-info a {
      color: #fff;
      text-decoration: underline;
    }

    .about-cta a {
      background: #e44c2a;
      color: #fff;
      padding: 12px 18px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 14px;
      white-space: nowrap;
      display: inline-block;
    }

    .about-cta a:hover {
      background: #cc3f21;
    }

    /* ================= MENU ================= */
    .menu-section {
      padding: 40px 0;
    }

    .menu-box {
      max-width: 900px;
      margin: auto;
      background: #fff;
      padding: 30px;
      border-radius: 6px;
    }

    .menu-box h2 {
      text-align: center;
      margin: 25px 0;
      font-size: 22px;
    }

    .menu-item {
      display: flex;
      justify-content: space-between;
      padding: 15px 0;
      border-bottom: 1px dashed #ccc;
    }

    .menu-item h3 {
      margin: 0;
      color: #d84315;
      font-size: 16px;
    }

    .menu-item p {
      margin: 5px 0 0;
      font-size: 14px;
      color: #666;
    }

    .menu-item span {
      font-weight: bold;
      white-space: nowrap;
    }

    /* ================= BUTTONS ================= */
    .menu-buttons {
      display: flex;
      gap: 15px;
      justify-content: center;
      margin-top: 30px;
      flex-wrap: wrap;
    }

    .btn-outline {
      border: 2px solid #e44c2a;
      color: #e44c2a;
      padding: 12px 25px;
      text-decoration: none;
      border-radius: 4px;
      font-weight: bold;
    }

    .btn-solid {
      background: #e44c2a;
      color: #fff;
      padding: 12px 25px;
      text-decoration: none;
      border-radius: 4px;
      font-weight: bold;
    }

    /* ================= RESPONSIVE ================= */
    @media (max-width: 768px) {
      .about-wrap {
        flex-direction: column;
        align-items: flex-start;
      }

      .about-cta {
        width: 100%;
      }

      .about-cta a {
        width: 100%;
        text-align: center;
      }

      .menu-item {
        flex-direction: column;
        gap: 8px;
      }

      .menu-item span {
        align-self: flex-end;
      }

      .menu-buttons {
        flex-direction: column;
      }
    }

    /* ================= OUR STORY ================= */
.story-section {
  background: #fff;
  padding: 60px 0;
}

.story-wrap {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.story-left {
  display: flex;
  gap: 25px;
}

.story-left img {
  width: 120px;
  height: auto;
  border-radius: 4px;
}

.story-text h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.story-text p {
  margin: 6px 0;
  font-size: 14px;
  color: #555;
}

.story-right {
  border-left: 1px dashed #ccc;
  padding-left: 25px;
}

.story-right ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.story-right li {
  margin-bottom: 15px;
  font-size: 14px;
}

.story-right span {
  display: block;
  color: #777;
  font-size: 13px;
}

.order-link {
  color: #e44c2a;
  font-weight: bold;
  text-decoration: none;
}

/* ================= SLICE FOOT BAR ================= */
.slice-footer-bar {
  background: #4b4b4b;
  color: #fff;
  padding: 25px 0;
}

.slice-footer-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.slice-footer-wrap img {
  height: 50px;
}

.slice-footer-wrap strong {
  display: block;
}

.slice-footer-wrap p {
  margin: 3px 0 0;
  font-size: 14px;
  color: #ddd;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .story-wrap {
    grid-template-columns: 1fr;
  }

  .story-left {
    flex-direction: column;
  }

  .story-right {
    border-left: none;
    padding-left: 0;
    border-top: 1px dashed #ccc;
    padding-top: 20px;
  }

  .slice-footer-wrap {
    flex-direction: column;
    text-align: center;
  }
}


/* ================= ARTIKEL ================= */

.article-section {padding: 40px 0;}
.article-wrap {display:flex; gap:30px; align-items:flex-start; flex-wrap:wrap;}
.article-main {flex:2; min-width:300px;}
.article-main h1 {text-align:left; margin-bottom:25px;}
.article-post {margin-bottom:30px; border:1px solid #eee; border-radius:8px; overflow:hidden; transition:0.3s; background:#fff;}
.article-post img {width:100%; display:block;}
.article-list {padding:18px;}
.article-list h2 {text-align: left;  margin:0 0 10px; font-size:20px; line-height:1.4;}
.article-list h2 a { text-decoration:none; color:#222;}
.article-list h2 p { color:#666; font-size:14px; margin-bottom:15px;}
.article-container {max-width: 1200px;margin: 0 auto;padding: 0 20px;}

/* ================= SIDEBAR PREMIUM ================= */

.sidebar-box {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 25px;
  border: 1px solid #eee;
}

.sidebar-box h3 {
  margin: 0 0 15px;
  font-size: 18px;
  border-bottom: 2px solid #f3f3f3;
  padding-bottom: 8px;
}

.sidebar-search {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

/* RECENT POST */
.sidebar-post {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 15px;
}

.sidebar-post img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
}

.sidebar-post a {
  text-decoration: none;
  color: #222;
  font-size: 14px;
  font-weight: 500;
}

.sidebar-post a:hover {
  color: #e44c2a;
}

/* ================= FOOTER PREMIUM ================= */

.footer {
  background: #111;
  color: #ddd;
  padding-top: 50px;
}

.footer-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-col h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #bbb;
  text-decoration: none;
  font-size: 14px;
}

.footer-col ul li a:hover {
  color: #e44c2a;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 30px;
  padding: 15px 0;
  font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }
}