@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-display: swap;
  src: url("/assets/OpenSans-VariableFont_wdth,wght-9d9a835d.ttf") format("truetype-variations");
}
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-display: swap;
  src: url("/assets/OpenSans-Italic-VariableFont_wdth,wght-0154201d.ttf") format("truetype-variations");
}
:root {
  --clr-white: #fff;
  --clr-black: #2d2d2d;
  --clr-true-black: #000;
  --clr-logo: #231f20;
  --clr-lightblue: #C7D8ED;
  --clr-error: #b24226;
  --clr-action: #3c85c6;
  --clr-bg: var(--clr-white);
  --clr-fg: var(--clr-black);
  --clr-menu: var(--clr-bg);
  --clr-grey-100: #f4f4f5;
  --clr-grey-200: #e4e4e7;
  --clr-grey-300: #d4d4d8;
  --clr-grey-400: #a1a1aa;
  --clr-grey-500: #71717a;
  --clr-grey-600: #52525b;
  --clr-grey-700: #17176d;
  --clr-grey-750: #2e2f31;
  --clr-grey-800: #28292A;
  --clr-white-200: rgba(255, 255, 255, 0.9);
  --clr-white-300: rgba(255, 255, 255, 0.7);
  --ff-base: "Open Sans", sans-serif;
  --n-columns: 13;
  --m-column: calc(100vw / var(--n-columns));
  --fs-xxl: clamp(4.2rem, 6vw + 1rem, 8rem);
  --fs-xl: clamp(3.2rem, 4vw + 1rem, 5.6rem);
  --fs-l: clamp(2.4rem, 2vw + 1rem, 4.8rem);
  --fs-m: clamp(1.6rem, 1vw + 0.6rem, 3.2rem);
  --fs-s: clamp(1.4rem, 1vw + 0.4rem, 1.6rem);
  --m-xs: .236em;
  --m-s: .345984em;
  --m-m: .786096em;
  --m-l: 1em;
  --m-xl: 1.618em;
  --m-base: 18px;
  font: 10px/1.3 var(--ff-base);
}

ul[class] {
  margin: 0;
  padding: 0;
  list-style: none;
}

