/* === HASIL SETELAH DIRAPIKAN === */
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #fff;
  --text: #0b0b0b;
  --muted: #6b6b6b;
  --accent: #1a1a1a;
  --gold-premium: #c5a059;
  --bg-soft: #fcfcfc;
  --card: #f7f8fa;
  --max: 1100px;
  --gap: 28px;
  --nav-height-desktop: 90px;
  --nav-offset-desktop: 58px;
  --nav-height-mobile: 56px;
  --nav-offset-mobile: 0px;
}

html,
body {
  height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  /* Taruh font family utama brand-mu di sini */
  font-family:
    Inter,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
}
/* ======================
   ROTATING BAR
====================== */
.rotating-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #000;
  color: #ffffff;
  text-align: center;
  padding: 6px 0;
  font-size: 14px;
  z-index: 10000;
  border-bottom: 4px solid #ffffff22; /* garis tipis elegan */
  margin-bottom: 1px; /* jarak dari navbar */
}

/* ==== TICKER STYLE ==== */
.ticker-container {
  width: 100%;
  overflow: hidden;
  background: #0e0e0e;
  padding: 15px 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: slide-seamless 15s linear infinite;
}
.ticker-content {
  display: flex;
  flex-shrink: 0;
}

.ticker-track span {
  color: #fff;
  padding-right: 100px; /* Sekarang bisa 100px! */
  white-space: nowrap;
}

/* ======================
   ANIMATION
====================== */
@keyframes slide-seamless {
  0% {
    transform: translateX(0);
  }
  100% {
    /* Jika kamu pakai 6 copy, geser sejauh 1/6 bagian */
    transform: translateX(calc(-100% / 6));
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .ticker-container {
    padding: 8px 0;
  }

  .ticker-track {
    animation-duration: 22s; /* lebih santai */
  }

  .ticker-track span {
    font-size: 12px;
    padding-right: 40px; /* dari 100px → 40px */
  }
}

/* Optional: Berhenti saat kursor di atas teks */
.ticker-container:hover .ticker-track {
  animation-play-state: paused;
}

/* ========= NAVBAR (MODIUS) ========= */
.navbar {
  position: fixed;
  top: 30px;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 40px;
  background: transparent; /* INI KUNCI */
  color: #fff;
  box-sizing: border-box;
  z-index: 999;
}

.navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: -1;
  transition: opacity 0.4s ease;
}

.navbar.is-hero::before {
  opacity: 0;
}

.navbar:has(.has-mega:hover)::before {
  opacity: 1;
}

.page-content {
  padding-top: calc(var(--nav-height-desktop) - var(--nav-offset-desktop));
}

