.webshop-product-box {
  padding: 50px 0 120px 0;

  .webshop-forms {
    input[type="number"] {
      background-color: #dab1ad; 
    }

    .button {
      margin: 30px 0 0 0;
    }
  }
}

.webshop-product-box-subtitle {
  font-family: var(--font-family-serif);
  font-weight: var(--font-weight-regular);
  color: var(--color-primary-light);
  font-size: var(--font-size-medium);
  margin: 0 0 15px 0;
}

.webshop-product-box-title {
  font-size: var(--font-size-large);
  line-height: var(--font-line-height-large);
  margin: 0 0 30px 0;
}

.webshop-product-box-description {
  margin: 0 0 40px 0;

  @media (min-width: 1200px) {
    max-width: calc(100% / 12 * 10)
  }
}

.webshop-product-box-products-products {
  margin: 45px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.webshop-product-box-products-product {
  max-width: 100%;

  @media (min-width: 540px) {
    max-width: calc((100% - 1 * 30px) / 2);
  }

  @media (min-width: 768px) {
    max-width: calc((100% - 2 * 30px) / 3);
  }

  @media (min-width: 1200px) {
    max-width: calc((100% - 3 * 30px) / 4);
  }
}

.webshop-product-box-products-overview-amount, .products-form-overview-products-wrapper {
  margin: 0 0 35px 0;
  font-size: var(--font-size-regular-medium);
}

.webshop-product-box-products-overview-title {
  font-size: var(--font-size-regular);
  font-family: var(--font-family-sans-serif);
  font-weight: var(--font-weight-bold);
  margin: 0 0 15px 0;
}

.webshop-product-box-products-overview-product {
  cursor: pointer;

  svg {
    margin-right: 15px;
  }

  &:hover {
    color: var(--color-red);
    svg {
      path {
        fill: var(--color-red);
      }
    }
  }
}

.webshop-product-box-products-overview-total-amount {
  input {
    border: none;
    padding: 0;
  }
}

.webshop-product-box-products-overview {
  margin: 0 0 35px 0;
}

.webshop-product-card {
  text-decoration: none;
  background-color: var(--color-light);
  display: block;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;

  &.extended {
    width: 100%;
    max-width: 100%;

    @media (min-width: 768px) {
      max-width: calc((100% - 1 * 30px) / 2);
    }
  }

  &.normal {
    width: 100%;
    max-width: 100%;

    @media (min-width: 768px) {
      max-width: calc((100% - 3 * 30px) / 4);
    }
  }

  &.sold-out {
    background-color: #d19d98;
    color: var(--color-white);

    .webshop-product-card-overlay {
      display: flex;
    }
  }

  &:hover {
    background-color: #d19d98;
    color: var(--color-white);

    .webshop-product-card-overlay {
      display: flex;
    }
  }
}

.webshop-product-card-content {
  padding: 20px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.webshop-product-card-title {
  margin: 0 0 10px 0;
  font-size: 18.75px;
  font-weight: var(--font-weight-bold);
}

.webshop-product-card-price {
  font-size: 18.75px;
  font-family: var(--font-family-sans-serif-heading);
  margin: 0;
}

.webshop-product-card-image {
  position: relative;
}

.webshop-product-card-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: rgba(0,0,0,0.3);
  z-index: 2;
}

.webshop-product-card-overlay-bubble {
  width: 150px;
  height: 150px;
  border-radius: 75px;
  background-color: #d19d98;
  color: var(--color-white);
  font-size: var(--font-size-regular);
  font-weight: var(--font-weight-bold);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.webshop-product-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 17px; 
  background-color: var(--color-secondary);
  color: var(--color-white);
  font-weight: var(--font-weight-bold);
}

.thumbnail-carousel {
  .splide__arrow {
    width: 30px;
    height: 30px;
    background: transparent;

    svg {
      width: 100%;
      height: 100%;
    }
  }

  .thumbnail-carousel-thumbnails {
    .splide__slide {
      width: 100%;
      height: auto;
      opacity: 0.4;

      &.is-active {
        opacity: 1;
      }
    }
  }
}

.thumbnail-carousel-thumbnails {
  padding-top: 25px;

  li {
    border-radius: 15px;
    overflow: hidden;

    &.is-active {
      border: 2px solid var(--color-primary) !important;
    }
  }
}

.thumbnail-carousel-thumbnails-image {
  background-color: #e0e4e9;
  border-radius: 10px;
}

.webshop-products-categories {
  padding: 50px 0;

  .container {
    display: flex;
    gap: 10px 45px;
    flex-wrap: wrap;
  }
}

.webshop-products-category {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;

  span {
    font-family: var(--font-family-sans-serif-heading);
    font-size: var(--font-size-small);
    line-height: var(--font-size-small);
  }

  &:first-child {
    padding-left: 0;
  }

  &.active {
    .overview-list-filter-icon-non-active {
      display: none;
    }

    .overview-list-filter-icon-active {
      display: block;
    }

    .overview-list-filter-close {
      display: block;
    }
  }

  &:not(.active) {
    .overview-list-filter-icon-non-active {
      display: block;
    }

    .overview-list-filter-icon-active {
      display: none;
    }

    .overview-list-filter-close {
      display: none;
    }
  }

  &.active {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 12px 20px;

    &:first-child {
      padding-left: 20px;
    }


    .overview-list-filter-icon-active, .overview-list-filter-icon-non-active {
      path {
        fill: var(--color-primary-light);
      }
    }
  }
}

.webshop-products-header {
  margin-bottom: 35px;
}

.webshop-products-title {
  font-size: var(--font-size-large);
  line-height: var(--font-line-height-large);
  margin-bottom: 35px;
}

.webshop-products-list {
  padding: 50px 0 120px 0;

  .container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex-wrap: wrap;

    @media (min-width: 768px) {
      flex-direction: row;
    }
  }
}

