/* Registry Section Styles */
.registry-stores {
  max-width: 300px;
  margin: 0 auto;
}

.registry-btn {
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
}

.registry-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.registry-btn:active {
  transform: translateY(0);
}

/* Hero button success variant */
.hero-btn.btn-success {
  background: #586B36;
  color: white;
  border-color: #586B36;
}

.hero-btn.btn-success:hover {
  background: #485B26;
  border-color: #485B26;
  color: white;
  text-decoration: none;
}

/* Hero buttons container - responsive for 3 buttons */
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* Mobile responsiveness for hero buttons */
@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  
  .hero-btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  
  .registry-stores {
    max-width: 100%;
  }
  
  .registry-btn {
    padding: 14px 20px;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .hero-buttons {
    gap: 10px;
  }
  
  .hero-btn {
    padding: 12px 20px;
    font-size: 14px;
  }
}

/* Registry card highlight animation */
@keyframes registryHighlight {
  0% { 
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  50% { 
    box-shadow: 0 0 20px rgba(213, 228, 96, 0.5);
  }
  100% { 
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
}

#registry.highlight {
  animation: registryHighlight 2s ease-in-out;
}

/* Copy button styles */
.copy-registry-link {
  background-color: var(--bs-secondary);
  border-color: var(--bs-secondary);
  color: white;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.copy-registry-link:hover {
  background-color: var(--bs-dark);
  border-color: var(--bs-dark);
  transform: translateY(-1px);
}

/* Theme integration */
.btn-success {
  background-color: #586B36;
  border-color: #586B36;
}

.btn-success:hover {
  background-color: #485B26;
  border-color: #485B26;
}
