

/* --------------------------------------------------------------- */



.navbar {
  background-color: #f8f9fa !important; 
  transition: none !important;
}




.modal-content {
  border-radius: 15px;
  background-color: #fdf6f1;
  color: #222;
  
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}



  .announcement-bar {
    overflow: hidden;
    white-space: nowrap;
    position: absolute;
    top: 115px;
    /* font-weight: bold; */
    font-size: small;
    text-transform: uppercase;
  }

  @media (max-width: 993px) {
    .announcement-bar {
      top: 80px;
  }
  }
  




  .scrolling-text {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 15s linear infinite;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-100%);
    }
  }




.logo-img {
  height: 50px; 
  object-fit: contain;
}

/* @media (max-width: 768px) {
  .logo-img  {
    height: 40px;
}
}
 */



.product-img {
  overflow: hidden;
  border-radius: 10px;
}

.product-img img {
  width: 100%;
  height: 300px;
  transition: transform 0.4s ease;
}

@media (max-width: 768px) {
  .product-img img  {
    height: 100px;
}
}

.product-img:hover img {
  transform: scale(1.1);
}

.price-old {
  text-decoration: line-through;
  color: #555;
}

.price-new {
  color: red;
  font-weight: bold;
}

.sale-btn {
  background-color: #c00;
  color: white;
  font-size: 0.8rem;
  padding: 5px 20px;
  border: none;
  border-radius: 5px;
}

.product-card {
  text-align: center;
  margin-bottom: 30px;
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 10px;
  height: 100%;
}

