/* Breakpoints */
/* Desktop */
/* body font-size in design - no px */
/* screen-size in design - no px */
/* Tablet */
/* Mobile Landscape */
/* Mobile Portrait */
/* CSS Custom Properties for runtime scaling (needed for clamp/calc) */
:root {
  --size-unit: 16;
  --size-container-ideal: 1600;
  --size-container-min: 992px;
  --size-container-max: 1920px;
  --size-container: clamp(var(--size-container-min), 100vw, var(--size-container-max));
  --size-font: calc(var(--size-container) / (var(--size-container-ideal) / var(--size-unit)));
  --spacing-block: 7.75em;
  --spacing-huge: 5em;
  --spacing-large: 2.5em;
  --spacing-big: 2em;
  --spacing-medium: 1.5em;
  --spacing-normal: 1em;
  --spacing-small: 0.75em;
  --spacing-tiny: 0.5em;
  --frame-color: #151517;
  --inset-size: 20px;
  --hole-radius: 10px;
  --header-offset: 160px;
  --header-size: 100px;
}
@media screen and (max-width: 991px) {
  :root {
    --size-unit: 16;
    --size-container-ideal: 834;
    --size-container-min: 768px;
    --size-container-max: 991px;
    --header-offset: 120px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --size-unit: 16;
    --size-container-ideal: 550;
    --size-container-min: 480px;
    --size-container-max: 767px;
    --spacing-block: 7.5em;
    --spacing-huge: 4em;
    --spacing-large: 2.5em;
    --spacing-big: 2em;
    --spacing-medium: 1.5em;
    --spacing-normal: 1em;
    --spacing-small: 0.75em;
    --spacing-tiny: 0.5em;
    --inset-size: 8px;
  }
}
@media screen and (max-width: 479px) {
  :root {
    --size-unit: 16;
    --size-container-ideal: 390;
    --size-container-min: 320px;
    --size-container-max: 479px;
    --inset-size: 8px;
  }
}
.shoppingCart {
  height: 100dvh;
  left: 65vw;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 1060;
  padding: var(--inset-size) calc(66% + var(--inset-size)) var(--inset-size) var(--inset-size);
  background: var(--frame-color);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  overflow: clip;
  -webkit-transform: translateX(34%);
  -moz-transform: translateX(34%);
  -o-transform: translateX(34%);
  -ms-transform: translateX(34%);
  transform: translateX(34%);
  -webkit-transition: transform 0.6s 0s cubic-bezier(0.519, -0.014, 0.316, 1.019), background 0.6s 0s cubic-bezier(0.519, -0.014, 0.316, 1.019);
  -moz-transition: transform 0.6s 0s cubic-bezier(0.519, -0.014, 0.316, 1.019), background 0.6s 0s cubic-bezier(0.519, -0.014, 0.316, 1.019);
  -ms-transition: transform 0.6s 0s cubic-bezier(0.519, -0.014, 0.316, 1.019), background 0.6s 0s cubic-bezier(0.519, -0.014, 0.316, 1.019);
  -o-transition: transform 0.6s 0s cubic-bezier(0.519, -0.014, 0.316, 1.019), background 0.6s 0s cubic-bezier(0.519, -0.014, 0.316, 1.019);
  transition: transform 0.6s 0s cubic-bezier(0.519, -0.014, 0.316, 1.019), background 0.6s 0s cubic-bezier(0.519, -0.014, 0.316, 1.019);
}
.cartHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5em 0;
  border-bottom: 1px solid #ffffff;
  flex-shrink: 0;
}
.cartHeader h2,
.cartHeader .cartTitle {
  font-size: 1.875em;
  font-weight: 900;
  line-height: 1;
  margin: 0;
}
.cartClose {
  appearance: none;
  background: none;
  border: 0;
  padding: 0.5em;
  margin: -0.5em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  -webkit-transition: opacity 0.2s 0s ease;
  -moz-transition: opacity 0.2s 0s ease;
  -o-transition: opacity 0.2s 0s ease;
  transition: opacity 0.2s 0s ease;
}
.cartClose:focus-visible {
  outline: 2px solid #bbaa6d;
  outline-offset: 2px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
html:not(.touch) .cartClose:hover,
.cartClose:focus-visible {
  opacity: 0.6;
}
.cartClose .cartCloseIcon {
  position: relative;
  width: 1.25em;
  height: 1.25em;
  display: block;
  margin-left: 0.5em;
  margin-top: -0.25em;
}
.cartClose .cartCloseIcon:before,
.cartClose .cartCloseIcon:after {
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  top: 50%;
  width: 100%;
  background: currentColor;
  border-radius: 1px;
}
.cartClose .cartCloseIcon:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cartClose .cartCloseIcon:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cartClose .cartCloseText {
  font-size: 1.125em;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}
.cartBody {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0;
}
.cartBody .cartEmpty p {
  color: #8e8e8e;
  text-align: center;
  padding: 2em 0;
}
.cartItem {
  display: flex;
  align-items: center;
  gap: 1.75em;
  min-height: 9em;
  padding: 1em 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.cartItem .cartItemMedia {
  width: 4em;
  flex: 0 0 4em;
  display: flex;
  justify-content: center;
}
.cartItem .cartItemImageLink {
  display: block;
  width: 100%;
  color: inherit;
  text-decoration: none;
}
.cartItem .cartItemImage {
  width: 100%;
  height: 5em;
  object-fit: contain;
  flex-shrink: 0;
}
.cartItem .cartItemDetails {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.cartItem .cartItemTop,
.cartItem .cartItemBottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25em;
}
.cartItem .cartItemDetails h4 {
  font-size: 1.25em;
  font-weight: 900;
  line-height: 1.15;
  margin: 0;
  white-space: nowrap;
  overflow: clip;
  text-overflow: ellipsis;
}
.cartItem .cartItemTitleLink {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}
.cartItem .cartItemPrice {
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
  flex-shrink: 0;
  font-size: 1.125em;
}
.cartItem .cartItemQuantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 9.5em;
  height: 3.625em;
  padding: 0 1em;
  border: 1px solid #ffffff;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  border-radius: 999px;
}
.cartItem .cartItemQuantity button {
  width: 2em;
  height: 2em;
  padding: 0;
  border: none;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-size: 1.75em;
  line-height: 1;
}
.cartItem .cartItemQuantity button svg {
  width: 100%;
  height: 100%;
}
.cartItem .cartItemQuantity button:hover {
  border-color: #ffffff;
}
.cartItem .cartItemQuantity span {
  min-width: 1.25em;
  text-align: center;
  font-size: 1.125em;
  font-weight: 900;
}
.cartItem .cartItemRemove {
  background: none;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  width: 1.5em;
  height: 1.5em;
  padding: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: color 0.2s 0s ease;
  -moz-transition: color 0.2s 0s ease;
  -o-transition: color 0.2s 0s ease;
  transition: color 0.2s 0s ease;
}
.cartItem .cartItemRemove svg {
  width: 1em;
  height: 1.125em;
}
.cartItem .cartItemRemove:hover {
  color: #e96361;
}
@media all and (max-width: 991px) {
  .shoppingCart {
    right: -50vw;
    padding-right: calc(50% + var(--inset-size));
    -webkit-transform: translateX(50%);
    -moz-transform: translateX(50%);
    -o-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
  }
}
.cartFooter {
  padding: 1.25em 0 0;
  flex-shrink: 0;
}
.cartFooter .cartTotalRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25em;
  line-height: 1.15;
}
.cartFooter .cartTotalRow strong {
  font-weight: 900;
}
.cartFooter .cartTotalMain {
  margin-top: 1em;
  padding-top: 1em;
  border-top: 1px solid #ffffff;
}
.cartFooter .cartTotalMain .cartTotalLabel {
  color: #ffffff;
  text-transform: none;
  letter-spacing: 0;
}
.cartFooter .cartTotalLabel,
.cartFooter .cartArticlesLabel,
.cartFooter .cartTaxLabel,
.cartFooter .cartProductsLabel,
.cartFooter .cartDepositLabel {
  color: #ffffff;
}
.cartFooter .cartArticlesAmount,
.cartFooter .cartTaxAmount,
.cartFooter .cartProductsAmount,
.cartFooter .cartDepositAmount,
.cartFooter .cartTotalAmount {
  font-weight: 900;
  white-space: nowrap;
}
.cartFooter #cartDepositRow {
  margin-bottom: 0;
}
.cartFooter .cartCheckoutBtn {
  width: 100%;
  justify-content: center;
  text-align: center;
  margin-top: 2em;
  background: #bbaa6d;
  color: #ffffff;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  border-radius: 999px;
  border: 0;
}
html:not(.touch) .cartFooter .cartCheckoutBtn:hover,
.cartFooter .cartCheckoutBtn:focus-visible {
  background: #978858;
}
.cartFooter .cartCheckoutBtn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.cartFooter .cartContinue {
  appearance: none;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  display: block;
  font: inherit;
  font-size: 1.125em;
  font-weight: 900;
  line-height: 1;
  margin: 1.25em auto 0;
  padding: 0;
  text-decoration: underline;
}
@media all and (max-width: 767px) {
  .shoppingCart {
    width: 100vw;
    right: 0;
    left: 0;
    padding: calc(var(--inset-size) * 2);
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -o-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
  .shoppingCart.active {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  .shoppingCart .cartHeader {
    padding-top: 0;
  }
}
