@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&family=Kalam:wght@300;400;700&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Literata:ital,opsz,wght@0,7..72,200;0,7..72,300;0,7..72,400;0,7..72,500;0,7..72,600;0,7..72,700;0,7..72,800;0,7..72,900;1,7..72,200;1,7..72,300;1,7..72,400;1,7..72,500;1,7..72,600;1,7..72,700;1,7..72,800;1,7..72,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Literata", serif;
}

body, html {
  position: relative;
  overflow-x: hidden;
  width: 100vw;
  scroll-behavior: smooth;
}

.hidden {
  display: none;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2.5%;
  position: sticky;
  top: 0;
  left: 0;
  background: #EDDDD1;
  height: 6rem;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
  z-index: 51;
  width: 100%;
}
header .logo {
  height: 6rem;
  transform: translateY(5px);
}
header nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}
header nav a {
  font-family: "Open Sans", sans-serif;
  color: #000;
  text-decoration: none;
  font-size: 0.9em;
  position: relative;
  font-weight: 600;
}
header nav a::after {
  content: "";
  position: absolute;
  bottom: -7.5px;
  left: 50%;
  transform: translate(-50%);
  height: 2px;
  width: 0;
  background: #000;
  transition: 0.4s ease;
}
header nav a:hover::after {
  width: 80%;
}
header .cart-ham {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
header .cart-ham #cart-button {
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
  position: relative;
}
header .cart-ham #cart-button a {
  color: #000;
}
header .cart-ham #cart-button a svg {
  height: 2.5rem;
  width: 2.5rem;
  stroke-width: 1;
}
header .cart-ham #cart-button a .cart-count {
  height: 1.5rem;
  width: 1.5rem;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(25%, 25%);
  font-size: 0.75rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
}
header .cart-ham #ham {
  height: 2rem;
  width: 2rem;
  background: none;
  border: none;
  display: none;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
header .cart-ham #ham div {
  height: 0.2rem;
  width: 100%;
  background: #000;
  margin: 0.25rem 0;
  border-radius: 10px;
  transition: 0.5s ease;
}
header .cart-ham #ham div.active:first-child {
  transform: translate(0, 11px) rotate(45deg);
}
header .cart-ham #ham div.active:nth-child(2) {
  opacity: 0;
}
header .cart-ham #ham div.active:nth-child(3) {
  transform: translate(0, -10px) rotate(-45deg);
}
header .logout svg {
  color: #000;
  height: 2.5rem;
  width: 2.5rem;
}

#offcanvas {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  background: #fff;
  display: none;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  transform: translateX(100%);
  transition: 0.5s ease;
  z-index: 50;
}
#offcanvas.active {
  transform: translateX(0);
}
#offcanvas a {
  color: #000;
  text-decoration: none;
  font-size: 1em;
  font-family: "Open Sans", sans-serif;
  display: block;
  width: 90%;
  padding: 1rem 0;
  text-align: center;
  border-bottom: 2px solid #000;
}
#offcanvas a:last-child {
  border-bottom: none;
}

@media only screen and (max-width: 700px) {
  header {
    height: 5rem;
  }
  header .logo {
    height: 5rem;
    width: 5rem;
  }
  header nav {
    display: none;
  }
  header .cart-ham #ham {
    display: flex;
  }
  header .cart-ham #cart-button a svg {
    height: 2rem;
    width: 2rem;
    stroke-width: 1;
  }
  header .logout svg {
    height: 2rem;
    width: 2rem;
  }
  #offcanvas {
    display: flex;
  }
}
footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  background: #EDDDD1;
  padding: 2rem 0;
  gap: 1rem;
}
footer .logo {
  height: 12.5rem;
  width: 12.5rem;
}
footer .icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
footer .icons a {
  height: 3.5rem;
  width: 3.5rem;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  text-decoration: none;
}
footer .icons a svg {
  height: 1.5rem;
  width: 1.5rem;
}
footer .icons a:hover {
  transform: scale(1.05);
}
footer .rights {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
footer .rights a {
  font-size: 0.9em;
  text-decoration: none;
  color: #000;
}
footer .rights a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 700px) {
  footer .logo {
    font-size: 2em;
  }
  footer .icons a {
    height: 3rem;
    width: 3rem;
  }
  footer .icons a svg {
    height: 1.25rem;
    width: 1.25rem;
  }
  footer .rights {
    flex-flow: column;
    gap: 1rem;
  }
  footer .rights a {
    font-size: 0.8em;
  }
}
.order-btn {
  border: none;
  border-radius: 5px;
  background: #d2a682;
  box-shadow: 0 0 0 0 #d2a682;
  transition: 0.2s ease;
  cursor: pointer;
}
.order-btn a {
  display: block;
  color: #fff;
  font-weight: 500;
  padding: 0.75em 1.5em;
  font-size: 1.35em;
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
}
.order-btn:hover {
  box-shadow: 0 0 0 2px #d2a682;
}