.page-section {
  padding: 150px 20px 64px;
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.navbar .logo img {
  height: 38px;
  width: auto;
  display: block;
}
.navbar .logo span {
  font-weight: 700;
  letter-spacing: 0.8px;
  font-size: 1.05rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}

.nav-links {
  margin-left: 12px;
  flex: 1;
}
.nav-links ul {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.97rem;
  transition: opacity 0.18s;
}
.nav-links a:hover {
  opacity: 0.7;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.mega-menu {
  position: absolute;
  top: calc(100% - 6px);
  left: 0;
  width: 100%;
  background: #111111;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
  transform: translateY(-14px);
  transition:
    opacity 0.35s ease,
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  transform-style: preserve-3d;
}

.has-mega:hover .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0.05s;
}

.mega-row {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: start;
}

.mega-container {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  padding: 45px 60px 30px;
  align-items: start;
}

.has-mega:hover .mega-col {
  animation: fadeInUp 0.6s ease forwards;
}

.mega-left {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.mega-col a:hover {
  color: #fff;
}

.mega-right img {
  width: 50%;
  border-radius: 6px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
}

.mega-right:hover img {
  transform: translateZ(0) scale(1.015);
}

.mega-shop-btn {
  margin-top: 12px;
  padding: 10px 18px;
  background: #ffffff;
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  font-size: 14px;
  display: inline-block;
  transition: 0.2s;
  position: relative;
  z-index: 3;
}

.mega-shop-btn:hover {
  background: #eaeaea;
  transform: translateY(-2px);
}
.mega-right .mega-shop-btn {
  color: #000 !important;
  background: #fff;
  position: relative;
  z-index: 2;
}

.mega-bottom {
  position: absolute;
  bottom: 0;
  left: 0;

  padding: 0 60px 20px;
  width: 100%;
  display: flex;
  gap: 28px;
  justify-content: flex-start;
}

.mega-bottom img {
  width: 75px;
  height: 75px;
  object-fit: cover;
  border-radius: 4px;
  transition: 0.2s;
}

.mega-bottom img:hover {
  transform: scale(1.07);
}

.mega-col h4 {
  color: #fff;
  font-size: 13px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transform: translateZ(0);
}

.mega-col a {
  display: block;
  position: relative;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 8px;
  transition: color 0.14s;
  transform: translateZ(0);
}

.mega-col a .mega-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

/* panah */
.mega-col a .mega-link::after {
  content: "→";
  font-weight: 600;
  line-height: 1;
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

/* hover */
.mega-col a:hover .mega-link::after {
  opacity: 1;
  transform: translateX(0);
}

.has-mega > a,
.nav-links ul li > a {
  position: relative;
  text-decoration: none;
}

/* hover zone tak terlihat */
.has-mega::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 14px;
}

/* garis underline */
.has-mega > a::after,
.nav-links ul li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px; /* DI LUAR box teks */
  width: 100%;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  pointer-events: none;
}

/* hover */
.has-mega > a:hover::after,
.nav-links ul li > a:hover::after {
  transform: scaleX(1);
}

@media (max-width: 768px) {
  body.nav-open {
    overflow: hidden;
    height: 100vh;
  }

  .navbar {
    height: 56px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent; /* tetap */
    z-index: 1002;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  }

  /* PAKSA background navbar selalu aktif */
  .navbar::before {
    opacity: 1 !important;
  }

  .page-content {
    padding-top: calc(var(--nav-height-mobile) - var(--nav-offset-mobile));
  }

  .navbar .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .logo-link {
    color: #fff;
  }

  .logo img {
    height: 30px;
    width: auto;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 1001;
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
  }

  .nav-links {
    display: block; /* jangan pernah none */
    position: fixed;
    left: 0;
    right: 0;
    top: 87px;
    height: calc(100vh - 56px);
    background: #000;

    transform: translateX(-100%); /* sembunyi ke kiri */
    opacity: 0;
    pointer-events: none;

    transition:
      transform 0.35s ease,
      opacity 0.35s ease;
  }

  .nav-links.active {
    display: block;
    background: #000;
    position: fixed;
    left: 0;
    margin-left: calc(env(safe-area-inset-left) * 1);
    width: 100%;
    right: 0;
    top: 80px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    height: calc(100vh - 56px);
    overflow-y: auto;
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 12px 100px;
    z-index: 1000;
  }

  .nav-links ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .nav-links ul li {
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links ul li.hidden-menu {
    display: none;
  }

  .has-mega .mega-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    background: transparent;
    padding: 0;
    box-shadow: none;
    border-top: none;
  }

  .has-mega.open .mega-menu {
    display: block;
  }

  .mega-menu {
    padding-bottom: 0;
  }

  .mega-bottom {
    position: static;
    display: flex;
    gap: 16px;
    padding: 14px 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-bottom: 5px solid rgba(255, 255, 255, 0.08);
  }

  .mega-bottom img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    background: #111;
    padding: 2px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .mega-container {
    display: block;
    padding: 0;
    overflow: hidden;
  }

  .mega-left {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 10px;
  }

  .mega-col {
    padding: 0;
  }

  .mega-col h4 {
    margin: 10px 0 8px;
    padding-left: 5px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .mega-col a {
    display: block;
    width: 100%;
    position: relative;
    padding-left: 5px;
    padding-right: 20px;
    font-size: 13px;
    color: #fff;
    margin-bottom: 10px;
  }

  .mega-col a:last-child {
    margin-bottom: 30px;
  }

  .mega-col a::after {
    content: "›";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    opacity: 0.8;
  }

  .has-mega > a {
    display: none;
  }

  .mega-right {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 600px) {
  .logo img {
    width: 32px;
  }
  .logo span {
    font-size: 16px;
  }
}

/* HERO SECTION */
.hero {
  height: 80vh;
  background: url("assets/img/hero/hero-1.png") center/cover no-repeat;
  margin-top: 0;
  padding-top: 0; /* HAPUS OFFSET DARI SINI */
}

.hero2 {
  height: 90vh;
  background: url("assets/img/hero/c.png") center/cover no-repeat;
  margin-top: 0;
}

/* ======================
   HERO BASE (GLOBAL)
====================== */
.hero-base {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
}

.hero-content {
  position: relative;
  z-index: 10;
  color: #fff;
  max-width: 420px;
  text-align: left;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 28px;
}

.hero-btn,
.grid-btn {
  display: inline-block;
  padding: 10px 24px;
  background: #fff;
  color: #000;
  border-radius: 25px;
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s ease;
}

.hero-btn:hover,
.grid-btn:hover {
  transform: translateY(-2px);
  background: #f0f0f0;
}

@media (max-width: 480px) {
  .brand-badge {
    display: none !important;
  }

  .hero,
  .hero2 {
    height: 33vh;
    align-items: flex-start;
    padding: 40px 15px 0;
  }

  .hero-content {
    max-width: 75%;
  }

  .hero-content h1 {
    font-size: 1.25rem;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 0.8rem;
  }

  .hero-btn {
    padding: 7px 18px;
    font-size: 0.72rem;
  }
}

/* ======================
   GRID SECTION (BASE)
====================== */
.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  margin-top: 4px;
}

.grid-item {
  position: relative;
  height: 380px;
  background-size: cover;
  background-position: center;
}

/* CONTENT */
.grid-content {
  position: absolute;
  bottom: 70px;
  left: 80px;
  z-index: 10;
  color: #fff;
  max-width: 260px;
}

.grid-content h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.grid-content p {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 14px;
}

.brand-badge {
  display: inline-block;
  padding: 5px 15px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #ccc;
}

/* RESPONSIVE */
@media (max-width: 480px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 16px; /* Jarak antar-grid dibuat lebih tegas */
  }

  .grid-item {
    height: 240px; /* Naikkan sedikit ke 240px agar seimbang dengan ukuran tombol baru yang lebih besar */
  }

  .grid-content {
    max-width: 75%; /* SAMA KAYA HERO-CONTENT: Biar teks punya ruang melebar horizontal */
    bottom: 30px; /* Tetap di 30px agar terangkat elegan ke atas */
    left: 15px; /* SAMA KAYA HERO PADDING: 15px agar sejajar lurus dari atas ke bawah */
    transform: none;
  }

  .grid-content h3 {
    font-family:
      "Playfair Display", serif; /* NYONTEK HERO 1: Biar judul produknya ikutan berkelas! */
    font-size: 1.25rem; /* SAMA KAYA HERO H1: Teks judul jadi tegas dan rapi */
    line-height: 1.2; /* SAMA KAYA HERO H1 */
    margin-bottom: 6px;
    font-weight: 700;
  }

  .grid-content p {
    font-size: 0.8rem; /* SAMA KAYA HERO P: Ukuran pas, gak kekecilan, gak kebesaran */
    line-height: 1.4;
    margin-bottom: 14px;
    opacity: 0.9;
  }

  .grid-btn {
    padding: 7px 18px; /* SAMA KAYA HERO-BTN: Tombol mantap, pas buat ditekan jempol, gak imut lagi! */
    font-size: 0.72rem; /* SAMA KAYA HERO-BTN */
    display: inline-block;
  }
}
@media (max-width: 480px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 5px; /* Jarak antar-grid dibuat lebih tegas */
  }

  .grid-item {
    height: 200px; /* Naikkan sedikit ke 240px agar seimbang dengan ukuran tombol baru yang lebih besar */
  }

  .grid-content {
    max-width: 50%; /* SAMA KAYA HERO-CONTENT: Biar teks punya ruang melebar horizontal */
    bottom: 30px; /* Tetap di 30px agar terangkat elegan ke atas */
    left: 15px; /* SAMA KAYA HERO PADDING: 15px agar sejajar lurus dari atas ke bawah */
    transform: none;
  }

  .grid-content h3 {
    font-family:
      "Playfair Display", serif; /* NYONTEK HERO 1: Biar judul produknya ikutan berkelas! */
    font-size: 1.25rem; /* SAMA KAYA HERO H1: Teks judul jadi tegas dan rapi */
    line-height: 1.2; /* SAMA KAYA HERO H1 */
    margin-bottom: 6px;
    font-weight: 700;
  }

  .grid-content p {
    font-size: 0.8rem; /* SAMA KAYA HERO P: Ukuran pas, gak kekecilan, gak kebesaran */
    line-height: 1.4;
    margin-bottom: 14px;
    opacity: 0.9;
  }

  .grid-btn {
    padding: 5px 8px; /* SAMA KAYA HERO-BTN: Tombol mantap, pas buat ditekan jempol, gak imut lagi! */
    font-size: 0.65rem; /* SAMA KAYA HERO-BTN */
    display: inline-block;
  }
}
/* ===== BASE CARD (GLOBAL) ===== */
.card {
  background: linear-gradient(180deg, #fff, var(--card));
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(10, 20, 30, 0.06);
}

.card h3 {
  margin: 0 0 10px 0;
  font-size: 15px;
  color: var(--accent);
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ===== ABOUT PAGE CARD ===== */
.about-right .card {
  padding: 30px; /* Lebih lega lebih mewah */
  border: 1px solid #f0f0f0; /* Garis tipis saja */
  background: #fff;
}

.about-right .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-color: #e0e0e0;
}

.about-right .section-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #888;
  margin-bottom: 16px;
}

