/* NAVBAR */
.navbar-brand .logo{
    width: 30px; 
    height: auto;
    margin-left: 30px;
}
/* PRODUCT */
.rating-stars{
    color: rgb(245, 197, 75);
}
.product-item{
    max-width: 300px;
    margin: auto;
}
/* CARTTT KERANJANGGG */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background-color: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    display: flex;
    flex-direction: column;
  }
  
  .cart-sidebar.active {
    right: 0;
  }
  
  .cart-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .close-cart {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
  }
  
  .cart-items {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
  }
  
  .cart-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }
  
  .cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-right: 15px;
  }
  
  .cart-item-details {
    flex-grow: 1;
  }
  
  .cart-item-title {
    font-weight: 600;
    margin-bottom: 5px;
  }
  
  .cart-item-price {
    color: #666;
  }
  
  .cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
  }
  
  .cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: 600;
  }
  
  .checkout-btn {
    width: 100%;
    padding: 12px;
    background-color: #0d6efd;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .checkout-btn:hover {
    background-color: #0b5ed7;
  }
  
  /* Add overlay when cart is open */
  .cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
  }
  
  .cart-overlay.active {
    display: block;
  }
/* FOOTER */
footer {
    background-color: black;
    text-align: center;
    padding: 30px;
    color: white;
    margin-top: 90px;
}

#footer-top {
    padding: 20px;
    width: 60%;
    margin: auto
}

#footer-socials-wrapper {
    padding: 40px;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.footer-social {
    display: flex;
    place-items: center
}

.footer-social span {
    margin-left: 20px;
    font-size: 16px;
}

#footer-bottom {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: auto;
    border-top: 1px solid white;
    padding-top: 30px;
    margin-top: 20px;
}

#footer-bottom ul {
    list-style: none;
    display: flex;
}

#footer-bottom a {
    margin-right: 20px;
    text-decoration: none;
    color: white;
    transition: 0.3s ease-in-out;
}

#footer-bottom a:hover {
    color: rgb(65, 105, 225);
}

/* TOAST */
.toast{
    top:50px
}