* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: rgba(0, 0, 0, 0.81);
  --color-background: #ffffff;
  --color-foreground: rgba(0, 0, 0, 0.81);
  --color-border: rgba(0, 0, 0, 0.06);
  --color-primary-button: #000000;
  --color-primary-button-text: #ffffff;
}
.page-width-narrow {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2rem;
}
.announcement-bar {
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
  padding: 15px 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.announcement-bar p {
  margin: 0;
}
.product-information {
  padding: 0 0 2rem 0;
}
.product-information__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-top: 2rem;
}
.product-information__media {
  flex: 1.2;
  min-width: 280px;
}
.product-details {
  flex: 0.9;
  min-width: 280px;
}
.media-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  position: sticky;
  top: 10px;
}
.product-media {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #f5f5f5;
}
.product-media:nth-child(1) {
  grid-column: span 2;
}
.product-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.group-block {
  border: none;
}
.group-block-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.h1,
.h3,
h1,
h3 {
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 1.2;
}
.text-block--align-center {
  text-align: center;
}
.price {
  font-size: 1.8rem;
  font-weight: 600;
}
.divider {
  margin: 8px 0;
}
.divider__line {
  display: block;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
}
.product-form-buttons {
  display: flex;
  gap: 16px;
}
.quantity-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 40px;
  width: fit-content;
  padding: 6px 12px;
  background: white;
}
input[type="checkbox"] {
  flex-shrink: 0;
  margin: 0 !important;
}
.mb-20 {
  margin-bottom: 20px;
}
footer ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px 30px;
  flex-wrap: wrap;
  padding: 0;
  list-style-type: none;
}
footer ul a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
}
.quantity-selector button {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.quantity-selector input {
  width: 50px;
  text-align: center;
  font-size: 1.2rem;
  border: none;
  font-weight: 500;
  pointer-events: none;
  background: transparent;
}
.add-to-cart-button {
  background: #000000;
  color: white;
  border: none;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 40px;
  cursor: pointer;
  width: 100%;
  transition: 0.2s;
  font-family: inherit;
  text-align: center;
  text-decoration: none;
}
.add-to-cart-button:hover {
  background: #2c2c2c;
}
.rte {
  line-height: 1.5;
  font-size: 0.9rem;
}
.rte div,
.rte p,
.rte ul {
  margin-bottom: 1rem;
}
.rte ul {
  padding-left: 1.5rem;
}
.consultation-form {
  margin-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 1.8rem;
}
.consultation-form h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.9rem;
}
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
  font-size: 0.8rem;
}
.checkbox-group input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}
.submit-consult-btn {
  background: #000000;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
}
footer {
  margin-top: 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 2rem 0;
  text-align: center;
  font-size: 0.75rem;
}
@media (max-width: 768px) {
  .product-information__grid {
    flex-direction: column;
  }
  .media-gallery__grid {
    grid-template-columns: 1fr;
  }
  .product-media:nth-child(1) {
    grid-column: span 1;
  }
  .product-form-buttons {
    flex-direction: column;
  }
  .product-information__media,
  .product-details {
    flex: auto;
    min-width: auto;
  }
  .media-gallery__grid {
    position: relative;
  }
    .page-width-narrow {
      padding: 0 1rem;
    }
}
.docs {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 0;
  word-break: break-word;
}
.docs h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 32px;
}
.docs p {
  margin-bottom: 16px;
}
.docs a {
  color: #000000;
  text-decoration: none;
}
.sticky-add-to-cart {
  position: sticky;
  bottom: 0;
  background: white;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  z-index: 100;
}
.sticky-add-to-cart__info {
  flex: 2;
}
.sticky-add-to-cart__title {
  font-weight: 600;
  font-size: 0.9rem;
}
.sticky-add-to-cart__price {
  font-weight: 700;
}
.sticky-add-to-cart__button {
  background: black;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
}
.thankyou-message {
  background: #e6f7e6;
  padding: 12px;
  border-radius: 12px;
  text-align: center;
  margin-top: 20px;
  display: none;
}