@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  scroll-behavior: smooth;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  background-color: #ffffff;
}

button:hover,
a:hover {
  opacity: 0.95;
}

nav {
  background: #0a0a0a;
  padding: 25px 30px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav .logo {
  font-size: 24px;
  font-weight: 600;
  color: #fefefe;
  text-decoration: none;
  letter-spacing: 4px;
}

nav div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

nav i {
  color: #fff;
}

/* Promo banner */
.promo-banner {
  background-color: #422e23;
  color: #fff;
  font-weight: 450;
  font-size: 12px;
  text-align: center;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

#banner-text {
  position: absolute;
  opacity: 1;
  transition: opacity 0.8s ease;
  white-space: nowrap;
}

@keyframes slide-up {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.banner-subtext {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 25px auto 50px;
    font-size: 1.25rem;
    font-weight: 500;
    color: #333;
    max-width: 900px;
    line-height: 1.8;
    padding: 0 15px;
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Eenvoudige fade-up animatie */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Winkelmand knop */
.cart-btn {
  position: relative;
  font-size: 20px;
  color: #fefefe;
  text-decoration: none;
}

.cart-btn .count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #27ae60;
  color: #fff;
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
}

/* Container */
.container {
  padding: 20px;
  max-width: 1200px;
  margin: 25px auto;
}

.clothing_categorie {
  font-size: 32px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

/* Producten grid voor index.php */
.products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.product {
  background-color: #f5f5f5;
  border: 1px solid #dddddd0a;
  width: 375px;
  padding: 30px 0px;
  text-align: center;
  transition: 0.3s;
}

.product img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  border-radius: 8px;
}

.product .product-name {
  margin-bottom: 10px;
  font-size: 18px;
  color: #333;
}

.product .product-price {
  font-size: 16px;
  color: #27ae60;
  font-weight: bold;
}

/* Geen afbeelding fallback */
.no-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
}

/* Footer */
.footer {
  background: #0a0a0a;
  color: #ddd;
  padding: 40px 20px 20px;
  margin-top: auto;
  font-size: 14px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a,
.footer-col p {
  color: #a3a3a3;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 13px;
  color: #aaa;
}

/* Betaalmethodes */
.payment-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0 0 10px 0;
}
