/* compiled by scssphp v0.0.12 on Mon, 13 Oct 2025 15:27:35 +0000 (0.302s) */

:root {
  --overlay--text-colour: #7b7f82;
  --primary-colour: #c3a04c;
  --theme-colour: #c59f4c;
  --theme-colour--dark: #7d6737;
  --theme-green: #879251;
  --theme-indigo: #a293f7;
  --theme-colour--shaded: #eeeceb;
  --theme-colour--deepen: #cecccb; }

body {
  background: black; }

.shop-banner {
  position: relative;
  height: 500px;
  background-color: #000;
  background-repeat: no-repeat;
  background-image: url(../../images/BAAStoreHeader_1800.png);
  background-size: contain;
  background-position: top center;
  border-bottom: 8px var(--primary-colour) solid; }

.shop-banner--logo-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%); }
  .shop-banner--logo-wrapper img {
    filter: drop-shadow(0 1px 1px black);
    width: 300px; }

.product-catalogue--heading--text-block {
  max-width: 1000px;
  width: 80%;
  margin: 0 auto 6em; }

.product-catalogue--grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 40px; }

.product-block {
  display: flex;
  flex-direction: column;
  background-color: white;
  background-image: url(../../images/light-stone.jpg);
  background-size: cover;
  background-position: center center; }

.product-block--cover-image {
  width: 100%;
  padding-bottom: 80%;
  mix-blend-mode: darken;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative; }

.digital--wrapper {
  position: absolute;
  color: white;
  font-size: 90%;
  background-color: var(--theme-colour);
  text-transform: uppercase;
  padding: 2px 12px;
  bottom: 20px;
  right: -10px;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25)); }
  .digital--wrapper:before {
    content: "";
    border: 5px transparent solid;
    border-bottom-color: var(--theme-colour--dark);
    border-left-color: var(--theme-colour--dark);
    position: absolute;
    bottom: 100%;
    right: 0; }

.cart-button {
  display: grid;
  grid-gap: 4px;
  grid-template-columns: auto auto;
  align-items: center;
  position: relative; }

.cart-button--marker {
  background: white;
  color: var(--theme-colour);
  font-size: 60%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 8px;
  right: 8px;
  width: 14px;
  height: 14px;
  border-radius: 100%; }

.product-block--content {
  display: flex;
  flex-direction: column;
  color: black;
  background-color: var(--theme-colour--shaded);
  padding: 20px;
  border-top: 4px var(--primary-colour) solid;
  box-shadow: inset 0 2px 2px -1px rgba(0, 0, 0, 0.25);
  flex-grow: 1; }

.product-block--title {
  letter-spacing: normal;
  font-size: 20px;
  margin: 0; }

.product-block--details {
  display: flex;
  align-items: flex-start;
  grid-gap: 2px;
  margin: 4px 0 0;
  color: #666;
  font-size: 60%;
  text-transform: uppercase;
  font-weight: 100;
  flex-grow: 1; }
  .product-block--details .material-icons {
    font-size: 18px;
    width: 18px;
    overflow: hidden;
    position: relative;
    top: -3px; }

.product-block--price {
  margin: 0; }

.product-block--actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 8px;
  align-items: center;
  margin-top: 1em; }
  .product-block--actions .button {
    color: white;
    text-transform: uppercase;
    font-weight: 300;
    padding: 8px 12px;
    text-align: center; }

.button.interactive {
  position: relative;
  overflow: hidden; }
  .button.interactive:before {
    content: "";
    display: block;
    height: 0;
    width: 0;
    padding-bottom: 0;
    border-radius: 100%;
    background-image: radial-gradient(#674416 65%, rgba(103, 68, 22, 0) 70%);
    position: absolute;
    top: 80%;
    left: 75%;
    opacity: 0;
    transform: translateX(-50%) translateY(-50%);
    mix-blend-mode: screen;
    transition: all 0.15s ease-in-out;
    pointer-events: none; }
  .button.interactive:hover:before {
    width: 170%;
    padding-bottom: 170%;
    opacity: 1; }

.align--sunk {
  display: flex;
  align-items: flex-end; }

[data-store-action]:hover {
  cursor: pointer; }

#modal {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease-in-out;
  position: relative;
  z-index: 100; }

