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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
  background: #fff;
  color: #1d1d1f;
}

.announcement-bar {
  background: linear-gradient(to right, #1a0000, #3a0000, #1a0000);
  border-bottom: 2px solid #c8960c;
  box-shadow: 0 4px 24px rgba(212,160,0,0.45), 0 1px 8px rgba(255,200,0,0.3);
  position: relative;
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  gap: 12px;
  width: 100%;
}

.ann-item {
  display: none;
  font-size: 13px;
  font-weight: 600;
  color: #f0c040;
  text-shadow: 0 0 8px rgba(255,200,0,0.7), 0 0 16px rgba(255,180,0,0.4);
  line-height: 1.5;
}

.ann-item.active {
  display: block;
}

.ann-item a {
  color: #f0c040;
  font-weight: 700;
  text-decoration: underline;
  text-shadow: 0 0 10px rgba(255,210,0,0.9);
}

.ann-arrow {
  background: transparent;
  border: none;
  color: #f0c040;
  font-size: 22px;
  cursor: pointer;
  padding: 0 8px;
  line-height: 1;
  opacity: 0.8;
  filter: drop-shadow(0 0 4px rgba(255,210,0,0.8));
  transition: opacity 0.15s;
  flex-shrink: 0;
}

.ann-arrow:hover { opacity: 1; }

/* ============================================================
   SHARED CONTAINER — max-width diperbesar dari 1080 → 1280px
============================================================ */
.topbar-inner,
.navbar-inner,
.slider-inner {
  max-width: 1170px;
  margin: 0 auto;
  width: 100%;
}

/* ============================================================
   HEADER
============================================================ */
.header {
  background: #fff;
  border-bottom: 1px solid #d2d2d7;
  position: sticky;
  top: 0;
  z-index: 100;
}

/* ---- Topbar ---- */
.topbar {
  padding: 0 32px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  height: 70px;
  gap: 30px;
}

/* Logo */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #000;
  flex-shrink: 0;
}

.logo-text {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
}

.logo-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #b0b0b5;
  border-radius: 10px;
  padding: 6px 11px;
}

.apple-svg {
  width: 20px;
  height: 24px;
  flex-shrink: 0;
  fill: #111;
}

.logo-badge-text {
  font-size: 12px;
  font-weight: 600;
  color: #222;
  white-space: nowrap;
  line-height: 1.3;
}

/* Search */
.search {
  flex: 1;
  display: flex;
  justify-content: center;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f2f2f2;
  border-radius: 20px;
  padding: 9px 16px;
  width: 100%;
  max-width: 520px;
}

.search-box svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #888;
  stroke-width: 2;
  flex-shrink: 0;
}

.search-box input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  color: #333;
  width: 100%;
}

