/* =================== */
/* MAIN BANNER STYLING */
/* =================== */
#main-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}

/* Desktop Banner */
.banner-desktop {
  display: flex;
  width: 100%;
  height: 100vh;
  position: relative;
}

/* Gradient overlay voor desktopbanner */
.banner-desktop::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(26,26,26,0.7), transparent);
  z-index: 5;
}

.banner-half {
  width: 50%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

.banner-text-overlay {
  position: absolute;
  left: 50%;
  top: 85%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  color: #fff;
  pointer-events: none;
  z-index: 10;
}

.banner-text-overlay h1,
.banner-text-overlay p {
  margin: 0;
  padding: 0.5rem;
  text-shadow: 1px 1px 2px rgba(26,26,26,0.7);
}

/* Mobiele Banner */
.banner-mobile {
  display: none;
  width: 100%;
  height: 50vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  position: relative;
}

.banner-mobile::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(26,26,26,0.7), transparent);
  z-index: 5;
}

.banner-text-overlay-mobile {
  position: absolute;
  bottom: 5%;
  width: 100%;
  text-align: center;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(26,26,26,0.7);
  z-index: 10;
}

.banner-text-overlay-mobile h1,
.banner-text-overlay-mobile p {
  margin: 0;
  padding: 0.5rem;
}

@media (max-width: 768px) {
  .banner-desktop { display: none; }
  .banner-mobile { display: block; }
}

/* ======================= */
/* RECLAMEBLOKKEN (AD-BLOCK) */
/* ======================= */
.ad-block.white-background {
  background-color: #ffffff;
  color: #1a1a1a;
  margin: 1rem 0;
  position: relative;
}

.ad-desktop {
  display: flex;
  width: 100%;
  height: 55vh;
}

.ad-left,
.ad-right {
  width: 50%;
  height: 100%;
}

.ad-left {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}

.ad-text {
  text-align: center;
  color: #1a1a1a;
  padding: 1rem;
}

.ad-right {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.ad-left.image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.ad-mobile {
  display: none;
  width: 100%;
}

.ad-mobile-image {
  width: 100%;
  height: 44vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.ad-mobile-text {
  width: 100%;
  text-align: center;
  color: #1a1a1a;
  background-color: #ffffff;
  padding: 1rem;
}

@media (max-width: 768px) {
  .ad-desktop { display: none; }
  .ad-mobile { display: block; }
}

/* ============================= */
/* PRODUCTEN & OVERIGE SECTIES   */
/* ============================= */
.dark-background {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 0.3rem 0.5rem;
}

section {
  padding: 0.3rem 0.5rem;
  margin-bottom: 0.5rem;
}

.header-image {
  width: 100%;
  max-width: 100vw;
  height: auto;
  display: block;
  margin: 0 auto;
}

#releases,
#top-picks-heren,
#top-picks-dames,
#top-picks-kinderen {
  background-color: #1a1a1a;
  color: #ffffff;
}

#releases h2,
#top-picks-heren h2,
#top-picks-dames h2,
#top-picks-kinderen h2 {
  margin: 0.2rem;
  font-size: 1.4rem;
  padding-bottom: 0.5rem;
}

.product-container {
  display: flex;
  align-items: center;
  position: relative;
}

.product-list {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 0.5rem;
  padding: 1rem 0;
  width: 100%;
}

.product-list::-webkit-scrollbar { 
  display: none; 
}

/* Standaard (desktop): 5 producten per rij */
.product {
  flex: 0 0 calc(20% - 1rem);
  max-width: calc(20% - 1rem);
  padding: 0.5rem;
  text-align: center;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(26,26,26,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(26,26,26,0.2);
  background-color: #f3f3f3;
}

.product img {
  width: 100%;
  height: 285px;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.product img:hover {
  transform: scale(1.05);
}

.product h3 {
  margin: 0.5rem 0 0.25rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
}

.product p {
  margin: 0.25rem 0;
  font-size: 1rem;
  color: #555;
}

.product button {
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  color: #fff;
  background-color: #333;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.product button:hover {
  background-color: #ffd700;
  color: #333;
}

.dark-background .product {
  background-color: #ffffff;
  color: #1a1a1a;
}

.dark-background .product:hover {
  background-color: #ffffff;
  box-shadow: 0 6px 12px rgba(255,255,255,0.2);
}

.dark-background .product h3,
.dark-background .product p {
  color: #1a1a1a;
}

.dark-background .product button {
  background-color: #333;
  color: #ffffff;
}

.dark-background .product button:hover {
  background-color: #ffd700;
  color: #333;
}

/* Responsieve breakpoints */
/* Tablets: 3 kolommen */
@media (max-width: 1024px) {
  .product {
    flex: 0 0 calc(33.33% - 1rem);
    max-width: calc(33.33% - 1rem);
  }
}

/* Mobiel: 2 kolommen, ook op zeer kleine schermen */
@media (max-width: 768px) {
  .product {
    flex: 0 0 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
  .product img {
    height: 200px;
  }
}

/* ================= */
/* SCROLLPIJLEN      */
/* ================= */
.arrow-left,
.arrow-right {
  font-size: 1.5rem;
  color: #e0e0e0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(26,26,26,0.5);
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  padding: 0.3rem;
  z-index: 10;
  pointer-events: auto;
  cursor: pointer;
}

.arrow-left {
  left: 20px;
}

.arrow-right {
  right: 20px;
}

.arrow-left:hover,
.arrow-right:hover {
  background-color: #ffd700;
  color: #333;
}
