:root {
  --bg: #f4f6fb;
  --bg-alt: #f9fafb;
  --bg-card: #ffffff;

  --coffee: #d97757;
  --coffee-soft: #fef3c7;

  --origin: #16a34a;
  --origin-soft: #ecfdf3;

  --processing: #0ea5e9;
  --processing-soft: #e0f2fe;

  --cupping: #a855f7;
  --cupping-soft: #f3e8ff;

  --production: #f97316;
  --production-soft: #fff7ed;

  --social: #dc2626;
  --social-soft: #fee2e2;

  --text-main: #111827;
  --text-muted: #6b7280;
  --border-soft: #e5e7eb;
  --shadow-soft: 0 20px 45px rgba(15, 23, 42, 0.13);
  --radius-xl: 22px;
  --transition-fast: 0.2s ease;
}

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

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(
      circle at top left,
      #ffffff 0,
      #eef2ff 28%,
      transparent 45%
    ),
    radial-gradient(circle at bottom right, #fef9c3 0, #fff 40%, #e5e7eb 95%);
  color: var(--text-main);
  min-height: 100vh;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 20px 40px;
}

/* Top Bar */

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: conic-gradient(from 200deg, #f9fafb, #fef9c3, #fed7aa, #f1f5f9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #78350f;
  box-shadow: 0 10px 24px rgba(148, 163, 184, 0.6);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-sub {
  font-size: 12px;
  color: var(--text-muted);
}

.badge-inline {
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef2ff;
  color: #4f46e5;
  font-size: 11px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 10px 22px rgba(79, 70, 229, 0.35);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.25);
}

/* Hero */

.hero {
  background: linear-gradient(135deg, #ffffff, #f9fafb);
  border-radius: var(--radius-xl);
  padding: 22px 24px 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(226, 232, 240, 0.9);
  margin-bottom: 20px;
}

.hero-main {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
}

.hero-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 6px;
}

.hero-title .accent {
  color: var(--coffee);
}

.hero-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 14px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f3f4ff;
  font-size: 11px;
  color: #4b5563;
}

.tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
}

.hero-right {
  min-width: 260px;
}

.hero-metric {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.metric-card {
  padding: 10px 11px;
  border-radius: 16px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
}

.metric-label {
  font-size: 11px;
  color: #6b7280;
  margin-bottom: 2px;
}

.metric-value {
  font-size: 14px;
  font-weight: 600;
}

.metric-sub {
  font-size: 11px;
  color: #9ca3af;
}

/* Hero footer */

.hero-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed #e5e7eb;
}

.hero-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-step-badge {
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px dashed #e5e7eb;
  background: #f9fafb;
  color: #6b7280;
}

.primary-pill {
  border: none;
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 12px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: radial-gradient(circle at top left, #0f172a, #020617);
  color: #f9fafb;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.45);
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.primary-pill .icon {
  font-size: 14px;
}

.primary-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.55);
}

/* Controls */

.controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.search-box {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(209, 213, 219, 0.85);
  box-shadow: 0 8px 20px rgba(148, 163, 184, 0.3);
}

.search-icon {
  font-size: 14px;
}

.search-box input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 13px;
  background: transparent;
}

.search-clear {
  font-size: 11px;
  cursor: pointer;
  display: none;
  color: #9ca3af;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.filter-chip {
  border-radius: 999px;
  padding: 6px 10px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: rgba(248, 250, 252, 0.95);
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #4b5563;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.filter-chip .filter-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #9ca3af;
}

.filter-chip.active {
  background: #111827;
  color: #f9fafb;
  border-color: #111827;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.45);
}

/* Cards */

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}

/* Card basic */

.card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 13px 13px 10px;
  border: 1px solid rgba(229, 231, 235, 0.95);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast), border-color var(--transition-fast);
  cursor: pointer;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.2);
}

/* Card color accents */