.about-section {
  display: flex;
  justify-content: center;
}

.about-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.about-left h2 {
  font-size: 28px;
  margin: 0 0 12px 0;
  color: var(--accent);
  letter-spacing: 0.4px;
}

.about-left p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 24px;
}

.muted-small {
  font-size: 0.95rem;
  color: #888;
  font-style: italic;
  border-left: 2px solid #000;
  padding-left: 20px;
  margin-top: 40px;
}

.mission-list {
  margin-top: 8px;
  padding-left: 18px;
  color: var(--muted);
}
.mission-list li {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #555;
}
/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.value-item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 5px;
  color: #000;
}

.value-item span {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
}

/* Brand story compact */
.brand-story {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.about-left {
  max-width: 750px;
}

@media (max-width: 980px) {
  .about-wrap {
    grid-template-columns: 1fr;
  }
  .about-right {
    order: 2;
  }
}

@media (max-width: 480px) {
  .about-wrap {
    gap: 28px;
  }

  .about-left p {
    margin-bottom: 16px;
  }

  .muted-small {
    margin-top: 20px;
    padding-left: 14px;
  }

  .card {
    padding: 18px;
  }

  .about-right .card {
    margin-bottom: 14px;
  }
}

/*store*/
.store-page {
  background: #f7f6f4;
}

.store-hero {
  padding: 180px 20px 120px;
  background: linear-gradient(to bottom, #ffffff 0%, #f3f2f0 100%);
}

.store-container {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* TEXT */
.store-eyebrow {
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #999;
  display: block;
  margin-bottom: 12px;
}

.harvard-opening {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 18px;
}

.store-lead {
  font-size: 16px;
  color: #555;
  max-width: 520px;
  line-height: 1.7;
}

.store-note {
  margin-top: 18px;
  font-size: 14px;
  color: #777;
  font-style: italic;
}

/* CARD */
.premium-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

/* IMAGE */
.card-image-wrap {
  background: linear-gradient(135deg, #0c0c0c, #1a1a1a);
  padding: 5px;
}

.card-image-wrap img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

/* INFO */
.product-info {
  padding: 26px 28px 32px;
  text-align: center;
}

.product-info h3 {
  font-size: 14px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.product-info p {
  font-size: 13px;
  color: #666;
  margin-bottom: 26px;
}

/* BUTTONS */
/* ======================
   STORE BUTTON — PREMIUM
====================== */

.store-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 26px;
}

.btn-store {
  width: 100%;
  padding: 13px 0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: all 0.35s ease;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Shopee */
.btn-store.primary {
  background: #ee4d2d;
  color: #fff;
  border-color: transparent;
}

.btn-store.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(238, 77, 45, 0.35);
}

/* Secondary buttons */
.store-sub {
  display: flex;
  gap: 10px;
}

.btn-store.subtle {
  background: #fff;
  color: #000;
}

.btn-store.subtle:hover {
  background: #f4f4f4;
  transform: translateY(-2px);
}

/* TRUST */
.store-trust {
  padding: 80px 20px 120px;
  background: #ffffff;
}

.trust-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.trust-item h5 {
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.trust-item p {
  font-size: 13px;
  color: #666;
}

/* MOBILE */
@media (max-width: 768px) {
  .store-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .harvard-opening {
    font-size: 34px;
  }

  .store-hero {
    padding-top: 140px;
  }
}

/* ======================
   PRODUCT CATALOG
====================== */

.catalog-page {
  padding: 80px 40px 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: calc(var(--nav-height-desktop) + 20px);
}

.catalog-title {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 40px;
}

.catalog-title h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -1px;
  color: #000;
}

.catalog-title p {
  font-size: 1.15rem;
  color: #444;
  max-width: 600px;
  margin: 0 auto;
}

/* GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

/* CARD */
.product-card {
  position: relative;
  aspect-ratio: 4 / 3; /* LANDSCAPE */
  border-radius: 14px;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

/* =========================
   IMAGE WRAP (SWAP EFFECT)
========================= */
.img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.img-wrap img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  will-change: transform, opacity;
}

/* default */
.img-main {
  opacity: 1;
}

/* hidden */
.img-hover {
  opacity: 0;
}

/* hover swap */
.product-card:hover .img-main {
  opacity: 0;
  transform: scale(1.05);
}

.product-card:hover .img-hover {
  opacity: 1;
  transform: scale(1.05);
}

/* =========================
   OVERLAY (PREMIUM HOVER)
========================= */
.product-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 18px;
  color: #fff;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.1),
    transparent
  );

  opacity: 0;
  transform: translateY(10px);
  transition: all 0.35s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* sedikit darken saat hover */
.product-card:hover img {
  filter: brightness(0.92);
}

/* =========================
   TEXT & BUTTON
========================= */
.product-overlay h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
  line-height: 1.3;
}

.btn-group {
  display: flex;
  gap: 8px;
}

/* =========================
   RESPONSIVE TABLET
========================= */
@media (max-width: 768px) {
  .catalog-page {
    padding-top: calc(var(--nav-height-mobile) + 16px);
    padding-left: 14px;
    padding-right: 14px;
  }

  .catalog-title {
    margin-top: 40px;
    margin-bottom: 24px;
  }

  .catalog-title h1 {
    font-size: 2rem;
  }

  .catalog-title p {
    font-size: 0.95rem;
  }

  .product-grid {
    gap: 12px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .product-card {
    border-radius: 12px;
  }

  .product-overlay {
    padding: 12px;
    opacity: 1; /* tampil selalu di mobile */
    transform: none;
  }

  .product-overlay h3 {
    font-size: 0.85rem;
    margin-bottom: 8px;
  }

  .buy-btn {
    font-size: 0.68rem;
    padding: 6px 0;
  }

  .img-hover {
    display: none; /* disable hover image di mobile */
  }
}

/* =========================
   MOBILE KECIL
========================= */
@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    aspect-ratio: 16 / 9;
  }
}

/* ======================
   FOOTER
====================== */

.site-footer {
  background: #000;
  color: #bbb;
  padding: 70px 20px 30px;
}

.footer-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.footer-col h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.footer-col h4 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #aaa;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s;
}

