.navbar {
    background-color: #000;
    padding-left: 190px;
    padding-right: 190px;
    padding-top: 20px;
    padding-bottom: 20px;
    min-height: 90px; /* Keeps desktop height but allows expansion */
}


/* Mobile adjustments */
@media (max-width: 991.98px) {
    .navbar {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .navbar-collapse {
        position: static; /* Allows menu to push down content */
        background-color: #000; /* So dropdown is visible on mobile */
        padding-bottom: 10px;
    }
}
body {
    margin: 0;
    padding: 0;
    background-color: #f4f2ed;
}

.navbar-nav {
    margin: 0 auto;
}

.nav-link {
    color: #fff !important;
    font-weight: 400;
    margin: 0 15px;
    position: relative;
}

.nav-link.active::after {
    content: "";
    display: block;
    height: 2px;
    width: 60%;
    background-color: #ccc;
    margin: 4px auto 0;
}

.btn-login {
    color: white;
    background: none;
    border: none;
}

.btn-login:hover {
    background: none !important;
    color: white !important;
}

.wishlist,
.cart {
    color: white;
    text-decoration: none;
    margin-right: 15px;
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: red;
    color: white;
    font-size: 10px;
    padding: 1px 6px;
    border-radius: 50%;
}

.navbar-toggler {
    border: none;
}

@media (max-width: 991.98px) {
    .navbar {
        padding-left: 20px;
        padding-right: 20px;
    }

    .navbar-nav {
        margin-left: 0;
    }

    .nav-link {
        margin: 10px 0;
    }
}

.modal-content {
  border-radius: 0;
  overflow: hidden;
}

.input-group-text {
  background-color: #fff;
  border-right: 0;
}

.input-group .form-control {
  border-left: 0;
}

.btn-outline-dark,
.btn-dark {
  border-radius: 0;
  font-weight: bold;
}

#loginBtn, #signupBtn {
  border-radius: 0;
}

.auth-form input,
.auth-form .input-group-text,
.auth-form .form-check-label,
.auth-form .btn {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}

.auth-form .form-control {
  padding: 12px 10px;
}

.auth-form .input-group {
  border-radius: 5px;
}

.auth-form .btn {
  font-weight: 600;
  letter-spacing: 0.5px;
}

.modal-content {
  border-radius: 0;
}

.input-group-text {
  background-color: #fff;
  border: 1px solid #ced4da;
}

input.form-control {
  border: 1px solid #ced4da;
}

.modal-content {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.btn-close {
  z-index: 999;
}
button[aria-label="Close"]:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
.custom-close-button {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  border: none;
  background-color: white;
  border-radius: 50%;
  font-size: 22px;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  z-index: 1051;
  transition: all 0.2s ease;
}

.custom-close-button:hover {
  background-color: #f2f2f2;
  transform: scale(1.05);
}

a {
  position: relative;
  text-decoration: none;
  color: inherit; /* keeps current color (e.g., white in navbar) */
  transition: color 0.3s ease;
}

a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -2px;
  background-color: currentColor;
  transition: width 0.3s ease;
}

a:hover::after {
  width: 100%;
}

a:hover {
  color: #ccc; /* you can change this to your desired hover color */
}


/* Default nav link */
.nav-link {
  color: #fff !important;
  font-weight: 400;
  margin: 0 15px;
  position: relative;
  transition: color 0.3s ease;
}

/* Animated underline (default hidden) */
.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -4px;
  background-color: currentColor;
  transition: width 0.3s ease;
}

/* Hovered nav link (if not active) */
.nav-link:hover:not(.active) {
  color: #ddd !important;
}

.nav-link:hover:not(.active)::after {
  width: 100%;
  background-color: #ccc;
}

/* Active nav link */
.nav-link.active {
  color: #ffc107 !important; /* Highlight current tab */
}

.nav-link.active::after {
  width: 100%;
  background-color: #ffc107;
}

btn-login {
  color: white;
  background: transparent;
  border: 1px solid white;
  padding: 6px 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-login:hover {
  background-color: #ffc107; /* or any hover color */
  color: black;
  border-color: #ffc107;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: bold;
  font-size: 1.25rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  padding: 8px 12px;
  border-radius: 8px;
}

.navbar-brand:hover {
  box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.5);
  transform: scale(1.03);
  background-color: rgba(255, 255, 255, 0.1); /* optional subtle background */
}
.navbar {
  background-color: #000 !important;
}

.footer {
  background-color: #101010;
  color: #f5f5f5;
  padding: 50px 20px 20px;
  font-family: 'Poppins', sans-serif;
  /* position: relative; */
  overflow: hidden;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-column h3,
.footer-column h4 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  position: relative;
  display: inline-block;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin: 0.5rem 0;
}

.footer-column ul li a {
  color: #f5f5f5;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.footer-column ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #ffc107 ;
  transition: width 0.3s ease;
}

.footer-column ul li a:hover::after {
  width: 100%;
}

.footer-column ul li a:hover {
  color: #ffc107 ;
}

.footer-column ul li a[href*="facebook.com"] :hover {
  color: #1877F2;
}

.social-icons a:hover {
  color: #fa0cb6;
  transform: translateY(-3px);
}
.social-icons a {
  color: white; /* default icon color */
  margin-right: 15px;
  font-size: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

/* Facebook hover - blue + underline */
.social-icons a[href*="facebook"]:hover {
  color: #1877f2; /* Facebook blue */
}

.social-icons a[href*="facebook"]:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: #1877f2;
}

.social-icons a[href*="youtube"]:hover {
  color: #ff0000; /* Facebook blue */
}

.social-icons a[href*="youtube"]:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: #ff0000;
}

.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    margin-bottom: 2rem;
  }

  .social-icons a {
    margin: 0 8px;
  }
}

.brand-text {
    font-family: 'Droid Serif', serif;
    font-weight: bold;
    font-size: 1.5rem;
}
.brand-text:hover {
    color: #ffffff;
    transition: color 0.3s ease;
    text-shadow: 0 0 5px #fff;
}
.first-column {
    margin-right: 100px;
}

.wishlist-icon i {
  transition: color 0.3s ease;
}
