.sepet-card{
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  padding: 24px;
  margin-bottom: 30px;
}

.remove{
  color: white;
  background: grey;
  padding: 1px 6px;
  border-radius: 50%;
}


.alert-promotion{
  background: linear-gradient(to right, #3cb027, #67ae31);
  color: white;
  padding: 12px;
  border-radius: 5px;
  margin-bottom: 15px;
}

.sepet-item{
  display: flex;
  align-items: center;
  margin: 25px 0;
  background: linear-gradient(to bottom,
    rgba(255,255,255,.9),
    rgba(255,255,255,.7),
    rgba(255,255,255,.9)
  );
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0,0,0,.5);
  overflow: hidden;
  position: relative;
}
.xsepet-item:after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: rgba(255,255,255,.3);
}
.sepet-item .image-box .image{
  width: 300px;
}
.sepet-item .image-box .image img{
  width: 100%;
  height: 100%;
}
.sepet-item .item-content{
  width: 100%;
}

.sepet-item .item-content .item-details{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 24px;
}
.sepet-item .item-content .item-title{
  font-weight: 700;
  color: black;
  font-size: 25px;
}

.sepet-item .prices{
  color: var(--std-fiyat-renk);
  font-weight:bold;
  font-size: 26px;
}
.sepet-item .prices .discount-price{
  text-decoration: line-through;
  margin-right: 15px;
  font-size: 20px;
  color: #1d0032;
  opacity: .7;
}

.sepet-item .remove_item{
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #7f0505;
  color: white;
  width: 48px;
  height: 48px;
  font-size: 32px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 5px 10px rgba(0,0,0,.5);
  transition: box-shadow .3s ease;
}

.sepet-item .remove_item:hover{
  box-shadow: 0 0 0 transparent;
}


.sepet-item .hediye-eklendi{
  font-size: 13pt;
  color:#3cb027;
}

.sepet-item .hediye-ekle-btn{
  display: inline-block;
  color: white;
  font-weight: 400;
  font-size:13pt;
  text-decoration: none;
  padding:5px 11px;
  border-radius:var(--std-radius);
  box-shadow: 0 0 10px rgb(0 0 0 / 30%);
  background-image: linear-gradient( to left, var(--kurumsal_koyu), var(--kurumsal_acik));
  transition: transform .3s ease;
  outline: unset;
  border: unset;
}

.sepet-item .hediye-ekle-btn:hover{
  display: inline-block;
  color: white;
  font-weight: 400;
  font-size:13pt;
  text-decoration: none;
  padding:5px 11px;
  border-radius:var(--std-radius);
  box-shadow: 0 0 10px rgb(0 0 0 / 30%);
  background-image: linear-gradient( to left, var(--kurumsal_koyu_hover), var(--kurumsal_acik_hover));
  transition: transform .3s ease;
  transform: scale(1.05);
  outline: unset;
  border: unset;
}


ul{
  list-style: none;
}

#sepet_alert{
    display: none;
    border: 3px dashed #cd5247;
    color: #ce5347;
    font-weight: bold;
    border-radius: 5px;
}