.verkoop-hero {
  text-align: center;
  padding: 4rem 0;
  background: var(--gradient-bg);
  color: white;
  border-radius: 20px;
  margin-bottom: 3rem;
}

.verkoop-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.price-estimator {
  margin-bottom: 3rem;
}

.estimator-card {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid var(--border-color);
}

.estimator-card h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
}

.estimator-card p {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.price-result {
  background: var(--success-color);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  margin-top: 2rem;
  text-align: center;
}

.estimated-price {
  font-size: 3rem;
  font-weight: 700;
  margin: 1rem 0;
}

.price-note {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.next-steps {
  background: white;
  color: var(--text-primary);
  padding: 2rem;
  border-radius: 10px;
  text-align: left;
}

.next-steps ol {
  margin-bottom: 1.5rem;
}

.next-steps li {
  margin-bottom: 0.5rem;
}

.verkoop-info {
  margin-bottom: 3rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.info-card {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid var(--border-color);
  text-align: center;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.info-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.verkoop-voorwaarden {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid var(--border-color);
  margin-bottom: 3rem;
}

.requirements ul {
  list-style: none;
  padding: 0;
}

.requirements li {
  padding: 0.5rem 0;
  font-size: 1.1rem;
}

.contact-verkoop {
  background: var(--gradient-bg);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-option {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
}

.contact-option h4 {
  margin-bottom: 0.5rem;
}

.contact-option a {
  color: blue;
  text-decoration: none;
  font-weight: 600;
}

/* Admin verkoop prijzen styles */
.verkoop-prijzen-beheer {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid var(--border-color);
  margin-bottom: 2rem;
}

.prijs-form {
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 1rem;
  align-items: end;
}

.prijzen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.prijs-item {
  background: var(--bg-color);
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.prijs {
  color: var(--success-color);
  font-weight: 700;
  font-size: 1.1rem;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  min-height: auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Product detail page styles */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 2rem 0;
  padding: 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

.main-image {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail-gallery {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.thumbnail:hover {
  border-color: #007bff;
  transform: scale(1.05);
}

.product-info h1 {
  color: #333;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.product-price {
  font-size: 2rem;
  font-weight: bold;
  color: #007bff;
  margin-bottom: 2rem;
}

.product-description h3 {
  color: #333;
  margin-bottom: 1rem;
}

.product-description p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.product-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.loading-message,
.error-message {
  text-align: center;
  padding: 3rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
}

.error-message h2 {
  color: #dc3545;
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0056b3, #004085);
  transform: translateY(-2px);
}

.btn-secondary {
  background: #6c757d;
  color: white;
}

.btn-secondary:hover {
  background: #5a6268;
  transform: translateY(-2px);
}

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

  .main-image {
    height: 300px;
  }

  .product-actions {
    justify-content: center;
  }
}

.bovenaan {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--gradient-bg);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  text-align: center;
}