button[class] {
  appearance: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

body {
  background-color: var(--clr-bg);
  color: var(--clr-fg);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 100svh;
  -webkit-font-smoothing: antialiased;
}

header,
footer,
.product__categories {
  flex-grow: 0;
}

header {
  background-color: var(--clr-lightblue);
}

main {
  flex-grow: 1;
}

footer {
  flex-grow: 0;
  background-color: var(--clr-grey-800);
  color: var(--clr-white-200);
}

.footer__inner {
  margin: var(--m-column) 0;
  font-size: 1.6rem;
  line-height: 1.5;
}
.footer__inner h4, .footer__inner h5 {
  font-variation-settings: "wght" 600;
  font-weight: normal;
  font-size: 1.8rem;
  margin: 0;
}
.footer__inner h4 a, .footer__inner h5 a {
  color: var(--clr-white-200);
  text-decoration: none;
}
.footer__inner h4 a:hover, .footer__inner h5 a:hover {
  text-decoration: underline;
}
.footer__inner h4 {
  margin: 0 0 var(--m-l) 0;
}
.footer__inner h5 a {
  display: inline-flex;
  gap: var(--m-xs);
}
.footer__inner h5 a svg {
  fill: var(--clr-white-300);
}
.footer__inner a {
  color: var(--clr-white-300);
  text-underline-offset: 0.15em;
}
.footer__inner a:hover {
  color: var(--clr-white-200);
}
.footer__inner li + li {
  margin-top: 0.2em;
}
.footer__inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.breakable {
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

.nowrap {
  white-space: nowrap;
}

.base__grid {
  display: grid;
  gap: 0 0;
  grid-template-columns: repeat(var(--n-columns), minmax(0, 1fr));
  max-width: 100%;
}

.base__grid-header {
  padding-top: calc(var(--m-column) / 2);
  padding-bottom: calc(var(--m-column) / 2);
  align-items: center;
}

img.payment__method {
  display: block;
  width: 50px;
  background-color: var(--clr-white);
  border-radius: 50%;
}

.payment_methods {
  display: flex;
  gap: 10px;
  font-size: 1.8rem;
}

.product__categories {
  font-size: 1.4rem;
  margin: calc(var(--m-column) / 3) 0;
}
.product__categories ul {
  grid-column: 2/-2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2em 0.4em;
  justify-content: center;
}
.product__categories ul li + li:before {
  content: "/";
  color: var(--clr-grey-300);
  margin-right: 0.4em;
}
.product__categories a {
  text-decoration: none;
  color: var(--clr-grey-600);
}
.product__categories a:hover {
  color: var(--clr-fg);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.header__logo {
  grid-column: 2/span 3;
}
.header__logo svg {
  display: block;
  fill: var(--clr-logo);
}

.header__links-container {
  grid-column: 6/13;
  justify-content: flex-end;
  display: flex;
  align-items: center;
  gap: calc(var(--m-column) / 3);
}
.header__links-container svg {
  width: 32px;
  height: 32px;
}
.header__links-container button {
  width: 36px;
  height: 36px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.header__links-container button svg {
  flex-shrink: 0;
}

.header__links-container .search__container {
  display: none;
}
.header__links-container.search__form-open .search__container {
  display: block;
}
.header__links-container.search__form-open > .search__button, .header__links-container.search__form-open .header__menu-lang {
  display: none;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  line-height: 1.2;
  gap: 0.6em;
}
.pagination a {
  text-decoration: none;
  color: var(--clr-fg);
}
.pagination .page {
  border-bottom: 2px solid transparent;
  padding: 0.2em 0.3em;
}
.pagination .current {
  border-color: var(--clr-black);
}
.pagination .prev a, .pagination .next a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}
.pagination svg {
  display: block;
  width: 16px;
  height: 16px;
}

.product__category-h1 {
  font-size: var(--fs-xl);
  font-weight: 400;
  font-weight: inherit;
  font-variation-settings: "wght" 700;
  line-height: 1.1;
  margin: 0;
}

.search__container {
  flex-grow: 1;
}
.search__container form {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.search__container form input {
  flex-grow: 1;
  font-size: 1.6rem;
  line-height: 32px;
  height: 42px;
  padding: 0 0.5em;
  border-radius: 2px;
  border: none;
}
.search__container button {
  padding: 0;
}
.search__container svg {
  width: 32px;
  height: 32px;
}

.header__menu-lang {
  font-size: 1.6rem;
}
.header__menu-lang ul {
  list-style: none;
  margin: 0;
  display: flex;
  justify-content: start;
}
.header__menu-lang li > a {
  text-decoration: none;
  color: var(--clr-fg);
  text-transform: capitalize;
}
.header__menu-lang li + li::before {
  content: "/";
  margin: 0 0.2em;
  color: var(--clr-grey-400);
}

.cart__link {
  position: relative;
  width: 36px;
  height: 36px;
}
.cart__link::after {
  content: attr(data-count);
  position: absolute;
  background-color: var(--clr-black);
  color: var(--clr-grey-100);
  font-size: 1.2rem;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  bottom: 0;
  right: 0;
}

#skip-to-content-link {
  position: absolute;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  font-size: 1.6rem;
  line-height: 1;
  background: var(--clr-black);
  color: var(--clr-white);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 2px;
  left: 50%;
  top: 1em;
  transform: translateX(-50%);
}
#skip-to-content-link:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
}

.product__overview {
  margin: var(--m-column) 0;
  grid-column: 2/-2;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: calc(var(--m-column) / 2);
}

.landingpage .product__overview {
  margin-bottom: var(--m-xl);
}
.landingpage a {
  text-decoration: none;
  color: var(--clr-grey-600);
}
.landingpage a:hover {
  color: var(--clr-fg);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.product__item {
  font-size: 1.6rem;
}
.product__item img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  margin: 0 0 var(--m-l) 0;
}
.product__item h3 {
  font-weight: inherit;
  font-variation-settings: "wght" 600;
  font-size: 1.6rem;
  margin: 0 0 var(--m-m) 0;
}
.product__item a {
  text-decoration: none;
  color: var(--clr-fg);
}

.product__tags, ul.product__tags {
  margin: 0 0 var(--m-s) 0;
  padding: 0;
  list-style: none;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.2em 1em;
  font-size: 1.4rem;
}
.product__tags a, ul.product__tags a {
  text-decoration: none;
  color: var(--clr-grey-600);
}
.product__tags a:hover, ul.product__tags a:hover {
  color: var(--clr-fg);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Productview */
.product__view, .product__category {
  font-size: 1.6rem;
}

.product__view {
  margin: var(--m-column);
}

.product__category {
  margin: calc(var(--m-column) / 2) var(--m-column);
}

.product__view-wrapper {
  max-width: 1300px;
  margin: 0 auto;
}

.product__view-details {
  max-width: 480px;
  margin: 0 auto;
}
.product__view-details .product__tags {
  font-size: 1.8rem;
  font-weight: inherit;
  font-variation-settings: "wght" 500;
}
.product__view-details h1 {
  font-weight: inherit;
  font-variation-settings: "wght" 700;
  font-size: 3.2rem;
  line-height: 1.2;
  margin: 0 0 var(--m-m) 0;
}
.product__view-details .product__price {
  font-weight: inherit;
  font-variation-settings: "wght" 500;
  font-size: 2rem;
  margin: 0 0 var(--m-m) 0;
}

.landingpage__section {
  font-size: 1.6rem;
  background-color: var(--clr-grey-200);
}
.landingpage__section h1 {
  font-weight: inherit;
  font-variation-settings: "wght" 700;
  font-size: 2.4rem;
  line-height: 1.2;
  margin: 0 0 var(--m-m) 0;
}
.landingpage__section blockquote {
  text-align: center;
  margin: 0;
  padding: calc(var(--m-column) / 2) var(--m-column);
}

.product__view-description {
  font-weight: inherit;
  font-variation-settings: "wght" 400;
  font-size: 1.6rem;
  line-height: 1.5;
}

.product__view-image {
  margin-bottom: var(--m-column);
}
.product__view-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  margin: 0 0 0 0;
}

.product__view-add {
  margin: var(--m-xl) 0;
}
.product__view-add [type=submit] {
  display: block;
  width: 100%;
  appearance: none;
  margin: var(--m-xl) 0 0 0;
  background-color: var(--clr-black);
  color: var(--clr-grey-100);
  font-size: 1.8rem;
  line-height: 56px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
}

.qty__ctrls {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--clr-grey-400);
  height: 40px;
}
.qty__ctrls button, .qty__ctrls a {
  cursor: pointer;
  appearance: none;
  background-color: transparent;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
}
.qty__ctrls button svg, .qty__ctrls a svg {
  width: 20px;
  height: 20px;
}
.qty__ctrls input {
  appearance: none;
  border: none;
  outline: none;
  text-align: center;
  width: 3ch;
  font-size: 1.6rem;
  line-height: 40px;
  height: 40px;
  padding: 0;
}

#backdrop {
  position: fixed;
  inset: 0 0 0 0;
  background-color: rgba(0, 0, 0, 0.4);
  animation: fade-in 0.4s;
  z-index: 10;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#cart__sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 90vw;
  max-width: 400px;
  z-index: 11;
  background-color: var(--clr-bg);
  transform: translateX(100%);
  transition: transform 300ms ease;
}

