/** Shopify CDN: Minification failed

Line 383:0 Unexpected "}"

**/
/* Desktop styles */
.swiper {
  width: 600px;
  height: 300px;
}

.kl_reviews__list_container{
  min-height: unset;
}

:root {
  --product-form-height: 830px;
  --product-form-focus-color: rgb(131,132,133);
  --product-form-highlight-color:rgb(131,132,133);
  --swiper-theme-color: var(--black) !important;
  --swiper-navigation-size: 24px !important;
  --swiper-navigation-sides-offset: 0px;
  --black: #1d1c1c;
}

#header .top-bar {
  padding-bottom:16px;
}

.product-section-divider{
  width: 100%;
  border-bottom: 2px solid #d9d9d9;
  margin-bottom: 16px;
  padding: 16px;
}

.garage-sale-wrapper {
  position: relative;
  width: 100%;
  top: 10px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  cursor: default;
}

.garage-sale-badge {
  display: flex;
  border-radius: 30px;

  width: fit-content;
  padding: 12px 24px;
  font-size: 24px;
  color: white;
  font-weight: 500;
}

.product-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0 5% 0 5%;

  a {
    background-color: black;
  }

  /* *:focus {
    box-shadow: 0 0 0 4px var(--product-form-focus-color);
    outline: 2px solid var(--black);
  } */
}

.product-form-container {
  display: grid;
  grid-template-columns: 6fr 4fr;
  justify-items: center;
  align-items: start;
  width: 100%;
}

.thumbnail-image {
  &:hover {
    outline: 2px solid var(--product-form-highlight-color);
    z-index: 1;
  }
}
.product-form {
  width: 100%;
  max-height: var(--product-form-height);

  .option-selector {
    border-radius: 100px;
    border-color: darkgray;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    font-family: "Oswald";
    color: var(--black);
    padding: 7px 20px;
    height: 53px;

    /* chevron styles */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='%231d1c1c'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m19.5 8.25-7.5 7.5-7.5-7.5' /%3E%3C/svg%3E");
    background-size: 24px 24px;

    &:hover {
      border-color: var(--product-form-highlight-color);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='%23FFCC00'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m19.5 8.25-7.5 7.5-7.5-7.5' /%3E%3C/svg%3E");
    }
  }

  .option-label {
    font-size: 18px;
    font-weight: 500;
    padding: 8px 0px;
    display: inline-block;
  }

  .product-color-select-wrapper {
    display: flex;
    gap: 8px;
  }
  .color-swatch {
    padding: 80px;
  }

  .product-size-select-wrapper {
    padding-top: 8px;
  }

  .out-of-stock {
    opacity: 0.4;
    position: relative;
  }

  .out-of-stock:before {
    content: " ";
    position: absolute;
    top: 50%;
    left: 0;
    border-bottom: 2px solid rgba(29, 28, 28, 0.4);
    width: 100%;
    transform: rotate(45deg);
  }

  .color-swatch-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 100px;
    border: 2px solid rgba(29, 28, 28, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    max-width: 60px;
    object-fit: contain;
    cursor: pointer;
    background-color: unset;

    &:hover {
      border-color: var(--product-form-highlight-color);
    }

    &:focus {
      border: 2px, solid, var(--black);
      outline: 2px solid var(--product-form-highlight-color);
      box-shadow: unset;
    }
  }
  .color-swatch-wrapper-selected {
    border: 2px solid rgba(29, 28, 28, 1);
  }
}

.product-description {
  a {
    padding: 6px;
    border-radius: 30px;
    color: white;

    &:hover {
      color: var(--product-form-highlight-color);
    }
  }
}

.accordion {
  width: 100%;
  margin: auto;
  padding-top: 28px;
  padding-bottom: 28px;

  a {
    padding: 8px;
    border-radius: 30px;
    color: white;

    &:hover {
      color: var(--product-form-highlight-color);
    }
  }
}

.accordion-item {
  border-bottom: 2px solid #d9d9d9;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 100%;

  &:last-child {
    border: unset;
  }
}

.accordion-item:first-child {
  border-top: 2px solid #d9d9d9;
}

.accordion-chevron {
  width: 24px;
  height: 24px;
  transition: transform 0.5s;
}

