/* Product details */
.product-title {
  font-size: 32px;
  text-transform: uppercase;
}

.product-title b {
  font-weight: 700;
  font-size: 24px;
}

.product-price .price {
  color: var(--om-yellow);
  font-weight: 700;
  font-size: 24px;
  text-decoration: none;
}

.product-price .price.price-red {
  color: var(--om-pink);
}

.product-price .price-old {
  text-decoration: line-through;
  font-weight: 400;
  font-size: 20px;
  color: black;
}

.product-specs {
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
  padding-top: 8px;
  padding-bottom: 8px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  row-gap: 0.5rem;
}

.product-specs .product-specs-title {
  font-weight: 700;
  font-size: 14px;
}

.product-specs .product-specs-value {
  font-weight: 400;
  font-size: 14px;
}

.product-buttons svg, .product-buttons img {
  height: 20px;
  width: auto;
}

/* Swatches */
.swatches .swatch img.image {
  height: auto;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.swatches {
  padding-top: 1rem !important;
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

@media screen and (max-width: 576px) {
  .swatches {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media screen and (max-width: 768px) {
  .swatches {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.swatches:before, .swatches:after, .clear:before, .clear:after {
  display: none !important;
}

.swatches .swatch { 
  float:none !important;
  margin: 0px !important;
  width: auto !important;
}

.swatches .swatch.selected { 
  border: 4px solid var(--om-pink);
}

span.no-swatch {
  text-align: center;
  word-wrap: break-word;
  margin: auto;
  display: block;
}

/* Choices */
.product-configure label {
  font-weight: 700;
  color: var(--om-pink);
  display: block;
  margin-bottom: 1rem;
}

.product-configure select {
  background-color: #EFEFEF;
  border: none;
  padding: 1rem;
  width: 100%;
}

/* Images */
.product-thumbnail {
  pointer-events: all;
  cursor: pointer;
  border: 1px solid #DDDDDD
}

.product-thumbnail:hover {
  opacity: var(--hover-opacity);
}

.horizontal-thumbnail-slider .splide__arrow {
  width: 24px;
  height: 24px;
}