/* Snipcart product list styling */
#product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

h3.card-header{
  background-color: rgb(33, 70, 139) !important;
}


.product {
  flex: 1 1 300px;
  border: 1px solid #ddd;
  padding: 1rem;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.product h3 {
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}

.product p {
  margin: 0 0 1rem;
}

.product button {
  background-color: rgb(33, 70, 139);
  color: white;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border: none;
  font-size: 1rem;
  border-radius: 0.3rem;
  cursor: pointer;
}

.product button:hover {
  background-color: rgb(174, 28, 40);
}

.winkelwagenknop-wrapper {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}

.snipcart-checkout.winkelwagenknop {
  background-color: rgb(33, 70, 139) !important; /* Cassiopeia blauw */
  color: white !important;
  border-radius: 6px !important;
  font-weight: bold;
  border: none;
  padding: 0.6rem 1.2rem;
  text-transform: none;
  font-size: 1rem;
  text-align: center;
 }

/* Snipcart overlay: basisthema in Cassiopeia-stijl */
.snipcart-modal {
  font-family: var(--cassiopeia-font-family-body, 'Segoe UI', sans-serif);
  background-color: #f8f9fa;
  color: #212529;
}

.snipcart__box {
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.15);
}

.snipcart__font--secondary {
  color: #212529;
}

/* Snipcart hoofdknop (afrekenen, bevestigen) */
.snipcart-button-primary {
  background-color: #0d6efd !important; /* Cassiopeia blauw */
  color: white !important;
  border-radius: 6px !important;
  font-weight: bold;
  border: none;
  padding: 0.6rem 1.2rem;
  text-transform: none;
  font-size: 1rem;
}

.snipcart-button-primary:hover {
  background-color: #0b5ed7 !important;
}

/* Andere knoppen (terug, annuleren) */
.snipcart-button-secondary {
  background-color: transparent !important;
  color: #0d6efd !important;
  font-weight: bold;
  text-decoration: underline;
}

/* Velden */
.snipcart-input {
  border-radius: 5px;
  border: 1px solid #ccc;
  padding: 0.5rem;
  font-size: 1rem;
}

.snipcart-input:focus {
  border-color: #0d6efd;
  outline: none;
  box-shadow: 0 0 3px rgba(13, 110, 253, 0.4);
}
.snipcart-cart-button--highlight {
    background-image: linear-gradient(90deg, rgb(33, 70, 139), rgb(33, 70, 139)) !important;
}
