/* Import Google Fonts: Inter (Body) & Bebas Neue (Headings) */
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap");

/* === BASE STYLES === */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === DARK MODE CUSTOM SCROLLBAR === */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #121212;
}
::-webkit-scrollbar-thumb {
  background: #333333;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #e5a99d; /* Warna Rose Gold saat di-hover */
}

/* === FASHION PRODUCT CARD (GLASSMORPHISM STYLE) === */
.fashion-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  background-color: #1c1c1c;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
}

.fashion-card img {
  transition: transform 0.7s ease;
}

.fashion-card:hover img {
  transform: scale(1.08);
}

.fashion-card:hover {
  border-color: rgba(229, 169, 157, 0.5); /* Border Rose Gold saat hover */
  box-shadow: 0 10px 30px -10px rgba(229, 169, 157, 0.15);
}

/* Kotak overlay blur di bagian bawah */
.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 1rem;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.6) 60%,
    transparent 100%
  );
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: white;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border-bottom-left-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
}

/* Garis elips tipis (Aksen ala referensi) */
.card-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 100%
  );
}