.cart__wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
}

.cart__items {
  flex: 1 1 auto;
  overflow: auto;
}

.cart__header, .cart__ctrls {
  flex: 0 0 auto;
}

.cart__header {
  padding: 20px 20px 20px 30px;
  border-bottom: 1px solid var(--clr-grey-300);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart__header h2 {
  font-size: 2.2rem;
  font-weight: inherit;
  font-variation-settings: "wght" 600;
  margin: 0;
}
.cart__header button {
  appearance: none;
  border: none;
  background-color: transparent;
  padding: 0;
  cursor: pointer;
}
.cart__header button svg {
  width: 32px;
  height: 32px;
}

.cart__ctrls {
  border-top: 1px solid var(--clr-grey-300);
  padding: 30px 30px 20px 30px;
}
.cart__ctrls form {
  margin: 0;
}
.cart__ctrls button {
  display: flex;
  justify-content: center;
  gap: 1em;
  width: 100%;
  appearance: none;
  background-color: var(--clr-black);
  color: var(--clr-grey-100);
  margin: 0 0 var(--m-s) 0;
  border-radius: 2px;
  font-size: 1.8rem;
  line-height: 56px;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}
.cart__ctrls .faq {
  text-align: center;
}

.faq {
  font-size: 1.4rem;
  color: var(--clr-grey-500);
}

ul.cart__items-wrapper {
  padding: 0 30px 0 20px;
  margin: 40px 0;
}
ul.cart__items-wrapper > li + li {
  margin-top: 40px;
}

.cart__item {
  display: grid;
  grid-template-columns: 120px calc(100% - 140px);
  gap: 20px;
  width: 100%;
  overflow: hidden;
}

.cart__item-image img, .order__item-image img {
  width: 100%;
  aspect-ratio: 1;
  display: block;
  object-fit: contain;
}

.cart__item-details {
  display: flex;
  gap: 1em;
  flex-direction: column;
  justify-content: space-between;
}
.cart__item-details > div:nth-child(2) {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart__item-details > div:nth-child(2) > div:nth-child(2) {
  font-size: 1.2rem;
}
.cart__item-details > div:nth-child(2) > div:nth-child(2) a {
  text-decoration: underline;
  text-decoration-color: var(--clr-grey-400);
  text-underline-offset: 0.1em;
}
.cart__item-details .qty__ctrls {
  height: 32px;
}
.cart__item-details .qty__ctrls a {
  width: 32px;
  height: 32px;
}
.cart__item-details .qty__ctrls a svg {
  width: 16px;
  height: 16px;
}
.cart__item-details .qty__ctrls input {
  line-height: 32px;
  height: 32px;
  font-size: 1.3rem;
}
.cart__item-details .product__tags {
  margin-bottom: var(--m-xs);
}
.cart__item-details h3 {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.6rem;
  font-weight: inherit;
  font-variation-settings: "wght" 600;
  margin: 0 0 var(--m-s) 0;
}
.cart__item-details .product__price {
  font-size: 1.4rem;
}
.cart__item-details a {
  text-decoration: none;
  color: var(--clr-fg);
}

@keyframes slide-in {
  from {
    transform: translateX(4rem);
  }
  to {
    transform: translateX(0);
  }
}
#cart__sidebar:has(*:not(:empty)) {
  transform: translateX(0);
}

/* Small only */
@media (max-width: 1023px) {
  header:has(.search__form-open) .header__menu-lang, header:has(.search__form-open) .cart__link {
    display: none;
  }
  header:has(.search__form-open) .header__links-container {
    grid-column: 6/13;
  }
  .footer__inner > div {
    grid-column: 2/-2;
    grid-row: auto;
  }
  .footer__inner h4 {
    margin-top: 1.5em;
  }
  .footer__inner > div:first-of-type h4 {
    margin-top: 0;
  }
  .payment_methods {
    margin-top: 3em;
  }
}
@media (max-width: 500px) {
  header:has(.search__form-open) .header__logo {
    display: none;
  }
  header:has(.search__form-open) .header__links-container {
    grid-column: 2/13;
  }
}
/* L */
@media (min-width: 768px) {
  .product__categories {
    font-size: 1.6rem;
  }
}
/* L */
@media (min-width: 1024px) {
  :root {
    --n-columns: 23;
  }
  .product__categories {
    font-size: 1.8rem;
  }
  .header__links-container {
    grid-column: 13/23;
  }
  .payment_methods {
    flex-direction: column;
  }
  .footer__inner > div:nth-child(1) {
    grid-column: 2/span 5;
  }
  .footer__inner > div:nth-child(2) {
    grid-column: 8/span 5;
  }
  .footer__inner > div:nth-child(3) {
    grid-column: 14/span 5;
  }
  .footer__inner > div:nth-child(4) {
    grid-column: 20/span 3;
  }
  .product__view-wrapper {
    display: grid;
    gap: var(--m-column);
    grid-template-columns: 1fr 480px;
  }
  .product__view-image {
    margin-bottom: 0;
  }
}
/*  XL */
.article__heading {
  grid-column: 2/-2;
  font-size: var(--fs-xl);
  line-height: 1.5;
  margin: 1em 0;
  font-weight: 400;
  font-variation-settings: "wght" 700;
}

.article__section {
  display: grid;
  grid-row: auto;
  grid-column: 1/-1;
  grid-template-columns: subgrid;
  font-size: 1.6rem;
  line-height: 1.5;
  padding: calc(var(--m-column) / 2) 0;
  color: var(--clr-section, var(--clr-black));
}
.article__section > * {
  grid-column: 2/-2;
}
.article__section > *:first-child {
  margin-top: 0;
}
.article__section:last-of-type {
  padding-bottom: calc(2 * var(--m-column));
}
.article__section:first-of-type {
  padding-top: var(--m-column);
  padding-bottom: calc(var(--m-column) * 2);
}
.article__section a {
  color: var(--clr-section, var(--clr-black));
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}
.article__section a:hover {
  text-decoration-color: var(--clr-section, var(--clr-black));
}
.article__section figure {
  margin: 0;
}
.article__section figcaption {
  font-size: 1.5rem;
  margin: var(--m-m) 1em 1em 1em;
}
.article__section img {
  display: block;
  width: 100%;
  height: auto;
}

.article__section:has(figure) {
  padding: 0;
}
.article__section:has(figure) + .article__section:has(figure) {
  padding-top: calc(var(--m-column) / 2);
}

.article__heading-h1 {
  font-size: var(--fs-xl);
  font-weight: 400;
  font-variation-settings: "wght" 700;
  line-height: 1.1;
  margin: 0;
}
.article__heading-h1 + * {
  margin-top: 2em;
}

.article__heading-h2 {
  font-size: 2rem;
  line-height: 1.5;
  margin: 1em 0;
  font-weight: 400;
  font-variation-settings: "wght" 600;
}

.article__heading-h3 {
  font-size: 1.8rem;
  line-height: 1.5;
  margin: 1em 0;
  font-weight: 400;
  font-variation-settings: "wght" 600;
}

/* Medium */
@media (min-width: 800px) {
  .article__section > * {
    grid-column: 4/span 7;
  }
  .article__section.align-w > * {
    grid-column-start: 2;
  }
  .article__section-l > * {
    grid-column: 2/-2;
  }
}
/* L */
@media (min-width: 1024px) {
  .article__heading-h2 {
    font-size: 2.4rem;
  }
  .article__heading-h3 {
    font-size: 2rem;
  }
  .article__section {
    font-size: 1.8rem;
  }
  .article__section > * {
    grid-column: 7/span 10;
  }
  .article__section.align-w > * {
    grid-column-start: 4;
  }
  .article__section.align-e > * {
    grid-column-start: 12;
  }
  .article__section-l > * {
    grid-column: 3/-3;
  }
  .list__container ul {
    --n-columns: 2;
  }
}
@media (min-width: 1600px) {
  .list__container ul {
    --n-columns: 3;
  }
}
.checkout__view {
  margin: var(--m-column) auto;
  font-size: 1.6rem;
  max-width: 1100px;
  padding: 0 var(--m-column);
}

.checkout__view-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--m-column);
}