.product-add-to-cart-button {
  background-color: var(--black);
  color: white;
  border-radius: 90px;
  padding: 16px;
  margin: auto;
  margin-top: 14px;
  font-size: 18px;
  letter-spacing: 2px;
  width: 100%;
  font-weight: 400;

  &:focus {
    color: var(--product-form-highlight-color);
    outline: 2px solid var(--product-form-highlight-color);
  }
  &:hover {
    color: var(--product-form-highlight-color);
  }
}

.product-add-to-cart-button.add-to-cart-disabled {
  color: var(--black);
  background-color: #d9d9d9;
  box-shadow: inset 0 0 0 2px rgba(29, 28, 28, 0.4);
}

.tab-contents {
  padding-bottom: 48px;
  border-bottom: 2px solid #d9d9d9;
  margin-bottom: 32px;
}

.accordion-header {
  background: white;
  padding: 10px;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  width: 100%;
  color: var(--black);

  &:hover {
    svg {
      stroke: var(--product-form-highlight-color);
    }
  }
}
.accordion-content {
  display: none;
  padding: 10px;
  transition: all 0.5s;
  width: 100%;

  &:last-child {
    border-bottom: unset;
  }

  .heel-height-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding-bottom: 24px;
    padding-left: 32px;
  }

  .heel-height-icon {
    width: 100px;
  }

  img {
    width: 100%;
    height: auto;
    object-fit: contain;
    padding: 12px;
  }
}

.product-title {
  display: flex;
  width: 100%;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
}

.price-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 18px;
  gap: 16px;
  color: var(--black);
}

.product-price {
  font-size: 32px;
  margin: 0px;
}

.product-compare-at-price {
  font-size: 32px;
  margin: 0px;
  color: black;
  opacity: 0.6;
  text-decoration: line-through;
}

.product-description {
  font-size: 18px;
  opacity: 0.8;

  p {
    line-height: 1.35;
  }
}

.size-tiles-wrapper{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;

  .size-tile{
    padding: 8px;
    padding-top: 4px;
    padding-bottom: 4px;
    margin: 8px;
    margin-left: 0;
    border: 1px solid;
    border-radius: 10px;


    &:hover{
      border-color: #111;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      cursor: pointer;
    }
  }

    .size-tile--selected{
      background-color: var(--product-form-focus-color);
      color: white;
      border: 2px solid black;
    }

    .size-tile--disabled{
      opacity: 0.3;
      cursor: not-allowed !important;
    }
  }
}

.selected-color {
  font-weight: 500;
  font-size: 16px;
  opacity: 0.7;
}

.tab-container {
  width: 100%;
  z-index: 2;
  background-color: white;
  padding-top: 16px;

  .tab-heading-wrapper {
    padding-right: 16px;
    padding-left: 16px;
    opacity: 0.4;
    background-color: unset;

    &:hover {
      color: var(--product-form-highlight-color);
      opacity: 1;
    }
  }
  .tab-headings {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
    border-bottom: 2px solid #d9d9d9;
    padding-bottom: 6px;
    margin-bottom: 32px;
  }
  .tab-heading {
    font-size: 18px;
    font-weight: 500;
    opacity: inherit;
    cursor: pointer;
  }

  .tab-heading-selected {
    border-bottom: 4px solid var(--black);
    opacity: 1;
    margin-bottom: -8px;
    color: var(--black);

    &:hover {
      color: unset;
      opacity: unset;
    }
  }

  #performance-assessment-content {
    display: none;
  }

  #reviews-content {
    display: none;
  }

  .features-image {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .performance-assessment-image {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
  }

  .performance-assessment-section {
    border-bottom: 2px solid #d9d9d9;
    padding-top: 32px;

    &:first-child {
      padding-top: 0px;
    }

    &:last-child {
      border-bottom: 0px hidden;
    }

    .performance-assessment-section-heading {
      font-size: 24px;
      font-weight: 500;
      margin-bottom: 28px;
    }

    .performance-assessment-section-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      margin-top: 36px;

      .performance-assessment-section-image {
        width: 100%;
        height: auto;
      }

      p,
      ul {
        line-height: 1.4em;
        font-size: 16px;
      }
    }
  }

  .features-header {
    font-weight: 500;
    font-size: 24px;
  }

  .features-image {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .product-features-wrapper {
    display: grid;
    grid-template-columns: auto auto;
    gap: 36px;
    justify-items: center;
    align-items: center;

    .product-feature {
      border: 1px solid #d3dbe2;
      padding: 24px 32px 16px 20px;
      border-radius: 8px;
      width: 95%;
      height: 95%;

      p {
        font-size: 22px;
        line-height: 1.3em;
      }

      strong {
        /* feature heading */
        font-weight: 500;
        font-size: 24px;
      }
    }
  }
}