.footer-col ul a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 13px;
  color: #888;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-wrap {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid #eee;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.contact-card:hover {
  transform: translateX(10px); /* Efek geser sedikit ke kanan */
  border-color: #000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-icon {
  font-size: 24px;
  background: #f9f9f9;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.contact-info h4 {
  margin: 0;
  font-size: 14px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info p {
  margin: 5px 0 0;
  font-size: 16px;
  color: #000;
  font-weight: 600;
}

/* Tipografi khusus halaman Terms */
.terms-body {
  margin-top: 40px;
}

.terms-section {
  margin-bottom: 50px; /* Jarak antar poin legal lebih lega */
}

.terms-section h3 {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.terms-section p {
  line-height: 1.8;
  color: #555; /* Abu-abu gelap lebih elegan daripada hitam pekat */
  font-size: 1rem;
}

.intro-text {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 60px;
  font-weight: 400;
}

.legal-notice hr {
  border: 0;
  border-top: 1px solid #eee;
  margin: 20px 0;
}

/* ANIMASI KEDIP OTOMATIS UNTUK BADGE LIVE HOST */
@keyframes kedipLive {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(255, 59, 48, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 59, 48, 0);
  }
}

.live-dot-animation {
  animation: kedipLive 2s infinite;
}

/* --- STYLE BASE UNTUK KEDUA TOMBOL LIVE --- */
.live-btn {
  padding: 14px 28px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); /* Efek transisi smooth premium */
  display: inline-block;
}

/* Tombol TikTok Default */
.btn-tiktok {
  background-color: #000000;
  color: #ffffff;
  border: 1px solid #ffffff;
}

/* Tombol Shopee Default (Aura Sinar Oren Tipis) */
.btn-shopee {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ee4d2d;
  box-shadow: 0 0 15px rgba(238, 77, 45, 0.3);
}

/* --- MANTRA EFEK HOVER (TOMBOLNYA BANGUN!) --- */

/* Efek pas Mouse di-arahin ke Tombol TikTok */
.btn-tiktok:hover {
  transform: translateY(-4px); /* Tombol melayang bangun ke atas */
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.25); /* Ada bantalan cahaya putih di bawahnya */
}

/* Efek pas Mouse di-arahin ke Tombol Shopee */
.btn-shopee:hover {
  transform: translateY(-4px); /* Tombol melayang bangun ke atas */
  background-color: rgba(
    238,
    77,
    45,
    0.1
  ); /* Background dalam tombol agak merona oren tipis */
  box-shadow: 0 10px 25px rgba(238, 77, 45, 0.6); /* Sinarnya makin pecah dan menyala terang! */
}
