  /* Cart Sidebar */
/* Compact cart item design */
#cart-items .cart-item {
  display: flex;
  align-items: center;
  background: #232323;
  border-radius: 8px;
  margin-bottom: 8px;
  padding: 7px 8px 7px 6px;
  box-shadow: 0 1px 6px 0 #ffd70022;
  border: 1px solid #333;
  min-height: 48px;
  transition: box-shadow 0.18s, border-color 0.18s;
}


#cart-items .cart-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 6px;
  background: #181818;
  margin-right: 10px;
  box-shadow: 0 1px 4px 0 #ffd70022;
}

#cart-items .cart-info {
  flex: 1;
  min-width: 0;
}

#cart-items .cart-title {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#cart-items .cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

#cart-items .cart-qty-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
}
#cart-items .cart-qty-input {
  background: #232323 !important;
  color: #ffffff !important;
  border: 1.5px solid #007bff !important;
  border-radius: 6px !important;
  width: 120px;
  height: 28px;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 1px 2px 0 #0004;
  margin: 0 2px;
  padding: 0 4px;
  transition: border-color 0.18s, background 0.18s;
  appearance: none;
  -moz-appearance: textfield;
  position: relative;
}

/* Hide default spinner arrows */
#cart-items .cart-qty-input::-webkit-inner-spin-button,
#cart-items .cart-qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#cart-items .cart-qty-input {
  -moz-appearance: textfield;
}

/* Now style them like cart */
#cart-items .cart-qty-input::-webkit-inner-spin-button{
  -webkit-appearance: inner-spin-button;
  opacity: 1;
  background: url('data:image/svg+xml;utf8,<svg width="16" height="14" xmlns="http://www.w3.org/2000/svg"><polygon points="8,3 13,9 3,9" fill="%23007bff"/></svg>') no-repeat center top, url('data:image/svg+xml;utf8,<svg width="16" height="14" xmlns="http://www.w3.org/2000/svg"><polygon points="8,11 13,5 3,5" fill="%23007bff"/></svg>') no-repeat center bottom;

  background-color: #232323;
  background-size: 16px 7px;
  width: 16px;
  height: 25px;
  border-radius: 3px;
  cursor: pointer;
}


#cart-items .cart-price {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.98rem;
  margin-left: 8px;
  white-space: nowrap;
}

#cart-items .remove-cart-item {
  background: transparent !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 6px !important;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 2px 8px;
  margin-left: 6px;
  transition: background 0.18s, color 0.18s;
  box-shadow: none;
}

#cart-toggle .fa-shopping-cart {
  color: #ffffff;
  margin-right: 6px;
}


#purchase-btn {
  background: transparent;
  color: #ffffff !important;
  border: 1.5px solid #007bff;
  font-weight: 600;
  border-radius: 18px;
  font-size: 0.98rem;
  padding: 5px 16px;
  margin-left: 8px;
  box-shadow: none;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  display: inline-block;
  text-decoration: none;
  /*margin-bottom:0px;*/
}

.purchase-data{
    margin-bottom:150px;
}