/* Reset dasar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 🌌 Mesh Gradient Background (Dark Modern) */
body {
  font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.7;
  font-size: 16px;
  color: #f0f0f0; /* teks jadi terang */
  background: radial-gradient(at 20% 20%, #2c3e50 0, transparent 50%),
    radial-gradient(at 80% 0%, #34495e 0, transparent 50%),
    radial-gradient(at 0% 100%, #1e272e 0, transparent 50%),
    radial-gradient(at 80% 100%, #2f3640 0, transparent 50%), #1a1a1a; /* fallback gelap */
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Link kontras */
a {
  color: #ff8243;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #ffa86e;
}

/* Heading */
h1,
h2,
h3,
h4 {
  color: #050404;
}

/* Paragraf */
p {
  margin-bottom: 1em;
  color: #fdf9f9;
}

/* Container umum */
.container {
  width: min(1200px, 90%);
  margin: 0 auto;
  padding: 2rem 0;
}

/* Animasi fade halus */
section,
header,
footer {
  animation: fadeIn 0.8s ease forwards;
  opacity: 0;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Navbar umum */
nav.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  box-sizing: border-box;

  /* Modern look */
  background: rgba(255, 255, 255, 0.2); /* transparan */
  backdrop-filter: blur(12px); /* efek kaca */
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Logo */
.navbar-logo {
  color: rgb(179, 86, 42);
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
}

.navbar-logo span {
  color: rgb(179, 86, 42);
}

/* Menu kiri (desktop) */
.navbar-nav {
  display: flex;
  gap: 12px;
}

.navbar-nav a {
  color: rgb(179, 86, 42);
  text-decoration: none;
  font-weight: bold;
  font-size: 17px;
}

.navbar-extra a {
  color: rgb(179, 86, 42);
  text-decoration: none;
  font-weight: bold;
}

.navbar-nav a:hover {
  color: #ff8243;
}

/* Bagian kanan */
.navbar-right a {
  color: #fff;
  text-decoration: none;
  margin-left: 12px;
  font-size: 20px;
  cursor: pointer;
}

.navbar-right a:hover {
  color: #ff8243;
}

/* Search form */
.search-form {
  display: none;
  position: absolute;
  top: 100%;
  right: 20px;
  background: rgba(40, 40, 40, 0.85); /* semi-transparent gelap */
  backdrop-filter: blur(10px); /* efek glass */
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease-in-out;
}

.search-form input {
  border: none;
  outline: none;
}

body {
  padding-top: 60px;
}

#hamburger-menu,
.navbar-close {
  display: none;
}

/* Navbar search form */
.navbar .search-form {
  position: absolute;
  top: 100%;
  right: 75px;
  color: #adacac;
  background-color: #adacac;
  width: 40rem;
  height: 5rem;
  display: flex;
  align-items: center;
  transform: scaleY(0);
  transform-origin: top;
  transition: 0.3s;
}

.navbar .search-form.active {
  transform: scaleY(1);
}

.navbar .search-form input {
  height: 100%;
  width: 100%;
  font-size: 1.6rem;
  color: rgb(14, 5, 5);
  padding: 1rem;
}

.navbar .search-form label {
  cursor: pointer;
  font-size: 2rem;
  margin-right: 1.5rem;
  color: rgb(179, 86, 42);
}
/* ================= Grid Produk ================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 20px;
}

.product-card {
  background: #adacac;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.product-card h3 {
  color: rgb(179, 86, 42);
  font-size: 16px;
  margin: 10px 0;
}

.product-card p {
  color: rgb(179, 86, 42);
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 12px;
}

.product-card .description {
  color: rgb(179, 86, 42); /* deskripsi abu² biar beda */
  font-size: 13px;
  font-weight: normal;
  margin-bottom: 12px;
  line-height: 1.4;
}

/* Container tombol di tengah */
.see-more {
  text-align: center;
  margin-top: 30px;
}

/* Tombol affiliate */
.btn-affiliate {
  display: inline-block;
  color: #fff;
  padding: 10px 18px; /* lebih kecil */
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  margin-top: 8px; /* rapat sama konten sebelumnya */
}

.btn-affiliate:hover {
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background-color: rgb(179, 86, 42);
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s, transform 0.2s;
}

.btn-primary:hover {
  background-color: rgb(179, 86, 42);
  transform: scale(1.05);
}

/* Responsif untuk layar kecil */
@media (max-width: 600px) {
  .btn-primary {
    padding: 10px 20px;
    font-size: 16px;
  }
}

.btn,
.btn-buy {
  display: inline-block;
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-affiliate,
.btn-buy {
  background: #ff5722;
  color: #fff;
}

.btn-affiliate,
.btn-buy:hover {
  background: #ff5722;
}

.btn-our {
  background: #ff5722;
  color: #fff;
}

.btn-our:hover {
  background: #ff5722;
}

/* Pagination */
.pagination {
  margin-top: 20px;
  text-align: center;
}

.pagination a {
  display: inline-block;
  margin: 0 5px;
  padding: 8px 12px;
  border-radius: 6px;
  background: #eee;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.pagination a:hover {
  background: #ddd;
}

.pagination a.active {
  background: rgb(179, 86, 42);
  color: #fff;
}

/* ================= Slider ================= */
.hero-products {
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 20px auto;
}

.slider-track {
  display: flex;
  transition: transform 0.3s ease;
}

.hero-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-slide img {
  max-width: 100%;
  max-height: 500px;
  object-fit: cover;
}

/* Tombol Prev/Next */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

.slider-btn.prev {
  left: 10px;
}

.slider-btn.next {
  right: 10px;
}

/* Dots Indicator */
.slider-dots {
  text-align: center;
  margin-top: 10px;
}

.slider-dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.slider-dots span.active {
  background-color: white;
}

.div,
h1,
p {
  text-align: center;
  margin: 10px 0 20px;
  font-size: 30px;
  color: rgb(179, 86, 42);
}

section {
  text-align: center;
  margin: 30px 0 20px;
  font-size: 15px;
  color: rgb(179, 86, 42);
}

/* Blog Section */
.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem 5%;
  box-sizing: border-box;
}

.related-inside {
  padding: 15px;
  margin: 20px 0;
  border-radius: 10px;
}

.related-inside h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
  font-weight: bold;
}

.related-inside ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.related-inside li {
  margin: 5px 0;
}

.related-inside a {
  color: #0066cc;
  text-decoration: none;
}

.related-inside a:hover {
  text-decoration: underline;
  color: #004499;
}

.blog-card {
  background: #adacac;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Gambar artikel */
.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* Konten artikel */
.blog-card .card-content {
  padding: 1rem;
}

.blog-card h3 {
  margin: 0 0.2px;
  font-size: 1.3rem;
}

.blog-card h3 a {
  text-decoration: none;
  color: #222;
}

.blog-card h3 a:hover {
  color: #b3562a; /* sesuai tema navbar */
}

.blog-card .meta {
  font-size: 0.85rem;
  color: #b3562a;
  margin-bottom: 0.5rem;
}

.blog-card .excerpt {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.blog-card .tags a {
  font-size: 0.8rem;
  color: #b3562a;
  text-decoration: none;
  margin-right: 0.5rem;
}

.blog-card .tags a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .blog-card img {
    height: 150px;
  }
}
.blog-post {
  max-width: 800px;
  margin: 20px auto; /* tengah + rapat */
  padding: 20px;
  background: #adacac;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  font-family: "Segoe UI", "Open Sans", sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Gambar artikel */
.blog-post img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: 5px;
  margin: 12px 0; /* jarak rapat */
}

/* Heading */
.blog-post h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 12px;
}

.blog-post h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #222;
  margin: 18px 0 8px;
}

.blog-post h3 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #444;
  margin: 14px 0 6px;
}

/* Meta info */
.blog-post .meta {
  font-size: 0.85rem;
  color: #666;
  margin: 0 0 14px;
}

/* Konten */
.blog-post .content {
  font-size: 1rem;
  color: #333;
}

.blog-post .content p {
  margin: 0;
  text-align: justify; /* rapi kanan-kiri */
  font-size: 1rem;
  color: #111;
}

/* List */
.blog-post .content ul,
.blog-post .content li {
  margin: 0 0 14px;
  padding-left: 1.2rem;
  font-size: 0;
}

.blog-post .content li {
  margin-bottom: 6px; /* lebih rapat */
  font-size: 1rem;
}

/* Kutipan */
.blog-post .content blockquote {
  padding: 0.8rem 1rem;
  border-left: 3px solid #ccc;
  background: #f9f9f9;
  color: #555;
  font-style: italic;
  margin: 12px 0;
}

/* Read More link */
.read-more {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.4rem 0.8rem;
  background-color: #b3562a; /* sesuai warna tema navbar */
  color: #fff;
  font-size: 0.9rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.2s;
}

.read-more:hover {
  background-color: #a14720;
  transform: translateY(-2px);
}

/* Jika ingin di blog-card, beri jarak */
.blog-card .read-more {
  margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .read-more {
    font-size: 0.85rem;
    padding: 0.35rem 0.7rem;
  }
}

/* Produk Kami dan artikelnya  */
.product-articles {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.product-article {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
  transition: transform 0.2s;
}

.product-article:hover {
  transform: translateY(-5px);
}

.product-thumb {
  width: 200px;
  height: auto;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s ease;
  margin-top: 30px;
}

.product-thumb:hover {
  transform: scale(1.05);
}

.product-content h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: rgb(179, 86, 42);
  margin-top: 30px;
}

.product-content p {
  font-size: 14px;
  color: #adacac;
  line-height: 1.5;
}

/* Lightbox */
#lightbox {
  position: fixed;
  display: none;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  cursor: pointer;
}

#lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 5px;
}

