/* Product detail finishing overrides */
body.type-detail #ratingTab {
  margin-top: 28px;
  padding: 64px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

body.type-detail #ratingTab #ratingWrapper {
  background: #f8f4ea;
}

body.type-detail .hodnoceni {
  display: none !important;
}

/* Quantity discounts */
body.type-detail .quantity-discounts {
  margin: 24px 0 18px;
  padding: 22px;
  border: 1px solid #e3e8ed;
  border-radius: 20px;
  background: #f8f4ea;
  color: #071b34;
  font-family: "Open Sans", Arial, sans-serif;
}

body.type-detail .quantity-discounts__headline {
  margin: 0 0 14px;
  color: #071b34;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

body.type-detail .quantity-discounts__table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

body.type-detail .quantity-discounts__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  align-content: center;
  min-height: 88px;
  padding: 15px 16px;
  border: 1px solid #e2e8ed !important;
  border-radius: 12px;
  background: #fff;
  transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

body.type-detail .quantity-discounts__item--highlighted {
  border-color: #2fa879 !important;
  background: #edf8f3;
  box-shadow: 0 0 0 1px rgba(47, 168, 121, .08);
}

body.type-detail .quantity-discounts__title {
  color: #24364b;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

body.type-detail .quantity-discounts__item--highlighted .quantity-discounts__title {
  color: #071b34;
  font-weight: 700;
}

body.type-detail .quantity-discounts__price-wrapper {
  color: #6a7583;
  font-size: 14px;
  white-space: nowrap;
}

body.type-detail .quantity-discounts__price {
  color: #071b34;
  font-size: 15px;
  font-weight: 700;
}

body.type-detail .quantity-discounts__save {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(7, 27, 52, .1);
  color: #5f6b78;
  font-size: 14px;
}

body.type-detail .quantity-discounts__saved-amount {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 11px;
  border-radius: 999px;
  background: #e7f5ee;
  color: #177653;
  font-weight: 700;
}

@media (max-width: 620px) {
  body.type-detail #ratingTab {
    padding: 44px 0;
    border-radius: 0;
  }

  body.type-detail .quantity-discounts {
    padding: 16px;
    border-radius: 16px;
  }

  body.type-detail .quantity-discounts__item {
    gap: 10px;
    padding: 12px;
  }
}

@media (max-width: 420px) {
  body.type-detail .quantity-discounts__table {
    grid-template-columns: 1fr;
  }

  body.type-detail .quantity-discounts__item {
    min-height: 72px;
  }
}
