html, body {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
}


/* Header Customization */
.navbar {
  transition: all 0.3s ease;
}

.logo-img {
  height: 70px !important;
  transition: transform 0.3s ease;
}

.navbar-brand span {
  font-weight: 700;
  font-size: 1.9rem;
  letter-spacing: 0.5px;
}

.navbar-brand:hover .logo-img {
  transform: scale(1.08);
}

.nav-link {
  font-size: 1.05rem;
  color: #333 !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #007bff !important;
}

.navbar .btn-primary {
  font-size: 0.95rem;
  border-radius: 50px;
  padding: 8px 18px;
}

@media (max-width: 991px) {
  .logo-img {
    height: 55px !important;
  }
  .navbar-brand span {
    font-size: 1.5rem;
  }
}

.hero {
  background: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
  min-height: 90vh;
}
.category-box:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}
.product-card img {
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
.card {
  border-radius: 1.2rem !important;
}
#paypal-button-container {
  min-height: 150px;
}
footer {
  margin-top: auto;
}

/* Footer design */
footer .social-icons a:hover {
  color: #ffc107 !important;
  transform: scale(1.1);
  transition: all 0.3s ease;
}
footer h5 {
  color: #ffc107;
}
footer a:hover {
  text-decoration: underline;
}