.modal--active #modal {
  opacity: 1;
  pointer-events: all; }

.modal--active .modal--position {
  top: 50%; }

.modal--screen {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 100; }

.modal--position {
  position: fixed;
  z-index: 101;
  top: 60%;
  left: 50%;
  transition: top 0.25s ease-in-out;
  width: 0;
  height: 0; }

.modal--window {
  position: relative;
  background: white;
  max-width: 800px;
  max-height: 80vh;
  height: 500px;
  width: 95vw;
  transform: translateX(-50%) translateY(-50%);
  display: flex;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75); }

.modal--close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: white;
  border-radius: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25); }

.modal--content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  background-image: url(../../images/light-stone.jpg); }
  .modal--content .button {
    box-sizing: border-box;
    width: 100%;
    color: white;
    text-transform: uppercase;
    font-weight: 300;
    text-align: center;
    padding: 11px 24px; }

.modal-product--price {
  font-weight: 600; }

.modal-product--cover-image {
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  border-right: 4px var(--primary-colour) solid;
  mix-blend-mode: darken; }

.modal-product--content {
  overflow: auto;
  padding: 40px;
  background-color: var(--theme-colour--shaded);
  box-shadow: inset 2px 0 2px -1px rgba(0, 0, 0, 0.25); }
  .modal-product--content label {
    font-size: 60%;
    text-transform: uppercase;
    letter-spacing: 1px; }
  .modal-product--content input {
    border: 1px var(--theme-colour--deepen) solid;
    padding: 13px;
    width: 60px; }

.modal-product--title {
  margin: 0; }

.modal-product--order {
  display: grid;
  grid-template-columns: 88px 1fr;
  grid-gap: 10px;
  align-items: flex-end; }

.cart--wrapper {
  position: relative;
  z-index: 101; }

.cart--screen {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.25s ease-in-out;
  pointer-events: none; }

.cart--position {
  position: fixed;
  top: 0;
  right: -340px;
  bottom: 0;
  background: black;
  color: white;
  width: 340px;
  max-width: 95vw;
  transition: right 0.25s ease-in-out; }

.cart--frame {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  height: 100vh; }

.cart--header {
  padding: 20px; }

.cart--logo-wrapper {
  max-width: 100px;
  margin: auto;
  margin-bottom: 20px; }

.cart--header h2 {
  color: var(--theme-colour);
  text-align: center;
  font-size: 1.6em;
  margin: 0; }

.cart--contents {
  overflow: auto;
  padding: 20px;
  min-height: 0; }

.cart--contents ul {
  list-style-type: none;
  padding-left: 0;
  display: grid;
  grid-gap: 24px; }

.cart--item {
  display: grid;
  grid-gap: 4px 16px;
  grid-template-columns: 50px 1fr 1fr 24px; }

.cart--item--image {
  width: 50px;
  height: 50px;
  display: block;
  grid-row: span 2; }

.cart--item--title {
  color: var(--theme-colour);
  grid-column: span 2;
  margin: 0; }

.cart--item--quantity {
  grid-column: 2; }

.cart--item--amount {
  text-align: right; }

.cart--item--variant {
  grid-column: span 3;
  color: var(--overlay--text-colour); }

.cart--item--remove {
  display: flex;
  align-items: center;
  color: var(--theme-colour); }

.cart--footer {
  padding: 20px; }
  .cart--footer .button {
    border: none;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    font-family: inherit; }
    .cart--footer .button:hover {
      cursor: pointer; }
  .cart--footer .stripe-logo svg {
    width: 40px;
    height: auto;
    position: relative;
    top: 1px; }
    .cart--footer .stripe-logo svg path {
      fill: white;
      mix-blend-mode: normal; }

