.single {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 10px;
}

.single .top {
  width: 80%;
  height: auto;
  max-height: 400px;
  max-width: 1400px;
  display: flex;
  padding: 10px;
  gap: 20px;
  border: 2px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  position: relative;

}

.single .top .controlArea {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  justify-content: space-evenly;
  gap: 20px;
}

.single .top .controlArea button {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  border: none;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.single .top .controlArea button:nth-child(1) {
  background-color: rgb(255, 216, 216);
}

.single .top .controlArea button:nth-child(1):hover {
  background-color: rgb(255, 130, 130);
}

.single .top .controlArea button:nth-child(2) {
  background-color: rgb(223, 255, 223);
}

.single .top .controlArea button:nth-child(2):hover {
  background-color: rgb(100, 192, 100);
}

.single .top .imgContainer {
  width: 50%;
  position: relative;
  user-select: none;
}

.single .top .imgContainer .button {
  position: absolute;
  width: 40px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  top: 0px;
}

.single .top .imgContainer .leftButton {
  left: 0px;
}

.single .top .imgContainer .rightButton {
  right: 0px;
}

.single .top .imgContainer .button span {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(190, 190, 190, 0.5);
  border-radius: 50%;
  color: rgb(8, 8, 8);
  cursor: pointer;
}

.single .top .imgContainer .imgList {
  flex: 1;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 10px;
}

.single .top .imgContainer .imgList .imgSlider {
  width: 100%;
  height: 100%;
  display: flex;
  transition: all 0.4s;
}

.single .top .imgContainer .imgList .imgSlider .imgArea {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
}

.single .top .imgContainer .imgList .imgSlider img {
  height: 100%;
  aspect-ratio: 1/1;
}

.single .top .basketProcess {
  width: 50%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  padding: 10px;
  background-color: rgba(220, 220, 220, 0.12);
  border-radius: 10px;
}

.single .top .basketProcess .title {
  width: 100%;
  font-family: 'Nunito';
}

.single .top .basketProcess .kod {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

.single .top .basketProcess .kod section {
  display: flex;
  align-items: center;
}


.single .top .basketProcess .kod section .key {
  width: 200px;
  font-family: 'Rubik';
}

.single .top .basketProcess .kod section .value {
  width: 100%;
  font-family: monospace;
  font-weight: bold;
}

.single .top .basketProcess .kod section input {
  max-width: 100px;
  text-align: center;
  font-size: 1rem;
  font-family: 'Rubik';
  border: 2px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  transition: all 0.4s;
  outline: none;
}

.single .top .basketProcess .kod section input:focus {
  border-color: rgba(0, 0, 0, 0.15);
}

#total_amount::-webkit-outer-spin-button,
#total_amount::-webkit-inner-spin-button {
  -webkit-appearance: none;
}


#total_amount[type="number"] {
  -moz-appearance: textfield;
}


.single .top .basketProcess .kod section button {
  margin-left: 10px;
  border: none;
}

.single .top .basketProcess .kod section button svg {
  width: 22px;
  height: 22px;
  fill: green;
  transition: all 0.3s;
}


.single .top .basketProcess .kod section button svg:hover {
  fill: rgb(249, 141, 17);
}

.single .top .basketProcess .addBasket {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  margin: 30px 0px 10px 0px;
}

.single .top .basketProcess .addBasket a svg{
  width: 20px;
  height: 20px;
  transition: all 0.3s;
  cursor: pointer;
}

.single .top .basketProcess .addBasket a svg:hover{
  fill: #ffb25f;
}



/* Number yapısını CSS kodları: Kaldırılabilir!
.single .top .basketProcess .number {
  width: auto;
  height: 30px;
  display: flex;
}

.single .top .basketProcess .number button {
  width: 30px;
  height: 30px;
  outline: none;
  border: none;
  background: none;
  font-weight: 700;
  font-size: 1rem;
  background-color: rgb(230, 255, 246);
}

.single .top .basketProcess .number button:first-child {
  border-radius: 5px 0px 0px 5px;
  background-color: rgba(0, 0, 0, 0.06);
}

.single .top .basketProcess .number button:last-child {
  border-radius: 0px 5px 5px 0px;
}

.single .top .basketProcess .number input {
  width: 40px;
  height: 30px;
  border: none;
  outline: none;
  text-align: center;
}
*/