.card[data-category~="origin"] {
  border-top: 3px solid var(--origin);
  background: linear-gradient(145deg, #ffffff, var(--origin-soft));
}

.card[data-category~="processing"] {
  border-top: 3px solid var(--processing);
  background: linear-gradient(145deg, #ffffff, var(--processing-soft));
}

.card[data-category~="cupping"] {
  border-top: 3px solid var(--cupping);
  background: linear-gradient(145deg, #ffffff, var(--cupping-soft));
}

.card[data-category~="production"] {
  border-top: 3px solid var(--production);
  background: linear-gradient(145deg, #ffffff, var(--production-soft));
}

.card[data-category~="social"] {
  border-top: 3px solid var(--social);
  background: linear-gradient(145deg, #ffffff, var(--social-soft));
}

/* Card content */

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.card-title {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-index {
  font-size: 12px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
}

.card-pill {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #4b5563;
  white-space: nowrap;
}

.card-body {
  font-size: 12px;
}

.field-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.field-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.field-label {
  color: #374151;
}

.field-value {
  color: #4b5563;
  text-align: right;
}

.field-value.placeholder {
  color: #9ca3af;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.pill-soft {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(229, 231, 235, 0.95);
}

.pill-soft.text-right {
  margin-left: auto;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
}

.key {
  color: #6b7280;
}

.value {
  font-weight: 500;
}

.hidden {
  display: none !important;
}

/* DETAIL PAGE ------------------------------------------------ */

.detail-page {
  max-width: 1100px;
}

.detail-header {
  margin-bottom: 24px;
}

.detail-back {
  font-size: 13px;
  color: #4b5563;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(248, 250, 252, 0.95);
  border: 1px solid rgba(229, 231, 235, 0.95);
  margin-bottom: 10px;
}

.detail-back:hover {
  background: #ffffff;
}

.detail-title-block .detail-badge {
  font-size: 11px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.detail-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}

.detail-subtitle {
  font-size: 13px;
  color: #6b7280;
  max-width: 640px;
}

/* Section detail */

.detail-section {
  margin-top: 26px;
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(229, 231, 235, 0.95);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
}

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

/* garis warna kategori */
.detail-section-header.origin {
  border-top: 3px solid var(--origin);
  padding-top: 8px;
}

.detail-section-header.processing {
  border-top: 3px solid var(--processing);
  padding-top: 8px;
}

.detail-section-header.cupping {
  border-top: 3px solid var(--cupping);
  padding-top: 8px;
}

.detail-section-header.production {
  border-top: 3px solid var(--production);
  padding-top: 8px;
}

.detail-section-header.social {
  border-top: 3px solid var(--social);
  padding-top: 8px;
}

.detail-section-header h2 {
  font-size: 17px;
  font-weight: 600;
}

.detail-section-desc {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 14px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.detail-card {
  border-radius: 16px;
  border: 1px dashed #e5e7eb;
  padding: 12px 12px 10px;
  background: #f9fafb;
}

.detail-card h3 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.detail-card dl {
  font-size: 12px;
}

.detail-card dt {
  font-weight: 500;
  color: #4b5563;
}

.detail-card dd {
  margin: 0 0 6px 0;
  color: #6b7280;
}

/* Responsive */

@media (max-width: 960px) {
  .hero-main {
    flex-direction: column;
  }

  .hero-right {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page {
    padding-inline: 14px;
  }

  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .controls {
    flex-direction: column;
    align-items: stretch;
  }

  .cards {
    grid-template-columns: minmax(0, 1fr);
  }

  .detail-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* GALLERY PAGE ------------------------------------------------------ */

.gallery-hero {
  background: linear-gradient(135deg, #ffffff, #f5f3ff);
  border-radius: var(--radius-xl);
  padding: 20px 22px 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(226, 232, 240, 0.9);
  margin-bottom: 18px;
}

.gallery-hero-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

.gallery-hero-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 620px;
}

.gallery-hero-meta {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.gallery-pill {
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  color: #4b5563;
}

/* grid */

.gallery-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #020617;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.45);
  cursor: pointer;
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast), filter var(--transition-fast);
}

.gallery-thumb {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.gallery-item video.gallery-thumb {
  background: #020617;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.9),
    rgba(15, 23, 42, 0)
  );
  opacity: 0;
  transition: opacity var(--transition-fast);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px 11px;
  color: #f9fafb;
}

.gallery-item:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.7);
  filter: saturate(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-title {
  font-size: 12px;
  font-weight: 600;
}

.gallery-overlay-meta {
  font-size: 11px;
  color: #e5e7eb;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}

.gallery-type-badge {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.8);
}

/* LIGHTBOX */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 60;
}

.lightbox-inner {
  max-width: 900px;
  width: 92%;
  max-height: 90vh;
  position: relative;
}

.lightbox-media {
  width: 100%;
  max-height: 90vh;
  border-radius: 18px;
  object-fit: contain;
  background: #020617;
}

.lightbox-media:focus {
  outline: none;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: none;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(15, 23, 42, 0.7);
  color: #f9fafb;
  cursor: pointer;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast),
    transform var(--transition-fast);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(15, 23, 42, 0.95);
  transform: translateY(-1px);
}

.lightbox-close {
  top: -40px;
  right: 0;
}

.lightbox-prev {
  left: -44px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: -44px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .lightbox-close {
    top: 8px;
    right: 8px;
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.brand-logo img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
}

/* =========================
   RESPONSIVE – MOBILE
   ========================= */

@media (max-width: 768px) {
  /* Padding halaman & hero lebih ramping */
  .page {
    padding: 16px 12px 32px;
  }

  .hero {
    padding: 20px 16px;
  }

  /* Top bar: logo & badge jadi vertikal biar nggak sempit */
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .badge-inline {
    align-self: flex-start;
  }

  /* Hero: teks di atas, metric di bawah, full width */
  .hero-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .hero-right {
    width: 100%;
  }

  /* Card metric jadi grid rapi, tidak kepaksa melebar */
  .hero-metric {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 kolom di tablet / hp lebar */
    gap: 10px;
  }

  .metric-card {
    flex: 1 1 auto; /* override kalau sebelumnya fixed width */
    min-width: 0;
    padding: 10px 12px;
  }

  /* Judul lebih kecil biar muat */
  .hero-title {
    font-size: 24px;
    line-height: 1.25;
  }

  .hero-subtitle {
    font-size: 13px;
  }
}

/* HP kecil banget: card metric 1 kolom */
@media (max-width: 480px) {
  .hero-metric {
    grid-template-columns: 1fr;
  }
}

/* Floating WhatsApp Button */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wa-float img {
  width: 32px;
  height: 32px;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Mobile responsive */
@media (max-width: 600px) {
  .wa-float {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }

/* Floating WhatsApp Button – versi untuk icon yang sudah bulat */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    /* tidak perlu background lagi, karena wa.png sudah bulat hijau */
    background: transparent;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.20);
    padding: 0;                   /* biar tidak ada lingkaran tambahan */
    transition: transform .25s ease, box-shadow .25s ease;
}

/* Floating WA Button (background hijau, icon putih) */
/* Floating WA Button (ukuran kecil) */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 48px;
    height: 48px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wa-icon {
    width: 26px;
    height: 26px;
    fill: #ffffff;
}

.wa-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}

/* Mobile */
@media (max-width: 600px) {
    .wa-float {
        width: 44px;
        height: 44px;
        bottom: 20px;
        right: 20px;
    }
    .wa-icon {
        width: 22px;
        height: 22px;
    }
}
/* ==== Language Switch ==== */

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

.top-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

.lang-switch .lang-btn {
  border: none;
  background: transparent;
  font-size: 12px;
  font-weight: 500;
  padding: 2px 8px;
  cursor: pointer;
  opacity: 0.55;
  color: #0f172a;
}

.lang-switch .lang-btn.active {
  background: #020617;
  color: #f9fafb;
  border-radius: 999px;
  opacity: 1;
}

.lang-switch .sep {
  font-size: 11px;
  color: #9ca3af;
  padding: 0 2px;
}

/* mobile */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: row;
    align-items: flex-start;
  }

  .top-right {
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }
}
/* ====== FINAL LANGUAGE TOGGLE STYLE ====== */
/* taruh PALING BAWAH di style.css */

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.top-bar .top-right {
  margin-left: auto;
  display: flex;
  align-items: center;
}

/* Container pill */
.top-bar .lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.05);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

/* Tombol ID / EN */
.top-bar .lang-btn {
  all: unset;                 /* reset style default button */
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
  cursor: pointer;
  line-height: 1.2;
  transition: all 0.18s ease;
}

.top-bar .lang-btn:hover {
  background: rgba(15, 23, 42, 0.06);
}

/* State aktif (yang menyala) */
.top-bar .lang-btn.active {
  background: #020617;
  color: #ffffff;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.35);
}

/* Hilangkan slash ID / EN */
.top-bar .sep {
  display: none !important;
}

/* Mobile tweak */
@media (max-width: 768px) {
  .top-bar {
    gap: 0.75rem;
  }

  .top-bar .top-right {
    margin-left: 0;
  }

  .top-bar .lang-switch {
    transform: scale(0.95);
  }
}