.order--total {
  margin: 8px 0;
  text-align: center; }

.order--total--money {
  font-weight: bold; }

.inform {
  font-weight: 300;
  font-size: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 4px;
  margin: 8px 0;
  opacity: 0.4; }
  .inform .material-icons {
    font-size: 18px;
    width: 18px; }

.hidden {
  display: none; }

.store-wrapper {
  perspective: 20000px; }

.store-wrapper--transform {
  transform: rotateY(0deg) translateX(0);
  transform-origin: 0 50vh;
  transition: transform 0.25s ease-in-out; }

.show-cart .store-wrapper--transform {
  transform: rotateY(25deg) translateX(-5vw); }
  .show-cart .cart--screen {
    background-color: rgba(0, 0, 0, 0.8);
    pointer-events: all; }
  .show-cart .cart--position {
    right: 0; }

@keyframes spin {
  0% {
    transform: rotate(0deg); }

  100% {
    transform: rotate(360deg); } }

.checkout--button {
  position: relative;
  display: block; }
  .checkout--button.working:before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    position: absolute;
    top: 15px;
    left: 20px;
    border: 2px black solid;
    border-right-color: transparent;
    border-radius: 100%;
    animation-name: spin;
    animation-iteration-count: infinite;
    animation-duration: 0.5s;
    animation-timing-function: linear; }

.product-block--actions .button--secondary {
  background: white;
  color: var(--primary-colour);
  border: 2px var(--primary-colour) solid;
  white-space: nowrap; }

.has-variant-picker {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 8px;
  align-items: center; }

.has-variant-picker select {
  --webkit-appearance: none;
  padding: 4px 12px 4px 4px;
  background: white;
  border: 1px black solid;
  font: inherit; }

.button.disabled {
  pointer-events: none;
  background-color: var(--theme-colour--deepen); }

header a.button {
  color: #fff;
  /** Size Guide **/ }

.size-grid table.sizes {
  width: 100%;
  text-align: left;
  border-collapse: collapse; }

.size-grid table.sizes thead tr th:first-of-type {
  min-width: 150px; }

.size-grid table.sizes tbody tr td:first-of-type {
  min-width: 150px; }

.size-grid table.sizes thead tr {
  background-color: var(--primary-colour); }

.size-grid table.sizes tbody tr td {
  color: #1a1a1a; }

.size-grid table.sizes tbody tr:nth-child(odd) {
  background-color: #f8f8f8; }

.size-grid table.sizes tbody tr:nth-child(even) {
  background-color: #fff; }

.size-grid table.sizes tbody tr td, .size-grid table.sizes thead tr th {
  border: 1px solid #1a1a1a;
  padding: 10px; }

input[type=submit][data-store-action="cart.checkout"]:disabled {
  background-color: gray; }

@media (max-width: 767px) {
  .modal--window {
    max-height: 90vh;
    height: 1000px; }

  .modal--content {
    grid-template-columns: 1fr; }

  .modal-product--cover-image {
    min-height: 30vh;
    border-right: none;
    border-bottom: 4px var(--primary-colour) solid; } }

@media (max-width: 1366px) {
  .product-catalogue--grid {
    grid-template-columns: repeat(3, 1fr); } }

@media (max-width: 920px) {
  .product-catalogue--grid {
    grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 480px) {
  .product-catalogue--grid {
    grid-template-columns: repeat(1, 1fr); }

  .shop-banner {
    height: 250px;
    background-position: 9% 75%; }

  .shop-banner--logo-wrapper {
    top: 65%; }

  .socials--grid {
    grid-gap: 20px; }

  footer .button--ghost {
    padding: 6px 14px; }
    footer .button--circle {
      width: 56px;
      height: 56px; } }
