/**
 * SINGLE PRODUCT
 */
.single-product main article {
  position: relative;
}

@media (max-width: 1023px) {
  .single-product main article header,
  .single-product main article header + .wp-block-group {
    display: flex;
    width: 100%;
    flex-direction: column;
  }
}

  .single-product main article header + .wp-block-group > div + div {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px 3px rgba(0, 0, 0, 0.06);
    overflow: visible !important;
  }

    .single-product main article header .product-rating {
      display: flex;
      margin-top: 0.5rem;
      padding-left: 0;
      align-items: center;
      column-gap: 0.5rem;
    }

      .single-product main article header .product-rating__stars {
        display: flex;
        height: 1.5rem;
        column-gap: 0.0625rem;
      }

      .single-product main article header .product-rating__stars svg {
        width: 1.5rem;
        height: 1.5rem;
        fill: #FFAA33 !important;
      }

      .single-product main article header .product-rating__review-count {
        color: var(--wp--preset--color--contrast);
        font-family: var(--wp--preset--font-family--roboto);
        font-size: var(--wp--preset--font-size--base) !important;
        font-style: normal;
        font-weight: 500;
        line-height: 1.2;
      }

    .single-product main article header .wp-block-woocommerce-product-price {
      display: flex;
      position: sticky;
      top: 40px;
      background-color: #0099ff;
      align-items: center;
      justify-content: flex-end;
    }

      .single-product main article header .wp-block-woocommerce-product-price span.amount {
        font-size: var(--wp--preset--font-size--medium-large);
        font-weight: 600;
      }

