@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@0,200..1000;1,200..1000&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

textarea {
  resize: none;
}

html,
body {
  min-height: 100%;
}

body {
  font-size: 1rem;
  font-weight: 400;
  font-family: "Mulish", sans-serif;
  color: #000;
  line-height: 160%;
  /* 2.4rem */
  background-color: #fff;
}
body.lock {
  overflow: hidden;
}

.wrapper {
  min-height: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  overflow: clip;
}

[class*=__container] {
  box-sizing: border-box;
  max-width: 1000px;
  padding: 0 15px;
  margin: 0 auto;
}

.overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s;
}
.overlay.active {
  visibility: visible;
  opacity: 1;
  z-index: 10;
}

.header {
  margin-bottom: 5rem;
  padding-top: 5rem;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1rem;
}
.header__cart {
  position: relative;
  border: none;
  outline: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
}
.header__cart img {
  width: 100%;
  height: 100%;
}
.header__cart span {
  position: absolute;
  background-color: #E86A12;
  width: 1rem;
  height: 1rem;
  font-size: 0.8em;
  border-radius: 50%;
  border: none;
  color: #fff;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 5%;
  right: 5%;
}

.button-close {
  position: relative;
  width: 1.5em;
  height: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.button-close::before {
  content: "";
  position: absolute;
  width: 1.3875rem;
  height: 2.35px;
  background-color: #000;
  border-radius: 1.5rem;
  transform: rotate(130deg);
}
.button-close::after {
  content: "";
  position: absolute;
  width: 1.3875rem;
  height: 2.35px;
  background-color: #000;
  border-radius: 1.5rem;
  transform: rotate(-130deg);
}

.order__list {
  display: grid;
  gap: 2rem;
}
.order__item {
  border-radius: 0.8125rem;
  background: var(--Gradient-O1, linear-gradient(90deg, #FFF1E8 5.37%, rgba(255, 255, 255, 0) 97.38%));
  display: flex;
  max-width: 500px;
}
.order__content {
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
  margin-left: 1.5rem;
  flex-grow: 1;
}
.order__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 100%;
  /* 1.25rem */
}
.order__description {
  color: rgba(18, 18, 18, 0.8);
  font-size: 1rem;
  font-weight: 300;
  line-height: 130%;
  letter-spacing: -0.01563rem;
}
.order__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.order__price {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.01563rem;
  flex-grow: 1;
}
.order__customize {
  font-family: "Mulish", sans-serif;
  color: #266DCC;
  font-size: 1rem;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -0.01563rem;
  margin-right: 1rem;
  border: none;
  outline: none;
  cursor: pointer;
}
.order__customize:hover {
  text-decoration: underline;
}
.order__button {
  font-family: "Mulish", sans-serif;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.875rem 0.5rem 0.625rem;
  font-size: 1rem;
  font-weight: 800;
  line-height: 100%;
  /* 0.8125rem */
  letter-spacing: 0.04688rem;
  text-transform: uppercase;
  border-radius: 0.8125rem 0 0.8125rem 0;
  background-color: #E86A12;
  border: none;
  color: #fff;
  cursor: pointer;
}
.order__button span {
  display: inline-block;
  padding: 0.23rem;
  box-sizing: border-box;
}

.cart {
  background-color: #fff;
  width: 30%;
  position: fixed;
  height: 100%;
  right: -200%;
  transition: all 0.2s ease;
  overflow: auto;
}
.cart.active {
  transition: all 0.2s ease;
  right: 0;
  z-index: 14;
}
.cart__container {
  display: flex;
  flex-direction: column;
  padding: 3rem;
  height: 100%;
}
.cart__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
}
.cart__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1rem;
}
.cart__list {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 5rem;
}
.cart__item {
  flex-direction: column;
  position: relative;
  padding-bottom: 0.1rem;
}
.cart__item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.1);
  bottom: 0;
  left: 0;
}
.cart__item-title {
  margin-bottom: 0.5rem;
}
.cart__customize {
  padding: 0;
}
.cart__divider {
  width: 2px;
  height: 1.5rem;
  background-color: rgb(137, 137, 137);
}
.cart__remove {
  font-family: "Mulish", sans-serif;
  color: #266DCC;
  font-size: 1rem;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -0.01563rem;
  margin-right: 1rem;
  border: none;
  outline: none;
  cursor: pointer;
  margin-left: 1rem;
  padding: 0;
}
.cart__remove:hover {
  text-decoration: underline;
}
.cart__item-quantity {
  display: flex;
  align-items: center;
  flex: 0 1 28.333333%;
  padding: 1em 1.25em;
  justify-content: space-between;
  box-sizing: border-box;
  border-radius: 3.875rem;
  background-color: #F0F0F0;
  gap: 1em;
}
.cart__item-total {
  color: #000;
  font-size: 1rem;
  font-weight: 500;
}
.cart__item-add, .cart__item-substract {
  position: relative;
  width: 1.5em;
  height: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.cart__item-add::before, .cart__item-substract::before {
  content: "";
  position: absolute;
  width: 1.1875rem;
  height: 3px;
  background-color: #000;
  border-radius: 1.5rem;
}
.cart__item-add::after {
  content: "";
  position: absolute;
  width: 1.1875rem;
  height: 3px;
  background-color: #000;
  border-radius: 1.5rem;
  transform: rotate(90deg);
}
.cart__summary {
  margin-top: auto;
}
.cart__summary-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(0, 0, 0, 0.6);
  font-size: clamp(1rem, 0.913rem + 0.4348vw, 1.25rem);
  font-weight: 400;
  margin-bottom: -0.25em;
  margin-bottom: 0.7rem;
}
.cart__summary-price {
  color: #000;
  font-weight: 700;
}
.cart__summary-total {
  margin-top: 2rem;
  color: #000;
}
.cart__button-checkout {
  font-family: "Mulish", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 1rem 0.875rem 1rem 0.625rem;
  font-size: 1rem;
  font-weight: 800;
  line-height: 100%;
  /* 0.8125rem */
  letter-spacing: 0.04688rem;
  text-transform: uppercase;
  border-radius: 0.8125rem 0 0.8125rem 0;
  background-color: #E86A12;
  border: none;
  color: #fff;
  cursor: pointer;
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.customize {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  max-height: 100%;
  box-sizing: border-box;
  border-radius: 1.5em;
  overflow: auto;
  transition: all 0.5s;
  padding: 4.5rem 2rem;
  border-radius: 2rem;
  min-width: 29.8%;
  font-family: 1em;
  visibility: hidden;
  opacity: 0;
  overflow-y: auto;
}
.customize.active {
  visibility: visible;
  opacity: 1;
  z-index: 15;
}
.customize__container {
  display: grid;
  gap: 2rem;
}
.customize__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.customize__title {
  color: #000;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 100%;
  /* 1.25rem */
}
.customize__section-title {
  color: #121212;
  font-size: 1rem;
  font-weight: 700;
  line-height: 100%;
  /* 1rem */
  margin-bottom: 0.75rem;
}
.customize__section-select {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  padding: 0.5rem 0;
  font-weight: 400;
}
.customize__section-select input {
  margin-right: 0.7rem;
}
.customize__section-select span {
  color: #121212;
  font-size: 1rem;
  line-height: 100%;
  /* 0.875rem */
}
.customize__section--size {
  font-weight: 400;
}
.customize__section--price {
  flex-grow: 1;
  text-align: end;
  font-weight: 700;
}
.customize__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.69rem;
  margin-top: 3rem;
}
.customize__button {
  font-family: "Mulish", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.875rem 1.0625rem 0.875rem 1rem;
  font-size: 1rem;
  font-weight: 800;
  line-height: 100%;
  /* 0.8125rem */
  letter-spacing: 0.04688rem;
  text-transform: uppercase;
  border-radius: 0.5rem;
  background-color: #E86A12;
  border: none;
  color: #fff;
  cursor: pointer;
  flex-grow: 1;
}
.customize__button span {
  display: inline-block;
  padding: 0.23rem;
  box-sizing: border-box;
}
.customize__total {
  color: #121212;
  font-size: 1rem;
  font-weight: 600;
  line-height: 100%;
}
.customize__total span {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.01563rem;
  display: block;
  margin-top: 0.9rem;
}

