.hero-title-gold {
  font-size: 5.5rem;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  font-style: italic;
  margin-bottom: 0.5rem;
  background: white;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.5));
  display: inline-block;
}
.hero-subtitle {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.9rem;
  color: #d4af37;
  margin-bottom: 15px;
  font-weight: 600;
}
.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 30px auto;
  width: 60%;
}
.gold-divider::before,
.gold-divider::after {
  content: "";
  height: 1px;
  background: linear-gradient(to right, transparent, #d4af37, transparent);
  flex: 1;
}
.gold-icon {
  color: #d4af37;
  margin: 0 15px;
  font-size: 1.2rem;
  animation: spinSlow 10s linear infinite;
}
@keyframes spinSlow {
  100% {
    transform: rotate(360deg);
  }
}

/* Hero Wrapper */
.hero-wrapper {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/hero.jpg"); /* Pastikan path image benar */
  background-size: cover;
  background-position: center;
  z-index: -1;
  animation: kenBurns 25s infinite alternate;
}
@keyframes kenBurns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 0 15px;
}

/* Ticker */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background-color: var(--dark-blue);
  padding: 15px 0;
  white-space: nowrap;
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.ticker {
  display: inline-block;
  animation: marquee 25s linear infinite;
}
.ticker-item {
  display: inline-block;
  padding: 0 3rem;
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Product Card (Home) */
.product-card {
  border: none;
  transition: all 0.4s ease;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
  z-index: 2;
}
.product-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.product-img-wrapper {
  height: 400px;
  overflow: hidden;
}
.product-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.8s;
}
.product-card:hover .product-img {
  transform: scale(1.1) rotate(1deg);
}

/* Flash Sale */
.flash-sale-section {
  background-color: #050505;
  background-image: radial-gradient(
    circle at 50% 50%,
    #1a1a1a 0%,
    #000000 100%
  );
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
.flash-sale-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.flash-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}
.countdown-box {
  display: inline-flex;
  gap: 15px;
  margin-top: 25px;
}
.time-unit {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--gold);
  padding: 15px 20px;
  border-radius: 10px;
  min-width: 85px;
  backdrop-filter: blur(5px);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}
.time-val {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
  color: var(--gold);
  font-family: "Playfair Display", serif;
}
.time-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #aaa;
  margin-top: 5px;
  display: block;
}
.flash-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: 0.4s;
  height: 100%;
  position: relative;
}
.flash-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
  border-color: var(--gold);
}
.flash-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: #000;
  padding: 5px 12px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.75rem;
  z-index: 2;
  letter-spacing: 1px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.flash-img-wrapper {
  height: 250px;
  overflow: hidden;
  position: relative;
  background: #f4f4f4;
}
.flash-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}
.flash-card:hover .flash-img {
  transform: scale(1.08);
}
.stock-bar {
  height: 6px;
  background: #f0f0f0;
  border-radius: 10px;
  margin-top: 15px;
  overflow: hidden;
}
.stock-fill {
  height: 100%;
  background: linear-gradient(90deg, #d4af37, #f7ef8a);
  border-radius: 10px;
  position: relative;
}
.price-strike {
  font-size: 0.9rem;
  color: #999;
  text-decoration: line-through;
}
.price-final {
  color: #000;
  font-weight: 700;
  font-size: 1.3rem;
  font-family: "Playfair Display", serif;
}

/* Contact & Blobs */
.contact-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  border: 1px solid #f0f0f0;
  position: relative;
  z-index: 2;
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--gold);
}
.contact-icon {
  width: 60px;
  height: 60px;
  background: #f9f9f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin-right: 20px;
  transition: 0.3s;
}
.contact-card:hover .contact-icon {
  background: var(--gold);
  color: white;
}
.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 5px solid white;
  position: relative;
  z-index: 2;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  z-index: 0;
  animation: moveBlob 10s infinite alternate;
}
.blob-1 {
  top: 10%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: #ffe5b4;
}
.blob-2 {
  bottom: 10%;
  right: -5%;
  width: 250px;
  height: 250px;
  background: #e0f7fa;
  animation-delay: 2s;
}
@keyframes moveBlob {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(30px, -30px);
  }
}

/* Media Queries Specific to Home */
@media (max-width: 768px) {
  .product-img-wrapper,
  .flash-img-wrapper {
    height: 180px !important;
  }
  .product-card h4,
  .flash-card h6 {
    font-size: 0.9rem !important;
  }
  .product-card h5,
  .flash-card .fs-5 {
    font-size: 0.9rem !important;
  }
  .card-body,
  .p-4 {
    padding: 0.8rem !important;
  }
}
@media (max-width: 576px) {
  .hero-title-gold {
    font-size: 3rem !important;
  }
  .gold-divider {
    width: 90% !important;
  }
  .flash-img-wrapper {
    height: 130px !important;
  }
  .flash-card .card-body {
    padding: 10px !important;
  }
  .flash-card h6 {
    font-size: 0.8rem !important;
    margin-bottom: 4px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .price-strike {
    font-size: 0.7rem !important;
  }
  .price-final {
    font-size: 0.95rem !important;
  }
  .flash-card .btn {
    font-size: 0.7rem !important;
    padding: 4px 0 !important;
    margin-top: 8px !important;
  }
  .flash-badge {
    font-size: 0.6rem;
    padding: 3px 6px;
    top: 8px;
    left: 8px;
  }
}
