html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  *, *:before, *:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
    }

*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}
body{
    font-family: 'Poppins';
}
/* 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;
}

a{
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-weight: bold;
    text-shadow: rgb(0, 0, 0)
}
p{
    color: rgb(0, 0, 0);
}
.container{
    max-width: 100%;
}
.row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
}
article{
  transition: transform 0.3s ease;
}

article:hover {
  transform: scale(1.1);
}

.banner img {
    width: 100%;
    height: 1200px;
    width: 3000px;
}
.banner .btn {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ff6600;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.cart-img{
    height: 40px;
    width: 40px;
}
.col-2{
    width: 50%;
    padding-left: 20px;
}
.col-2-5 {
    width: 50%;
}
.col-2 h1{
    font-size: 50px;
    line-height: 60px;
    
}
.btn{
    display: inline-block;
    background: rgb(92, 85, 82);
    color: rgb(0, 0, 0);
    padding: 8px 30px;
    border-radius: 30px;
    transition: 0.5s ease;
}

.btn:hover{
    background: rgb(71, 66, 63);
}

.logo img{
    width: 200px;
    max-width: 100%;
    position: absolute;
    margin-top: -60px;
    max-height: 120px;
}

.categories{
    margin: 70px 0;
}
.col-3{
    flex: 30%;
    min-width: 250px;
    margin-bottom: 30px;
}
.col-3 img{
    width: 100%;
}
.small-container{
    max-width: 1080px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}
.col-4{
    flex-basis: 25%;
    padding: 10px;
    min-width: 200px;
    margin-bottom: 50px;
    transition: transform 0.5s;
}
.col-4 img{
    width: 400px;
    height: 250px;
}
.title{
    text-align: center;
    margin: 0 auto 80px;
    position: relative;
    line-height: 60px;
    color: rgb(220, 20, 60);
}
.title::after{
    content: '';
    background: rgb(216, 112, 147);
    width: 80px;
    height: 5px;
    border-radius: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
h4{
    color: rgb(0, 0, 0);
    font-weight: normal;
    text-align: center;
}
.col-4 p{
    font-size: 14px;
    text-align: center;
}
.col-4:hover{
    transform: translateY(-5px);
}
.brands{
    margin:100px auto;
}
.col-5{
    width:160px
}
.col-5 img{
    width: 100%;
    cursor: default;
}

.afbeeldingen {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.afbeeldingen img {
    width: 300px;
    height: 120px;
    gap: 5px;
}

/* PRODUCT PAGE */

html{
    font-family: 'Lato', sans-serif;
}

img{
    max-width: 100%;
    height: auto;
}

.wrapper{
  width: 960px;
  margin: 100px auto;
}

.col-1-2{
  float: left;
  width: 50%;
}

.product-wrap{
  margin: 0 auto;
  width: 350px;
}

.product-price{
    font-weight: bold;
}
.product-info{
  h2{
    padding-bottom: 15px;
    font-size: 32px; 
    border-bottom: 1px solid rgb(217, 217, 217);
  }
  
  .desc{ 
    margin-top: 25px;
    font-size: 16px;
    line-height: 1.6;
    width: 800px;
  }
  
  .sizing-list{
    margin-top: 25px;
    padding: 0px;
    list-style-type: none; 
  }
  
  .size{ 
    display: inline;
    margin-right: 10px;
    padding: 10px 15px; 
    color: rgb(194, 194, 194);
    border: 1px solid rgb(194, 194, 194);
    cursor: pointer;
    
    &.active{
      color: rgb(255, 255, 255);
      background-color: rgb(194, 194, 194);
    }
  }
   
}

.button{
  display: inline-block;
  margin-top: 35px;
  padding: 12px 25px;
  font-size: 16px;
  background-color: rgb(0, 128, 0);
  color: rgb(255, 255, 255);
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease;
}

.button:hover{
  background-color: rgb(50, 50, 50);
}