/* Modal Background */
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

/* Modal Content */
.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 8px;
  max-width: 400px;
}

/* Close Button */
.close {
  float: right;
  font-size: 24px;
  cursor: pointer;
}

.about,
.privacy,
.contact {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  background: #adacac;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  line-height: 1.7;
}

.about h2,
.privacy h2,
.contact h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #333;
  text-align: center;
}

.about h3,
.privacy h3,
.contact h3 {
  font-size: 22px;
  margin-top: 30px;
  color: #444;
}

.about p,
.privacy p,
.contact p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #555;
}

.about a,
.privacy a,
.contact a {
  color: #007bff;
  text-decoration: none;
}

.about a:hover,
.privacy a:hover,
.contact a:hover {
  text-decoration: underline;
}

/* ==========================
   Modern Footer
========================== */
.modern-footer {
  background: linear-gradient(135deg, #1a1a1a, #2c2c2c); /* gelap elegan */
  color: #eee;
  padding: 1rem 1rem;
  font-family: "Inter", sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Tambah efek dekorasi mesh/gradient lembut */
.modern-footer::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 20px;
  height: 20px;
  background: radial-gradient(
    circle,
    rgba(255, 130, 67, 0.3) 0%,
    transparent 70%
  );
  z-index: 0;
}
.modern-footer::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(255, 206, 86, 0.25) 0%,
    transparent 70%
  );
  z-index: 0;
}