.material__input {
  display: flex;
  font-family: var(--ff-base);
  border: 1px solid var(--clr-grey-400);
  font-size: 1.4rem;
  letter-spacing: 0.00625em;
  border: none !important;
  background-color: transparent;
  width: 100%;
  height: 100%;
  appearance: none;
  padding: 0;
  box-shadow: none;
}
.material__input:focus {
  outline: none;
}

.input-box {
  display: flex;
  height: 46px;
  width: 100%;
  box-sizing: border-box;
  align-items: center;
  padding: 0 16px;
  margin: 0;
  overflow: visible;
  -webkit-box-align: baseline;
  --outline: var(--clr-action);
  border-radius: 4px;
  border: 1px solid var(--clr-grey-400);
}
.input-box .field_with_errors {
  display: flex;
  height: 100%;
  width: 100%;
}
.input-box:has(textarea) {
  padding: 0 0 0 8px;
  height: auto;
}
.input-box:has(textarea) textarea {
  line-height: 1.2;
  margin: 1px 0;
  padding: 8px 16px 8px 0;
}
.input-box select {
  background-image: url("/assets/ico-arrow-down-76095259.svg");
  background-repeat: no-repeat;
  background-position: 100% 50%;
  background-size: 18px 18px;
}
.input-box:hover {
  border-color: var(--clr-grey-600);
}
.input-box:focus-within {
  outline: 2px solid var(--clr-black);
  outline-offset: -2px;
}
.input-box:has(.field_with_errors) {
  --outline: var(--clr-error);
  border-color: var(--clr-error);
  border-width: 2px;
}
.input-box:has(.field_with_errors):hover {
  border-color: var(--clr-error);
}
.input-box:has(.field_with_errors):focus-within {
  outline: 2px solid var(--clr-error);
}

