/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/
/* Globale achtergrondkleur - zelfde als homepage */
body,
#brx-content,
.brxe-section {
  background-color: #F5F0EC;
}

/* WooCommerce product loop: witte kaarten met schaduw
   Bricks: ul.products.woocommerce > li.product (geen aparte .woocommerce wrapper) */
ul.products li.product {
  display: flex !important;
  flex-direction: column !important;
  background: #ffffff !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07) !important;
  overflow: hidden !important;
  padding: 0 0 16px 0 !important;
  transition: box-shadow 0.2s ease, transform 0.2s ease !important;
}
ul.products li.product:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12) !important;
  transform: translateY(-2px);
}

/* Vaste beeldverhouding 3:4 bovenaan kaart */
ul.products li.product a img,
ul.products li.product img {
  aspect-ratio: 3 / 4 !important;
  object-fit: cover !important;
  width: 100% !important;
  display: block !important;
  border-radius: 0 !important;
}

/* Tekst + knop in de kaart */
ul.products li.product .woocommerce-loop-product__link,
ul.products li.product .woocommerce-LoopProduct-link {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 12px 14px 4px !important;
  text-decoration: none !important;
}
ul.products li.product .woocommerce-loop-product__title {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #333333 !important;
  margin: 0 0 6px !important;
  line-height: 1.4 !important;
}
ul.products li.product .price {
  font-size: 14px !important;
  color: #666666 !important;
  margin-top: auto !important;
  padding: 0 !important;
}

/* Zachte roze knop */
ul.products li.product .button,
ul.products li.product a.button {
  display: block !important;
  margin: 12px 14px 0 !important;
  width: calc(100% - 28px) !important;
  text-align: center !important;
  background-color: #F9D3DC !important;
  color: #333333 !important;
  border: none !important;
  border-radius: 20px !important;
  padding: 8px 16px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  box-shadow: none !important;
  text-decoration: none !important;
}
ul.products li.product .button:hover,
ul.products li.product a.button:hover {
  background-color: #f0b8c8 !important;
  color: #333333 !important;
}


/* Paginatitel spacing - Bello Modo */
#brx-content > h1 {
  margin-top: 2.5rem !important;
  margin-bottom: 1.5rem !important;
}
@media (max-width: 767px) {
  #brx-content > h1 { margin-top: 1.75rem !important; margin-bottom: 1.1rem !important; }
}


/* Shop toolbar - resultaat & sortering onder filterknoppen - Bello Modo */
.bricks-before-shop-loop {
  flex-wrap: wrap !important;
  align-items: center !important;
  row-gap: 1.25rem !important;
}
.bricks-before-shop-loop > div:first-child {
  flex: 0 0 100% !important;
}
.bricks-before-shop-loop .woocommerce-result-count {
  margin: 0 auto 0 0 !important;
}
.bricks-before-shop-loop .woocommerce-ordering {
  margin-left: auto !important;
}
