.detalle-container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1rem;
}

.detalle-card {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  overflow: hidden;
  border: none;
  background-color: #fff8f0;
}

.detalle-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #fff8f0;
  border-right: 1px solid #ddd;
  max-height: 450px;
  display: block;
}

.detalle-info {
  padding: 2rem;
  color: #290B00;
}

.detalle-info h2 {
  color: #e65100;
  margin-bottom: 1rem;
}

.detalle-info p {
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #e65100;
  border-radius: 50%;
}

.volver-flecha {
  font-size: 2rem;      
  color: #e65100;        
  text-decoration: none;  
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease;
}

.volver-flecha:hover {
  color: #bf360c;
}

.btn-adoptar-custom {
  background-color: #e65100;
  color: white;
  font-weight: 700;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-adoptar-custom:hover {
  background-color: #bf360c;
}

@media (max-width: 768px) {
  .detalle-img {
    border-right: none;
    border-bottom: 1px solid #ddd;
  }
  .detalle-info {
    padding: 1.5rem;
  }
}