body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f8f8;
}

.main {
  padding-bottom: 40px;
  text-align: center;
}

h1 {
  margin-bottom: 30px;
  font-size: 2em;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  justify-content: center;
  max-width: 2000px;
}

.product-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center content horizontally */
  text-align: center;   /* Center text */
}

.product-card:hover {
  transform: scale(1.03);
}

.product-image {
  width: 100%;
  width: 200px;
  height: 200px;
  background-size: cover;
  background-position: center;
  margin: 0 auto; /* Center image if needed */
}

.product-info {
  padding: 15px;
  max-width: 400px;
  text-decoration: none;
  color: black;
}

.product-info h4 {
  margin: 0 0 10px;
  font-size: 1.1em;
  text-decoration: none;
}
a {
  text-decoration: none;
}

.product-info p {
  margin: 0;
  color: #555;
  font-weight: 600;
  color: red;
}
.banner{
  align-items: right;
}
.content-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 40px;
}

.filter-sidebar {
  width: 250px;
  background-color: #fff;
  padding: 20px;
  margin-right: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.filter-sidebar h3 {
  margin-bottom: 15px;
  font-size: 1.2em;
}

.filter-sidebar label {
  display: block;
  margin-bottom: 10px;
  font-size: 1em;
}

.filter-sidebar button {
  margin-top: 10px;
  padding: 8px 12px;
  background-color: rgb(147, 192, 164);
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.filter-sidebar button:hover {
  background-color: rgb(127, 172, 144);
}

.split-container {
  display: flex;
  width: 100%;
  height: auto;
}

.left-side {
  background-color: #e0f7e9; /* Lichtgroen als voorbeeld */
  width: 500px;
  margin-left: 50px;
  border-right: 1px solid #ddd;
  margin-right: 100px;
}

.left-side h2 {
  margin-bottom: 20px;
  font-size: 20px;
  color: #333;
}

.left-side h4 {
  margin: 15px 0 10px;
  font-size: 16px;
  color: #444;
}

/* Checkboxes */
.left-side label {
  display: block;
  margin-bottom: 6px;
  cursor: pointer;
  font-size: 14px;
  color: #555;
}

.left-side input[type="checkbox"] {
  margin-right: 8px;
  accent-color: #ffcb05; /* Pokémon geel */
}

/* Dropdown */
#filterPrice {
  width: 100%;
  padding: 6px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
  background: #fff;
  cursor: pointer;
}

/* Zoekbalk */
#searchBar {
  width: 100%;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

#searchBar:focus, 
#filterPrice:focus {
  outline: none;
  border-color: #ffcb05;
  box-shadow: 0 0 4px rgba(255, 203, 5, 0.6);
}
/* HEADER */
.nav-bar {
  background-color: rgb(61, 116, 255);
  padding: 40px 0;
  max-height: 10px;
}

.nav-container {
  display: flex;
  justify-content: center; /* Centraal uitlijnen */
  align-items: center;
}

.nav-buttons {
  list-style: none;
  display: flex;
  gap: 40px;
  padding: 0;
  margin: 0;
}

.nav-buttons li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 16px;
}
.logo img{
    width: 120px;
    position: absolute;
    height: 120px;
    margin: -20px;
    margin-left: 10px;
}

.cart-badge {
    position: absolute;
    bottom: 29px;
    right: -10px;
    background-color: rgb(255, 0, 0);
    color: rgb(255, 255, 255);
    font-size: 12px;
    padding: 2px 5px;
    border-radius: 60%;
    min-width: 10px;
    text-align: center;
}
.cart-img{
    height: 60px;
    width: 60px;
    margin-top: -40px;
}

/*FOOTER*/
footer {
  background-color: #fff;
  border-top: 1px solid #ccc;
  padding: 3rem 1.5rem;
  font-family: sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-column h3 {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #222;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-column a:hover {
  color: #fec503;
}

.footer-bottom {
  border-top: 1px solid #ccc;
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom p {
  color: #777;
  font-size: 0.875rem;
  margin: 0;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.social-icons a {
  color: #777;
  transition: color 0.3s;
}
.social-icons a:hover {
  color: #fec503;
}
.icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
/* CONTACT US*/

.container-contact {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
}
.contact-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: rgb(51, 51, 51);
}

.contact_form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 30px;
    padding-bottom: 30px;
}

.input-group {
    display: flex;
    gap: 10px;
}

.input-field {
    flex: 1;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    max-width: 300px;
}

.submit-button {
    background: rgb(147, 192, 164);
    color: rgb(0, 0, 0);
    padding: 10px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.submit-button:hover {
    background: rgb(123, 160, 137);
}


/* Shopping Cart */

.cart-container {
    width: 80%;
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.cart-table th, .cart-table td {
    padding: 12px;
    border-bottom: 1px solid rgb(221, 221, 221);
    text-align: center;
}

.cart-table img {
    width: 5rem;
    height: auto;
    border-radius: 5px;
}

.remove-btn {
    padding: 8px 12px;
    background-color: rgb(255, 0, 0);
    color: rgb(255, 255, 255);
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s ease;
}

.remove-btn:hover {
    background-color: rgb(139, 0, 0);
}

.cart-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
}

.button:hover {
    background-color: rgb(0, 92, 0);
}
/* WINKELMAND AANTALLEN */
.cart-icon {
    position: relative;
    display: inline-block;
}

.cart-badge {
    position: absolute;
    bottom: 29px;
    right: -10px;
    background-color: rgb(255, 0, 0);
    color: rgb(255, 255, 255);
    font-size: 12px;
    padding: 2px 5px;
    border-radius: 60%;
    min-width: 10px;
    text-align: center;
}