body {
  font-family: 'Montserrat', sans-serif;
  cursor: none;
}

.bg-cream {
  background-color: #f7f4e8;
}

.text-charcoal {
  color: #333;
}

.text-gold {
  color: #b89759;
}

.text-gold-light {
  color: #d3b184;
}

.site-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  padding-bottom: 2px;
}

.site-btn:hover {
  color: #b89759;
  border-color: #b89759;
}

.hero-placeholder {
  font-family: 'Cormorant Garamond', serif;
}

.product-card .product-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  color: rgba(0, 0, 0, 0.05);
}

.product-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px;
  background: linear-gradient(to top, rgba(13, 13, 13, 0.7), transparent);
}

.product-info .font-serif {
  font-size: 1.25rem;
}

.product-info .text-gold-light {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
}

.marquee-track {
  display: flex;
  gap: 16px;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.anim-fade-up {
  animation: fadeUp 1s ease-in-out forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.anim-fade-in {
  animation: fadeIn 1s ease-in forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
}

.reveal.visible {
  opacity: 1;
  transition: opacity 1s ease;
}

.pulse-ring,
.pulse-ring-2 {
  border-radius: 50%;
  border: 1px solid rgba(184, 151, 90, 0.2);
  animation: pulse 2s infinite;
}

.pulse-ring {
  width: 48px;
  height: 48px;
  animation-duration: 1.5s;
}

.pulse-ring-2 {
  width: 80px;
  height: 80px;
  animation-duration: 2s;
}

.product-image-1 {
  background-image: url('https://catsocial.fyi/files/d774695e-60f7-4b12-a6a1-e61494050958.webp');
  background-size: cover;
  background-position: center;
}

.product-image-2 {
  background-image: url('https://catsocial.fyi/files/b0de0348-4fbb-4e95-b320-07a2b21f605a.webp');
  background-size: cover;
  background-position: center;
}

.product-image-3 {
  background-image: url('https://catsocial.fyi/files/8173cc0d-c642-4efa-90bd-a8d7578a3232.webp');
  background-size: cover;
  background-position: center;
}

.product-image-4 {
  background-image: url('https://catsocial.fyi/files/b420140c-d98e-4e26-8fa7-012f761d6304.webp');
  background-size: cover;
  background-position: center;
}

.product-image-5 {
  background-image: url('https://catsocial.fyi/files/b231e19c-e78a-42c4-a27d-177b665dba5b.webp');
  background-size: cover;
  background-position: center;
}

@keyframes pulse {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}