.menu-link {
  position: relative;
  transition: color 0.3s;
}

.menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #2563eb;
  transition: width 0.3s;
}

.menu-link:hover::after {
  width: 100%;
}

.btn-outline {
  border: 2px solid #2563eb;
  padding: 8px 18px;
  border-radius: 999px;
  color: #2563eb;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: #2563eb;
  color: white;
}

.btn-primary {
  background: #2563eb;
  color: white;
  padding: 8px 20px;
  border-radius: 999px;
  transition: transform 0.3s;
}

.btn-primary:hover {
  transform: scale(1.05);
}

.dropdown-item {
  display: block;
  padding: 12px 18px;
  transition: background 0.3s;
}

.dropdown-item:hover {
  background: #f1f5f9;
}

.mobile-item {
  display: block;
  padding: 14px 20px;
  border-bottom: 1px solid #eee;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-slideDown {
  animation: slideDown 0.3s ease-out;
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-hero {
  animation: heroFade 1s ease-out forwards;
}

.btn-hero-primary {
  background: #2563eb;
  color: white;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-hero-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.btn-hero-outline {
  border: 2px solid white;
  color: white;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-hero-outline:hover {
  background: white;
  color: #111827;
}

.product-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #eee;
  transition: all 0.4s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.product-img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
}

.product-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.product-list {
  border-top: 1px dashed #ddd;
  margin-top: 12px;
}

.product-list li {
  padding: 10px 0;
  border-bottom: 1px dashed #ddd;
  font-size: 15px;
  color: #374151;
}

.view-all {
  display: inline-block;
  margin-top: 14px;
  font-weight: 600;
  color: #2563eb;
  transition: transform 0.3s;
}

.view-all:hover {
  transform: translateX(6px);
}
