/* --- HERO SECTION UPDATE --- */
.hero {
  height: 90vh;
  width: 100%; /* Pastikan full width */
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.hero-content {
  z-index: 10;
  max-width: 900px;
  padding: 0 20px;
}

.hero h1 {
  font-size: clamp(
    3rem,
    10vw,
    7rem
  ); /* Responsive: mengecil di HP, raksasa di PC */
  line-height: 0.85;
  font-weight: 900;
  letter-spacing: -4px;
  margin-bottom: 40px;
  text-transform: uppercase;
  animation: revealText 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

/* Garis dekoratif kecil di atas judul */
.hero-content::before {
  content: "EST. 2026";
  display: block;
  font-size: 0.7rem;
  letter-spacing: 5px;
  margin-bottom: 20px;
  color: #888;
}
.heroSwiper {
  width: 100%;
  height: 90vh;
}

/* Custom warna panah swiper biar sesuai tema */
.swiper-button-next,
.swiper-button-prev {
  color: #fff !important;
  transform: scale(0.5); /* Biar kecil & elegan */
}
/* Tombol Explore yang lebih clean */
.btn-primary {
  display: inline-block;
  padding: 18px 45px;
  background-color: #fff;
  color: #000;
  font-family: "Syncopate", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 3px;
  border: 1px solid #fff;
  transition: all 0.4s ease;
}

.btn-primary:hover {
  background-color: transparent;
  color: #fff;
  transform: translateY(-5px);
}

/* Animasi munculnya teks */
@keyframes revealText {
  0% {
    opacity: 0;
    transform: translateY(50px) skewY(5deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) skewY(0);
  }
}

/* --- COLLECTION SECTION --- */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 5%;
}

.section-header {
  margin-bottom: 50px;
  border-left: 5px solid #fff;
  padding-left: 20px;
}

.section-header h2 {
  font-size: 2rem;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.section-header p {
  color: #666;
  margin-top: 5px;
}

/* --- GRID & CARD --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px 20px;
  margin-top: 30px;
}

.product-img-wrapper {
  position: relative;
  overflow: hidden;
  background: #111;
  aspect-ratio: 1 / 1;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.view-btn {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  text-align: center;
  text-decoration: none;
  font-weight: 900;
  font-size: 0.7rem;
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card:hover .view-btn {
  bottom: 0;
}

.product-info {
  padding-top: 15px;
}

.product-info h3 {
  font-size: 1rem;
  text-transform: uppercase;
  color: #fff;
}

.price {
  color: #888;
  font-size: 0.9rem;
  margin-top: 5px;
}
