:root {
  --gck-primary-color: #dca54a;
}

/* Custom styles for WooCommerce products  */
.gecko-products .product {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  padding: 15px;
  margin: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.gecko-cart-popout {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: min(480px, 100vw);
  max-width: 100vw;
  height: 100%;
  transition: right 0.3s ease;
  z-index: 1000;
  padding: 1rem;
  padding-top: 0;
  background-color: #fff;
  box-shadow: 0 0 15px 2px #0006;
  color: black;
  font-size: 1rem;
}

.gecko-cart-popout.is-visible {
  right: 0;
  display: block !important;
}

.gecko-cart-popout-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.close-gecko-cart-popout {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.gecko-cart-popout-content {
  display: flex;
  flex-direction: column;
}

.cart-items {
  max-height: 40vh;
  overflow-y: auto;
  /* Enable vertical scrolling */
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.cart-items::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome */
}

.cart-item {
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.cart-item-image {
  width: 20%;
  overflow: hidden;
  border-radius: 10px;
}

.cart-item-details {
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 60%;
  gap: 0.4rem;
}

.cart-item>p {
  margin: unset;
}

.cart-dates {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.cart-dates>p {
  margin: unset;
}

.cart-surcharge {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.cart-pricing {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.cart-btn {
  height: 50px;
  width: 50px;
  text-align: center;
  text-decoration: none;
  align-items: center;
  padding: 10px;
  font-size: 0;
  /* color: #fff; */
  justify-content: center;
  border: none;
  /* z-index: 10000; */
  border-radius: 30px;
  display: flex;
  cursor: pointer;
}

.cart-btn:hover {
  filter: brightness(85%);
}

.checkout-button>button {
  background: var(--gck-primary-color);
  color: #fff;
  padding: 10px 20px;
  text-align: center;
  display: inline-block;
  border: none;
  cursor: pointer;
  margin-top: 1rem;
}

.checkout-button:hover>button {
  filter: brightness(85%);
}


.gecko-availabilty-button {
  background: var(--gck-primary-color);
  color: #fff;
  padding: 1em;
  text-align: center;
  display: inline-block;
  border: none;
  cursor: pointer;
  margin-top: 1rem;
  width: fit-content;
  place-self: center;
  font-size: 13px !important;
}

.gecko-availabilty-button:hover {
  filter: brightness(85%);
}

@media screen {}

.woocommerce ul.products li.product {
  cursor: pointer;
  text-align: center;
  text-align: -webkit-center;
}

.woocommerce-loop-product__title {
  font-family: "eurostile-extd-bold", Sans-serif;
}

.woocommerce ul.products li.product a img {
  width: 200px;
  height: 200px;
}

.woocommerce ul.products li {
  background: none;
}

.nv-card-content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.sp-product-image {
  text-align: center;
  text-align: -webkit-center;
}

#gecko-cart-modal {
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
}

#gecko-cart-modal-content {
  background-color: #fff;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  position: relative;
  width: 80%;
  height: 700px;
  max-height: 100vh;
}

@media (max-width: 767px) {
  .gecko-cart-popout {
    padding: 0;
  }
  #gecko-cart-modal-content {
    width: 100%;
    margin: auto 0px;
  }
}

#gecko-cart-close {
  color: #aaa;
  font-size: 28px;
  line-height: 14px;
  font-weight: bold;
  position: absolute;
  top: 2px;
  right: 2px;
}

#gecko-popout-close {
  color: #aaa;
  font-size: 28px;
  line-height: 14px;
  font-weight: bold;
  position: absolute;
  border: "none";
  top: 2px;
  right: 2px;
}

#gecko-cart-close:hover,
#gecko-cart-close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#gecko-popout-close:hover,
#gecko-popout-close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.wait-for-js {
  opacity: 0.5;
  filter: blur(0.5rem);
  pointer-events: none;
}