.field > div:nth-child(1) {
  font-size: 1.3rem;
  margin: 0 0 var(--m-s) 0;
}
.field > div:nth-child(1) label {
  color: var(--clr-grey-600);
}
.field > div:nth-child(1) .field_with_errors label {
  color: var(--clr-error);
}

.fields__wrapper {
  display: flex;
  gap: 20px;
}
.fields__wrapper .field {
  flex-grow: 1;
}

.address__wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

ul.order__items-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1em;
  font-size: 1.4rem;
  margin-bottom: var(--m-xl);
}

[role=alert], .checkout__view [role=alert] {
  color: var(--clr-fg);
  margin: var(--m-s) 0 0 0;
  font-size: 1.3rem;
}

.order__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.order__item .product__price {
  white-space: nowrap;
  flex-shrink: 0;
}
.order__item h3 {
  flex-grow: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.4rem;
  font-weight: inherit;
  font-variation-settings: "wght" 400;
  margin: 0;
}
.order__item a {
  color: var(--clr-fg);
  text-decoration: none;
}
.order__item a:hover {
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

.order__item-image {
  flex: 0 0 80px;
}

.order__subtotal, .order__shipping {
  font-size: 1.4rem;
  font-weight: inherit;
  font-variation-settings: "wght" 400;
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--m-m);
}

