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;
  will-change: transform;
  animation: marquee var(--marquee-speed, 20s) linear infinite;
}

.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.marquee-track.paused {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-50%,0,0); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none !important; transform: none !important; }
}

.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;
}

.product-image-6 {
  background-image: url('https://catsocial.fyi/files/a06af532-1bdf-406d-9687-974aaec5ed52.webp');
  background-size: cover;
  background-position: center;
}

.product-image-7 {
  background-image: url('https://catsocial.fyi/files/bf29efc8-1d45-4f17-aeae-abfeffd1bec7.gif');
  background-size: cover;
  background-position: center;
}

.product-image-8 {
  background-image: url('https://catsocial.fyi/files/9260e51e-6995-4ae8-b1e3-08fdc974eced.gif');
  background-size: cover;
  background-position: center;
}

.product-image-9 {
  background-image: url('https://catsocial.fyi/files/3d84115a-a24c-42e2-bc37-3f702f8dec92.gif');
  background-size: cover;
  background-position: center;
}

.product-image-10 {
  background-image: url('https://catsocial.fyi/files/ec77fa8b-e427-4423-8330-26a5b56fa709.gif');
  background-size: cover;
  background-position: center;
}


@keyframes pulse {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(10,10,10,0.08);
  transition: transform 0.35s cubic-bezier(0.2,0.9,0.2,1), box-shadow 0.35s;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.02));
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(10,10,10,0.12); }

.product-image {
  background-size: cover;
  background-position: center;
  height: 14rem;
  display: block;
  border: none;
  outline: none;
}

.product-placeholder {
  border: none;
  outline: none;
}

.product-card {
  border: none;
}

.product-body {
  padding: 1.25rem 1rem;
}

.product-title { font-size: 1.05rem; color: #f7f4e8; margin-bottom: 0.35rem; }
.product-price { color: #d3b184; font-weight: 600; letter-spacing: 0.06em; }

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.9rem; border-radius: 999px; text-decoration: none;
  background: transparent; border: 1px solid rgba(255,255,255,0.06); color: #f7f4e8;
  transition: background 0.22s, transform 0.15s;
}
.btn:hover { background: rgba(255,255,255,0.03); transform: translateY(-2px); }

@media (max-width: 960px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .product-grid { grid-template-columns: 1fr; }
}