body { background-color: #f8f9fa; }

/* Custom navbar gradient */
.custom-navbar {
    background: linear-gradient(90deg, #1B003B, #330066); /* very dark purple gradient */
  color: #ffffff;
}
}

/* Ensure text and buttons stay visible */
.custom-navbar .navbar-brand,
.custom-navbar .nav-link,
.custom-navbar .btn {
  color: white !important;
}

.custom-navbar .btn-outline-light {
  border-color: rgba(255,255,255,0.8);
}

.custom-navbar .btn-outline-light:hover {
  background-color: rgba(255,255,255,0.2);
  color: #fff;
}

/* Product card styling */
.product-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Image container for consistent height */
.card-img-top-wrapper {
  height: 200px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f1f5f9;
}

.card-img-top-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Title and button */
.product-card .card-title {
  font-weight: 600;
}

.product-card .btn-outline-primary {
  border-color: #004e92;
  color: #004e92;
}

.product-card .btn-outline-primary:hover {
  background-color: #004e92;
  color: #fff;
}
.navbar-logo {
  height: 50px; /* adjust for your rectangular logo */
  width: auto;
}

/* Center logo + WhatsApp without overlapping menu */
.navbar-center {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hamburger and brand styling */
.navbar-dark .navbar-toggler {
  border-color: rgba(255,255,255,0.7);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255,255,255,0.9%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Mobile adjustments */
@media (max-width: 991.98px) {
  .navbar-center {
    justify-content: center;
    margin: 10px 0;
  }
}

footer a:hover {
  text-decoration: underline;
  color: #0056b3; /* bootstrap primary color */
}

.custom-footer {
  background: linear-gradient(90deg, #1B003B, #330066); /* very dark purple gradient */
  color: #ffffff;
}

.custom-footer a {
  color: #ffffff; /* default link color */
  text-decoration: none;
}

.custom-footer a:hover {
  color: #9B30FF; /* bright purple on hover */
  text-decoration: underline;
}
