@import url(root.css);
.header {
  position: relative;
  z-index: 15;
  background-color: #fff;
}
.headerside {
  height: var(--header);
  background-color: #fff;
  transition: all 300ms ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.headersideleft {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 2rem;
}
.logo {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: calc(var(--header) - 1rem);
}
@media (min-width: 768px) {
  .logo {
    width: calc(var(--header) - 2rem);
  }
}
.logo img {
  height: 100%;
  object-fit: contain;
  transition: all 300ms ease;
}
.logo:hover img {
  transform: rotate(-15deg);
}
.menulinks {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 3rem;
}
.menulinks li {
  position: relative;
  height: 100%;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  color: var(--mainColor);
}
.maina::after,
.menulinks li span::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0.2rem;
  left: auto;
  right: 0;
  bottom: -0.5rem;
  background-color: var(--coloryellow);
  transition: width 400ms ease, color 400ms ease;
}
.menulinks li:hover .maina::after,
.menulinks li:hover span::after {
  width: 100%;
  left: 0;
  right: auto;
}
.menulinks li:hover span,
.menulinks li:hover .maina {
  color: var(--mainColor);
}
.maina {
  color: var(--mainColor);
  transition: all 300ms ease;
  position: relative;
}
.menulinks li span {
  position: relative;
  transition: all 300ms ease;
}
.headersideright {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 0.8rem;
}
#basket {
  background-color: var(--coloryellow);
  border-radius: 5rem;
  padding: 0.8rem 1.6rem;
  font-size: 1.4rem;
  border: none;
  transition: all 300ms ease;
  display: inline-block;
}
#basket:hover {
  background-color: var(--colorbrown);
  color: #fff;
}
.headersiderightlink {
  color: var(--mainColor);
  padding: 0.8rem 1.6rem;
  border: 0.1rem solid #f1f1f1;
  border-radius: 5rem;
  font-size: 1.4rem;
  transition: all 300ms ease;
}
.headersiderightlink:hover {
  background-color: #f1f1f1;
  color: var(--mainColor);
}
.headeruser {
  color: var(--mainColor);
  padding: 0.8rem 1.6rem;
  border: 0.1rem solid #f1f1f1;
  border-radius: 5rem;
  transition: all 300ms ease;
  position: relative;
  cursor: pointer;
  display: inline-block;
}
.headeruser:hover {
  background-color: #f1f1f1;
  color: var(--mainColor);
}
.headeruser span,
.headeruser i {
  font-size: 1.4rem;
}
#basket,
.headeruser,
.headersiderightlink {
  height: 3.5rem;
  width: 3.5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  color: var(--mainColor);
}
@media (min-width: 768px) {
  #basket,
  .headeruser,
  .headersiderightlink {
    height: 4rem;
    width: auto;
    padding: 0.8rem 1.6rem;
    column-gap: 0.5rem;
  }
}
#mobilemenuicon,
.mobilesearch {
  width: 3.5rem;
  height: 3.5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0.1rem solid #f1f1f1;
  background-color: transparent;
  transition: all 300ms ease;
  color: var(--mainColor);
  border-radius: 50%;
}
#mobilemenuicon:hover,
.mobilesearch:hover {
  background-color: #f1f1f1;
  color: var(--mainColor);
}
.searchside {
  height: 100%;
  display: flex;
  align-items: center;
}
.searchside .form-group {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  margin: 0;
}
.searchside .form-control {
  font-size: 1.4rem;
  height: 4rem;
  border: 0.1rem solid #f1f1f1;
  border-radius: 5rem;
  outline: none;
  box-shadow: none;
  padding: 0 2rem;
}
.searchside .form-control:hover,
.searchside .form-control:focus {
  border: 0.1rem solid #f4f4f4;
  box-shadow: none;
  outline: none;
}
.searchicon {
  position: absolute;
  z-index: 1;
  right: 0.5rem;
  width: 3rem;
  height: 3rem;
  background-color: #f1f1f1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  border: none;
  outline: none;
  transition: all 300ms ease;
}
.searchicon:hover {
  background-color: var(--coloryellow);
  color: var(--mainColor);
}
.topbar {
  background-color: var(--coloryellow);
  position: relative;
  z-index: 15;
}
.topbar .container-fluid {
  padding: 0;
}
.topbarside {
  height: var(--topbar);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbarsideleft {
  height: 100%;
  width: 100%;
  background-color: var(--colorbrown);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .topbarsideleft {
    width: 50%;
  }
}
.marqueewrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 2rem;
  height: 100%;
}
.marqueewrapper p {
  white-space: nowrap;
  font-size: 1.25rem;
  color: #fff;
  margin: 0;
}
@media (min-width: 576px) {
  .marqueewrapper p {
    font-size: 1.4rem;
  }
}
.topbarsideright {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 2rem;
  width: 50%;
  padding-right: 5rem;
  position: relative;
}
.topbarsideright a {
  color: var(--mainColor);
  font-size: 1.4rem;
  transition: all 300ms ease;
}
.topbarsideright a:hover {
  text-decoration: underline;
  color: var(--mainColor);
}
.topbarsideright::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  background-color: var(--coloryellow);
  bottom: 0;
  width: 4rem;
}
.headeruserdropdown {
  position: absolute;
  top: 110%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-color: #fff;
  width: 12rem;
  left: -4rem;
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: 0px 9px 20px -6px rgba(66, 68, 90, 0.2);
  transition: all 300ms ease;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 768px) {
  .headeruserdropdown {
    width: 15rem;
    left: -2rem;
  }
}
.headeruser:hover .headeruserdropdown {
  top: 100%;
  opacity: 1;
  pointer-events: all;
}
.headeruserdropdown a {
  border-radius: 0.3rem;
  padding: 0.5rem 1rem;
  color: var(--mainColor);
  text-align: center;
  font-size: 1.3rem;
  width: 100%;
  display: block;
  transition: all 300ms ease;
}
.headeruserdropdown a:hover {
  background-color: var(--colorbrown);
  color: #fff;
}
.headeruserdropdown a:not(:last-child) {
  margin-bottom: 0.3rem;
}
.dropdownlinks {
  position: absolute;
  z-index: 5;
  top: 100%;
  left: -5rem;
  background-color: #fff;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 18rem;
  transition: transform 0.3s ease-in-out;
  transform-origin: top right;
  transform: perspective(600px) rotateX(-90deg);
  box-shadow: 0px 9px 20px -6px rgba(66, 68, 90, 0.2);
}
.menulinks li:hover .dropdownlinks {
  display: block;
  transform: perspective(600px) rotateX(0deg);
}
.droplink {
  border-radius: 0.3rem;
  font-size: 1.4rem;
  color: var(--mainColor);
  width: 100%;
  display: block;
  padding: 0.6rem 1.2rem;
  transition: all 300ms ease;
}
.droplink:not(:last-child) {
  margin-bottom: 0.3rem;
}
.droplink:hover {
  background-color: var(--coloryellow);
  color: var(--mainColor);
}
.slide {
  padding: 2rem 0 0 0;
  position: relative;
  z-index: 0;
}
@media (min-width: 992px) {
  .slide .container-fluid {
    width: 96rem;
    padding: 0;
  }
}
@media (min-width: 1200px) {
  .slide .container-fluid {
    width: 114rem;
  }
}
@media (min-width: 1400px) {
  .slide .container-fluid {
    width: 132rem;
  }
}
.swiperslide {
  border-radius: 1rem;
  overflow: hidden;
}
.productboxes {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  border-radius: 1rem;
  background-color: #fff;
  border: 0.1rem solid #fff;
  transition: all 300ms ease;
  position: relative;
}
.productboxes:hover {
  border: 0.1rem solid #eaeaea;
}
.productboxesimage {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.productboxesimage img {
  height: 100%;
  transition: all 900ms ease;
  aspect-ratio: 4/3;
  object-fit: contain;
}
.soldout .productboxesimage img {
  filter: grayscale(100%) !important;
}
.productboxes:hover .productboxesimage img {
  transform: scale(1.1);
}
.productboxes .content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}
.contenttop {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}
.contentbottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.productboxes .content h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}
@media (min-width: 350px) {
  .productboxes .content h3 {
    font-size: 1.4rem;
  }
}
@media (min-width: 768px) {
  .productboxes .content h3 {
    font-size: 1.5rem;
  }
}
.productdescription {
  font-size: 1.2rem;
  color: var(--mainColor);
  opacity: 0.6;
}
@media (min-width: 350px) {
  .productdescription {
    font-size: 1.3rem;
  }
}
@media (min-width: 576px) {
  .productdescription {
    font-size: 1.4rem;
  }
}
.productcontentactions {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 0.1rem dashed #8b8b8b;
  flex: 1;
  width: 100%;
  column-gap: 0.5rem;
}
.cartbutton {
  width: calc(100% - 4rem);
  border-radius: 0.3rem;
  padding: 0.8rem 1rem;
  background-color: var(--coloryellow);
  color: var(--mainColor);
  transition: all 300ms ease;
  font-size: 1.2rem;
  border: none;
  outline: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}
