
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    min-height: 80px;
  }

  .navbar .container-fluid {
    padding: 0.8rem 2rem;
    align-items: center;
  }

  .navbar-brand {
    font-weight: 700 !important;
    font-size: 1.2rem !important;
    color: #2c3e50 !important;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
  }

  .navbar-brand span {
    color: #f39c12;
  }

  .navbar-nav .nav-link {
    margin-left: 20px;
    font-weight: 700 !important;
    font-size: 1.2rem;
    color: #2c3e50 !important;
    transition: color 0.3s, transform 0.3s;
    position: relative;
  }

    .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
      color: #f39c12 !important;
      transform: translateY(-2px);
    }

    .navbar-nav .nav-link::after {
      content: '';
      display: block;
      width: 0%;
      height: 2px;
      background-color: #f39c12;
      transition: width 0.3s;
      position: absolute;
      bottom: -4px;
      left: 0;
    }

  .navbar-nav .nav-link:hover::after {
    width: 100%;
  }

  /* Fixed toggle button alignment */
  .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border-radius: 0.375rem;
    transition: box-shadow 0.15s ease-in-out;
    margin-left: auto;
  }
 
  .navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(243, 156, 18, 0.25);
    outline: none;
  }

  .navbar-toggler:hover {
    background-color: rgba(243, 156, 18, 0.1);
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2844, 62, 80, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em;
    height: 1.5em;
  }

  .navbar-collapse {
    background-color: white;
  }

 
  @media (max-width: 576px) {
    .navbar .container-fluid {
      padding: 0.8rem 1rem;
    }

    .navbar-brand {
      font-size: 1.3rem !important;
    }
  }
.product_button {
  position: relative;
  overflow: hidden; /* prevent shine overflow */
  border: 2px solid #f39c12 !important;
  background-color: hsl(44, 89%, 58%);
  
  border-radius: 10px;
  padding-right:15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

/* Shine effect */
.product_button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg, 
    rgba(255, 255, 255, 0) 0%, 
    rgba(255, 255, 255, 0.5) 50%, 
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  animation: shine 3s infinite;
}

/* Hover zoom */
.product_button:hover {
  transform: scale(1.05);
  color: #2c3e50 !important;
}

/* Keyframes for shine sweep */
@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(25deg);
  }
  100% {
    transform: translateX(100%) rotate(25deg);
  }
}
.cart-badge {
  position: absolute;
  top: 0px;
  right: -8px;
  text-align:right;
  /* background: #e74c3c; red color */
  color: #2c3e50 !important;
  font-size: 12px !important; 
  font-weight: 700 !important;
  border-radius: 50% !important;
  padding: 2px 6px !important;
}