@media only screen and (max-width: 1200px) {
  .order-btn a {
    font-size: 1.5em;
  }
}
@keyframes fade-up {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
.animate-fade-up {
  opacity: 0;
  transform: translateY(0);
}

.fade-up {
  animation: 1s fade-up ease-in-out forwards;
}

.animate-fade-up-2 {
  opacity: 0;
  transform: translateY(0);
}

.fade-up-2 {
  animation: 1s fade-up 0.5s ease-in-out forwards;
}

.animate-fade-up-3 {
  opacity: 0;
  transform: translateY(0);
}

.fade-up-3 {
  animation: 1s fade-up 1s ease-in-out forwards;
}

.animate-fade-up-4 {
  opacity: 0;
  transform: translateY(0);
}

.fade-up-4 {
  animation: 1s fade-up 1.5s ease-in-out forwards;
}

@keyframes fade-left {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
.animate-fade-left {
  opacity: 0;
  transform: translateX(-100%);
}

.fade-left {
  animation: 1s fade-left ease-in-out forwards;
}

.animate-fade-left-2 {
  opacity: 0;
  transform: translateY(0);
}

.fade-left-2 {
  animation: 1s fade-left 0.5s ease-in-out forwards;
}

.animate-fade-left-3 {
  opacity: 0;
  transform: translateY(0);
}

.fade-left-3 {
  animation: 1s fade-left 1s ease-in-out forwards;
}

@keyframes fade-right {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
.animate-fade-right {
  opacity: 0;
  transform: translateX(-100%);
}

.fade-right {
  animation: 1s fade-right ease-in-out forwards;
}

.animate-fade-right-2 {
  opacity: 0;
  transform: translateY(0);
}

.fade-right-2 {
  animation: 1s fade-right 0.5s ease-in-out forwards;
}

.animate-fade-right-3 {
  opacity: 0;
  transform: translateY(0);
}

.fade-right-3 {
  animation: 1s fade-right 1s ease-in-out forwards;
}

.test__login {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 200;
}
.test__login form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  gap: 1rem;
}
.test__login form h2 {
  font-size: 3em;
  font-family: "Open Sans", sans-serif;
  text-align: center;
}
.test__login form input {
  min-width: 600px;
  font-size: 1.2em;
  padding: 0.5rem 1rem;
}
.test__login form button {
  padding: 0.75rem 1.5rem;
  background: #000;
  color: #fff;
  border-radius: 5px;
  border: none;
  font-size: 1.25em;
}

@media only screen and (max-width: 850px) {
  .test__login form h2 {
    font-size: 2em;
  }
  .test__login form input {
    min-width: 400px;
  }
}
@media only screen and (max-width: 700px) {
  .test__login form h2 {
    font-size: 1.5em;
  }
  .test__login form input {
    min-width: 300px;
    font-size: 1em;
  }
  .test__login form button {
    font-size: 0.8em;
  }
}
body {
  background: #EFEFEF;
}

main {
  min-height: calc(100vh - 6rem);
  display: flex;
  justify-content: center;
  align-items: center;
}
main .cart {
  width: 1400px;
  background: #fff;
  min-height: 80vh;
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-flow: column;
  padding: 1rem 5%;
  box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.15);
  z-index: 2;
}
main .cart h2.heading {
  font-size: 4em;
  font-family: "Literata", serif;
  font-weight: 500;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
main .cart h2.heading::after {
  width: 1200px;
}
main .cart .cart-products {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  width: 100%;
}
main .cart .cart-products .row {
  display: grid;
  grid-template-columns: 0.2fr 0.8fr;
  width: 100%;
  border-top: 2px solid rgba(0, 0, 0, 0.35);
  border-bottom: 2px solid rgba(0, 0, 0, 0.35);
  padding: 2rem 0;
}
main .cart .cart-products .row .product-image img {
  width: 100%;
}
main .cart .cart-products .row .product-image.half {
  display: flex;
  justify-content: center;
  align-items: center;
}
main .cart .cart-products .row .product-image.half img {
  width: 50%;
}
main .cart .cart-products .row .product-information {
  padding-left: 15px;
}
main .cart .cart-products .row .product-information .main-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  padding: 0 0 0.75rem 0;
}
main .cart .cart-products .row .product-information .main-info .product-name {
  font-family: "Literata", serif;
  font-size: 2em;
  font-weight: 400;
}
main .cart .cart-products .row .product-information .main-info .price-config {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
main .cart .cart-products .row .product-information .main-info .price-config .product-price {
  font-family: "Open Sans", sans-serif;
  font-size: 1.35em;
  font-weight: 400;
}
main .cart .cart-products .row .product-information .main-info .price-config .product-quantity {
  font-size: 1.1em;
  padding: 0.5rem 0.25rem;
  width: 7.5rem;
  text-align: center;
  border-radius: 50px;
  border: 1px solid #000;
}
main .cart .cart-products .row .product-information .main-info .product-sum {
  font-family: "Open Sans", sans-serif;
  font-size: 1.35em;
  font-weight: 600;
}
main .cart .cart-products .row .product-information .additional-info {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 1rem 0;
}
main .cart .cart-products .row .product-information .additional-info .config {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 0.5rem;
}
main .cart .cart-products .row .product-information .additional-info .config span {
  font-family: "Open Sans", sans-serif;
  font-size: 0.9em;
}
main .cart .cart-products .row .product-information .additional-info .remove a {
  font-family: "Open Sans", sans-serif;
  font-size: 1em;
  color: #000;
  text-decoration: none;
}
main .cart .final-sum {
  display: flex;
  justify-content: center;
  align-items: end;
  flex-flow: column;
  width: 100%;
  padding: 1.5rem 0;
  gap: 1rem;
}
main .cart .final-sum .final-price {
  font-size: 1.5em;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  padding-bottom: 1rem;
}
main .cart .final-sum .input__parent {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 0.5rem;
  width: 25vw;
}
main .cart .final-sum .input__parent input {
  height: 15px;
  width: 15px;
  transform: translateY(4px);
}
main .cart .final-sum .input__parent label {
  font-size: 0.9em;
}
main .cart .final-sum .input__parent label a {
  color: #000;
}

main .cart.empty {
  min-height: auto;
}
main .cart.empty .empty-alert {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  gap: 1.5rem;
  padding: 2rem;
}
main .cart.empty .empty-alert h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 1.5em;
  font-weight: 400;
  text-align: center;
}

@media only screen and (max-width: 1500px) {
  main .cart {
    width: 1100px;
  }
  main .cart h2.heading::after {
    width: 900px;
  }
}
@media only screen and (max-width: 1200px) {
  main {
    margin: 2rem;
  }
  main .cart {
    width: 850px;
  }
  main .cart h2.heading::after {
    width: 750px;
  }
  main .cart .cart-products .row {
    grid-template-columns: 1fr;
  }
  main .cart .cart-products .row .product-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
  }
  main .cart .cart-products .row .product-image img {
    width: 50%;
  }
  main .cart.empty .empty-alert h3 {
    font-size: 1.8em;
  }
}
@media only screen and (max-width: 900px) {
  main .cart {
    width: 700px;
  }
  main .cart h2.heading::after {
    width: 580px;
  }
  main .cart .cart-products .row .product-information .main-info .product-name {
    font-size: 1.5em;
    font-weight: 500;
  }
  main .cart .cart-products .row .product-information .main-info .price-config .product-price {
    font-size: 1.1em;
  }
  main .cart .cart-products .row .product-information .main-info .price-config .product-quantity {
    font-size: 1em;
    width: 5rem;
  }
  main .cart .cart-products .row .product-information .main-info .product-sum {
    font-size: 1.2em;
  }
  main .cart .cart-products .row .product-information .additional-info .config span {
    font-size: 1em;
  }
  main .cart .cart-products .row .product-information .additional-info .remove a {
    font-size: 1.15em;
  }
  main .cart .final-sum .final-price {
    font-size: 1.35em;
  }
  main .cart.empty .empty-alert {
    padding: 0 1rem 2rem;
  }
  main .cart.empty .empty-alert h3 {
    font-size: 1.5em;
  }
}
@media only screen and (max-width: 700px) {
  main {
    margin: 2rem 0;
  }
  main .cart {
    width: 90%;
  }
  main .cart h2.heading {
    font-size: 2.5em;
    margin: 0 0 1rem;
  }
  main .cart h2.heading::after {
    content: none;
  }
  main .cart .cart-products .row .product-image img {
    width: 80%;
  }
  main .cart .cart-products .row .product-information .main-info {
    flex-flow: column;
    gap: 1rem;
  }
  main .cart.empty .empty-alert {
    padding: 0 1rem 2rem;
    gap: 0.75rem;
  }
  main .cart.empty .empty-alert h3 {
    font-size: 1.25em;
  }
  main .cart.empty .empty-alert .order-btn a {
    font-size: 1.2em;
  }
}/*# sourceMappingURL=style.css.map */