/* Pejskovice: product photo space and purchase button. */
@media (min-width: 992px) {
  body.type-product .p-detail .product-top > .p-image-wrapper,
  body.type-product .p-detail .product-top > .p-info-wrapper {
    width: 50% !important;
  }
  body.type-product .p-detail .p-main-image img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    object-fit: contain;
  }
}

body.type-product .p-detail #product-detail-form.add-to-cart {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  margin-bottom: 0;
}
body.type-product .p-detail #product-detail-form > .quantity {
  flex: 0 0 auto;
}
body.type-product .p-detail #product-detail-form button.add-to-cart-button {
  min-height: 56px;
  padding: 12px 24px;
  margin: 0;
  border-radius: 28px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  white-space: normal;
  max-width: 100%;
  box-sizing: border-box;
}
body.type-product .p-detail #product-detail-form button.add-to-cart-button:not(:disabled) {
  background-color: #934476;
  border-color: #934476;
  color: #fff;
}
body.type-product .p-detail #product-detail-form button.add-to-cart-button:not(:disabled):hover {
  background-color: #793760;
  border-color: #793760;
}
body.type-product .p-detail #product-detail-form button.add-to-cart-button:focus-visible {
  outline: 3px solid #345969;
  outline-offset: 3px;
}
@media (max-width: 479px) {
  body.type-product .p-detail #product-detail-form button.add-to-cart-button {
    flex: 1 1 190px;
    padding: 12px 16px;
    font-size: 16px;
  }
}
