/* 🌌 IRONPAW LEGACY KENNELS – SUPREME STYLESHEET */

/* UNIVERSAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Orbitron', sans-serif;
  background: url('assets/background.png') center/cover no-repeat fixed;
  background-color: rgba(10, 10, 10, 0.7);
  background-blend-mode: overlay;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
}

.neon-theme {
  backdrop-filter: blur(4px);
  position: relative;
}

/* LOGO */
.logo-spin-glow {
  width: 90px;
  height: auto;
  animation: spinPulse 9s linear infinite, glowPulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 12px #ffcc00);
}

@keyframes spinPulse {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes glowPulse {
  0%, 100% { filter: drop-shadow(0 0 10px #ffaa00); }
  50% { filter: drop-shadow(0 0 25px #ff9900); }
}

/* Top Padding for Page Content */
body::before {
  content: "";
  display: block;
  height: 160px; /* Adjust based on nav height */
}

/* Add bottom spacing from page content to fixed footer */
body::after {
  content: "";
  display: block;
  height: 160px; /* Space above fixed footer */
}

/* Nav Bar with Logo Left and Supreme Button Nav Tabs */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  padding: 2rem 6rem;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #ff990022;
  box-shadow: 0 0 25px #ff9900, 0 0 60px #ff6600;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1300px;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex: 1;
}

.nav-links li a {
  background: rgba(255, 153, 0, 0.1);
  border: 2px solid #ffaa00;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  transition: all 0.4s ease;
  box-shadow: 0 0 8px #ffaa00;
  display: inline-block;
  text-align: center;
}

.nav-links li a:hover,
.nav-links li a.active {
  background: #ff9900;
  color: #000;
  box-shadow: 0 0 20px #ffaa00, 0 0 40px #ffcc00;
  transform: scale(1.1);
}

.logo-spin-glow {
  width: 90px;
  height: auto;
  animation: spinPulse 25s linear infinite, glowPulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 12px #ffcc00);
  margin-right: auto;
}

@keyframes spinPulse {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes glowPulse {
  0%, 100% { filter: drop-shadow(0 0 10px #ffaa00); }
  50% { filter: drop-shadow(0 0 25px #ff9900); }
}
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #ffcc00;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: 80px;
    right: 0;
    width: 250px;
    padding: 1rem;
  }
  .nav-links.active {
    display: flex;
  }
  .hamburger {
    display: block;
  }
}
/* 🐶 TopDog Image Styling */
.topdog-quote-container {
  position: fixed;
  right: 20px;
  top: 43%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 9999;
  animation: floatUpDown 4s ease-in-out infinite;
  background: none !important;     /* ✅ No container background */
}

/* 🐶 Image Fixes */
.topdog-img {
  width: 140px;
  height: auto;
  background: none !important;     /* ✅ Remove any image background */
  filter: drop-shadow(0 0 10px #FFD700);
  image-rendering: auto;
  mix-blend-mode: normal;
  box-shadow: none !important;     /* ✅ Remove any accidental box shadow */
  animation: pulseGlow 2s infinite alternate;
  display: block;
}


/* 💬 Glowing Quote Box */
.quote-rotator {
  margin-top: 12px;
  padding: 12px 18px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 0.95rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 12px #ffcc00, 0 0 24px #ffaa00;
  animation: pulseGlow 2s ease-in-out infinite;
  max-width: 180px;
}

/* ✨ Pulsing & Floating Animations */
@keyframes pulseGlow {
  from { transform: scale(1); box-shadow: 0 0 8px #ffcc00; }
  to { transform: scale(1.05); box-shadow: 0 0 22px #ffaa00; }
}

@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
/* 📵 HIDE TopDog Avatar & Quote on Mobile Devices Only */
@media (max-width: 768px) {
  .topdog-quote-container {
    display: none !important;
  }
}

/* 🐶 Supreme Glowing Dog Chasing Bone (Universal Placement, No Box) */
.dog-chase {
  position: fixed;              /* Fixed for consistent screen positioning */
  bottom: 2590px;                 /* Distance from the bottom edge */
  left: 0;
  width: 100%;
  height: 140px;
  pointer-events: none;
  z-index: 9999;                /* Supreme layering */
  overflow: visible;            /* Prevents clipping */
}

/* ✨ Supreme Big Dog PNG */
.bigdog-png {
  position: absolute;
  height: 100px;
  animation: dogChase 35s linear infinite;
  filter: drop-shadow(0 0 16px #ffaa00) drop-shadow(0 0 32px #ffcc00);
  background: none !important;
  image-rendering: auto;
  mix-blend-mode: normal;
  display: block;
  box-shadow: none !important;
  transition: transform 0.4s ease;
}

/* 🔁 Side-to-Side Chase Motion */
@keyframes dogChase {
  0%   { left: -150px; transform: scaleX(1); }
  50%  { left: 100%; transform: scaleX(1); }
  51%  { transform: scaleX(-1); }
  100% { left: -150px; transform: scaleX(-1); }
}


/* TITLES */
.glow-title {
  text-align: center;
  font-size: 3rem;
  margin: 2rem 0 1rem;
  color: #ffcc00;
  text-shadow: 0 0 12px #ffcc00, 0 0 24px #ffaa00;
}

.glow-subtext {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #fff;
  opacity: 0.85;
}

.glow-subtitle {
  font-size: 1.6rem;
  color: #ff9900;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 6px #ffaa00;
}

.pulse-box {
  margin: 2rem auto;
  padding: 2rem;
  max-width: 1100px;
  border: 2px solid #ffaa00;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 20px #ff9900;
  animation: pulse 2s infinite alternate;
}

@keyframes pulse {
  from { box-shadow: 0 0 20px #ff9900; }
  to { box-shadow: 0 0 40px #ffaa00; }
}

.pulse-btn, .restart-btn {
  padding: 0.8rem 1.5rem;
  background: #ff9900;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 10px #ff9900;
}
.pulse-btn:hover, .restart-btn:hover {
  background: #ffaa00;
  box-shadow: 0 0 20px #ffaa00;
}

.contact-section {
  margin-top: 140px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  margin-top: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  max-width: 500px;
  padding: 1rem;
  font-size: 1rem;
  border: 2px solid #ffaa00;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  box-shadow: 0 0 10px #ffaa00;
}

/* 🐾 Supreme Glowing Signup Popup */
.signup-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.75);
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(6px);
}

/* ⚡️ Inner Box */
.popup-content {
  background: linear-gradient(145deg, #1c1c1c, #333);
  color: #fff;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 0 25px #FFD700, 0 0 40px #ff8800;
  animation: popupZoom 0.6s ease-out;
}

/* ✨ Title */
.popup-content h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #FFD700;
  text-shadow: 0 0 6px #ffaa00;
}

/* 🐶 Message */
.popup-content p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #eee;
  margin-bottom: 20px;
}

/* 🎯 Close Button */
.popup-content button,
#popupCloseBtn {
  padding: 10px 24px;
  background: #FFD700;
  border: none;
  color: #000;
  font-weight: bold;
  font-family: 'Orbitron', sans-serif;
  border-radius: 10px;
  cursor: pointer;
  animation: pulseGlow 1.5s infinite alternate;
  box-shadow: 0 0 10px #ffcc00, 0 0 20px #ffaa00;
  transition: transform 0.3s ease;
}

.popup-content button:hover,
#popupCloseBtn:hover {
  transform: scale(1.05);
}

/* ✨ Animations */
@keyframes popupZoom {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 8px #FFD700, 0 0 16px #ffaa00; }
  100% { box-shadow: 0 0 18px #FFD700, 0 0 28px #ff8800; }
}

/* 🌟 Supreme Glowing Footer for IronPaw */
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 1.2rem;
  background: rgba(0, 0, 0, 0.85);
  border-top: 2px solid #ffaa00;
  box-shadow: 0 0 30px #ffaa00, 0 0 60px #ff6600;
  text-align: center;
  z-index: 999;
}

.footer-links, .social-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.footer-links a, .social-icons a {
  color: #ffaa00;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.footer-links a:hover, .social-icons a:hover {
  text-shadow: 0 0 10px #ffaa00, 0 0 20px #ffcc00;
}

.footer-note {
  font-size: 0.85rem;
  color: #fff;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  margin: 0 10px;
  color: #ffaa00;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid #ffaa00;
  border-radius: 50%;
  box-shadow: 0 0 15px #ffaa00, 0 0 30px #ff6600;
  text-decoration: none;
  transition: all 0.4s ease;
  animation: spinPulse 8s linear infinite;
}

.social-icons a:hover {
  background: #ffaa00;
  color: black;
  transform: rotate(360deg) scale(1.2);
  box-shadow: 0 0 30px #ffaa00, 0 0 60px #ff6600;
}

@keyframes spinPulse {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* MEMORY GAME - UPDATED SUPREME STRUCTURE */
.memory-game-section {
  text-align: center;
  padding: 2rem 1rem;
}

.memory-grid {
  display: grid;
  grid-template-columns: repeat(4, 140px);
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin: 3rem auto;
  padding: 1rem;
  width: 100%;
  max-width: 800px;
}

.memory-card {
  width: 140px;
  height: 140px;
  background: #111;
  border: 2px solid #ffcc00;
  border-radius: 14px;
  text-align: center;
  perspective: 1000px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  cursor: pointer;
  box-shadow: 0 0 10px #ffaa00;
}

.memory-card:hover {
  box-shadow: 0 0 20px #ffaa00, 0 0 40px #ffcc00;
}


.card-inner {
  transform-style: preserve-3d;
  transition: transform 0.8s;
  position: relative;
  width: 100%;
  height: 100%;
}

.memory-card.flipped .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  backface-visibility: hidden;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.card-front {
  background: #000;
}

.card-front img.card-front-img {
  max-height: 70px;
  filter: drop-shadow(0 0 10px #ffaa00);
}

.card-back {
  background: #ff9900;
  color: #000;
  transform: rotateY(180deg);
  font-weight: bold;
}

/* WIN POPUP */
.win-popup {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
}

.win-box {
  background: #111;
  padding: 2rem;
  border: 2px solid #ffaa00;
  border-radius: 16px;
  box-shadow: 0 0 25px #ffaa00;
  text-align: center;
}


.win-box {
  background: #111;
  padding: 2rem;
  border: 2px solid #ffaa00;
  border-radius: 16px;
  box-shadow: 0 0 25px #ffaa00;
  text-align: center;
}
/* 📱 MEMORY GAME – MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .memory-grid {
    grid-template-columns: repeat(3, 120px);
    gap: 1rem;
    padding: 1rem;
    max-width: 100%;
  }

  .memory-card {
    width: 120px;
    height: 120px;
    border-radius: 12px;
  }

  .card-front img.card-front-img {
    max-height: 50px;
  }

  .card-front,
  .card-back {
    font-size: 1.8rem;
    border-radius: 12px;
  }

  .win-box {
    padding: 1.5rem;
    border-radius: 14px;
  }
}

/* CYBER OVERLAY */
.cyber-overlay::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(to right, #1e130c, #9a8478);
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}
/* 🔥 Pulse Box Universal Centering */
.pulse-box {
  margin: 2rem auto;
  padding: 2rem;
  max-width: 1100px;
  border: 2px solid #ffaa00;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 20px #ff9900;
  animation: pulse 2s infinite alternate;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Email Signup Form Centering */
.email-signup form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 400px;
  margin-top: 1rem;
}

.email-signup input[type="email"] {
  padding: 1rem;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #ffaa00;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
}

.email-signup button {
  padding: 0.8rem 1.5rem;
  background: #ffaa00;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 0 10px #ffaa00;
  transition: 0.3s;
}

.email-signup button:hover {
  background: #ffcc00;
  box-shadow: 0 0 20px #ffcc00;
}

/* 🌟 Supreme Floating Image Background Elements */
.float-img {
  position: fixed;
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
  animation: floatCycle 18s ease-in-out infinite;
}

.float-img.dogbone  { background-image: url('assets/dogbone.png'); top: 10%; left: 20%; animation-delay: 0s; }
.float-img.dogface  { background-image: url('assets/dogface.png'); top: 30%; left: 75%; animation-delay: 4s; }
.float-img.dogbowl  { background-image: url('assets/dogbowl.png'); top: 65%; left: 30%; animation-delay: 8s; }
.float-img.dogpaw   { background-image: url('assets/dogpaw.png'); top: 80%; left: 55%; animation-delay: 12s; }

@keyframes floatCycle {
  0%   { transform: translateY(0) rotate(0deg); }
  50%  { transform: translateY(-30px) rotate(180deg); }
  100% { transform: translateY(0) rotate(360deg); }
}
/* 🐾 Puppy Collage Description */
.puppy-description-box {
  max-width: 900px;
  margin: 2rem auto 3rem auto;
  padding: 2rem;
  background: rgba(255, 204, 0, 0.05);
  border: 2px solid rgba(255, 204, 0, 0.2);
  border-radius: 20px;
  box-shadow: 0 0 25px #ff990066, 0 0 45px #ffaa0044;
  backdrop-filter: blur(6px);
  text-align: center;
  animation: pulseGlowBox 6s ease-in-out infinite;
}

.puppy-description {
  color: #fff3d1;
  font-size: 1.1rem;
  line-height: 1.8;
  text-shadow: 0 0 8px #000000aa;
}

.puppy-description strong {
  color: #ffaa00;
}

/* 🐾 3x3 Puppy Grid */
.puppy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  justify-items: center;
  padding: 0 30px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

/* 🐶 Puppy Card */
.puppy-card {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 0 20px #ffaa00, 0 0 40px #ff6600;
  text-align: center;
  width: 100%;
  max-width: 320px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: pulseGlowBox 4s infinite ease-in-out;
}

.puppy-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px #ffaa00, 0 0 80px #ff6600;
}

/* 🖼️ Puppy Card Image Inside Cards */
.puppy-card img {
  width: 100%;
  max-width: 250px; /* 🔥 Scaled down for sleeker look */
  height: auto;
  border-radius: 16px;
  margin-bottom: 1rem;
  box-shadow: 0 0 12px #ffaa00;
}

/* 🖼️ Puppy Full Profile Images (on individual pages) */
.puppy-profile-img {
  width: 100%;
  max-width: 250px; 
  border-radius: 16px;
  margin: 2rem 0;
  box-shadow: 0 0 15px #ffaa00;
}

/* 🐾 Puppy Name */
.puppy-card h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 12px;
  text-shadow: 0 0 10px #ffaa00;
}

/* 🎯 Puppy Profile Button */
.puppy-btn {
  background: #ffaa00;
  color: #000;
  border: none;
  border-radius: 25px;
  padding: 12px 18px;
  font-weight: bold;
  cursor: pointer;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 0 15px #ffaa00, 0 0 30px #ff6600;
  transition: transform 0.3s ease;
}

.puppy-btn:hover {
  transform: scale(1.1);
  background: #ffcc00;
  color: #000;
}

/* 💳 Deposit Button Supreme Glow */
.deposit-btn {
  background: linear-gradient(135deg, #ffaa00 0%, #ff6600 100%);
  color: #000;
  font-weight: bold;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 0 20px #ffaa00, 0 0 40px #ff6600;
  transition: all 0.4s ease, transform 0.4s ease;
  text-shadow: 0 0 5px #fff;
  animation: pulseGlowBtn 2.5s infinite alternate;
}

.deposit-btn:hover {
  background: linear-gradient(135deg, #ffcc00 0%, #ffaa00 100%);
  transform: scale(1.08);
  box-shadow: 0 0 30px #ffcc00, 0 0 60px #ffaa00;
}

/* ✨ Pulse Glow Animation for Puppy Cards and Description */
@keyframes pulseGlowBox {
  0% { box-shadow: 0 0 20px #ffaa00, 0 0 40px #ff6600; }
  50% { box-shadow: 0 0 30px #ff6600, 0 0 60px #ffaa00; }
  100% { box-shadow: 0 0 20px #ffaa00, 0 0 40px #ff6600; }
}

/* ✨ Pulse Glow Animation for Deposit Button */
@keyframes pulseGlowBtn {
  0% {
    box-shadow: 0 0 20px #ffaa00, 0 0 40px #ff6600;
    transform: scale(1);
  }
  100% {
    box-shadow: 0 0 35px #ffcc00, 0 0 70px #ffaa00;
    transform: scale(1.05);
  }
}
/* 🎥 Bolt AI Host Video */
.bolt-host-video {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 180px;
  margin-bottom: 40px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 2px solid #ffaa0022;
  border-radius: 20px;
  box-shadow: 0 0 25px #ffaa00, 0 0 50px #ff6600;
  backdrop-filter: blur(5px);
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  animation: pulseGlowBox 6s ease-in-out infinite;
}

.bolt-video {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 0 25px #ffaa00, 0 0 60px #ff6600;
}
/* 📰 Glowing News Cards */
.news-article {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid #ffaa00;
  border-radius: 12px;
  margin: 1rem 0;
  padding: 1rem 1.5rem;
  box-shadow: 0 0 12px #ffaa00, 0 0 24px #ffcc00;
  transition: transform 0.3s ease;
}

.news-article:hover {
  transform: scale(1.03);
}

.news-article h3 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.news-article p {
  color: #ccc;
  margin-bottom: 0.75rem;
}

.news-article a {
  color: #ffcc00;
  font-weight: bold;
  text-decoration: none;
}

.news-article a:hover {
  text-decoration: underline;
}
/* 🐾 SOLD Banner Across Profile */
.puppy-card.sold {
  position: relative;
  overflow: hidden;
}

.sold-banner {
  position: absolute;
  top: 40%;
  left: -135px;
  width: 220%;
  transform: rotate(-45deg);
  background: #ff0000;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  padding: 10px 0;
  box-shadow: 0 0 12px #ff0000aa;
  font-family: 'Orbitron', sans-serif;
  z-index: 10;
  letter-spacing: 2px;
  pointer-events: none;
}

/* Optional: dim image for sold puppies */
.puppy-card.sold img {
  opacity: 0.6;
  filter: grayscale(80%);
}
.disabled-link {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.5;
  background-color: #888; /* Optional: dull background */
  text-decoration: line-through;
}
