@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500&family=Raleway:wght@300;400;600&display=swap');
:root {
  /* dark shades of primary color*/
  --clr-primary-1: hsl(21, 91%, 17%);
  --clr-primary-2: hsl(21, 84%, 25%);
  --clr-primary-3: hsl(21, 81%, 29%);
  --clr-primary-4: hsl(21, 77%, 34%);
  /* primary/main color */
  --clr-primary-5: hsl(21, 62%, 45%);
  /* lighter shades of primary color */
  --clr-primary-6: hsl(21, 57%, 50%);
  --clr-primary-7: hsl(21, 65%, 59%);
  --clr-primary-8: hsl(21, 80%, 74%);
  --clr-primary-9: hsl(21, 94%, 87%);
  --clr-primary-10: hsl(38, 48%, 89%);
  /* darkest grey - used for headings */
  --clr-grey-1: hsl(209, 61%, 16%);
  --clr-grey-2: hsl(211, 39%, 23%);
  --clr-grey-3: hsl(209, 34%, 30%);
  --clr-grey-4: hsl(209, 28%, 39%);
  /* grey used for paragraphs */
  --clr-grey-5: hsl(210, 22%, 49%);
  --clr-grey-6: hsl(209, 23%, 60%);
  --clr-grey-7: hsl(211, 27%, 70%);
  --clr-grey-8: hsl(210, 31%, 80%);
  --clr-grey-9: hsl(212, 33%, 89%);
  --clr-grey-10: hsl(210, 36%, 96%);
  --clr-white: #fff;
  --clr-red-dark: hsl(360, 67%, 44%);
  --clr-red-light: hsl(360, 71%, 66%);
  --clr-green-dark: hsl(125, 67%, 44%);
  --clr-green-light: hsl(125, 71%, 66%);
  --clr-orange: hsl(24, 100%, 50%);
  --clr-black: #222;
  --transition: all 0.3s linear;
  --spacing: 0.1rem;
  --radius: 0.25rem;
  --light-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --dark-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  --max-width: 1170px;
  --fixed-width: 620px;
}
*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
* {
  user-select: none;
}
html {
  font-size: 100%;
}
body {
  font-family: 'poppins', 'Raleway', sans-serif, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background: var(--clr-white);
  color: var(--clr-grey-1);
  line-height: 1.5;
  font-size: 1rem;
}
a {
  text-decoration: none;
  color: var(--clr-grey-1);
  font-size: 1.125rem;
}
a:hover {
  color: var(--clr-grey-5);
}
.icon-btn i {
  font-size: 1.3rem; /* dit bepaalt de grootte van het pictogram */
}
li,
ul {
  list-style-type: none;
}
img {  
  max-width: 100%;
  display: block;
}
button {
  all: unset;
}
button:hover {
  cursor: pointer;
}
h1,
h4 {
  font-family: 'Poppins', 'Raleway', sans-serif, Helvetica;
  color: var(--clr-grey-1);
  line-height: 1.25;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
h2 {
  font-family: 'Poppins', 'Raleway', sans-serif, Helvetica;
  color: var(--clr-grey-1);
  line-height: 1.25;
  margin-bottom: 0.75rem;
  font-weight: bold;
  font-size: 1.5rem;
}
h3 {
  font-family: 'Poppins', 'Raleway', sans-serif, Helvetica;
  color: var(--clr-grey-1);
  font-weight: bold;
  font-size: 1.2rem;
}
h5 {
  font-family: 'Oswald', sans-serif, Helvetica;
  color: var(--clr-grey-1);
  letter-spacing: var(--spacing);
  text-transform: capitalize;
  font-weight: 500;
  font-size: 0.875rem;
}
.fa-heart {
  transition: color 0.3s ease;
  cursor:pointer;
}
.fa-cart-shopping {
  cursor:pointer;
}
.fa-heart:hover {
  color: var(--clr-primary-7); /* Rood bij hover */
}
.fa-cart-plus.active {
  color: var(--clr-primary-5); /* Rood als actief */
}
.fa-cart-plus.active {
  color: var(--clr-white); /* Rood als actief */
}
.fa-heart.active {
  color: red; 
}
.btn-container {
  display: flex;
  flex-direction: column;
  gap:0.5rem;
  margin: 0 0.5rem 0.2rem 0.5rem;
  max-width: 200px;
}
.btn {
  border: 1px solid var(--clr-primary-5);
  background: white;
  color: var(--clr-primary-5);
  padding: 0.55rem;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
}
.btn:hover{
  color:var(--clr-white);
  background-color: var(--clr-primary-5);
  cursor: pointer;
}
.btn.active {
  color:var(--clr-white);
  background-color: var(--clr-primary-5);
}
.btn .fa .fa-heart:hover {
  color:var(--clr-white);
}
.btn .fa .fa-heart {
  color:var(--clr-primary-5);
}
.grid-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  position: relative;
}
.nav-bar {
  grid-column: 1 / 13;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  background-color: var(--clr-grey-9);
  position: sticky;
  top: 0;
  z-index: 1;
}
.nav-bar-container {
  grid-column: 2 / 12;
  display: flex;
  flex-wrap: wrap;
  padding-top:1rem;
  grid-row:1;
  gap:1rem;
}
.nav-left {
  flex:1;
  display: flex;
  flex-direction: column;
}
.nav-center {
  grid-column:1 /13;
  display: none
}
.nav-right {
  flex:1;
  display: flex;
  align-items: end;
  gap: 1rem;
 justify-content: space-between;
}
.logo {
  max-width: 90%;
}
.extra-info {
  grid-column: 2 / 12;
  font-size: 15px;
}
.nav-link {
  margin: 0 0.5rem;
  font-weight: bold;
  cursor:pointer;
}
.icon-btn {
  color: var(--clr-grey-1);
  background: none;
  border: none;
}
.icon-btn i {
  font-size: 1.3rem; 
}
#open-wishlist-btn {
  position: relative;
}
#open-wishlist-btn::after {
  content: "Bekijk wenslijst";
  position: absolute;
  bottom: 100%; 
  left: 50%;
  transform: translateX(-50%);
  padding: 5px;
  background-color: var(--clr-grey-1);
  color: white;
  font-size: 12px;
  border-radius: 5px;
  opacity: 0; 
  pointer-events: none; 
  transition: opacity 0.3s ease; 
}
#open-wishlist-btn:hover::after {
  opacity: 1;
}
.cart {
  position: relative;
}
#cart-btn::after {
  content: "Ga naar winkelmand";
  position: absolute;
  bottom: 100%; 
  left: 50%;
  transform: translateX(-50%);
  padding: 5px;
  background-color: var(--clr-grey-1);
  color: white;
  font-size: 12px;
  border-radius: 5px;
  opacity: 0; 
  pointer-events: none; 
  transition: opacity 0.3s ease; 
}
#cart-btn:hover::after {
  opacity: 1;
}
.wishlist-count,
.cart-count {
  position: absolute;
    top: -5px;
    right: -10px;
    background: red;
    color: white;
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.searchbar {
  grid-column: 1 / 13;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-grey-9);
  padding:0.5rem 0;
  grid-row:2;
}
.searchbar:hover,
.searchbar:focus-within {
  border-color: #007bff;
}
.searchbar input {
  border: none;
  outline: none;
  flex: 1;
  padding: 10px;
  font-size: 16px;
  background: transparent;
}
.search-form {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 50px;
  padding: 5px 10px;
  width: 100%;
  max-width: 350px;
  border: 2px solid #ddd;
  transition: all 0.3s ease;
  position: relative; 
  box-sizing: border-box;
}
.search-form input {
  flex: 1;
  max-width: 300px;
  padding: 0.5rem;
}
.suggestion-dropdown {
  position: absolute;
  top: 6rem;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid #ccc;
  border-radius: 0 0 10px 10px;
  width: 350px;
  max-height: 300px;
  overflow-y: auto;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  z-index: 2;
}
.suggestion-dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.suggestion-dropdown li {
  padding: 10px;
  border-bottom: 1px solid #eee;
}
.suggestion-dropdown li:hover {
  background-color: #f0f0f0;
}
.hidden {
  display: none;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.icon-column {
  color: #555;
  font-size: 18px;
  margin-right: 10px;
  line-height: 1;
}
.clear-icon {
  color: #aaa;
  font-size: 18px;
  margin-left: 10px;
  line-height: 1;
}
.clear-icon:hover {
  color: #555;
}
.clear-icon-btn {
  all: unset;
}
/* MODAL */
/* sidebar */
.sidebar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); 
  z-index: 2;
  display: none; 
  overflow-y: auto;
}
.sidebar-wrapper.show {
  display: block; 
}
.close-cart,
.close-wishlist,
.close-menu {
  background-color: var(--clr-grey-2);
  color: white;
  padding: 1rem;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.close-menu {
  width: 80%;
  position: relative;
}
.sidebar-menu {
  background-color: #fff;
  width: 80%; 
  height: 100%;
  padding: 20px;
  overflow-y: auto;
}
.close-btn {
  font-size: 30px;
  color: var(--clr-white);
  background: none;
  border: none;
  position: absolute;
  top: 10px;
  right: 20px;
}
.sidebar-links {
  margin-top: 20px;
}
.menu-item {
  list-style-type: none;
  margin-bottom: 15px;
}
.menu-item > a {
  letter-spacing: var(--spacing);
  text-transform: capitalize;
  line-height: 1.25;
  font-size: 0.875rem;
  color: var(--clr-grey-4);
  padding: 10px;
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}
.subsublinks {
  display: none;
  padding-left: 20px;
}
.subsublinks li a {
  font-size: 16px;
  color: var(--clr-grey-4);;
  text-decoration: none;
  display: block;
  padding: 8px;
}
.menu-item > a .submenu-toggle {
  margin-left: 10px;
  font-size: 18px;
  color: var(--clr-grey-4);
  transition: transform 0.3s ease-in-out;
  display: inline-block;
}
.menu-item.open > a .submenu-toggle {
  transform: rotate(90deg);
}
/* PANELEN */
.panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%; /* of iets passends */
  height: 100%;
  background: var(--clr-white);
  transform: translateX(-100%); /* begin buiten beeld aan de rechterkant */
  transition: transform 0.3s ease-in-out;
  z-index: 2;
}
.panel.active {
  transform: translateX(0); /* schuif binnen beeld */
}
.title-section {
  grid-column: 2 / 12; /* eerder: 3 / 12 */
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border-bottom: 1px solid var(--clr-primary-2);
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: 100%;
}
.breadcrumbs li {
  list-style: none;
  font-size: 0.95rem;
  text-transform: lowercase;
}
.breadcrumbs a {
  color: var(--clr-primary-1);
}
.breadcrumbs a {
  font-size: 0.9rem;
  margin-right: 0.3rem;
}
/* FILTER  BAR HEADER*/
.filter-bar {
  grid-column: 2 / 12;
  display: flex;
  justify-content: space-between;
  padding: 1rem;
}
.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.view-toggle {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
/* PRODUCTEN  */
.product-grid {
  grid-column: 1 / 13;
  display: flex;
  flex-wrap: wrap;
  padding-top: 1rem;
  margin: 0 1rem;
  justify-content: center;
  gap:1rem;
}
.product-card {
  background: var(--clr-white);
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.product-card__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.product-card__info {
  padding: 0.75rem 1rem;
}
.product-card__title {
  font-size: 1rem;
  margin: 0.25rem 0;
  font-weight: bold;
}
.product-card_auteur,
.product-card__description {
  font-size: 0.9rem;
  color: var(--clr-grey-3);
  margin-bottom: 0.5rem;
  display: block;
}
.product-card__price-row {
  display: flex;
  align-items: center;
  margin-top:1rem;
}
.product-card__price {
  font-weight: bold;
  color: var(--clr-primary-4);
  font-size: 1.2rem;
  margin-right: 3rem;
}
.icon-container i {
  margin-left: 10px;
  color: var(--clr-grey-5);
  transition: color 0.2s;
}
.icon-container i:hover {
  color: var(--clr-primary-5);
}
/* === LIJST WEERGAVE === */
.product-grid.list-view .product-card {
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
  gap: 1rem;
  padding:1rem;
}
.product-grid.list-view .product-card__image {
  flex: 0 0 100px;
}
.product-grid.list-view .product-card__image img {
  width: 100%;
  height: auto;
}
.product-grid.list-view .product-card__info {
  flex: 1;
  padding: 0.5rem 0;
}
/* FOOTER */
.footer { 
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  background-color: var(--clr-grey-5);
  padding-top: 2rem;
  gap: 1rem;
  position: static;
  width: 100%;
  margin-top: 2rem;
}
.section-1 {
  grid-column: 2/11;
}
.section-2 {
  grid-column: 2/11;
}
.section-3 {
  grid-column: 2/11;
}
.section-4 {
  grid-column: 2/11;
}
.section-5 {
  grid-column: 2/11;
}
.section-6 {
  grid-column: 2/11;
}
.section-bottom {
  grid-column: 2/11;
  text-align: center;
}
.section-bottom p {
  color:var(--clr-grey-1);
}
.footer-content h4 {
  font-family: 'Oswald', sans-serif;
  color: var(--clr-white);
  line-height: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-content ul li a{
  font-family: 'Raleway', sans-serif, Helvetica;
  color: var(--clr-white);
  font-weight: 400;
  font-size: 17px;
  text-transform: none;
  line-height: 2rem;
  margin-right: 1rem;
}
.footer-content ul li a:hover {
  color:var(--clr-grey-1);
}
.footer-content ul li:hover {
  color:var(--clr-grey-1);
}
.footer-content p  {
  color:var(--clr-white);
  font-family: 'Raleway', sans-serif, Helvetica;
}
.footer-content p a {
  color:var(--clr-white)
}
.shipping-logos {
  display:flex;
  flex-wrap: wrap;
  gap:0.5rem
}
.payment-logos {
  margin: 1rem 0rem;
  display: flex;
  justify-content: center;
}
.payment-logos img {
  height: 30px;
  margin: 0 8px;
}
/* WISHLIST */
.wishlist-item {
  position: relative;
  display: flex;
  gap: 0.5rem;
  padding: 1rem 2rem 1rem 1rem;
  background: var(--clr-white);
  border-radius: 0.5rem;
  box-shadow: var(--light-shadow);
}
.wishlist-item img {
  width: 133px;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}
.wishlist-item__title {
  font-size: 1rem;
  margin: 0 0 0.25rem;
  font-weight: 600;
}
.prijs {
  font-size: 1.5rem;
  color: var(--clr-primary-4);
  font-weight: bold;
  margin-bottom: 1rem;
}
.wishlist-item__prijs {
  font-size: 1rem;
  color: var(--clr-primary-4);
  font-weight: bold;
  margin-bottom: 1rem;
}
.wishlist-item__remove{
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: transparent;
  border: none;
  color: var(--clr-grey-1);
  font-size: 1.2rem;
  padding: 0.25rem;
}
.wishlist-item__remove i {
  pointer-events: none;
}
.wishlist__remove:hover {
  color: var(--clr-red-light);
}
.wishlist-item-add-to-cart {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: transparent;
  border: none;
  color: var(--clr-grey-1);
  font-size: 1.2rem;
  padding: 0.25rem;
}
.wishlist-item-add-to-cart i {
  pointer-events: none;
}
.wishlist-item-add-to-cart:hover {
  color: var(--clr-red-light);
}
/*SIDEBAR FILTER*/
.sidebar-filter {
  display: none; /* standaard verborgen op mobiel */
  flex-direction: column;
  background-color: white;
  position: relative;
}
/* Actieve zichtbaarheid op mobiel */
.sidebar-filter.active {
  display: flex;
}
.close-sidebar {
  background-color: hsl(209, 61%, 16%);
  color: white;
  padding: 1rem;
  font-size: 1rem;
  font-weight: bold;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}
.filter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.filter-option {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  font-weight: bold;
  font-family: 'Raleway', sans-serif;
}
.filter-option input {
  position: absolute;
  opacity: 0;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: var(--clr-grey-9);
  cursor:pointer;
}
.filter-option:hover input ~ .checkmark {
  background-color: #ccc;
}
.filter-option input:checked ~ .checkmark {
  background-color: var(--clr-grey-6);
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.filter-option input:checked ~ .checkmark:after {
  display: block;
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.5rem 0.5rem 0.5rem 0;
  font-size: 0.9rem;
}
.filter-btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--clr-grey-5);
  background-color: var(--clr-grey-10);
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.3s ease;
}
.filter-btn i {
  color: var(--clr-orange);
}
/* PRODUCT-PAGINA */
.product-item-1,
.product-item-2,
.product-item-3,
.product-item-4,
.product-item-5,
.product-item-6
{
  grid-column: 2 / 12;
  margin: 0.5rem 0;
}
.boek-extra-informatie ul li{
  list-style-type: disc;
}
.boek-extra-informatie ul {
  padding-left: 1.5rem;
  margin: 1.5rem;
}
.boek-extra-informatie a {
  color: var(--clr-primary-7);
}
.boek-extra-informatie a:hover {
  text-decoration: underline;
}
.accordion {
  background-color: var(--clr-grey-10);
  color: var(--clr-grey-1);
  padding: 1rem;
  width: 90%;
  border: none;
  text-align: left;
  outline: none;
  transition: 0.4s;
}
.accordion:active {
  background-color: var(--clr-grey-9);
}
.accordion:hover {
  background-color: var(--clr-grey-9);
}
.accordion:after {
  content: '\002B';
  color: var(--clr-grey-1);
  font-weight: bold;
  float: right;
  margin-left: 5px;
}
/*
.active:after {
  content: "\2212";
}*/
.panel-accordion {
  padding: 20px 5px;
  display: none;
  background-color: white;
  overflow: hidden;
}
.panel-accordion p {
  font-size: 15px;
}
.table-container {
  display: flex;
  flex-wrap: wrap;
}
.boek-info-table th {
  text-align: left;
}
.boek-info-table td {
  text-align: left;
}
.table-container ul {
  margin-right:2rem;
}
.specs .table-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 1rem;
}
.specs .table-container{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 1rem;
  justify-content: space-between;
}
.c .p {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 1rem;
}
.specs input:checked ~ .table-container,
.c input:checked ~ .p {
  max-height: 200px; /* of: none, maar dan werkt de animatie niet */
  padding: 1rem;
}
.specs input:checked ~ .table-container {
  max-height: fit-content; /* of: none, maar dan werkt de animatie niet */
  padding: 1rem;
}
@media (min-width: 960px) {
  .nav-right {
    grid-column: 10/12;
   justify-content: end;
  }
  .searchbar {
    grid-column: 4 / 10;
    grid-row:1;
    background-color: transparent;
  }
  /*sidebar*/
  .submenu {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    display: none;
    grid-template-columns: repeat(12, 1fr);
    padding: 2rem 3rem;
    border-top: 1px solid var(--clr-grey-9);
    border-bottom:1px solid var(--clr-grey-9);
    z-index: 3;
  }
  .submenu.show {
    display: grid;
  }
  .submenu-left {
    grid-column: 3/6;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-right: 2px solid var(--clr-grey-8);
  }
  .submenu-left a.active {
    font-weight: bold;  
  }
  .submenu-left a {
    color: var(--clr-grey-4);
    font-size: 1rem;
    text-decoration: none;
    padding:0.5rem;
    transition: all 0.3s ease;
    position: relative;
  }
  .submenu-left a:hover {
    color: var(--clr-grey-1);
    background: var(--clr-grey-10);
    font-weight: bold;
  }
  .submenu-left a::after {
    content: "";
    position: absolute;
    right: 0.75rem;
    transition: all 0.3s ease;
    opacity: 0;
    font-weight: bold;
    color: var(--clr-grey-1);
  }
  .submenu-left a:hover::after,
  .submenu-left a.active::after {
    content: ">";
    opacity: 1;
  }
  .submenu-right {
    grid-column: 6 / 10;
    display: flex;
    gap: 2rem;
    padding-left: 2rem;
    }
  .submenu-right .column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .submenu-right a {
    display: inline-block;
    margin: 0;
    padding: 0.25rem 0.5rem;
    white-space: nowrap;
    color: var(--clr-grey-4);
  }
    .submenu-right a:hover {
    background: var(--clr-grey-10);
    color: var(--clr-grey-1);
    font-weight: bold;
  }
  .btn-container{
    max-width: none;
  }
  /* SIDEBAR FILTER  */
  .sidebar-filter {
    display: flex;
    grid-column: 2 / 4;
    grid-row: 3;
  }
  .close-sidebar {
    display: none;
  }
  .filter-bar {
    grid-column: 9 / 12;
    grid-row: 2;
  }
  .filterbar-btn {
    display: none;
  }
  .title-section {
    grid-row:2;
  }
  .nav-bar {
    grid-column: 1 / 13;
    background-color: var(--clr-grey-9);
    padding: 1rem 0rem 0rem 0rem;
  }
  .nav-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background-color: var(--clr-white);
    padding:1rem;
  }
  .nav-center a {
    display: flex;
    flex-direction: column;
    align-items: center;
    letter-spacing: var(--spacing);
    text-transform: capitalize;
    font-size: 0.875rem;
    color:var(--clr-grey-1);
  }
  .nav-center a i {
    font-size: 25px;
  }
  .logo {
    max-width: none;
  }
  .extra-info {
    grid-column: 3 / 12;
  }
  #menu-btn {
    display:none
  }
  /* PRODUCTEN  */
  .product-grid {
    grid-column: 5 / 12;
    grid-row: 3;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: start;
    align-self: start;
    height: auto;
  }
  .product-card {
    width: 250px;
    flex-direction: column;
    justify-content: space-between;
  }
  .product-card__price-row {
    justify-content: space-between;
  }
  .product-grid.list-view .product-card__image {
    flex: 0 0 180px;
  }
  /* WISHLIST */
  .wishlist-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--clr-grey-10);
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  .wishlist-panel.active {
    transform: translateX(0);
  }
  .favorieten-item {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .favorieten-item img {
    width: 45%;
  }
  .wishlist-item__info {
    width: 45;
  }
  .wishlist-footer {
    justify-content: start;
  }
  /* FOOTER */
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .section-1 {
    grid-column: 2/5;
  }
  .section-2 {
    grid-column: 5/7;
  }
  .section-3 {
    grid-column: 7/9;
  }
  .section-4 {
    grid-column: 9/12;
  }
  .section-5 {
    grid-column: 2/7;
  }
  .section-6 {
    grid-column: 7/12;
    display: flex;
  }
  .product-item-1 {
    grid-area: 4 / 3 / span 3 / 7;
  }
  .product-item-2 {
    grid-area: 4 / 7 / auto / 12;
  }
  .product-item-3 {
    grid-area: 5 / 7 / auto / 12;
  }
  .product-item-4 {
    grid-area: 6 / 7 / auto / 12;
  }
  .product-item-5 {
    grid-area: 7 / 3 / auto / 10;
  }
  .product-item-6 {
    grid-area: 8 / 3 / auto / 10;
    margin-top:2rem;
  }
}
@media (min-width: 1700px) {
.wishlist-panel {
  width:25%;
}
}