/* Konten footer */
.footer-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 1; /* biar di atas efek dekorasi */
}

.footer-links {
  margin: 1rem 0;
}
.footer-links a {
  color: #bbb;
  margin: 0 1rem;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: #ff8243;
}

.social-links {
  margin-top: 15px;
}
.social-links a {
  font-size: 24px;
  margin: 0 8px;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
  color: #ccc;
}
.social-links a:hover {
  transform: scale(1.2);
  color: #ff8243;
}

.credit {
  margin-top: 2rem;
  font-size: 14px;
  color: #888;
}
.credit span {
  color: #fff;
  font-weight: 600;
}

/* Warna brand masing-masing */
.social-links a.facebook {
  color: #1877f2;
} /* Facebook biru */
.social-links a.instagram {
  color: #e4405f;
  background: -webkit-linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.social-links a.tiktok {
  color: #000;
} /* TikTok hitam */
.social-links a.twitter {
  color: #1da1f2;
} /* Twitter biru */
.social-links a.linkedin {
  color: #0a66c2;
} /* LinkedIn biru */

.footer-links a {
  color: #faf6f6;
  margin: 0 1rem;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

.credit p {
  font-size: 16px;
  color: #fcf8f8;
}

.credit span {
  color: #f8f8f7;
  font-weight: bold;
}

/* ==========================================
   Forms
========================================== */
form input,
form textarea {
  width: 100%;
  padding: 0.6rem;
  margin-bottom: 0.8rem;
  border-radius: 5px;
  border: 1px solid #ccc;
}

form button {
  background: #ff5722;
  color: #fff;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
}

form button:hover {
  background: #e64a19;
}

/* ==========================================
   Responsive
========================================== */
/* 📱 Tablet & Mobile Navbar */
@media (max-width: 758px) {
  html {
    font-size: 62.5%;
  }

  #hamburger-menu {
    display: inline-block;
    font-size: 2rem;
    cursor: pointer;
    color: rgb(179, 86, 42);
    z-index: 1100; /* biar di atas menu */
  }

  .navbar-nav {
    position: fixed;
    top: 0;
    right: -100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 1.5rem 1rem; /* lebih kecil biar rapi */
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 60%; /* lebih kecil dari 70% */
    max-width: 240px; /* dibatasi biar nggak terlalu lebar */
    height: 100vh;
    transition: right 0.4s ease;
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  }

  .navbar-nav a {
    color: rgb(179, 86, 42);
    margin: 1rem 0;
    font-size: 1.6rem;
    font-weight: 500;
    text-decoration: none;
    width: 100%;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
  }

  .navbar-nav a:hover {
    color: #ff8243;
  }

  .navbar-nav.active {
    right: 0;
  }

  /* Tombol close (X) di mobile navbar */
  .navbar-close {
    display: inline-block;
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    font-size: 2.2rem;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1101;
  }

  .navbar-close:hover {
    color: #ff8243;
  }

  /* 👉 ini dipisah dari .navbar-nav.active */
  .products-grid {
    grid-template-columns: repeat(2, 1fr); /* Selalu 2 kolom */
    gap: 12px;
  }

  .product-card img {
    max-width: 100%;
    height: 150px;
    object-fit: cover;
  }

  .product-card h3 {
    font-size: 14px;
  }

  .product-card p {
    font-size: 12px;
  }

  .btn {
    padding: 8px 12px;
    font-size: 12px;
  }
}

/* Mobile phone */
@media (max-width: 450px) {
  html {
    font-size: 80%;
  }

  .navbar {
    padding: 1rem 5%;
  }

  .navbar .navbar-logo {
    font-size: 2rem;
  }

  .navbar .navbar-nav a {
    font-size: 1rem; /* sedikit dikecilin biar muat */
  }

  .navbar .search-form {
    width: 90%;
    right: 1rem;
  }

  /* Tambahan biar navbar-nav lebih ramping */
  .navbar-nav {
    width: 55%; /* lebih kecil lagi */
    max-width: 200px; /* fix biar gak terlalu lebar */
    padding: 1.2rem 1rem;
  }
}

/* Tablet / Mobile */
@media (max-width: 758px) {
  .product-article {
    flex-direction: column; /* Gambar & text jadi vertikal */
    align-items: center; /* Tengahin isinya */
    text-align: center; /* Biar paragraf rata tengah */
  }

  .product-thumb {
    width: 80%; /* Lebar gambar lebih kecil supaya responsive */
    height: auto;
    margin-top: 20px;
    margin-bottom: 15px;
  }

  .product-content h3 {
    font-size: 18px;
    margin-top: 10px;
  }

  .product-content p {
    font-size: 12px;
    margin: 0 0 1rem; /* paragraf rapat antar baris */
  }

  .blog-post h3 {
    font-size: 19px; /* heading kecil */
    line-height: 1.3;
  }

  .blog-post .content p {
    font-size: 16px; /* isi konten lebih besar */
    margin: 0 0 1rem;
  }
}

/* Mobile phone kecil */
@media (max-width: 450px) {
  html {
    font-size: 17px; /* semua elemen ikut scaling */
  }

  .blog-post {
    padding: 15px; /* biar konten pas di layar kecil */
  }

  .blog-post h3 {
    font-size: 19px; /* heading kecil */
    line-height: 1.3;
  }

  .blog-post .meta {
    font-size: 0.8rem; /* meta info tetap kecil */
  }

  .blog-post .content {
    font-size: 16px; /* body text */
    line-height: 1.6; /* tetap nyaman */
  }

  .blog-post .content p {
    font-size: 1rem;
    margin: 0 0 0.9rem; /* rapat tapi tetap lega */
  }

  .blog-post img {
    max-height: 250px; /* biar nggak terlalu tinggi di layar kecil */
  }
}

/* ✨ Animasi Scroll Modern */
/* Animasi scroll default */
.scroll-fade,
.scroll-left,
.scroll-right {
  opacity: 0;
  transition: all 0.8s ease-out;
}

.scroll-fade {
  transform: translateY(40px);
}
.scroll-left {
  transform: translateX(-40px);
}
.scroll-right {
  transform: translateX(40px);
}

/* Saat terlihat */
.scroll-fade.show,
.scroll-left.show,
.scroll-right.show {
  opacity: 1;
  transform: translate(0, 0);
}

/* Default animasi anak-anak di scroll-stagger */
.scroll-stagger > * {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

/* Saat aktif */
.scroll-stagger > *.show {
  opacity: 1;
  transform: translateY(0);
}

/* Base animasi (semua mulai hidden) */
.scroll-anim {
  opacity: 0;
  transition: all 0.8s ease-out;
}
