.shop-product {
  padding: 4rem 0;
}

.shop-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.shop-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.shop-row > div {
  min-width: 0;
}

.shop-product-image {
  position: sticky;
  top: 2rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  /* aspect-ratio: 4/3; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop-product-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.shop-product-title {
  font-size: 28px;
  font-weight: 500;
  margin: 0;
  line-height: 1.2;
}

.shop-product-tagline {
  font-size: 16px;
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
}

.shop-product-description {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
  padding: 1.25rem;
  background: #f9f9f9;
  border-radius: 8px;
  border-left: 3px solid #7F77DD;
  min-width: 0;
  overflow-wrap: anywhere;
}

.shop-product-description pre,
.shop-product-description code {
  white-space: pre-wrap;
  word-break: break-word;
  max-width: 100%;
}

.shop-product-description img {
  max-width: 100%;
  height: auto;
}

.shop-product-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}

.shop-price-label {
  font-size: 13px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.shop-price {
  font-size: 28px;
  font-weight: 500;
  color: #534AB7;
}

.shop-waitlist-form {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.shop-waitlist-form h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.shop-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.shop-form-group label {
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
}

.shop-form-group input[type="email"],
.shop-form-group textarea {
  width: 100%;
  box-sizing: border-box;
  font-size: 14px;
  padding: 0.6rem 0.75rem;
  background: #f9fafb;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  color: #111827;
  resize: vertical;
  font-family: inherit;
  transition: border-color 0.15s;
  outline: none;
}

.shop-form-group input[type="email"]:focus,
.shop-form-group textarea:focus {
  border-color: #7F77DD;
  box-shadow: 0 0 0 3px rgba(127, 119, 221, 0.12);
}

.shop-form-group textarea {
  min-height: 80px;
  line-height: 1.5;
}

.shop-btn {
  padding: 0.75rem 1.5rem;
  background: #534AB7;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  font-family: inherit;
}

.shop-btn:hover {
  background: #3C3489;
}

.shop-btn:active {
  transform: scale(0.98);
}

.shop-product-faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.shop-product-faq h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.shop-faq-item {
  padding: 1rem 1.25rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #f9fafb;
}

.shop-faq-item h4 {
  margin: 0 0 0.4rem;
  font-size: 14px;
  font-weight: 500;
}

.shop-faq-item p {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .shop-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .shop-product-image {
    position: static;
  }
}