.woocommerce .product-cart-button {
  display: flex;
}

.single-product-container {
  position: relative;
  padding-top: 50px;
}

.product-head,
.product-description {
  padding: 10px;
}

.product h3 {
  text-transform: uppercase;
  font-size: 30px;
}

.slick-list {
  border-radius: 5px;
}
.slick-dots {
  position: absolute;
  top: 0;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.slick-dots li {
  padding: 5px;
}

.slick-dots button {
  display: block;
  width: 40px;
  height: 5px;
  padding: 0;
  font-size: 0;
  line-height: 0;
  border: none;
  background-color: var(--dark-gray);
  opacity: 0.4;
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slick-dots .slick-active button {
  background-color: #fff;
}

.slick-counter {
  position: absolute;
  top: 0;
  right: 0;
  margin: 6px 5px 5px 5px;
  background-color: rgba(138, 137, 139, 0.4);
  padding: 5px;
  line-height: 0.7;
  border-radius: 4px;
  font-size: 12px;
}

.product-attributes {
  /* outline: 1px solid var(--dark-gray); */
  outline: 1px solid var(--light-gray);
  margin: 10px 0;
  padding: 10px;
  border-radius: 5px;
  display: flex;
}

.product-attributes ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.product-attributes li {
  /* max-width: 75%; */
  line-height: 1.2;
}

.product-attributes li:last-of-type {
  max-width: none;
  width: 100%;
}

.product-description {
  grid-template-columns: repeat(6, 1fr);
  column-gap: var(--margin);
  display: grid;
  margin-bottom: 130px;
}

.product-description p {
  grid-column: 2 / -1;
  margin-bottom: var(--margin);
  line-height: 1.1;
}

.product-description p:first-of-type {
  grid-column: 1 / -1;
}

.product-cart-form {
  position: fixed;
  bottom: var(--margin);
  width: calc(100% - 2 * (var(--margin)));
}

.woocommerce div.product form.cart {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.woocommerce div.product form.cart::before {
  content: none;
}
.cart select,
.cart button {
  border-radius: 5px;
  box-shadow: 0px 1px 11px rgba(0, 0, 0, 0.12);
  font-family: ABCRounded, sans-serif;
}

.cart select {
  display: block;
  border: none;
  padding: 10px;
  background-color: rgb(153 152 155 / 60%);
  backdrop-filter: blur(30px);
  color: var(--light-gray);
  font-size: 16px;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 9L12 18L18 9" fill="white"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  cursor: pointer;
  width: calc((100% - 5px) / 2);
}
.cart select:focus-visible {
  outline: none;
}
.woocommerce div.product form.cart .button {
  background-color: var(--light-gray);
  color: var(--dark-gray);
  font-weight: normal;
  margin-top: 5px;
  padding: 13px 10px;
  width: 100%;
}
/* 
#colophon {
  display: none;
} */

@media screen and (min-width: 825px) {
  .woocommerce div.product {
    grid-template-columns: repeat(12, 1fr);
    column-gap: var(--margin);
    display: grid;
  }

  .woocommerce .product div {
    grid-column: 3 / 11;
  }

  .woocommerce .product-head,
  .woocommerce .product-description {
    padding: 10px 0;
  }

  .woocommerce .product-head,
  .woocommerce .product-attributes {
    grid-column: 4 / 10 !important;
  }

  .woocommerce .product-description {
    grid-column: 4 / 9 !important;
  }

  .woocommerce .product-head {
    display: flex;
    align-items: flex-end;
  }

  .woocommerce .product-head .product-price {
    padding: 4px 20px;
  }

  .product-description {
    display: block;
  }

  .product-cart-form {
    width: -webkit-fill-available;
    grid-column: 11 / 13 !important;
    position: fixed;
    margin-right: var(--margin);
    bottom: calc(3 * var(--margin));
  }

  .cart select {
    width: 100%;
    margin-top: 5px;
  }
}
