
/* Navbar */
.navbar {
  padding: 0.8rem 1rem;
}

.navbar-brand {
  font-weight: bold;
  font-size: 20px;
  color: #333;
}

.navbar-brand:hover {
  color: #ff8800;
}

.logo-img {
  height: 40px;
}

.nav-link {
  font-size: 16px;
  margin-left: 15px;
  color: #333 !important;
  transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: #FF8800 !important;
  font-weight: 500;
}


/* Image Slider Styles */
#imageSlider .carousel-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 1s ease-in-out;
}

/* Optional: You can adjust the height of the slider */


/* Adjust carousel controls for better visibility */
.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent */
    border-radius: 50%;
    padding: 10px;
}
/* Slider Section Custom Height */
#imageSlider .carousel-item img {
  height: 400px;
  object-fit: revert-layer;
  width: 100%;
  height: 480px;
}
.product-card {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
}

.product-image {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 4px;
}

.discount {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #dc3545; /* Example discount color */
    color: white;
    padding: 5px 8px;
    border-radius: 4px;
    font-size: 0.8em;
}

.wishlist-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.2em;
    color: #6c757d; /* Example icon color */
    cursor: pointer;
}

.product-info {
    margin-top: 10px;
}

.product-description {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 5px;
}

.price-row {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.old-price {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 17px;
}

.current-price {
    font-weight: bold;
    color: #28a745; /* Example price color */
    font-size: 22px;
}

.add-to-cart {
    background-color: #28a745; /* Example button color */
    color: white;
    border: none;
    padding: 7px 12px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

 .product-image_for_checkout { max-width: 100px; border-radius: 4px; }
        .product-card { border: 1px solid #ddd; padding: 15px; margin-bottom: 15px; border-radius: 5px; }











/* Mobile mode: 2 products per row */
@media (max-width: 575.98px) {
	
	.navbar-toggler {
    order: -1; /* Moves the icon to the left */
  }
	
	
      .navbar-brand img {
        display: none;
      }
	  
    .product-item {
        width: 50%;
    }
	.old-price {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 11px;
}

.current-price {
    font-weight: bold;
    color: #28a745; /* Example price color */
    font-size: 12px;
}

  #imageSlider .carousel-item img {
    height: 150px;
  }
  
  .navbar-brand span {
    font-size: 18px;
  }
  .col-8.col-md-7 {
    padding: 23px;
}
}