.single-product .wp-block-woocommerce-product-image-gallery {
  display: flex;
  position: sticky;
  width: 100%;
  max-width: 100%;
  /*min-height: 75vh;*/
  margin: 0;
  top: 1rem;
  align-items: center;
  justify-content: center;
}

  .single-product .wp-block-woocommerce-product-image-gallery .woocommerce-product-gallery {
    margin-bottom: 0 !important;
  }

    .single-product .wp-block-woocommerce-product-image-gallery .woocommerce-product-gallery img {
      border-radius: 1rem;
      object-fit: cover;
    }

    @media (max-width: 640px) {
      .single-product .wp-block-woocommerce-product-image-gallery .woocommerce-product-gallery img {
        border-radius: 0.5rem;
      }
    }

  .single-product .wp-block-woocommerce-product-image-gallery .flex-control-thumbs {
    display: flex;
    margin-top: 2rem !important;
    padding: 0 !important;
    gap: 2rem;
  }

  @media (min-width: 1024px) {
    .single-product .wp-block-woocommerce-product-image-gallery .flex-control-thumbs {
      max-width: 672px;
    }
  }

  @media (max-width: 1023px) {
    .single-product .wp-block-woocommerce-product-image-gallery .flex-control-thumbs {
      max-width: 100%;
    }
  }

  @media (max-width: 767px) {
    .single-product .wp-block-woocommerce-product-image-gallery .flex-control-thumbs {
      margin-top: 0.5rem !important;
      gap: 0.5rem;
    }
  }

    .single-product .wp-block-woocommerce-product-image-gallery .flex-control-thumbs li {
      max-width: 8rem;
      flex-shrink: 0;
    }

  .single-product .wp-block-woocommerce-product-image-gallery .flex-direction-nav {
    margin: 0;
    padding: 0;
  }

    .single-product .wp-block-woocommerce-product-image-gallery .flex-direction-nav > li {
      position: absolute;
      margin-top: -6rem;
      top: 50%;
      list-style-type: none;
    }

      .single-product .wp-block-woocommerce-product-image-gallery .flex-direction-nav > li.flex-nav-prev {
        left: -1.5rem;
      }

      @media (max-width: 1023px) {
        .single-product .wp-block-woocommerce-product-image-gallery .flex-direction-nav > li.flex-nav-prev {
          left: 1rem;
        }
      }

        .single-product .wp-block-woocommerce-product-image-gallery .flex-direction-nav > li.flex-nav-prev a:after {
          margin-right: 0.1rem;
          transform: rotate(180deg);
        }

      .single-product .wp-block-woocommerce-product-image-gallery .flex-direction-nav > li.flex-nav-next {
        right: -1.5rem;
      }

      @media (max-width: 1023px) {
        .single-product .wp-block-woocommerce-product-image-gallery .flex-direction-nav > li.flex-nav-next {
          right: 1rem;
        }
      }

        .single-product .wp-block-woocommerce-product-image-gallery .flex-direction-nav > li.flex-nav-next a:after {
          margin-left: 0.1rem;
        }

    .single-product .wp-block-woocommerce-product-image-gallery .flex-direction-nav a {
      display: flex;
      width: 3rem;
      height: 3rem;
      background-color: var(--wp--preset--color--base-2) !important;
      border: 0;
      border-radius: 50%;
      outline-color: #e8bfb0bf;
      outline-style: solid;
      outline-width: 4px;
      text-indent: -9999em;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

      .single-product .wp-block-woocommerce-product-image-gallery .flex-direction-nav > li a:after {
        display: flex;
        position: absolute;
        width: 1.75rem;
        height: 1.75rem;
        background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="%232D2B2E"><path d="M504-480 320-664l56-56 240 240-240 240-56-56 184-184Z"/></svg>');
        background-size: 1.75rem;
        content: '';
      }

/**
 * OPTIONS
 **/
.wpo-options-container {
  display: flex;
  width: 100%;
  padding: 0 !important;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.wpo-field {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.25rem;
}

  .wpo-field .wpo-option-name {
    margin-bottom: 0;
    color: var(--wp--preset--color--contrast);
    font-family: var(--wp--preset--font-family--roboto);
    font-size: var(--wp--preset--font-size--small-medium) !important;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    order: -2;
  }

    .wpo-field .wpo-option-name .wpo-field-required-symbol {
      display: none;
    }

    .wpo-field .wpo-option-name + div {
      margin-top: 1rem;
    }

  .wpo-field .wpo-field-description {
    margin-top: 0;
    font-size: var(--wp--preset--font-size--normal);
    order: -1;
  }

.wpo-field .wpo-checkboxes, 
.wpo-field .wpo-radios {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1rem;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .wpo-field .wpo-checkboxes, 
  .wpo-field .wpo-radios {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .wpo-field .wpo-checkboxes, 
  .wpo-field .wpo-radios {
    grid-template-columns: 1fr 1fr;
  }
}

  .wpo-field .wpo-radios.wpo-radios-one-col {
    grid-template-columns: 1fr 1fr;
  }


  .wpo-field label.wpo-radio {
    display: flex;
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 1.5rem 0.5rem;
    background-color: transparent !important;
    border: 0 !important;
    border-radius: 1rem !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: visible;
  }

  .wpo-field label.wpo-radio .wpo-radio-inner {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    top: 0;
    left: 0;
    background-color: rgba(239, 239, 239, 0.5) !important;
    border: 2px solid rgba(239, 239, 239, 1);
    border-radius: 1rem !important;
    z-index: 0;
  }

    .wpo-field label.wpo-radio input:checked + span.wpo-radio-inner {
      background-color: transparent;
      border-color: var(--wp--preset--color--contrast);
      border-width: 4px;
    }

    .wpo-radios label.wpo-radio:focus-within input:checked + span.wpo-radio-inner, 
    .wpo-radios label.wpo-radio:focus-within span.wpo-radio-inner {
      border-color: hsla(0, 0%, 7%, .8);
      border-width: 3px;
    }

  .wpo-field label.wpo-radio .wpo-radio-inner + div {
    display: flex;
    width: 100%;
    padding-left: 0 !important;
    font-size: 1rem;
    font-weight: 600;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    z-index: 1;
  }

    .wpo-field label.wpo-radio .wpo-radio-inner + div .price,
    .wpo-field label.wpo-radio .wpo-radio-inner + div .price * {
      font-weight: normal;
    }

    .wpo-field[data-option-id="11"] label.wpo-radio .wpo-radio-inner + div .price {
      padding-right: 0.75rem;
      color: rgba(145, 144, 147, 1) !important;
    }

      .wpo-field[data-option-id="11"] label.wpo-radio .wpo-radio-inner + div .price .wpo-price {
        position: relative;
      }

       .wpo-field[data-option-id="11"] label.wpo-radio .wpo-radio-inner + div .price .wpo-price:before {
          display: block;
          position: absolute;
          width: 0.75rem;
          height: 1rem;
          top: 0;
          left: 0;
          background-color: #f7f7f7;
          content: '';
       }

  .wpo-field label.wpo-radio span.wpo-radio-dot {
    display: none !important;
  }

.wpo-field .nice-select {
  width: 100%;
  padding: 1em .5em;
  background-color: rgba(239, 239, 239, 0.5) !important;
  border: 2px solid rgba(239, 239, 239, 1);
  border-radius: 0.25rem;
  box-sizing: border-box;
  color: var(--wp--preset--color--contrast);
  font-family: var(--wp--preset--font-family--roboto);
  font-size: var(--wp--preset--font-size--normal);
  line-height: 1em;
}

  .wpo-field .nice-select.open, 
  .wpo-field .nice-select:active, 
  .wpo-field .nice-select:focus {
    border-color: var(--wp--preset--color--contrast);
    border-width: 2px !important;
  }

  .wpo-field .nice-select:after {
    border-right-color: var(--wp--preset--color--contrast);
    border-bottom-color: var(--wp--preset--color--contrast);
  }

  .wpo-field .nice-select .nice-select-dropdown {
    max-height: 35vh;
    padding: 0;
    border: 1px solid #2d2b2e26 !important;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
  }

    .wpo-field .nice-select .nice-select-dropdown .list {
      background-color: transparent !important;
    }

    .wpo-field .nice-select .nice-select-dropdown .list li {
      padding: 0.5rem 0.5rem;
      border-bottom: 1px solid #2d2b2e26;
      color: var(--wp--preset--color--contrast);
      font-family: var(--wp--preset--font-family--roboto);
      font-size: var(--wp--preset--font-size--normal) !important;
      font-style: normal;
      font-weight: 400;
      line-height: 1.2;
    }

.wpo-field .wpo-image-buttons {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1rem;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .wpo-field .wpo-image-buttons {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .wpo-field .wpo-image-buttons {
    grid-template-columns: 1fr 1fr;
  }
}

  .wpo-field .wpo-image-buttons .wpo-image-button:focus-within {
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
  }

  .wpo-field .wpo-image-buttons .wpo-image-button div.wpo-image-active {
    border-color: var(--wp--preset--color--base-2);
    border-radius: 1rem !important;
  }

    .wpo-field .wpo-image-buttons .wpo-image-button .wpo-image-wrap {
      margin-bottom: 0 !important;
    }

      .wpo-field .wpo-image-buttons .wpo-image-button img {
        border-radius: 1rem !important;
      }

    .wpo-field .wpo-image-buttons .wpo-image-button .wpo-image-text {
      font-size: 1rem;
      font-weight: 600;
    }

.wpo-field .wpo-totals-label {
  color: var(--wp--preset--color--contrast);
  font-family: var(--wp--preset--font-family--roboto);
  font-size: var(--wp--preset--font-size--medium-large) !important;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
}

/**
 * ADD TO CART
 **/
.single-product form.cart .wpo-totals-container {
  display: flex;
  font-size: var(--wp--preset--font-size--medium-large);
  align-items: center;
  justify-content: center;
}

  .single-product .wpo-totals-container .wpo-totals-label {
    margin-bottom: 0;
    font-size: var(--wp--preset--font-size--medium-large);
  }

.single-product form.cart {
  display: flex;
  margin-bottom: 0 !important;
  flex-direction: column;
  gap: var(--wp--preset--spacing--10);
}

  .single-product form.cart .button {
    width: 100%;
    margin-bottom: 0 !important;
    order: 99;
  }

/**
 * DELIVERY NOTICE
 **/
.single-product .product-delivery-notice {
  display: flex;
  width: 100%;
  color: #00d084;
  font-family: var(--wp--preset--font-family--roboto);
  font-size: var(--wp--preset--font-size--medium-small) !important;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
  align-items: center;
  justify-content: center;
  column-gap: 0.5rem;
  order: 98;
}

  .single-product .product-delivery-notice:before {
    display: inline-flex;
    width: 1rem;
    height: 1rem;
    background-color: #00d084;
    border-radius: 50%;
    content: '';
  }

/**
 * PAYMENT
 **/
.single-product #payment .icon {
  display: flex;
  width: 3.5rem;
  height: 2.25rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px 3px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

  .single-product #payment .wp-block-group {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .single-product #payment .icon svg {
    width: 1.75rem;
    height: 1.75rem;
  }

/**
 * TESTIMONIALS
 **/
.single-product .product-testimonial {
  display: flex;
  width: 100%;
  max-width: 16rem;
  margin-top: 2rem;
  padding-left: 0;
  flex-direction: column;
  align-items: center;
  column-gap: 0.5rem;
}

@media (max-width: 640px) {
  .single-product .product-testimonial {
    max-width: 100%;
  }
}

  .single-product .product-testimonial .product-testimonial__count {
    margin-bottom: 1rem;
    color: var(--wp--preset--color--contrast);
    font-family: var(--wp--preset--font-family--roboto);
    font-size: var(--wp--preset--font-size--small) !important;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .single-product .product-testimonial .product-testimonial__customers {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

    .single-product .product-testimonial .product-testimonial__customers img {
      max-width: 4rem;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      border-radius: 50%;
    }

/**
 * DETAILS
 */
@media (max-width: 767px) {
  .single-product #hightlights {
    order: -1;
  }
}

.single-product .product-details {
  display: flex;
  width: 100%;
  padding-left: 0;
  list-style: none;
  flex-direction: column;
  row-gap: 0.5rem;
}

  .single-product .product-details li {
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;   
    column-gap: 0.5rem; 
  }

    .single-product .product-details li .icon {
      width: 2rem;
      height: 2rem;
    }

/**
 * ACCORDION
 **/
.single-product details {
  width: 100%;
  padding: 1rem;
  border-bottom: 1px solid #2d2b2e26;
  box-sizing: border-box;
}

  .single-product details summary {
    margin: 0;
    font-size: var(--wp--preset--font-size--small-medium) !important;
    font-family: var(--wp--preset--font-family--roboto);
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
  }

    .wp-block-details summary:after {
      display: flex;
      position: relative; !important;
      width: 3rem;
      height: 3rem;
      padding: 0 !important;
      right: 0;
      background-color: var(--wp--preset--color--base-2);
      background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="%232D2B2E"><path d="M504-480 320-664l56-56 240 240-240 240-56-56 184-184Z"/></svg>');
      background-position: center;
      background-repeat: no-repeat;
      background-size: 1.75rem;
      border: none;
      border-radius: 50% !important;
      outline-color: #e8bfb0bf;
      outline-style: solid;
      outline-width: 4px;
      text-indent: -9999em;
      flex-shrink: 0;
      align-items: center;
      justify-content: center;
      transform: none;
      content: '';
    }

      .wp-block-details[open] summary:after {
        transform: rotate(90deg);
      }

  .wp-block-details summary svg {
    display: none;
  }

  .single-product details summary + div h2,
  .single-product details summary + div h3 {
    font-size: var(--wp--preset--font-size--small-medium);
  }

  .single-product details summary + div ul {
    display: flex;
    padding-left: 1rem;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 1rem;
  }

/**
 * PRODUCT USER RATING
 **/
.single-product .product-user-rating {
  display: flex;
  margin-top: 0.5rem;
  padding-left: 0;
  align-items: center;
  column-gap: 0.5rem;
}

  .single-product .product-user-rating__stars {
    display: flex;
    height: 1.5rem;
    column-gap: 0.0625rem;
  }

  .single-product .product-user-rating__stars svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: #FFAA33 !important;
  }

/**
 * CARD PRODUCT
 **/
.single-product .wc-block-product.type-product {
  height: 100%;
}

  .single-product .wc-block-product.type-product > article {
    height: 100%;
  }

    .single-product .wc-block-product.type-product > article .wp-block-group:last-child {
      margin-top: auto;
    }

.single-product .wc-block-product.type-product > article .wp-block-group:last-child > .wp-block-group {
  align-items: flex-end;
  gap: 0.5rem;
}

  .single-product .wc-block-product.type-product > article .wp-block-group:last-child > .wp-block-group .amount {
    line-height: 1;
  }

.single-product .wc-block-product.type-product .wp-block-read-more {
  display: flex;
  position: relative;
  width: 3rem;
  height: 3rem;
  padding: 0 !important;
  background-color: var(--wp--preset--color--base-2);
  border: none;
  border-radius: 50% !important;
  outline-color: #e8bfb0bf;
  outline-style: solid;
  outline-width: 4px;
  text-indent: -9999em;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

  .single-product .wc-block-product.type-product .wp-block-read-more:after {
    display: flex;
    position: absolute;
    width: 1.75rem;
    height: 1.75rem;
    margin-left: 0.1rem;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="%232D2B2E"><path d="M504-480 320-664l56-56 240 240-240 240-56-56 184-184Z"/></svg>');
    background-size: 1.75rem;
    content: '';
  }