.order__total {
  font-size: 2rem;
  font-weight: inherit;
  font-variation-settings: "wght" 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: var(--m-m);
}

span.na {
  color: var(--clr-grey-400);
}

[type=submit] {
  appearance: none;
  background-color: var(--clr-black);
  color: var(--clr-grey-100);
  border-radius: 2px;
  font-size: 1.8rem;
  padding: 0 1em;
  line-height: 56px;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}
[type=submit]:disabled {
  background-color: var(--clr-grey-400);
}

.checkout__steps {
  display: flex;
  justify-content: center;
}
.checkout__steps li + li::before {
  content: ">";
  margin: 0 0.5em;
}
.checkout__steps a {
  color: var(--clr-fg);
  text-decoration: none;
}
.checkout__steps a:hover {
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}
.checkout__steps .current {
  font-variation-settings: "wght" 600;
}

.checkout__steps-container {
  margin: 0 0 var(--m-xl) 0;
}

.order__form-submit {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 2em 1em;
}
.order__form-submit:has(input:only-child) {
  justify-content: end;
}

.order__form-header {
  font-variation-settings: "wght" 600;
  margin: 0 0 var(--m-m) 0;
  font-size: 2.2rem;
  font-weight: inherit;
}

.order__form-subheader {
  font-variation-settings: "wght" 600;
  margin: 0;
  font-size: 1.6rem;
  font-weight: inherit;
}

.order__form-section {
  margin: 0 0 var(--m-xl) 0;
}
.order__form-section > div:has(.order__form-subheader) {
  display: grid;
  grid-template-columns: 1fr 7fr;
  gap: 1em;
  margin-top: var(--m-m);
}

.field:has(.checkmark) {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  gap: 0.8em;
}
.field:has(.checkmark) input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.field:has(.checkmark) a {
  color: var(--clr-fg);
}
.field:has(.checkmark) .checkmark {
  position: relative;
  height: 20px;
  width: 20px;
  flex-shrink: 0;
  border: 1px solid var(--clr-grey-400);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.field:has(.checkmark) .checkmark svg {
  display: none;
  width: 20px;
  height: auto;
}
.field:has(.checkmark):has(.field_with_errors):not(:has(input:checked)) .checkmark {
  border-color: var(--clr-error);
  border-width: 2px;
  margin: -1px;
}
.field:has(.checkmark):has(input:checked) .checkmark {
  background-color: var(--clr-grey-800);
  border-color: var(--clr-grey-800);
}
.field:has(.checkmark):has(input:checked) .checkmark svg {
  display: block;
  fill: var(--clr-bg);
}

.shipping__methods > * + * {
  margin-top: -1px;
}

.shipping__method label {
  display: flex;
  cursor: pointer;
  gap: 1em;
  padding: 1.2em 1.4em;
  border: 1px solid var(--clr-grey-300);
}
.shipping__method label:has(input:checked) {
  background-color: var(--clr-grey-100);
  border-color: var(--clr-grey-800);
  z-index: 1;
  position: relative;
}
.shipping__method input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.shipping__method .checkmark {
  position: relative;
  height: 20px;
  width: 20px;
  flex-shrink: 0;
  border: 1px solid var(--clr-grey-400);
  box-sizing: border-box;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border 300ms ease;
}
.shipping__method :has(input:checked) .checkmark {
  border-color: var(--clr-grey-800);
  border-width: 6px;
}

.shipping__method-details {
  display: flex;
  gap: 1em;
  flex-grow: 1;
  justify-content: space-between;
}

.shipping__method-price, .shipping__method-title {
  font-variation-settings: "wght" 600;
  font-weight: inherit;
}

@media (min-width: 1024px) {
  .checkout__view-wrapper {
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: var(--m-column);
  }
  .checkout__view-wrapper .order__items {
    grid-row: 1;
    grid-column: 2;
  }
  .checkout__view-wrapper .order__form-wrapper {
    grid-row: 1;
    grid-column: 1;
  }
}
