/*
Theme Name: Druk Idee Webshop
Theme URI: https://drukidee.com/
Author: Druk Idee
Description: Eenvoudig, professioneel en WooCommerce-ready WordPress thema voor de Druk Idee webshop.
Version: 1.0
Text Domain: drukidee
*/

:root {
  --green: #16843b;
  --dark: #222;
  --light: #f7f7f7;
  --border: #e4e4e4;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark);
  background: #fff;
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-branding img {
  max-height: 65px;
  width: auto;
  display: block;
}

.site-title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
}

.site-title a {
  color: var(--dark);
  text-decoration: none;
}

.cart-link {
  color: #fff;
  background: var(--green);
  padding: 11px 18px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
}

.site-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 45px 24px 70px;
}

.hero {
  text-align: center;
  margin-bottom: 40px;
}

.hero h1 {
  margin: 0 0 10px;
  font-size: clamp(30px, 5vw, 46px);
}

.hero p {
  margin: 0;
  color: #666;
  font-size: 18px;
}

.woocommerce ul.products {
  margin-top: 25px;
}

.woocommerce ul.products li.product {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 15px;
  background: #fff;
  transition: box-shadow .2s ease, transform .2s ease;
}

.woocommerce ul.products li.product:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,.08);
  transform: translateY(-2px);
}

.woocommerce ul.products li.product a img {
  border-radius: 5px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: var(--dark);
  font-size: 17px;
}

.woocommerce ul.products li.product .price {
  color: var(--dark);
  font-weight: 700;
}

.woocommerce ul.products li.product a.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--green);
  color: #fff;
  border-radius: 5px;
  padding: 11px 16px;
  font-weight: 700;
}

.woocommerce ul.products li.product a.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: #116a30;
  color: #fff;
}

.site-footer {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 25px;
  color: #777;
  font-size: 14px;
}

@media (max-width: 600px) {
  .header-inner {
    padding: 16px;
  }

  .site-main {
    padding: 30px 16px 50px;
  }

  .site-branding img {
    max-height: 50px;
  }

  .cart-link {
    padding: 9px 12px;
    font-size: 14px;
  }
}