.single .top .basketProcess .addBtn {
  padding: 0px 10px;
  height: 40px;
  border-radius: 5px;
  border: none;
  outline: none;
  font-size: 1.3rem;
  background-color: #ffbf66;
  transition: all 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  white-space: nowrap;
  font-family: 'Nunito';
}

.single .top .basketProcess .addBtn:hover {
  background-color: #ffb25f;
}

.single .top .basketProcess .price {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 5px 10px;
  gap: 10px;
  align-items: center;
  font-size: 1.3rem;
}

.single .top .basketProcess .price .key {
  font-family: 'Rubik';
}

.single .top .basketProcess .price .value {
  font-family: monospace;
  font-weight: 700;
}

.single .top .basketProcess .price input {
  max-width: 100px;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  outline: none;
  font-size: 1.1rem;
}

.single .top .basketProcess .price input:focus {
  border: 2px solid rgba(0, 0, 0, 0.15);
}

.single .top .basketProcess .price button{
  border: none;
}

.single .top .basketProcess .price button svg{
  width: 22px;
  height: 22px;
  fill: #009e45;
  transition: all 0.3s;
}

.single .top .basketProcess .price button svg:hover{
  fill: #ffbb00;
}

#price_text::-webkit-outer-spin-button,
#price_text::-webkit-inner-spin-button {
  -webkit-appearance: none;
}


#price_text[type="number"] {
  -moz-appearance: textfield;
}


@media(max-width:991px) {
  .single .top .imgContainer .imgList .imgSlider img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }

  .single .top .basketProcess {
    font-size: 0.9rem;
  }

  .single .top .basketProcess .number button {
    font-size: 0.9rem;
  }

}

@media(max-width:700px) {
  .single .top {
    width: 90%;
  }

  .single .top .basketProcess {
    font-size: 0.9rem;
  }

  .single .top .basketProcess .addBtn {
    font-size: 1.1rem;
  }

  .single .top .basketProcess .price {
    font-size: 1.2rem;
  }

  .single .top .basketProcess .number button {
    font-size: 0.9rem;
  }

}

@media(max-width:600px) {
  .single .top {
    width: 100%;
  }

  .single .top .basketProcess {
    font-size: 0.8rem;
  }

  .single .top .basketProcess .number button {
    font-size: 0.7rem;
  }

  .single .top .basketProcess .price .value {
    font-weight: 700;
  }
}


@media(max-width:550px) {
  .single .top {
    flex-direction: column;
    max-height: none;
    border: none;
  }

  .single .top .imgContainer {
    width: 100%;
    position: relative;
  }

  .single .top .imgContainer .imgList .imgSlider img {
    width: auto;
    height: 300px;
    aspect-ratio: 1/1;
  }

  .single .top .basketProcess {
    width: 100%;
    font-size: 0.9rem;
    border: 2px solid rgba(0, 0, 0, 0.05);
  }

  .single .top .basketProcess .number button {
    font-size: 0.8rem;
  }

  .single .top .basketProcess .price .value {
    font-weight: 700;
  }
}


@media(max-width:330px) {
  .single .top .imgContainer .imgList .imgSlider img {
    height: 250px;
  }

}



/* Description area Start*/
.single .bottom {
  width: 80%;
  max-width: 1400px;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1rem;
}

.single .bottom .border {
  width: 100%;
  border: 2px solid rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 10px;
}

.single .bottom .border .title {
  font-size: 1.2rem;
  font-family: monospace;
  margin: 10px 0px;
}

.single .bottom .border .description {
  font-family: 'Nunito';
  padding: 10px;

  margin: 5px 0px;
}

.single .bottom .border .description::first-letter {
  margin-left: 10px;
}

.single .bottom .border .property {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 10px 0px;
}

.single .bottom .border .property .key-value {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  background-color: rgba(255, 203, 203, 0.2);
  border-radius: 5px;
}

.single .bottom .border img {
  width: 100%;
  aspect-ratio: 8/3;
  border-radius: 10px;
  margin: 10px 0px;
}


.single .bottom .border .property .key-value .key {
  font-family: 'Rubik';
}

.single .bottom .border .property .key-value .value {
  font-family: 'Nunito';
}


@media(max-width:700px) {
  .single .bottom {
    width: 90%;
  }

  .single .bottom {
    font-size: 0.9rem;
  }

  .single .bottom .border .title {
    font-size: 1.1rem;
  }

  .single .bottom .border .property {
    grid-template-columns: 1fr;
  }

}

@media(max-width:500px) {
  .single .bottom {
    width: 100%;
  }
}