/* Colors */
:root {
  --blue: rgb(44, 62, 80);
  --gold: rgb(243, 156, 18);
  --golda: rgb(243, 156, 18, 0.86);
  --white: rgb(242, 242, 242);
  --grey: rgb(127, 140, 141);
}

#cart-count {
  z-index: 999;
  display: none;
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: var(--gold);
  color: white;
  border-radius: 50%;
  padding: 0 5px;
  font-size: 14px;
  line-height: 18px;
  min-width: 18px;
  text-align: center;
}


/* Korpa kontejner */
#cart-container {
  position: fixed;
  top: 86px;
  right: -100%;
  max-width: 480px;
  width: 100%;
  height: calc(100vh - 86px);
  background-color: rgba(44, 62, 80, 0.96);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: right 0.4s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  overflow: hidden; /* važno da sakrijemo višak */
}

/* Aktivna korpa */
#cart-container.active {
  right: 0;
}

/* Naslov fiksiran (sticky na vrh) */
#cart-container h2 {
  position: sticky;
  top: 0;
  z-index: 10;
  margin: 0;
  padding: 15px;
  font-size: 20px;
  background-color: rgb(243, 156, 18);
  color: rgb(242, 242, 242);
  text-align: center;
}

.cart-item {
  text-align: center;
}

.cart-info {
  margin-left: 0px;
  text-align: center;
}

.cart-info h4 {
  margin-top: 8px;
  margin-bottom: 2px;
  color: white;
  text-align: center;
}

.cart-info p {
  margin-bottom: 8px;
  color: white;
  text-align: center;
}

.quantity span {
  color: white;
  text-align: center;
}

/* Sadržaj koji se skroluje */
#cart {
  flex: 1;
  padding: 15px;
  margin-bottom: 86px;
  padding-bottom: 70px;
  padding-top: 10px;
  font-size: 14px;
  color: rgb(242, 242, 242);
  overflow-y: auto;
  overflow-x: hidden;
}

/* Slike u korpi */
#cart img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 5px;
}

.remove-item {
  position: relative;
  top: -12px !important;
  border-radius: 10px;
  margin: 0 !important;
  margin-bottom: 24px !important;
  max-width: 264px !important;
  width: 80% !important;
  height: 36px !important;
  transition: 0.1s;
  background-color: var(--white);
  color: black;
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px, rgba(0, 0, 0, 0.07) 0px 2px 2px, rgba(0, 0, 0, 0.07) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 8px 8px, rgba(0, 0, 0, 0.07) 0px 16px 16px;
}

.remove-item:active {
  transition: 0.1s;
  box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}

/* Ukupna cena */
#total-price {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  bottom: 72px;
  text-align: center;
  color: rgb(243, 156, 18);
}

/* Dugme za slanje narudžbine fiksirano na dno */
#sendCart {
  margin: 0 !important;
  position: absolute;
  bottom: 0;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 80% !important;
  padding: 15px;
  font-size: 16px;
  color: rgb(242, 242, 242);
  background-color: rgb(243, 156, 18);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
  z-index: 10;
  border-radius: 10px;
}

#sendCart:hover {
  background-color: rgba(243, 156, 18, 0.86);
}

/* Ikonica korpe */
.cart-icon {
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 24px;
  color: rgb(243, 156, 18);
  cursor: pointer;
  z-index: 1100;
}

.cart-icon:hover {
  color: rgba(243, 156, 18, 0.86);
}

/* Poruka ako je prazna korpa */
#cart.empty {
  text-align: center;
  color: rgb(127, 140, 141);
  font-style: italic;
  padding: 20px;
}

/* Scroll bar */
#cart-container::-webkit-scrollbar {
  width: 8px;
}

#cart-container::-webkit-scrollbar-thumb {
  background-color: rgb(243, 156, 18);
  border-radius: 4px;
}

#cart-container::-webkit-scrollbar-track {
  background-color: rgb(44, 62, 80);
}

/* Stil za labelu i textarea */
#note {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  resize: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  bottom: 80px;
}

#note:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}

.close-btn {
  position: absolute;
  top: -5px;
  padding: 8px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 36px;
  font-weight: bold;
  cursor: pointer;
  color: #fff;
  z-index: 10;
}

.close-btn:hover {
  color: red;
}


@media (max-width: 1000px) {

  #cart {
    margin-bottom: 200px;
    padding-bottom: 0px;
  }

  /* Ukupna cena */
  #total-price {
    bottom: 188px;
  }

  /* Dugme za slanje narudžbine fiksirano na dno */
  #sendCart {
    bottom: 116px;
  }

  /* Stil za labelu i textarea */
  #note {
    bottom: 196px;
  }

}