@media (min-width: 350px) {
  .cartbutton {
    font-size: 1.3rem;
  }
}
@media (min-width: 576px) {
  .cartbutton {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cartbutton {
    font-size: 1.4rem;
  }
}
.cartbutton:hover {
  background-color: var(--colorbrown);
  color: #fff;
}
.hometitle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.hometitle h2 {
  font-size: 1.8rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .hometitle h2 {
    font-size: 2.2rem;
  }
}
.hometitle a {
  border-radius: 5rem;
  background-color: var(--coloryellow);
  color: var(--mainColor);
  font-size: 1.2rem;
  transition: all 300ms ease;
  padding: 0.6rem 1.2rem;
}
@media (min-width: 768px) {
  .hometitle a {
    font-size: 1.4rem;
    padding: 1rem 2rem;
  }
}
.hometitle a:hover {
  background-color: var(--colorbrown);
  color: #fff;
}
.hometitle a i {
  display: inline-block;
  transition: all 300ms ease;
}
.hometitle a:hover i {
  transform: translateX(0.5rem);
}
.registerwrapper {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.registerwrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30rem;
  background-color: var(--coloryellow);
  background-image: url(../images/asset.png);
  background-size: 80%;
}
@media (min-width: 768px) {
  .registerwrapper::before {
    background-size: 25%;
  }
}
.actionforms {
  width: 30rem;
  background-color: #fff;
  padding: 0 2rem 2rem 2rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
@media (min-width: 350px) {
  .actionforms {
    width: 35rem;
    padding: 0 2.5rem 2.5rem 2.5rem;
  }
}
@media (min-width: 500px) {
  .actionforms {
    width: 40rem;
  }
}
@media (min-width: 768px) {
  .actionforms {
    width: 50rem;
    padding: 0 4rem 4rem 4rem;
  }
}
.actionformstext p {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.actionformstext p a {
  color: var(--colorbrown);
  text-decoration: underline;
  transition: all 300ms ease;
}
.actionformstext p a:hover {
  color: var(--coloryellow);
}
.passwordresetlink {
  font-size: 1.3rem;
  color: var(--colorbrown);
  transition: all 300ms ease;
  margin-bottom: 1rem;
  display: inline-block;
}
.passwordresetlink:hover {
  color: var(--coloryellow);
  text-decoration: underline;
}
.actionformshead {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  text-align: center;
}
.actionformshead figure {
  width: 10rem;
  border: 1rem solid #fff;
  border-radius: 50%;
  margin-top: -5rem;
}
@media (min-width: 1200px) {
  .actionformshead figure {
    width: 12rem;
    margin-top: -6rem;
  }
}
.actionformshead h1 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .actionformshead h1 {
    font-size: 1.8rem;
  }
}
@media (min-width: 1200px) {
  .actionformshead h1 {
    font-size: 2rem;
  }
}
.actionformshead p {
  font-size: 1.4rem;
  opacity: 0.8;
}
@media (min-width: 768px) {
  .actionformshead p {
    font-size: 1.5rem;
  }
}
.headeruseraccount {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0.1rem solid var(--colorbrown);
  background-color: var(--colorbrown);
  cursor: pointer;
  transition: all 300ms ease;
  position: relative;
}
@media (min-width: 768px) {
  .headeruseraccount {
    width: 4rem;
    height: 4rem;
  }
}
.headeruseraccount:hover {
  border: 0.1rem solid var(--coloryellow);
  background-color: var(--coloryellow);
}
.headeruseraccount p {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
  color: #fff;
}
.headeruseraccount:hover p {
  color: var(--mainColor);
}
.useraccountdropdowns {
  position: absolute;
  z-index: 1;
  top: 120%;
  width: 22rem;
  padding: 2rem 1rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0px 9px 20px -6px rgba(66, 68, 90, 0.2);
  transition: all 300ms ease;
  opacity: 0;
  pointer-events: none;
  right: -5rem;
}
@media (min-width: 576px) {
  .useraccountdropdowns {
    right: -7rem;
  }
}
@media (min-width: 768px) {
  .useraccountdropdowns {
    right: -10rem;
  }
}
.headeruseraccount:hover .useraccountdropdowns {
  top: 100% !important;
  opacity: 1 !important;
  pointer-events: all !important;
}
.useraccountdropdowns a {
  font-size: 1.4rem;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 0.5rem;
  color: var(--mainColor);
  transition: all 300ms ease;
  padding: 0.6rem 1rem;
  border-radius: 0.3rem;
}
@media (min-width: 1600px) {
  .useraccountdropdowns a {
    font-size: 1.5rem;
  }
}
.useraccountdropdowns a:hover {
  background-color: #f1f1f1;
  color: var(--mainColor);
}
.useraccountdropdowns a:not(:last-child) {
  margin-bottom: 0.3rem;
}
.useraccountdropdownstitle {
  width: 100%;
  display: block;
  text-align: left;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 0 1rem;
}
.personellinkboxes {
  border-radius: 1rem;
  background-color: #fff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .personellinkboxes {
    position: sticky;
    top: 1rem;
  }
}
.personellinkboxes a {
  padding: 1rem;
  border-radius: 0.3rem;
  font-size: 1.4rem;
  color: var(--mainColor);
  transition: all 300ms ease;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 0.5rem;
  width: 100%;
}
.personellinkboxes a:not(:last-child) {
  margin-bottom: 0.3rem;
}
.personellinkboxes a:hover {
  background-color: #f1f1f1;
  color: var(--mainColor);
}
.personellinkboxes a.active,
.personellinkboxes a.active:hover,
.personellinkboxes a.active:focus {
  background-color: var(--coloryellow);
  color: var(--mainColor);
}
.actionboxes {
  background-color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .actionboxes {
    padding: 2rem 4rem;
  }
}
.actionboxeshead {
  margin-bottom: 1rem;
  background-color: #f9f9f9;
  border-radius: 0.3rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 0.5rem;
}
@media (min-width: 576px) {
  .actionboxeshead {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    row-gap: 0;
  }
}
.actionboxeshead h2 {
  font-size: 1.3rem;
  font-weight: 600;
}
.actionboxeshead p {
  font-size: 1.4rem;
}
.actionboxeshead a {
  color: var(--mainColor);
  font-size: 1.4rem;
  transition: all 300ms ease;
}
.actionboxeshead a:hover {
  color: var(--coloryellow);
}
.addresslist {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-bottom: 0.1rem solid #f1f1f1;
  padding: 1.5rem 1rem;
  border-radius: 0.3rem;
  transition: all 300ms ease;
}
@media (min-width: 768px) {
  .addresslist {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.addresslist:hover {
  background-color: #f9f9f9;
}
.addresslistitem {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .addresslistitem {
    margin-bottom: 0;
  }
}
.listitemfirst {
  flex: 1.5;
}
.listitemsecond {
  flex: 3;
}
.listitemthird {
  flex: 1;
  align-items: flex-end;
}
.addresslistitem h3 {
  font-size: 1.4rem;
  font-weight: 600;
}
.addresslistitem h4 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.addresslistitem p {
  font-size: 1.4rem;
  opacity: 0.8;
  margin: 0;
}
.productboxesprice {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  column-gap: 0.5rem;
}
@media (min-width: 370px) {
  .productboxesprice {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
}
.productboxesprice p {
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--colorbrown);
}
@media (min-width: 370px) {
  .productboxesprice p {
    font-size: 1.3rem;
  }
}
@media (min-width: 450px) {
  .productboxesprice p {
    font-size: 1.5rem;
  }
}
.productboxesprice span {
  font-size: 1.3rem;
  text-decoration: line-through;
  color: var(--mainColor);
  opacity: 0.6;
}
.newadded {
  border: 0.2rem solid var(--coloryellow);
  padding: 0.3rem 1rem;
  color: var(--coloryellow);
  font-size: 1.2rem;
  font-weight: 500;
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  border-radius: 0.3rem;
}
.cartBoxes {
  border-radius: 1rem;
  background-color: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem;
  margin-bottom: 2rem;
}
.cartBoxesTitle {
  border-radius: 0.3rem;
  padding: 1rem;
  margin-bottom: 1rem;
  background-color: #f9f9f9;
  width: 100%;
}
.cartBoxesTitle h3 {
  font-size: 1.5rem;
  font-weight: 500;
}
.cartBoxeslist {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 0.1rem solid #f9f9f9;
}
.cartBoxeslist span {
  font-size: 1.4rem;
  font-weight: 600;
}
.cartBoxeslist p {
  margin: 0;
  font-size: 1.4rem;
}
.checkoutlink {
  padding: 1rem;
  border-radius: 0.3rem;
  background-color: var(--coloryellow);
  color: var(--mainColor);
  transition: all 300ms ease;
  font-size: 1.4rem;
  width: 100%;
  display: block;
  text-align: center;
  margin: 1rem 0;
  font-weight: 500;
  outline: none;
  border: none;
}
.checkoutlink:hover {
  background-color: var(--mainColor);
  color: #fff;
}
.removecartbutton {
  background-color: var(--coloryellow);
  color: var(--mainColor);
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.2rem;
  transition: all 300ms ease;
  border: none;
}
.removecartbutton:hover {
  background-color: var(--colorbrown);
  color: #fff;
}
.adet-kontrol {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.adet-btn {
  transition: all 300ms ease;
  border: none;
  background-color: #f2f2f2;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-size: 1.4rem;
  border-radius: 0.2rem;
}
.adet-btn:hover {
  background-color: var(--coloryellow);
  color: var(--mainColor);
}
.adet-sayi {
  min-width: 2rem;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
}
.coupoonbutton {
  background-color: #fff;
  padding: 1.2rem 0;
  border-radius: 1rem;
  transition: all 300ms ease;
  border: none;
  outline: none;
  font-size: 1.4rem;
  width: 100%;
  display: block;
}
.coupoonbutton:hover {
  background-color: var(--colorbrown);
  color: #fff;
}
.cartboxesitemlist {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 576px) {
  .cartboxesitemlist {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.cartboxesitemlist:not(:last-child) {
  border-bottom: 0.1rem solid #f2f2f2;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cartboxesitemlistleft {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.cartboxesitemlistleft figure {
  width: 8rem;
  height: 8rem;
  border: 0.1rem solid #f2f2f2;
  border-radius: 1rem;
  overflow: hidden;
}
.cartboxesitemlistleft figure img {
  height: 100%;
  object-fit: contain;
}
.cartboxesitemlistleft .content {
  width: calc(100% - 8rem);
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media (min-width: 768px) {
  .cartboxesitemlistleft .content {
    padding: 0.5rem 1rem;
  }
}
.cartboxesitemlistleft .content p {
  margin: 0;
}
.cartproductname {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.3rem !important;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Satır sayısı */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cartproductdesc {
  font-size: 1.3rem;
  opacity: 0.8;
}
.cartboxesitemlistright {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}
@media (min-width: 576px) {
  .cartboxesitemlistright {
    margin-top: 0;
    justify-content: flex-end;
    column-gap: 1rem;
  }
}
.rightitem {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 1rem;
}
@media (min-width: 576px) {
  .rightitem {
    flex: 1;
  }
}
@media (min-width: 768px) {
  .rightitem {
    flex: 0.6;
  }
}
.cartproductprice {
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0;
}
.cleanbasket {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 1rem;
  background-color: #f2f2f2;
  width: 100%;
  border-radius: 1rem;
  padding: 1rem;
}
#cleanbasketbutton {
  outline: none;
  border: none;
  background-color: var(--colorbrown);
  color: #fff;
  padding: 0.6rem 1.2rem;
  font-size: 1.4rem;
  transition: all 300ms ease;
  display: inline-block;
  border-radius: 0.5rem;
}
#cleanbasketbutton:hover {
  background-color: var(--coloryellow);
  color: var(--colorbrown);
}
.generaltitles {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .generaltitles {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.generaltitlesleft {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.generaltitlesleft h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .generaltitlesleft h2 {
    font-size: 1.8rem;
  }
}
@media (min-width: 1200px) {
  .generaltitlesleft h2 {
    font-size: 2rem;
  }
}
.generaltitlesleft p {
  font-size: 1.4rem;
  opacity: 0.8;
}
.generaltitlesright {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.generaltitlesright a {
  padding: 0.6rem 1.2rem;
  border-radius: 5rem;
  background-color: var(--coloryellow);
  color: var(--mainColor);
  font-size: 1.4rem;
  display: inline-block;
  transition: all 300ms ease;
  font-weight: 500;
}
@media (min-width: 768px) {
  .generaltitlesright a {
    padding: 1rem 2rem;
  }
}
.generaltitlesright a:hover {
  background-color: var(--colorbrown);
  color: #fff;
}
.generaltitlesright a i {
  display: inline-block;
  transition: all 300ms ease;
}
.generaltitlesright a:hover i {
  transform: translateX(0.5rem);
}
.footer {
  background-color: var(--mainColor);
  padding: 5rem 0 2rem 0;
  background-image: url(../images/asset.png);
  background-size: 30%;
}
.footeritem {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2rem;
}
@media (min-width: 1200px) {
  .footeritem {
    margin-bottom: 0;
  }
}
.footeritem h4 {
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
  color: #fff;
}
@media (min-width: 1200px) {
  .footeritem h4 {
    font-size: 1.6rem;
  }
}
.footeritem h4::before {
  content: "";
  position: absolute;
  left: 0;
  width: 2rem;
  height: 0.2rem;
  background-color: #fff;
  border-radius: 5rem;
  bottom: -1rem;
}
.footeritem h4::after {
  content: "";
  position: absolute;
  left: 2.5rem;
  width: 3rem;
  height: 0.2rem;
  background-color: var(--coloryellow);
  border-radius: 5rem;
  bottom: -1rem;
}
.footeritem ul li {
  padding: 0.5rem 0;
}
.footeritem ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 300ms ease;
  font-size: 1.5rem;
}
.footeritem ul li:hover a {
  color: rgba(255, 255, 255, 1);
}
.footercontact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
@media (min-width: 768px) {
  .footercontact {
    align-items: flex-end;
  }
}
.footersocialmedia {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 3rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .footersocialmedia {
    justify-content: flex-end;
  }
}
.footersocialmedia a {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.8);
  transition: all 300ms ease;
}
.footersocialmedia a:hover {
  color: rgba(255, 255, 255, 1);
}
.footercontactitem {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
@media (min-width: 768px) {
  .footercontactitem {
    align-items: flex-end;
    text-align: right;
  }
}
.footercontactitem:not(:last-child) {
  margin-bottom: 2rem;
}
.footercontactitem span {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}
.footercontactitem a {
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  transition: all 300ms ease;
}
@media (min-width: 1200px) {
  .footercontactitem a {
    font-size: 2rem;
  }
}
.footercontactitem a i {
  font-weight: 400;
  margin-right: 0.5rem;
}
.footercontactitem a:hover {
  color: var(--coloryellow);
}
.applink {
  border-radius: 0.3rem;
  padding: 0.8rem 1.2rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff !important;
  font-size: 1.4rem !important;
  font-weight: 400 !important;
  display: inline-block;
  margin-bottom: 0.5rem;
}
@media (min-width: 992px) {
  .applink {
    margin-bottom: 0;
  }
}
.applink i {
  margin-right: 0.5rem;
}
.applink:hover {
  background-color: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
}
.favbuttons {
  width: 3.4rem;
  height: 3.4rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: none;
  background-color: var(--colorbrown);
  border-radius: 0.3rem;
  color: #fff;
  font-size: 1.4rem;
  transition: all 300ms ease;
}
@media (min-width: 576px) {
  .favbuttons {
    width: 4.1rem;
    height: 4.1rem;
  }
}
.favbuttons:hover {
  background-color: var(--mainColor);
  color: #fff;
}
.homebanner {
  width: 100%;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  background-color: var(--coloryellow);
  position: relative;
}
@media (min-width: 768px) {
  .homebanner {
    flex-direction: row;
    justify-content: space-between;
  }
}
.homebannerimages {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--colorbrown);
  border-radius: 1rem 1rem 0 0;
  position: relative;
  background-image: url(../images/asset.png);
  background-size: 45%;
}
@media (min-width: 768px) {
  .homebannerimages {
    border-radius: 1rem 0 0 1rem;
  }
}
@media (min-width: 992px) {
  .homebannerimages {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .homebannerimages {
    width: 40%;
  }
}
.homebannerimages figure {
  margin-top: -4rem;
  width: 25rem;
  margin-bottom: -5rem;
}
@media (min-width: 576px) {
  .homebannercontent figure {
    margin-top: -5rem;
    width: 30rem;
    margin-bottom: -7rem;
  }
}
@media (min-width: 992px) {
  .homebannerimages figure {
    width: 35rem;
    margin-top: -10rem;
    margin-bottom: 0;
  }
}
.homebannercontent {
  background-image: url(../images/asset.png);
  background-size: 30%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 6rem 2rem 2rem 2rem;
}
@media (min-width: 576px) {
  .homebannercontent {
    padding: 8rem 6rem 4rem 6rem;
    align-items: center;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .homebannercontent {
    padding: 2rem 2rem 2rem 6rem;
    text-align: left;
    align-items: flex-start;
  }
}
@media (min-width: 992px) {
  .homebannercontent {
    width: 50%;
    padding: 2rem 4rem 2rem 8rem;
  }
}
@media (min-width: 1200px) {
  .homebannercontent {
    width: 60%;
  }
}
.homebannercontent h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .homebannercontent h2 {
    font-size: 2rem;
  }
}
@media (min-width: 1200px) {
  .homebannercontent h2 {
    font-size: 2.2rem;
  }
}
.homebannercontent h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.homebannercontent p {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.applicationbuttonside {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 1rem;
}
.applicationbuttonside a {
  border-radius: 0.3rem;
  padding: 0.8rem 2rem;
  background-color: var(--colorbrown);
  color: #fff;
  font-size: 1.3rem;
  display: inline-block;
  transition: all 300ms ease;
}
.applicationbuttonside a:hover {
  background-color: var(--mainColor);
  color: #fff;
}
.homebannerlogo {
  position: absolute;
  top: 0;
  left: 42%;
  width: 8rem;
  z-index: 1;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  .homebannerlogo {
    left: 45%;
    width: 10rem;
  }
}
@media (min-width: 1200px) {
  .homebannerlogo {
    left: 35%;
    width: 12rem;
  }
}
.homebannerlogo img {
  border: 1rem solid #fff;
  border-radius: 50%;
  transition: transform 0.2s linear;
  will-change: transform;
  transform: rotate(180deg);
}
.cartbutton.soldout {
  cursor: not-allowed !important;
}
.checkoutformtitle {
  width: 100%;
  border-radius: 0.3rem;
  background-color: #f9f9f9;
  padding: 1rem;
  margin-bottom: 1rem;
}
.checkoutformtitle h3 {
  font-size: 1.4rem;
  font-weight: 500;
}
.addressradio {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 0.1rem solid #f9f9f9;
  transition: all 300ms ease;
  border-radius: 0.5rem;
}
.addressradio:hover {
  border: 0.1rem solid #eaeaea;
}
.radioitem {
  width: 2rem;
  height: 2rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.radioitem input {
  margin-top: 0.4rem;
}
.addressradio .content {
  width: calc(100% - 2rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.addressradio .content label {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  font-weight: 500;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}
.addressradio .content p {
  font-size: 1.4rem;
  opacity: 0.8;
  margin: 0;
  flex: 1;
}
.orderdetailbox {
  width: 100%;
  padding: 1rem;
  border: 0.1rem solid #f1f1f1;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 0.5rem;
  transition: all 300ms ease;
}
@media (min-width: 576px) {
  .orderdetailbox {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
}
.orderdetailbox:hover {
  background-color: #f9f9f9;
}
.orderdetailboxleft {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex: auto;
}
@media (min-width: 992px) {
  .orderdetailboxleft {
    flex: 1;
  }
}
.orderdetailboxleft figure {
  border-radius: 1rem;
  overflow: hidden;
  width: 8rem;
  height: 8rem;
  background-color: #fff;
}
.orderdetailboxleft figure img {
  aspect-ratio: 1;
  object-fit: contain;
}
.orderdetailboxleft .content {
  width: calc(100% - 8rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 2rem;
}
.orderdetailboxleft .content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.orderdetailboxleft .content p {
  margin-bottom: 0;
  font-size: 1.2rem;
  color: var(--mainColor);
  opacity: 0.8;
}
.orderdetailboxright {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 0.5rem;
  flex: 1;
  margin-top: 1rem;
  width: 100%;
}
@media (min-width: 576px) {
  .orderdetailboxright {
    width: auto;
    margin-top: 0;
  }
}
.orderdetailboxright p {
  font-size: 1.5rem;
  margin: 0;
  font-weight: 700;
}
.addressinfo {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  border: 0.1rem solid #f1f1f1;
  padding: 1rem;
}
.addressinfo span {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}
.addressinfo p {
  font-size: 1.4rem;
  margin: 0;
  flex: 1;
}
.faqitem {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
}
.faqitem:not(:last-child) {
  margin-bottom: 1rem;
}
.faqitemtitle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 0.1rem solid #f9f9f9;
  cursor: pointer;
  transition: all 300ms ease;
}
.faqitemtitle:hover {
  background-color: #f1f1f1;
}
.faqitemtitle h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
}
.faqitemtitle i {
  display: inline-block;
  transition: all 300ms ease;
}
.turnicon {
  transform: rotate(180deg);
}
.faqitemcontent {
  padding: 2rem;
  display: none;
}
.faqitemcontent p {
  font-size: 1.4rem;
  margin: 0;
}
.faqopen {
  display: block !important;
}
.faqgeneralcontent {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-radius: 0.5rem;
  background-color: var(--coloryellow);
  padding: 3rem;
  position: sticky;
  top: 1rem;
  background-image: url("../images/asset.png");
  background-size: 50%;
  margin-top: 2rem;
}
@media (min-width: 992px) {
  .faqgeneralcontent {
    margin-top: 0;
  }
}
.faqgeneralcontent h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.faqgeneralcontent p {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  opacity: 0.8;
}
.faqgeneralcontent a {
  border-radius: 5rem;
  background-color: var(--colorbrown);
  color: var(--mainColor);
  display: inline-block;
  margin-top: 1rem;
  transition: all 300ms ease;
  font-size: 1.4rem;
  padding: 1rem 2rem;
  color: #fff;
}
.faqgeneralcontent a:hover {
  background-color: var(--mainColor);
  color: #fff;
}
.maintexture {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.maintexture h1,
.maintexture h2,
.maintexture h3,
.maintexture h4,
.maintexture h5 {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  font-weight: 700;
}
@media (min-width: 1500px) {
  .maintexture h1,
  .maintexture h2,
  .maintexture h3,
  .maintexture h4,
  .maintexture h5 {
    font-size: 1.8rem;
  }
}
.maintexture p {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.maintexture ul,
.maintexture ol {
  padding-left: 2rem;
  margin-bottom: 1rem;
}
.maintexture ul {
  list-style-type: disc;
}
.maintexture ol {
  list-style-type: decimal;
}
.maintexture ul li,
.maintexture ol li {
  padding: 0.5rem 0;
  font-size: 1.4rem;
}
.maintexture ul li p,
.maintexture ol li p {
  margin: 0;
}
.ordersearch {
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 2rem;
}
.ordersearch .form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .ordersearch .form-group {
    margin-bottom: 0;
  }
}
#sorgu {
  border-radius: 0.3rem;
  border: none;
  background-color: var(--colorbrown);
  color: #fff;
  transition: all 300ms ease;
  width: 100%;
  height: 4.41rem;
  font-size: 1.4rem;
}
#sorgu:hover {
  background-color: var(--coloryellow);
  color: var(--mainColor);
}
.productdetailleft {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .productdetailleft {
    position: sticky;
    top: 1rem;
    margin-bottom: 0;
  }
}
.productdetailleft figure {
  background-color: #fff;
  border-radius: 1rem;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 350px) {
  .productdetailleft figure {
    width: 70%;
  }
}
@media (min-width: 576px) {
  .productdetailleft figure {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .productdetailleft figure {
    width: 100%;
  }
}
.productdetailleft figure img {
  aspect-ratio: 1;
  object-fit: contain;
}
.productdetailright {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .productdetailright {
    padding-left: 2rem;
  }
}
.productdetailtitle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.productdetailtitleleft {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.productdetailtitleleft h2 {
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
}
@media (min-width: 350px) {
  .productdetailtitleleft h2 {
    font-size: 1.8rem;
  }
}
@media (min-width: 768px) {
  .productdetailtitleleft h2 {
    font-size: 2rem;
  }
}
@media (min-width: 1400px) {
  .productdetailtitleleft h2 {
    font-size: 2.2rem;
  }
}
.productdetailtitleleft p {
  font-size: 1.4rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}
.ribboninline {
  font-size: 1.2rem;
  color: var(--mainColor);
  font-weight: 500;
  background-color: var(--coloryellow);
  position: relative;
  padding: 0.3rem 2.5rem 0.3rem 1rem;
}
.ribboninline::after {
  content: "";
  position: absolute;
  right: -1px;
  background-color: #f9f9f9;
  clip-path: polygon(0 51%, 100% 100%, 100% 0);
  top: 0;
  bottom: 0;
  width: 1.5rem;
}
.productdetailcounterside {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 1rem;
  margin-bottom: 1rem;
}
.productdetailcounterside .productStock {
  margin-bottom: 0;
}
.productdetailright .row {
  width: 100%;
}
.productspecial {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.productspecial span {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.productspecialbars {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  column-gap: 0.2rem;
}
.productspecialbarsitem {
  width: calc(100% / 3);
  border: 0.1rem solid var(--mainColor);
  text-align: center;
  font-size: 1rem;
  padding: 0.6rem 0;
  line-height: 1;
}
.productspecialbarsitem.active {
  background-color: var(--colorbrown);
  border: 0.1rem solid var(--colorbrown);
  color: #fff;
}
.productoptions {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.productoptionsbuttons {
  display: flex;
  column-gap: 1rem;
  row-gap: 1rem;
  flex-wrap: wrap;
}
.coffeeOpt {
  border: 0.1rem solid var(--mainColor);
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  transition: all 300ms ease;
  background-color: transparent;
}
.coffeeOpt:hover {
  background-color: var(--mainColor);
  color: #fff;
}
.coffeeOpt.active {
  background-color: var(--coloryellow);
  color: var(--mainColor);
  border: 0.1rem solid var(--coloryellow);
}
.productoptionstext {
  margin-bottom: 1rem;
}
.productoptionstext p {
  font-size: 1.4rem;
  font-weight: 600;
}
.productoptionstext p span {
  font-weight: 400;
}
.productdetailprices {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 2rem;
}
.productdetailpricestext {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.productdetailpricestext h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.productdetailpricestext p {
  font-size: 1.4rem;
  opacity: 0.8;
  margin: 0;
}
.productdetailpricesdesc {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 1rem;
  margin-top: 1rem;
}
.productdetailpricesdesc span {
  font-size: 1.4rem;
  opacity: 0.8;
  text-decoration: line-through;
}
.productdetailpricesdesc p {
  font-size: 2rem;
  font-weight: 900;
  margin: 0;
}
.productdetailcartactions {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 1rem;
  margin-top: 2rem;
}
.productdetailqtymain {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border: 0.1rem solid var(--mainColor);
  border-radius: 0.3rem;
}
.productdetailqtymainitem {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  width: 3.4rem;
  height: 3.4rem;
}
@media (min-width: 576px) {
  .productdetailqtymainitem {
    width: 4rem;
    height: 4rem;
  }
}
.qtyminus,
.qtyplus {
  cursor: pointer;
  font-weight: 600;
}
.productinlinetexture p {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.productinlinetexture {
  height: 15rem;
  overflow-y: auto;
  padding: 0 2rem 2rem 0;
}
.productinlinetexture::-webkit-scrollbar {
  width: 0.5rem;
}
.productinlinetexture::-webkit-scrollbar-track {
  background-color: var(--colorbrown);
}
.productinlinetexture::-webkit-scrollbar-thumb {
  background-color: var(--coloryellow);
}
.productdivider {
  width: 100%;
  height: 0.1rem;
  border-radius: 5rem;
  background-color: #e7e7e7;
  margin: 2rem 0 1rem 0;
}
.productcargo {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.productcargo figure {
  width: 3.5rem;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
}
.productcargo p {
  width: calc(100% - 3.5rem);
  padding-left: 1rem;
  font-size: 1.4rem;
  margin: 0;
}
