/**
Uusi layout palvelinsivulle
**/

.pc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: system-ui, -apple-system, sans-serif;
}

.pc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .pc-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pc-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 20px;
}

.pc-product-image {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}

.pc-price-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.pc-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pc-price-header {
  font-size: 0.9em;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.pc-price-main {
  font-size: 1.5em;
  font-weight: bold;
  color: #111;
}

.pc-price-vat {
  font-size: 1em;
  color: #666;
}

.pc-btn.pc-btn-secondary {
  background: #fff;
  color: #2563eb;
  border: 1px solid #2563eb;
}

.pc-btn.pc-btn-secondary:hover {
  background: #f8fafc;
}


.pc-btn {
  background: #2563eb;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.pc-btn:hover {
  background: #1d4ed8;
}

.pc-tab-container {
  margin-top: 20px;
}

.pc-tabs {
  display: flex;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 20px;
}

.pc-tab {
  padding: 10px 20px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.pc-tab.pc-active {
  border-bottom: 2px solid #2563eb;
  color: #2563eb;
}

.pc-tab-content {
  display: none;
}

.pc-tab-content.pc-active {
  display: block;
}

.pc-spec-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.pc-icon {
  width: 24px;
  height: 24px;
  color: #2563eb;
  flex-shrink: 0;
}

.pc-spec-details h3 {
  margin: 0 0 8px 0;
  color: #111;
  font-size: 1.1em;
}

.pc-spec-details p {
  margin: 0 0 8px 0;
  color: #444;
}

.pc-spec-details ul {
  margin: 0;
  padding-left: 20px;
  color: #666;
}

.pc-form-group {
  margin-bottom: 15px;
}

.pc-input, .pc-textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-top: 4px;
  box-sizing: border-box;
}

.pc-textarea {
  min-height: 100px;
  resize: vertical;
}

.pc-title {
  margin: 0 0 20px 0;
  color: #111;
  font-size: 1.5em;
}

.pc-subtitle {
  margin: 0 0 16px 0;
  color: #111;
  font-size: 1.3em;
}