.webshop-products-description {
  width: 100%;
  max-width: 100%;
  font-size: 20.83px;
  line-height: 30px;

  @media (min-width: 768px) {
    max-width: calc(100% / 12 * 10);
  }
}

.webshop-product {
  padding: 50px 0 120px 0;

  .container {
    display: flex;
    flex-direction: column;
    gap: 30px;

    @media (min-width: 768px) {
      flex-direction: row;
      gap: calc(100% / 12 + 30px);
    }
  }
}

.webshop-product-image {
  flex: 1 1 calc(100% / 12 * 6);
}

.webshop-product-content {
  flex: 1 1 calc(100% / 12 * 4);
  margin-right: calc(100% / 12);
  padding-top: 50px;
}

.webshop-product-category {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-medium);
  font-weight: var(--font-weight-regular);
  line-height: var(--font-line-height-medium);
  color: var(--color-primary-light);
  margin: 0 0 15px 0;
}

.webshop-product-title {
  font-family: var(--font-family-sans-serif-heading);
  font-size: var(--font-size-large);
  line-height: var(--font-line-height-large);
  margin: 0 0 35px 0;
  position: relative;

  &::before {
    content: "";
    position: absolute;
    top: 15px;
    right: calc(100% + 15px);
    background-image: url("/assets/icons/product_dotted_line-a7df26d3.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 250px;
    height: 125px;
  }
}

.webshop-product-checkout-price {
  font-family: var(--font-family-sans-serif-heading);
  font-size: var(--font-size-medium);
  line-height: var(--font-line-height-medium);
  margin: 0 0 40px 0;
}

.webshop-product-checkout-subtitle {
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-regular-medium);
  margin: 0 0 12px 0;
}

.webshop-product-checkout-walk-option {
  font-size: var(--font-size-regular-medium);
  font-weight: var(--font-weight-medium);
  margin-bottom: 10px;

  .shared-input-number {
    display: inline-block;
    margin-left: 10px;
  }
}

.webshop-product-usps {
  margin: 40px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style-type: none;
}

.webshop-product-usp {
  position: relative;
  padding-left: 35px;

  &::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 3px;
    left: 0;
    background-image: url("/assets/icons/checkmark-eea188e7.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }
}

.webshop-product-description {
  margin: 40px 0 0 0;
}

.webshop-product-small-heading {
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-regular-medium);
  margin: 0 0 20px 0;
}

.webshop-product-checkout-gift-card-price {
  display: flex;
  margin-bottom: 20px;

  input {
    margin: 0 !important;
    padding-left: 3px !important;
    font-weight: var(--font-weight-bold);
    outline: none;
  }

  &::before {
    content: "€";
    background-color: var(--color-light);
    padding-bottom: 2px;
    display: flex;
    align-items: center;
    font-weight: var(--font-weight-bold);
    padding-left: 15px;
  }
}

.webshop-product-image {
  position: relative;
  z-index: 1;

  img {
    border-radius: 5px;
  }
}

.webshop-product-label {
  position: absolute;
  bottom: calc(100% - 90px / 2);
  right: 50px;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 37.5px;
  font-family: var(--font-family-serif);
  color: var(--color-white);
  background-color: var(--color-primary);
  border-radius: 90px;

  @media (min-width: 768px) {
    top: 50px;
    bottom: unset;
    left: calc(100% - 90px / 2);
    right: unset;
  }
}

.webshop-product-checkout-walk-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0 0 35px 0;
}

.webshop-product-checkout-walk-detail {
  display: flex;
  gap: 15px;
  svg {
    path {
      fill: var(--color-primary);
    }
  }
}

.webshop-product-checkout-event-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0 0 35px 0;
}

.webshop-product-checkout-event-detail {
  display: flex;
  gap: 15px;
  svg {
    path {
      fill: var(--color-primary);
    }
  }
}

.webshop-product-checkout-event-sessions {
  margin: 35px 0;
}

.webshop-product-checkout-event-sessions-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.webshop-product-checkout-event-sessions-list-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 45px;
  padding: 13px 0;
  border-bottom: 1px solid var(--color-light);

  .shared-input-number {
    flex: 0 0 80px;
  }
}

.webshop-product-checkout-event-sessions-list-item-name {
  font-weight: var(--font-weight-bold);
  flex: 1 0 auto;
}
