/* Product images */
.jet-woo-product-gallery__image-link {
  margin: 0 20px 20px 0;
}

.jet-woo-product-gallery__image-link img {
  border-radius: 15px;
  border: 3px solid var(--e-global-color-secondary);
  box-shadow: 5px 5px 0px 0px var(--e-global-color-secondary);
}

.jet-woo-swiper-control-thumbs__item {
  box-shadow: 5px 5px 0px 0px var(--e-global-color-secondary);
  border-radius: 20px;
  border: 3px solid var(--e-global-color-secondary);
}
/* End of Product Images */

/* Product Breadcrumbs */
.product-breadcrumbs {
  display: flex;
  gap: 10px;
  align-items: center;

  a {
    color: black;
    font-family: var(--e-global-typography-text-font-family);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
  }
  a:hover {
    color: var(--e-global-color-secondary);
  }

  span.current {
    color: var(--e-global-color-secondary);
    font-family: var(--e-global-typography-text-font-family);
    font-size: 18px;
    font-weight: 600;
  }
}
/* End of Product Breadcrumbs */

/* Product Variations */
table.variations {
  tbody {
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;

    border-radius: 20px;
    background: var(--e-global-color-92793c1);

    tr {
      display: flex;
      width: 100%;
      justify-content: space-between;

      @media (max-width: 1200px) {
        flex-direction: column;
      }

      th {
        padding: 0 !important;

        font-family: var(--e-global-typography-primary-font-family) !important;
        font-size: 24px;
        color: black;
      }

      td {
        width: max-content !important;
        padding: 0 !important;

        select {
          display: flex;
          width: 240px;
          padding: 10px 20px;
          justify-content: space-between;
          align-items: center;

          border-radius: 10px;
          border: 3px solid #000;
          background: #fff;
          box-shadow: 5px 5px 0px 0px #000;
        }
      }
    }
  }
}
/* End of Product Variations */

/* Product Add to Cart */
.quantity {
  box-shadow: 5px 5px 0px 0px black;
  border-radius: 10px;
  border: 3px solid black;

  input[type="button"] {
    border: none !important;
    border-radius: 0 !important;

    :hover {
      background: var(--e-global-color-secondary) !important;
    }
  }

  input[type="number"] {
    border-right: 3px solid black !important;
    border-radius: 0 !important;
    border-left: 3px solid black !important;
  }
}
/* End of Product Add to Cart */

/* Product Price */
.price {
  .woocommerce-Price-amount {
    color: #000;
    font-family: var(--e-global-typography-text-font-family);
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
}

/* Product Info Tabs */
.wd-nav-wrapper {
  width: 100%;
}

.wd-tabs {
  padding: 30px;
  background: var(--e-global-color-92793c1);
  border-radius: 20px;
}

.wd-tabs .wd-nav {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(200px, 240px));
  gap: 40px;

  justify-content: start;
}

.wd-nav li {
  display: flex;
  width: 100% !important;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;

  border-radius: 8px;
  border: 3px solid var(--e-global-color-secondary);
  background: var(--e-global-color-92793c1);
  box-shadow: 5px 5px 0px 0px var(--e-global-color-secondary);
}

.wd-nav li.wd-active,
.wd-nav li:hover {
  background: white;
}

.wd-nav li a {
  color: var(--e-global-color-text) !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  padding: 0 !important;
}

.wd-nav li.wd-active a,
.wd-nav li:hover a {
  color: black !important;
}
/* End of Product Info Tabs */
