@font-face {
  font-family: "Outfit";
  src: url("../fonts/subset-Outfit-Light.woff2") format("woff2"), url("../fonts/subset-Outfit-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/subset-Outfit-Medium.woff2") format("woff2"), url("../fonts/subset-Outfit-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/subset-Outfit-SemiBold.woff2") format("woff2"), url("../fonts/subset-Outfit-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
.footer__wrapper, .nav-bar, .grid {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.footer__wrapper, .nav-bar, .grid {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 480px) {
  .footer__wrapper, .nav-bar, .grid {
    padding-left: 4.375rem;
    padding-right: 4.375rem;
  }
}

html, body {
  margin: 0;
  padding: 0;
  background: url("/assets/images/australia-halfed.svg") 50% 0%/100% auto no-repeat, linear-gradient(135deg, rgba(66, 106, 154, 0.2), rgba(137, 172, 212, 0.2), rgba(150, 86, 62, 0.2));
  background-attachment: scroll, fixed;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

main {
  font-size: 1rem;
  line-height: 1.5rem;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  color: #000;
  display: flex;
  flex-direction: column;
  padding-bottom: 10.5rem;
}

h1 {
  font-family: "Outfit", sans-serif;
  font-size: 4.375rem;
  line-height: 4.5rem;
  margin: 0 0 0.75rem;
  font-weight: 600;
  hyphens: auto;
}
@media (max-width: 479px) {
  h1 {
    font-size: 3.125rem;
    line-height: 3.1875rem;
  }
}

h2 {
  font-family: "Outfit", sans-serif;
  font-size: 3rem;
  line-height: 3rem;
  margin: 0 0 0.75rem;
  font-weight: 500;
}

h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.875rem;
  margin: 0 0 0.75rem;
  letter-spacing: 0.04em;
}

p {
  margin: 1.125rem 0;
  font-size: 1rem;
  line-height: 1.5rem;
  hyphens: auto;
}
p:first-child {
  margin-top: 0;
}
p:last-child {
  margin-bottom: 0;
}

hr {
  border: 0;
  border-top: 2px dashed #F60014;
  margin: 1.5rem 0 2.25rem;
}

.spacer {
  flex-shrink: 0;
  flex-grow: 0;
}
.spacer--lines-1 {
  height: 1.5rem;
}
.spacer--lines-2 {
  height: 3rem;
}
.spacer--lines-3 {
  height: 4.5rem;
}
.spacer--lines-4 {
  height: 6rem;
}
.spacer--lines-5 {
  height: 7.5rem;
}
.spacer--lines-6 {
  height: 9rem;
}
.spacer--lines-7 {
  height: 10.5rem;
}
.spacer--lines-8 {
  height: 12rem;
}
.spacer--lines-9 {
  height: 13.5rem;
}
.spacer--lines-10 {
  height: 15rem;
}
@media (max-width: 479px) {
  .spacer--mobile-lines-0 {
    height: 0;
  }
  .spacer--mobile-lines-1 {
    height: 1.5rem;
  }
  .spacer--mobile-lines-2 {
    height: 3rem;
  }
  .spacer--mobile-lines-3 {
    height: 4.5rem;
  }
  .spacer--mobile-lines-4 {
    height: 6rem;
  }
  .spacer--mobile-lines-5 {
    height: 7.5rem;
  }
  .spacer--mobile-lines-6 {
    height: 9rem;
  }
  .spacer--mobile-lines-7 {
    height: 10.5rem;
  }
  .spacer--mobile-lines-8 {
    height: 12rem;
  }
  .spacer--mobile-lines-9 {
    height: 13.5rem;
  }
  .spacer--mobile-lines-10 {
    height: 15rem;
  }
}

.alignment--left {
  text-align: left;
}
.alignment--center {
  text-align: center;
}
.alignment--right {
  text-align: right;
}
.alignment--justify {
  text-align: justify;
}

.extra-padding {
  padding-left: calc(1rem * var(--padding-left, 0));
  padding-right: calc(1rem * var(--padding-right, 0));
}
@media (max-width: 479px) {
  .extra-padding {
    padding-left: 0;
    padding-right: 0;
  }
}

img {
  width: 100%;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
  vertical-align: top;
  height: auto;
}
img.fixed-height {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  height: var(--height);
}

figure {
  margin: 0;
}

iframe {
  width: 100%;
  border: 0;
  aspect-ratio: 16/9;
}

a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: all 0.2s ease-out;
}
a:hover, a:focus-visible {
  text-decoration: underline;
  text-decoration-color: #F60014;
}

@media (max-width: 480px) {
  .hide-mobile {
    display: none;
  }
}

@media (min-width: 479px) {
  .show-mobile {
    display: none;
  }
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
@media (max-width: 767px) {
  .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.grid--with-gap {
  gap: 1.5rem 3rem;
}
@media (max-width: 767px) {
  .grid--with-gap {
    gap: 2.25rem;
  }
}
.grid--no-padding {
  padding: 0;
}
.grid--full-width {
  max-width: none;
  padding: 0;
}
.grid--top-spacing {
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .grid--top-spacing {
    margin-top: 2.25rem;
  }
}
.grid--bottom-spacing {
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .grid--bottom-spacing {
    margin-bottom: 2.25rem;
  }
  .section--none:has(+ .section--none > .grid--top-spacing) .grid--bottom-spacing {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .grid--reverse-mobile *:nth-child(1) {
    order: -1;
  }
  .grid--reverse-mobile *:nth-child(2) {
    order: -2;
  }
  .grid--reverse-mobile *:nth-child(3) {
    order: -3;
  }
  .grid--reverse-mobile *:nth-child(4) {
    order: -4;
  }
  .grid--reverse-mobile *:nth-child(5) {
    order: -5;
  }
  .grid--reverse-mobile *:nth-child(6) {
    order: -6;
  }
}
.grid .column {
  grid-column: span var(--span);
}
@media (max-width: 480px) {
  .grid .column {
    grid-column: span 4;
  }
  .grid .column:empty {
    display: none;
  }
}
.grid--fluid {
  display: flex;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .grid--fluid {
    flex-wrap: wrap;
  }
}
.grid--fluid .column {
  flex-grow: 1;
  flex-direction: row;
}

.block {
  width: 100%;
  position: relative;
}

.divider {
  border-bottom: 2px dashed #F60014;
  height: 0;
  margin: 1.5rem 0;
}

.nav-bar {
  position: relative;
  height: 27rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 3rem;
}
@media (min-width: 768px) {
  .nav-bar {
    height: 21rem;
  }
}
@media (max-width: 479px) {
  .nav-bar {
    height: 100vw;
  }
}
.nav-bar__logo {
  display: block;
  width: 15rem;
  height: 15rem;
  background: #fff;
  border-radius: 100%;
  box-shadow: 0 10px 36px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  transition: none;
}
.nav-bar__logo h1 {
  margin: 0;
}
@media (max-width: 767px) {
  .nav-bar__logo {
    width: 60vw;
    height: auto;
    max-width: 15rem;
    aspect-ratio: 1;
  }
}
.nav-bar__languages {
  position: absolute;
  left: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 1;
}
@media (max-width: 767px) {
  .nav-bar__languages {
    top: 1.5rem;
    left: 1.5rem;
  }
}
.nav-bar__languages .show-mobile {
  text-transform: uppercase;
}
.nav-bar__languages a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
}
.nav-bar__languages a:hover {
  text-decoration-color: #fff;
}
.nav-bar__languages img {
  width: 2rem;
  height: 2rem;
}
.nav-bar__tagline {
  position: absolute;
  top: min(19.5rem, 76vw);
  width: 300px;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  color: #F60014;
  text-align: center;
  z-index: 3;
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  .nav-bar__tagline {
    color: #fff;
    text-align: left;
    left: 66%;
    top: 7.6875rem;
  }
}
@media (max-width: 479px) {
  .nav-bar__tagline {
    font-size: 1.125rem;
    width: 260px;
  }
}
.nav-bar__disc {
  position: absolute;
  border-radius: 100%;
  box-shadow: 0 10px 36px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .nav-bar__disc {
    opacity: 0.4;
    filter: blur(5px);
    display: none;
  }
}
.nav-bar__disc--first {
  width: 15rem;
  height: 15rem;
  top: 2.25rem;
  left: calc(35% - 15rem);
}
@media (max-width: 767px) {
  .nav-bar__disc--first {
    width: 60%;
    height: auto;
    max-width: 20.625rem;
    aspect-ratio: 1;
    left: -10%;
  }
}
.nav-bar__disc--second {
  width: 50vw;
  max-width: 23.75rem;
  height: auto;
  aspect-ratio: 1;
  right: -3.125rem;
}
@media (max-width: 767px) {
  .nav-bar__disc--second {
    right: -10%;
  }
}
.nav-bar__disc--second img {
  border-radius: inherit;
  aspect-ratio: inherit;
}
.nav-bar__disc--second svg {
  position: absolute;
  top: -2rem;
  left: -2rem;
  width: calc(100% + 4rem);
  height: calc(100% + 4rem);
}
@media (max-width: 1023px) {
  .nav-bar__disc--second svg {
    display: none;
  }
}
.nav-bar__disc--second svg text {
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  fill: #F60014;
  font-size: 1.25rem;
}

.button {
  display: flex;
  width: 100%;
  text-align: center;
  justify-content: center;
  color: #fff;
  background-color: #F60014;
  font-size: 1.375rem;
  font-weight: 500;
  padding: 0.375rem 0.5rem;
  font-family: "Outfit", sans-serif;
  text-decoration: none !important;
  transition: all 0.3s ease-out;
  align-items: center;
  border-radius: 0.5rem;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.button:hover {
  background-color: rgb(221.4, 0, 18);
}

.form {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem 0;
}
.form form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form abbr {
  outline: 0;
  text-decoration: none;
}
.form .honeypot {
  position: absolute;
  left: -9999px;
}
.form__success {
  color: #090;
  border: 1px solid #090;
  background: rgba(0, 153, 0, 0.1);
  padding: 0.75rem 1rem;
  text-align: center;
}
.form__error {
  color: #c00;
  border: 1px solid #c00;
  background: rgba(204, 0, 0, 0.1);
  padding: 0.75rem 1rem;
  text-align: center;
}
.form__info {
  font-size: 0.875rem;
  color: #999;
}
.form__field {
  display: flex;
  flex-direction: column;
}
.form__field__error {
  color: #c00;
}
.form input, .form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5rem;
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease-in-out;
  padding: 0.375rem 0.5rem;
  outline: 0;
}
.form input:focus, .form textarea:focus {
  border: 1px solid #F60014;
}
.form textarea {
  resize: vertical;
}
.form input[type=submit] {
  display: block;
  width: 100%;
  max-width: 200px;
  text-align: center;
  color: #fff;
  border: 0;
  background-color: #F60014;
  font-size: 1.5rem;
  padding: 0.75rem 1rem;
  text-transform: uppercase;
  font-weight: bold;
  font-family: "Outfit", sans-serif;
  text-decoration: none;
  margin: 0 auto;
  cursor: pointer;
}

.footer {
  background-color: rgba(255, 255, 255, 0.3);
  color: #000;
  overflow: hidden;
  font-size: 1rem;
  line-height: 1.5rem;
  font-family: "Outfit", sans-serif;
  font-weight: normal;
  padding-top: 1.125rem;
  padding-bottom: 1.5rem;
}
.footer__wrapper {
  display: flex;
  justify-content: center;
  align-items: baseline;
}
@media (max-width: 767px) {
  .footer__wrapper {
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.75rem;
  }
}
.footer a {
  color: inherit;
  text-decoration: none;
  font-weight: normal;
  font-size: 1.125rem;
}
.footer__nav {
  display: flex;
  gap: 0.375rem 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .footer__nav {
    flex-wrap: wrap;
  }
}
@media (max-width: 479px) {
  .footer__nav {
    flex-direction: column;
  }
}

.product-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7.5rem 3rem;
}
@media (max-width: 767px) {
  .product-list {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.product-list__item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .product-list__item {
    transform: translateY(-7.5rem);
  }
  .product-list__item:nth-child(3n+2) {
    transform: translateY(0);
  }
}
.product-list__item__image {
  overflow: hidden;
  border-radius: 100%;
  aspect-ratio: 1;
  position: relative;
  width: 100%;
  max-width: 21rem;
  background-color: #fff;
  box-shadow: 0 10px 36px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .product-list__item__image {
    max-width: 16.5rem;
  }
}
.product-list__item__image__bg {
  filter: blur(8px);
  opacity: 0.5;
  position: absolute;
  top: -1rem;
  left: -1rem;
  right: -1rem;
  bottom: -1rem;
  width: calc(100% + 2rem);
  height: calc(100% + 2rem);
  -o-object-fit: cover;
  object-fit: cover;
}
.product-list__item__image__fg {
  width: auto;
  height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all 0.2s ease-out;
}
.product-list__item__image__fg img {
  height: 100%;
  width: auto;
}
.product-list__item__image {
  /*&:hover .product-list__item__image__fg {
      height: 90%;
  }*/
}
.product-list__item__content {
  width: 100%;
  max-width: 15rem;
}
.product-list__item__description {
  hyphens: auto;
}
.product-list__item__price {
  margin-top: 0.75rem;
  font-size: 1.375rem;
  font-weight: 500;
}
.product-list__item__stats {
  font-size: 0.875rem;
  line-height: 1.125rem;
  font-weight: 300;
}
.product-list__item__actions {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
}
.product-list__item__actions button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  outline: 0;
  padding: 0.375rem 0.5rem;
  margin: 0;
  cursor: pointer;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  background: #F60014;
  color: #fff;
  transition: all 0.2s ease-out;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25em;
}
.product-list__item__actions button svg {
  width: 1.25rem;
}
.product-list__item__actions button:hover, .product-list__item__actions button:focus-visible {
  background-color: rgb(221.4, 0, 18);
}
.product-list__item__actions a {
  font-weight: 500;
}

.details-cart {
  top: 1.5rem;
  left: calc(50% + 100px);
  position: absolute;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  z-index: 2;
}
@media (max-width: 767px) {
  .details-cart {
    left: auto;
    top: 1.5rem;
    right: 1rem;
  }
}
.details-cart summary {
  color: #F60014;
  list-style: none;
  border-radius: 100%;
  background: #fff;
  width: 4.5rem;
  height: 4.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 36px 0 rgba(0, 0, 0, 0.1);
  position: relative;
}
.details-cart summary svg {
  width: 2rem;
  height: 2rem;
}
.details-cart summary::marker {
  display: none;
}
.details-cart > div {
  background-color: #fff;
  padding: 1.5rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 36px 0 rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 1.5rem;
  bottom: 1.5rem;
  right: 1rem;
  overflow-y: auto;
  z-index: 99;
}
.details-cart .cart-count {
  color: #fff;
  background-color: #F60014;
  font-weight: 500;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  border-radius: 100%;
  text-align: center;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.875rem;
}
.details-cart .cart-count:empty {
  display: none;
}

.cart {
  display: flex;
  flex-direction: column;
}
.cart__product {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  align-items: center;
  text-align: center;
  padding: 0.75rem 0;
}
.cart__checkout {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  position: sticky;
  bottom: 0;
}
.cart__close {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 100%;
  background-color: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
  position: fixed;
  top: 1.5rem;
  right: 1rem;
  background-size: auto 1rem;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3C!--!Font Awesome Free v7.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc.--%3E%3Cpath fill='black' d='M55.1 73.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L147.2 256 9.9 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192.5 301.3 329.9 438.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.8 256 375.1 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192.5 210.7 55.1 73.4z'/%3E%3C/svg%3E");
  opacity: 0.6;
  transition: all 0.2s ease-out;
}
.cart__close:hover, .cart__close:focus-visible {
  opacity: 1;
}
.cart table {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  flex-grow: 1;
}
.cart th {
  text-align: left;
}
.cart th:last-child {
  text-align: right;
}
.cart td:not(:last-child) {
  padding-right: 1rem;
}
.cart td:first-of-type {
  text-align: center;
}
.cart td:last-child {
  text-align: right;
}
.cart tbody td:last-child,
.cart tbody th:last-child {
  text-align: right;
}
.cart tbody td:last-child span,
.cart tbody th:last-child span {
  font-size: 0.75rem;
  opacity: 0.8;
}
.cart tfoot {
  position: relative;
}
header .cart tfoot {
  background: #fff;
  position: sticky;
  bottom: 4.125rem;
  height: 7.5rem;
}
header .cart tfoot::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -4.125rem;
  background: #fff;
  display: block;
  z-index: -1;
}
.cart tfoot tr:first-child > td, .cart tfoot tr:first-child > th {
  padding-top: 1.5rem;
}
.cart tfoot th {
  padding-right: 1rem;
}
.cart tfoot td:last-child {
  text-align: right;
}
.cart tfoot::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.75rem;
  width: 100%;
  height: 0;
  border-top: 2px dashed #F60014;
}
.cart img {
  width: auto;
}
.cart .cart-quantity {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
}
.cart .cart-quantity select {
  background-color: #fff;
  border: 1px solid #333;
  border-radius: 0.25rem;
  font-family: "Outfit", sans-serif;
}
.cart .cart-quantity button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 100%;
  background-color: #F60014;
  border: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
  position: relative;
  background-size: auto 1rem;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3C!--!Font Awesome Free v7.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc.--%3E%3Cpath fill='white' d='M55.1 73.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L147.2 256 9.9 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192.5 301.3 329.9 438.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.8 256 375.1 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192.5 210.7 55.1 73.4z'/%3E%3C/svg%3E");
  opacity: 0.3;
  transition: all 0.2s ease-out;
}
.cart .cart-quantity button:hover, .cart .cart-quantity button:focus-visible {
  opacity: 1;
}

.checkout-form {
  margin: 3rem 0;
}
.checkout-form .button {
  margin: 0 auto;
  max-width: 200px;
}