.checkout__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
}
.checkout__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 2rem;
  grid-column: 1;
}
.checkout__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  width: 100%;
}
.checkout__form div {
  grid-column: 1/span 2;
}
.checkout__form div:nth-child(4) {
  grid-column: 1;
}
.checkout__form div:nth-child(5) {
  grid-column: 2;
}
.checkout__input label {
  color: #121212;
  font-weight: 600;
  font-size: 1.25rem;
}
.checkout__input input {
  margin-top: 0.5rem;
  width: 100%;
  padding: 1.31em 0 1.38em 1.5em;
  box-shadow: 0 0 50px 0.5px rgba(0, 0, 0, 0.05);
  border: 1px solid #8A8A8A;
  border-radius: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  font-size: 0.9rem;
}
.checkout__input input::-moz-placeholder {
  color: rgba(18, 18, 18, 0.8);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 130%;
  letter-spacing: 0.05rem;
}
.checkout__input input::placeholder {
  color: rgba(18, 18, 18, 0.8);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 130%;
  letter-spacing: 0.05rem;
}
.checkout__error {
  font-size: 0.9rem;
  color: #ff0000;
}
.checkout__button {
  font-family: "Mulish", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 1rem 0.875rem 1rem 0.625rem;
  font-size: 1rem;
  font-weight: 800;
  line-height: 100%;
  letter-spacing: 0.04688rem;
  text-transform: uppercase;
  border-radius: 0.8125rem 0 0.8125rem 0;
  background-color: #E86A12;
  border: none;
  color: #fff;
  cursor: pointer;
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.checkout__summary-title {
  margin-bottom: 3rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 2rem;
  grid-column: 2;
}
.checkout .cart__summary {
  margin: 0;
}

.receipt p, .checkout p {
  color: rgba(18, 18, 18, 0.8);
  font-size: 1rem;
  font-weight: 300;
  line-height: 130%;
  letter-spacing: 0.03rem;
}
.receipt h3, .checkout h3 {
  margin-top: 2rem;
  margin-bottom: 0.7rem;
  font-weight: 600;
  font-size: 1.25rem;
}
.receipt .cart__remove, .receipt .cart__item-substract, .receipt .cart__item-add, .checkout .cart__remove, .checkout .cart__item-substract, .checkout .cart__item-add {
  display: none;
}
.receipt .cart__item-quantity, .checkout .cart__item-quantity {
  flex: 0 1 30%;
  justify-content: flex-end;
}