.product-layout {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.product-image-section {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.product-image-container {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

.product-image-container img {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.quote-form-section {
  background: var(--background);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.tabs-container {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 1400px;
}

.tabs-header {
  display: flex;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  background: var(--muted);
}

.tab-button {
  flex: 1;
  min-width: 120px;
  padding: 1rem 1.5rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.tab-button:hover {
  background: var(--elevate-1);
  color: var(--foreground);
}

.tab-button.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  background: var(--background);
}

.tab-content {
  padding: 2rem;
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.tab-content p {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.tab-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.tab-content li {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.info-box {
  background: var(--accent);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}

.info-box-title {
  font-weight: 600;
  color: var(--accent-foreground);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.info-box-text {
  color: var(--accent-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (max-width: 968px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* turn off sticky image on mobile */
  .product-image-section {
    position: static;
    top: auto;
    height: auto;
  }

  .product-layout {
    padding: 1rem;
  }

  .tabs-header {
    flex-wrap: nowrap;
  }

  .tab-button {
    font-size: 0.75rem;
    padding: 0.75rem 1rem;
    min-width: 100px;
  }

  .tab-content {
    padding: 1.5rem;
  }
}
