/*
Theme Name: Mijn Simple Theme
Version: 1.0
*/

/* =========================
   ABOUT
========================= */
.about-page {
    min-height: calc(100dvh - 150px); /* bijvoorbeeld headerhoogte */
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price{
	color:#000;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price, .woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price{
	color:#000;
	font-size:16px;
}

.about-page {
    max-width: 1600px;
    margin: 0 auto;
    padding: 70px 20px;
	padding-bottom:0px;
    box-sizing: border-box;
}
a{color:#000}

.about-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 20px;
}

.about-title h1 {
    margin: 0;
}

.about-content p {
    margin: 0;
    max-width: 700px;
}

.about-image {
    width: 100%;
}

.about-image img {
   width: 100%;
    height: 700px;
    background-size: cover;
    object-position: center;
    display: block;
	background-image: url("/wp-content/uploads/2026/06/Scherm­afbeelding-2026-06-01-om-21.05.09-scaled.png");
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .about-top {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .about-image img {
        height: 700px;
    }
}
.about-content{
	margin-bottom:20px;
}

.rethink-sans{
  font-family: "Rethink Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

h1,h2,h3,h4,h5{
	font-weight:400;
	font-size:16px;
}

body {
  margin: 0;
  font-family: "Rethink Sans", sans-serif;
  background: #fff;
  color: #111;
  line-height: 1.5;
  min-height: 100vh !important;
}

/* =========================
   HEADER
========================= */

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px;
  gap: 20px;
}

.logo {
  font-weight: bold;
  font-size: 20px;
  flex: 1;
}

.logo a {
  color: #000;
  text-decoration: none;
  font-size: 25px;
	font-weight:500;
}

.nav {
  flex: 2;
  display: flex;
  justify-content: right;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav a {
  text-decoration: none;
  color: #111;
}

.current-menu-item > a,
.current_page_item > a {
    border-bottom:1px solid #000;
}

.header-button {
  display: none;
  justify-content: end;
}

.header-button a {
  padding: 10px 16px;
  background: #000;
  color: #fff !important;
  text-decoration: none;
  border-radius: 60px;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  padding: 0;
color:#000;
}


/* =========================
   HOME GRID (ALIGNED)
========================= */

.home-images {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 120px;
  gap: 16px;

  max-width: 1600px;
  margin: 0 auto;
  padding: 0px 20px;

  box-sizing: border-box;
}

.home-images img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #f2f2f2;
}

/* ===== GRID VARIATIES ===== */

.hero {
  grid-column: span 6;
  grid-row: span 7;
}

.half {
  grid-column: span 3;
  grid-row: span 5;
}

.third {
  grid-column: span 2;
  grid-row: span 4;
}

.wide {
  grid-column: span 3;
  grid-row: span 6;
}

.small {
  grid-column: span 2;
  grid-row: span 4;
}

.large {
  grid-column: span 4;
  grid-row: span 7;
}


/* =========================
   FOOTER
========================= */

.site-footer {
  display: flex;
  justify-content: space-between;
  padding: 20px 20px;
}

.site-footer a {
  color: #000;
  text-decoration: none;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

  .site-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    background: #fff;
    padding: 20px 0;
  }

  .nav.active {
    display: block;
	  z-index:999;
	  border-bottom:1px solid #f2f2f2;
  }

  .nav ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .header-button {
    display: none;
  }

  .home-images {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 15px;
    padding: 0px 20px;
  }

  .hero,
  .half,
  .third,
  .wide,
  .small,
  .large {
    grid-column: span 1;
    grid-row: auto;
  }

  .home-images img {
    width: 100%;
    height: auto;
  }


  .about-wrapper {
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

#primary{

    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 120px;
    gap: 16px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0px 20px;
    box-sizing: border-box;
}
#sidebar{
	display:none;
}
.product_meta{
	display:none;
}
.woocommerce-result-count,.woocommerce-ordering{
	display:none;
}


.woocommerce div.product form.cart .button{
	background:#000;
	border-radius:0px;
	padding:20px 60px;
	font-family: "Rethink Sans", sans-serif!important;
}
.woocommerce .quantity .qty{
	font-family: "Rethink Sans", sans-serif;
}

.wc-block-cart__submit-container{
	    text-decoration: none;
    background: #000;
	line-height:50px;
    color: #fff;
}
.wc-block-components-button__text{
	color:#fff;
}
.wc-block-components-button:not(.is-link){
	background:#000;
	font-size:15px;
}
.single-product .site-main {
  display: block;
}

.single-product .product {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.single-product .woocommerce-notices-wrapper {
  width: 100%;
}
.wc-block-cart__empty-cart__title.with-empty-cart-icon:before{
	display:none;
}

@media (max-width: 767px) {
  .single-product .product {
    display: block !important;
  }

  .single-product .woocommerce-product-gallery,
  .single-product .summary {
    width: 100% !important;
    flex: none !important;
  }
}
.woocommerce div.product form.cart div.quantity{
	display:none;
}

@media (max-width: 767px) {
  .single-product form.cart {
    width: 100%;
  }

  .single-product form.cart .button,
  .single-product .single_add_to_cart_button {
    width: 100%;
    display: block;
  }

  .single-product form.cart .quantity {
    width: 100%;
    margin-bottom: 10px;
  }

  .single-product form.cart .quantity input {
    width: 100%;
  }
}

