html { scroll-behavior: smooth; }

button, a { transition: all 0.3s ease; }

video { object-fit: cover; }

/* Subtle luxury entrance animation */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 800ms ease, transform 800ms ease;
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* Modal pop animation */
@keyframes pop {
  0% { transform: translateY(12px) scale(0.98); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.animate-pop { animation: pop 240ms ease-out; }

/* Honeypot */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.9);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.badge-gold {
  border-color: rgba(200,162,78,0.35);
  color: #0b0b0b;
}

/* Luxury vignette */
.hero-vignette::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.35) 35%,
    rgba(0,0,0,0.1) 60%,
    rgba(0,0,0,0) 100%
  );
  pointer-events: none;
}

/* Prevent "white flash" under video during load */
.hero-vignette {
  background: #0b0b0b;
}

/* Product gallery thumbs */
.thumb {
  display: block;
  border-radius: 0.75rem;
  border: 1px solid rgba(0,0,0,0.12);
  overflow: hidden;
  background: #fff;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.thumb:hover {
  transform: translateY(-1px);
  border-color: rgba(200,162,78,0.55);
}
.thumb-active {
  border-color: rgba(200,162,78,0.9);
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}

/* Subtle luxury zoom on main image */
.product-zoom {
  transform: scale(1);
  transition: transform 400ms ease;
}
.product-zoom:hover {
  transform: scale(1.03);
}

/* Floating WhatsApp (Quiet Luxury) */
.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 14px;
  border-radius: 999px;

  background: rgba(11, 11, 11, 0.92);
  color: #fff;
  border: 1px solid rgba(200, 162, 78, 0.30);

  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);

  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.floating-wa:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 162, 78, 0.65);
  box-shadow: 0 22px 55px rgba(0,0,0,0.28);
}

.floating-wa__icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;

  display: grid;
  place-items: center;

  background: rgba(200, 162, 78, 0.12);
  border: 1px solid rgba(200, 162, 78, 0.35);

  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}

.floating-wa__text {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255,255,255,0.92);
}

/* Mobile: icon-only (clean) */
@media (max-width: 640px) {
  .floating-wa {
    padding: 12px;
  }
  .floating-wa__text {
    display: none;
  }
}

/* Backdrop-filter fallback (if browser doesn't support it) */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .badge,
  .floating-wa {
    background: rgba(11, 11, 11, 0.96);
  }
}

/* Trust & Credibility */
.trust-card {
  padding: 2rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;

  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.trust-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200,162,78,0.45);
  box-shadow: 0 24px 60px rgba(0,0,0,0.10);
}

.trust-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.trust-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

/* Testimonials */
.testimonial-card {
  padding: 2.25rem;
  border-radius: 1.5rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);

  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200,162,78,0.45);
  box-shadow: 0 24px 60px rgba(0,0,0,0.10);
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  font-style: italic;
}

.testimonial-card span {
  display: block;
  margin-top: 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #777;
}
