html,
body.doob-product-page {
  min-width: 320px;
  margin: 0;
  color: #41444e;
  background: #fafafa;
}

.doob-product-main,
.doob-product-main * {
  box-sizing: border-box;
}

.doob-product-main {
  min-height: 60vh;
  padding: 48px 24px 80px;
  background: #fafafa;
}

.doob-product-main > .woocommerce {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.doob-product-main div.product {
  margin: 0;
}

.doob-product-main div.product .product_title {
  color: #41444e;
  font-family: "Bebas", Arial, sans-serif;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.05;
}

.doob-product-main div.product p.price,
.doob-product-main div.product span.price {
  color: #535764;
  font-family: "Bebas", Arial, sans-serif;
  font-size: 28px;
}

.doob-product-main div.product .woocommerce-product-details__short-description,
.doob-product-main div.product .woocommerce-Tabs-panel {
  font: 400 14px/26.1px Montserrat, Arial, sans-serif;
}

.doob-product-main div.product .woocommerce-product-details__short-description h2,
.doob-product-main div.product .woocommerce-Tabs-panel h2 {
  font-size: 27px;
  line-height: 39.15px;
}

.doob-product-variants {
  clear: both;
  margin: 26px 0 4px;
  padding-top: 18px;
  border-top: 1px solid #d9d9d9;
}

.doob-product-variants__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  color: #41444e;
  font: 12px/1.25 Arial, sans-serif;
  letter-spacing: 0.08em;
}

.doob-product-variants__heading strong {
  color: #1f2024;
  font-size: 13px;
  letter-spacing: 0;
  text-align: right;
}

.doob-product-variants__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(76px, 1fr));
  gap: 8px;
}

.doob-product-variant {
  min-width: 0;
  padding: 5px 5px 7px;
  border: 1px solid #d3d4d7;
  color: #41444e;
  background: #fff;
  text-align: center;
  text-decoration: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.doob-product-variant:hover {
  border-color: #747780;
  color: #1f2024;
  transform: translateY(-1px);
}

.doob-product-variant:focus-visible {
  outline: 2px solid #152238;
  outline-offset: 2px;
}

.doob-product-variant.is-current {
  border-color: #41444e;
  box-shadow: inset 0 0 0 1px #41444e;
}

.doob-product-variant__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 6px;
  overflow: hidden;
  background: #f1f1f1;
}

.doob-product-variant__image {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
}

.doob-product-variant.is-current .doob-product-variant__media::after {
  position: absolute;
  top: 5px;
  right: 5px;
  display: grid;
  width: 20px;
  height: 20px;
  border: 1px solid rgb(255 255 255 / 75%);
  border-radius: 50%;
  color: #fff;
  background: #41444e;
  content: "✓";
  font: 12px/18px Arial, sans-serif;
  place-items: center;
}

.doob-product-variant__label {
  display: block;
  overflow-wrap: anywhere;
  font: 11px/1.2 Arial, sans-serif;
}

.doob-product-main div.product form.cart .button,
.doob-product-main a.button,
.doob-product-main button.button {
  min-height: 46px;
  border-radius: 0;
  color: #fff;
  background: #41444e;
  font-family: Arial, sans-serif;
  font-weight: 600;
}

.doob-product-main div.product form.cart {
  display: flex;
  align-items: stretch;
  gap: 10px;
  margin: 28px 0;
}

.doob-product-main div.product form.cart .quantity .qty {
  width: 72px;
  min-height: 46px;
  border: 1px solid #c9c9c9;
  border-radius: 0;
  background: #fff;
  font: 16px/1 Arial, sans-serif;
  text-align: center;
}

.doob-product-main div.product form.cart .button:hover,
.doob-product-main a.button:hover,
.doob-product-main button.button:hover {
  color: #fff;
  background: #24262b;
}

@media (max-width: 767px) {
  .doob-product-main {
    padding: 28px 14px 56px;
  }

  .doob-product-variants__list {
    grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  }
}
