/* Button Styles */

/* Primary Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background-color: #003366;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #004080;
  transform: translateY(-2px);
}

/* Header Button */
.header-button {
  padding: 10px 20px;
  color: #003366;
  background: #003366;
  color: #f7f7f7;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 13px;

}

.header-button:hover {
  background: #003366;
  transform: translateY(-2px);
  color: #f7f7f7;
}

/* Book Button */
.book {
  background: #ffd700;
  color: #003366;


}

.book:hover {
  background: #ffc700;
}

/* Shop Button */
.shop {
  background: #003366;
  color: #fff;

}

.shop:hover {
  background: #004080;
}

/* Discover Button */
.discover-button {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: #003366;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.discover-button:hover {
  background: #004080;
  transform: translateY(-2px);
}


/* Consult Button */
.consult-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: #ffd700;
  color: #003366;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.consult-btn:hover {
  background: #ffc700;
  transform: translateY(-2px);
}

/* Exam Button */
.exam-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: #003366;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.exam-btn:hover {
  background: #004080;
  transform: translateY(-2px);
}

/* View Button */
.view-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: transparent;
  color: #003366;
  border: 2px solid #003366;
  border-radius: 4px;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-btn:hover {
  background: #003366;
  color: #fff;
}

/* Clinic Button */
.clinic-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: #ffd700;
  color: #003366;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.clinic-btn:hover {
  background: #ffc700;
  transform: translateY(-2px);
}

/* Retina Button */
.retina-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: #003366;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.retina-btn:hover {
  background: #004080;
  transform: translateY(-2px);
}

/* Cataract Button */
.cataract-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: #ffd700;
  color: #003366;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cataract-btn:hover {
  background: #ffc700;
  transform: translateY(-2px);
}

.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 1000;
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #003366;
  color: white;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
}

.floating-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.floating-btn i {
  font-size: 16px;
}

.floating-btn span {
  position: absolute;
  right: 50px;
  background: #003366;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  white-space: nowrap;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.floating-btn:hover span {
  opacity: 1;
  right: 55px;
}

.whatsapp {
  background: #25D366;
}

.back-to-top {
  background: #666;
}

@media (max-width: 768px) {
  .floating-buttons {
    bottom: 10px;
    right: 10px;
  }

  .floating-btn {
    width: 35px;
    height: 35px;
  }

  .floating-btn i {
    font-size: 14px;
  }
}