/* Google Font import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Fő konténer */
.product-showcase {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  border-radius: 4px;
  padding: 32px;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  max-width: 1140px;
  margin: 0 auto 20px auto;
  box-sizing: border-box;
}
.product-showcase *,
.product-showcase *::before,
.product-showcase *::after {
  box-sizing: border-box;
}

/* Címsor */
.product-showcase-header .title { font-size: 28px; font-weight: 700; margin-bottom: 8px; color: #111827; }
.product-showcase-header .description { font-size: 16px; color: #6b7280; margin-bottom: 32px; max-width: 90%; }

/* Fő elrendezés (kép + interaktív rész) */
.product-showcase-main {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

/* Kép konténer (bal oszlop) */
.product-showcase-image {
  flex: 1 1 40%;
  position: sticky;
  top: 20px;
}
.product-showcase-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

/* Interaktív panel (jobb oszlop) */
.product-showcase-interactive {
  flex: 1 1 60%;
}
.product-showcase-interactive h3 {
  font-size: 18px;
  font-weight: 600;
  color: #374151;
  margin-top: 0;
  margin-bottom: 12px;
}
.product-select {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background-color: #f9fafb;
  margin-bottom: 24px;
  font-weight: 500;
  -webkit-appearance: none;
  appearance: none;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23374151" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 20px;
}

/* Termékadatok megjelenítője */
.product-details-display {
  background-color: #f9fafb;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e5e7eb;
  min-height: 200px;
  transition: opacity 0.3s ease;
}
.product-details-display .detail-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 15px;
  border-bottom: 1px dotted #e5e7eb;
}
.product-details-display .detail-row:last-of-type { border-bottom: none; }
.product-details-display .detail-label { font-weight: 600; color: #374151; }
.product-details-display .detail-value { color: #6b7280; font-weight: 500; text-align: right; }
.product-details-display .placeholder-text { color: #9ca3af; margin: 0; }

/* Gomb */
.quote-button {
  background: #0d6efd; color: white; border: none; border-radius: 8px; padding: 12px 24px;
  font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.2s ease; margin-top: 24px;
  width: 100%;
  display: block;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
}
.quote-button:hover {
  background: #0052cc;
  transform: translateY(-2px);
  color: white;
}

/* MOBIL NÉZET (768px alatt) */
@media (max-width: 768px) {
  .product-showcase-main {
    flex-direction: column;
  }
  .product-showcase-image {
    position: static;
    width: 100%;
  }
  .product-showcase-interactive {
      width: 100%;
  }
  .product-showcase-header .title { font-size: 24px; }
  .product-showcase { padding: 20px; }
}