.recommended-products-heading {
  font-size: 28px;
  padding-top: 32px;
  padding-bottom: 48px;
  font-weight: 500;
}

.product-alternative {
  padding-top: 24px;
}

.recommendations-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  column-gap: 48px;

  .product-recommendation-wrapper {
    border: 1px solid #d3dbe2;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    padding: 16px;
    margin-bottom: 24px;
    background-color: unset;

    &:hover {
      border-color: var(--product-form-highlight-color);
    }

    &:focus {
      border-color: var(--black);
      outline: 1px solid var(--black);
      box-shadow: 0 0 0 3px var(--product-form-highlight-color);
      outline-offset: unset;
    }

    .recommendations-image-wrapper {
      width: 100%;
      display: flex;
      justify-content: center;
    }

    .recommendations-image {
      width: 100%;
      height: auto;
      object-fit: fill;
    }

    .recommendation-title {
      font-size: 20px;
      color: var(--black);
      padding-bottom: 16px;
      padding-top: 16px;
    }

    .recommended-price {
      font-size: 24px;
      color: var(--black);
    }
  }
}

/* Mobile styles */
@media (max-width: 767px) {
  .product-price {
    font-size: 28px;
    margin-bottom: 0px;
  }

  .price-container {
    margin-top: 0px;
    padding: 8px 0px;
  }

  .product-compare-at-price {
    font-size: 28px;
    margin-bottom: 0px;
  }
  .product-star-rating {
    height: 34px;
    width: 240px;
    border: 1px solid var(--black);
  }

  .product-form {
    width: 100%;
  }

  .features-content {
    padding-bottom: 32px;
  }

  .product-form-container {
    display: flex;
    flex-direction: column;
  }

  .product-features-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* .product-feature {
    margin-top: 32px;
    border: 1px solid lightgray;
    border-radius: 8px;
    background-color: white;
    padding: 16px 32px 16px 16px;
    font-size: 20px;

    h3 {
      font-size: 20px;
    }

    p {
      margin-top: 24px;
    }
  } */

  .product-features-image {
    width: 100%;
    height: auto;
  }

  .product-reviews-placeholder {
    border: 1px solid var(--black);
    height: 600px;
    background-color: white;
  }

  .product-alternative {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: white;
    padding: 16px 32px 16px 16px;
  }

  .accordion {
    padding-bottom: 0px;
  }

  .tab-container {
    width: 100%;

    .tab-headings {
      display: none;
    }
    #performance-assessment-content {
      display: block;
    }

    #reviews-content {
      display: block;
    }

    .features-image {
      width: 100%;
      display: flex;
      justify-content: center;
      padding: 0 0 12px 0;
    }

    .product-features-wrapper {
      display: flex;
      flex-direction: column;
      justify-items: center;
      align-items: center;
      gap: 8px;

      .product-feature {
        margin: 8px;
        margin-bottom: 0px;
        padding: 12px 16px 0px 16px;

        p {
          font-size: 16px;
        }

        strong {
          font-size: 18px;
        }
      }
    }

    .performance-assessment-section {
      border-bottom: 2px solid #d9d9d9;

      &:last-child {
        border-bottom: unset;
      }

      .performance-assessment-section-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 32px;

        .performance-assessment-section-image {
          width: 100%;
          height: auto;

          /* Make images shrink for mobile styles */

          img {
            display: block;
            max-width: 100%;
            height: auto;
            width: 100%;
          }
        }
      }
    }
  }

  .recommendations-list {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    column-gap: 48px;
  }
}
