.product-form-style3 {
  padding: 12px 23px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, .25);
  /* width: 428px; */
  width: 100%;
  margin: auto;
}

.product-form-style3__price-container {
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.product-form-style3__price-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-form-style3__price-title {
  font-size: 18px;
  margin: 0;
}

.product-form-style3__compare-price {
  text-decoration: line-through;
  font-size: 16px;
}

.product-form-style3__price-content {
  display: flex;
  align-items: center;
}

.product-form-style3__saved {
  color: var(--product-detail-default-color);
  font-weight: bold;
  text-align: right;
}

.product-form-style3__price {
  color: var(--product-detail-default-color);
  font-size: 22px;
  font-weight: bold;
  margin-left: 10px;
}

.product-form-style3__stock-info {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #00796B;
}

.product-form-style3__stock-dot {
  width: 5px;
  height: 5px;
  background-color: #00796B;
  border-radius: 50%;
}

.product-form-style3__cart-count {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.product-form-style3__cart-count .product-form-style3__stock-dot {
  background-color: #2D2D2D;
  transform: translateY(5px);
}

.product-form-style3 .product-form {
  margin-top: 10px;
}

.product-form-style3__rest-easy {
  margin-top: 20px;
}

.product-form-style3__rest-easy-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  justify-content: center;
  color: var(--product-detail-default-color);
}

.product-form-style3__rest-easy-header h3 {
  font-size: 18px;
}

.product-form-style3__tooltip {
  display: inline-flex;
}

.product-form-style3__tooltip:hover svg {
  fill: #dde6f7;
}

.product-form-style3__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
  overflow: hidden;
}

.product-form-style3__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--product-detail-default-color);
}

.product-form-style3__feature-icon {
  width: 30px;
  height: 30px;
}

.product-form-style3 .button--full-width {
  background-color: var(--theme-color);
}

.product-form-style3 .button--full-width:disabled {
  background-color: #ccc;
  cursor: not-allowed;
} 