.search-box input::placeholder { color: #999; }

/* Icons kanan */
.topbar-icons {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
}

.topbar-icons a {
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  white-space: nowrap;
}

.topbar-icons svg {
  width: 25px;
  height: 25px;
  stroke: #333;
  fill: none;
  stroke-width: 1.6;
}

/* ---- Navbar ---- */
.navbar {
  padding: 15px 32px;
}

.navbar-inner {
  display: flex;
  align-items: center;
  height: auto;
  justify-content: space-between;
}

.navbar-inner a {
  text-decoration: none;
  color: #1d1d1f;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 0;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: color 0.15s;
}

.navbar-inner a:first-child { padding-left: 0; }
.navbar-inner a:hover { color: #0071e3; }
.navbar-inner a.active { font-weight: 600; }

.navbar-sep {
  width: 1px;
  height: 16px;
  background: #c7c7cc;
  margin: 0 4px;
  flex-shrink: 0;
}

/* ============================================================
   WATCH SLIDER
============================================================ */
.slider-section {
  border-bottom: 1px solid #e8e8ed;
  padding: 0 32px;
}

.slider-inner {
  position: relative;
  display: flex;
  align-items: center;
}

.slider-track {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
}

.slider-track::-webkit-scrollbar { display: none; }

.slide-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 16px 40px 16px 0;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.slide-item:hover .slide-name { color: #0071e3; }

.slide-img {
  width: 64px;           /* 56 → 64px */
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}

.slide-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.slide-badge {
  font-size: 11px;       /* 10 → 11px */
  font-weight: 700;
  color: #bf4800;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-transform: uppercase;
}

.slide-name {
  font-size: 14px;       /* 13 → 14px */
  font-weight: 600;
  color: #1d1d1f;
  white-space: nowrap;
  line-height: 1.4;
  transition: color 0.15s;
}

.slide-price {
  font-size: 13px;       /* 12 → 13px */
  color: #0071e3;
  line-height: 1.4;
}

.slider-btn {
  flex-shrink: 0;
  width: 28px;           /* 26 → 28px */
  height: 28px;
  border: 1px solid #c7c7cc;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  transition: background 0.15s;
  margin-left: 8px;
}

.slider-btn:hover { background: #f0f0f0; }

.slider-btn svg {
  width: 12px;
  height: 12px;
  stroke: #555;
  fill: none;
  stroke-width: 2.5;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  background: #f5f5f7;
  padding: 0 32px;
  display: flex;
  align-items: center;
  width: 100%;
  height: 450px;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
}

.hero-img {
  width: 420px;
  object-fit: contain;
  flex-shrink: 0;
  animation: slideFromLeft 0.7s ease forwards;
}

.hero-text {
  animation: slideFromRight 0.7s ease forwards;
}

@keyframes slideFromLeft {
  from { opacity: 0; transform: translateX(-80px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideFromRight {
  from { opacity: 0; transform: translateX(80px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-text h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.5px;
  color: #1d1d1f;
  margin-bottom: 24px;
}

.hero-btn-group {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.hero-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 980px;
  border: 1.5px solid #ff3b30;
  background: transparent;
  color: #ff3b30;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.hero-btn:hover {
  background: #ff3b30;
  border-color: #ff3b30;
  color: #fff;
}

/* ============================================================
   PRODUCT LIST
============================================================ */
.product-list {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 32px;
}

.product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #d2d2d7;
  padding: 44px 100px;
  min-height: 290px;
  gap: 24px;
}

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.p-badge {
  font-size: 13px;
  font-weight: 700;
  color: #bf4800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.p-name {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: #1d1d1f;
}

.p-desc,
.p-price {
  font-size: 15px;
  color: #6e6e73;
  line-height: 1.6;
}

.p-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 980px;
  border: 1.5px solid #0071e3;
  background: transparent;
  color: #0071e3;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  width: fit-content;
  margin-top: 14px;
  transition: background 0.2s, color 0.2s;
}

.p-btn:hover { background: #0071e3; color: #fff; }

.product-img-wrap {
  flex-shrink: 0;
  width: 260px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.product-img-wrap img {
  max-width: 260px;
  max-height: 260px;
  object-fit: contain;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: #fff;
  border-top: 1px solid #d2d2d7;
  padding: 56px 48px 36px;
  margin-top: 60px;
}

/* --- Kolom link atas --- */
.footer-cols {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  max-width: 1170px;
  margin: 0 auto 48px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin: 10px 0; }

.footer-col li a,
.footer-col ul.footer-partner-sub li {
  font-size: 13px;
  color: #515154;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-col li a:hover { color: #0071e3; }
.fl-blue { color: #0071e3 !important; }
.fl-blue:hover { color: #0058a3 !important; }

/* Premium Partner badge */
.footer-pp-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid #888;
  border-radius: 10px;
  padding: 10px 14px;
  width: fit-content;
  margin-bottom: 16px;
}

.fp-apple {
  width: 18px;
  height: 22px;
  fill: #111;
  flex-shrink: 0;
}

.fp-label {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: #1d1d1f;
}

.footer-partner-sub {
  list-style: none !important;
}

.footer-partner-sub li {
  font-size: 12px !important;
  color: #515154 !important;
  margin: 10px 0 !important;
  line-height: 1.4;
}

/* --- Tengah: kontak + sosmed/payment --- */
.footer-mid {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  max-width: 1170px;
  margin: 0 auto 40px;
  padding-top: 36px;
  border-top: 1px solid #d2d2d7;
}

/* Kontak kiri */
.footer-contact {
  flex: 0 0 340px;
}

.footer-contact p {
  font-size: 13px;
  color: #515154;
  margin-bottom: 10px;
  line-height: 1.5;
}

.fc-icon { margin-right: 6px; }

.footer-pengaduan {
  margin-top: 28px;
}

.footer-pengaduan p {
  font-size: 13px;
  color: #515154;
  line-height: 1.6;
}

/* Kanan: sosmed + payment */
.footer-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 18px;
  align-items: center;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #1d1d1f;
  text-decoration: none;
  transition: opacity 0.15s;
}

.footer-social a:hover { opacity: 0.6; }

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: #1d1d1f;
  stroke: none;
}

/* Payment & Shipping */
.footer-payment,
.footer-shipping {
  width: 100%;
  text-align: right;
}

.footer-section-title {
  font-size: 13px;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 10px;
}

.payment-grid,
.shipping-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.pay-chip {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #333;
  white-space: nowrap;
  background: #fff;
}

.pay-logo:hover {
  filter: grayscale(0%);
  transform: scale(1.08);
}

/* --- Bottom --- */
.footer-bottom {
  border-top: 1px solid #d2d2d7;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #86868b;
  max-width: 1170px;
  margin: 0 auto;
}

/* ============================================================
   FAQ + REVIEW SECTION
============================================================ */
.faq-review-section {
  background: #ffffff;
  padding: 60px 32px;
  margin-top: 60px;
}

/* --- FAQ --- */
.faq-box {
  max-width: 860px;
  margin: 0 auto 48px;
  border: 1.5px solid #b8860b;
  border-radius: 12px;
  padding: 36px 40px;
  background: #1f1f1f;
}

.faq-title {
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  color: #f0c040;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  border: 1px solid #3a3a2a;
  border-radius: 8px;
  overflow: hidden;
  background: #252520;
}

.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #e8d080;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  gap: 12px;
}

.faq-btn:hover { background: #2e2e20; }

.faq-icon {
  font-size: 20px;
  font-weight: 400;
  color: #f0c040;
  flex-shrink: 0;
  line-height: 1;
  width: 24px;
  height: 24px;
  border: 1.5px solid #f0c040;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 13px;
  color: #c8c8b0;
  line-height: 1.7;
  padding: 0 18px;
}

.faq-item.open .faq-answer { padding: 0 18px 16px; }

/* --- Review --- */
.review-box {
  max-width: 860px;
  margin: 0 auto;
  border: 1.5px solid #b8860b;
  border-radius: 12px;
  padding: 36px 40px;
  background: #1f1f1f;
}

.review-title {
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  color: #f0c040;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.review-track-wrap {
  overflow: hidden;
}

.review-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}

.review-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: #252520;
  border: 1px solid #3a3a2a;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-header strong {
  font-size: 14px;
  color: #e8d080;
}

.review-stars {
  color: #f0c040;
  font-size: 13px;
  letter-spacing: 1px;
}

.review-card p {
  font-size: 13px;
  color: #c8c8b0;
  line-height: 1.65;
  flex: 1;
}

.review-date {
  font-size: 11px;
  color: #888870;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.rdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #555540;
  cursor: pointer;
  transition: background 0.2s;
}

.rdot.active { background: #f0c040; }

/* --- Artikel --- */
.article-box {
  max-width: 860px;
  margin: 48px auto 0;
  border: 1.5px solid #b8860b;
  border-radius: 12px;
  padding: 36px 40px;
  background: #1f1f1f;
}

.article-title {
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  color: #f0c040;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.article-content h3 {
  font-size: 15px;
  font-weight: 700;
  color: #e8d080;
  margin: 24px 0 10px;
}

.article-content h3:first-child { margin-top: 0; }

.article-content p {
  font-size: 13.5px;
  color: #c8c8b0;
  line-height: 1.8;
  margin-bottom: 8px;
}

.article-content strong {
  color: #f0c040;
  font-weight: 600;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 900px) {
  /* Topbar */
  .topbar { padding: 0 16px; }
  .topbar-inner {
    flex-wrap: wrap;
    height: auto;
    padding: 10px 0;
    gap: 10px;
  }
  .logo-wrap { flex: 1; }
  .search { order: 3; flex-basis: 100%; }
  .search-box { max-width: 100%; }
  .topbar-icons { flex-shrink: 0; gap: 16px; }
  .topbar-icons a span { display: none; } /* sembunyikan teks "Pilih toko" di mobile */

  /* Navbar */
  .navbar { padding: 0 16px; }
  .navbar-inner {
    overflow-x: auto;
    scrollbar-width: none;
    height: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 4px;
  }
  .navbar-inner::-webkit-scrollbar { display: none; }
  .navbar-inner a { font-size: 13px; padding: 10px 10px; height: auto; white-space: nowrap; }
  .navbar-sep { display: none; }

  /* Slider */
  .slider-section { padding: 0 16px; }

  /* Hero */
  .hero { padding: 0 16px; height: auto; min-height: 260px; }
  .hero-inner { flex-direction: column; text-align: center; gap: 20px; padding: 32px 0; }
  .hero-img { width: 200px; }
  .hero-text h1 { font-size: 26px; }

  /* Products */
  .product-list { padding: 0 16px; }
  .product-row { flex-direction: column; padding: 28px 0; text-align: center; min-height: unset; }
  .product-info { align-items: center; }
  .product-img-wrap { width: 130px; justify-content: center; order: -1; }
  .p-name { font-size: 24px; }

  /* Footer */
  .footer { padding: 36px 16px 24px; }
  .faq-review-section { padding: 40px 16px; }
  .faq-box, .review-box { padding: 24px 20px; }
  .faq-title, .review-title { font-size: 13px; }
  .review-card { flex: 0 0 80vw; }

  .footer-mid { flex-direction: column; gap: 28px; max-width: 100%; }
  .footer-contact { flex: none; width: 100%; }
  .footer-right { align-items: flex-start; width: 100%; }
  .payment-grid, .shipping-grid { justify-content: flex-start; }
  .footer-bottom { max-width: 100%; }
}

/* ============================================================
   BOTTOM NAV BAR
============================================================ */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: linear-gradient(to right, #1a0000, #3a0000, #1a0000);
  border-top: 2px solid #c8960c;
  box-shadow: 0 -4px 24px rgba(212, 160, 0, 0.45), 0 -1px 8px rgba(255, 200, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 8px 0 10px;
}

.bottom-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  flex: 1;
  transition: transform 0.15s;
}

.bottom-bar-item:hover { transform: translateY(-3px); }

.bb-icon {
  font-size: 22px;
  filter: drop-shadow(0 0 6px rgba(255, 210, 0, 0.8));
}

.bb-label {
  font-size: 12px;
  font-weight: 600;
  color: #f0c040;
  text-shadow: 0 0 8px rgba(255, 200, 0, 0.7), 0 0 16px rgba(255, 180, 0, 0.4);
  letter-spacing: 0.03em;
}

/* Beri ruang bawah agar konten tidak tertutup bottom bar */
body { padding-bottom: 70px; }

/* ============================================================
   BOTTOM NAV BAR
============================================================ */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: linear-gradient(to right, #1a0000, #3a0000, #1a0000);
  border-top: 2px solid #c8960c;
  box-shadow: 0 -4px 24px rgba(212,160,0,0.45), 0 -1px 8px rgba(255,200,0,0.3);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 8px 0 10px;
}

.bottom-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  flex: 1;
  transition: transform 0.15s;
}

.bottom-bar-item:hover { transform: translateY(-3px); }

.bb-icon {
  font-size: 22px;
  filter: drop-shadow(0 0 6px rgba(255,210,0,0.8));
}

.bb-label {
  font-size: 12px;
  font-weight: 600;
  color: #f0c040;
  text-shadow: 0 0 8px rgba(255,200,0,0.7), 0 0 16px rgba(255,180,0,0.4);
  letter-spacing: 0.03em;
}