:root {
  --bg: #f7f3ec;
  --text: #1e1a16;
  --muted: #6f665d;
  --accent: var(--accent);
  --accent-dark: var(--accent-dark);
  --dark: #151515;
  --line: #ddd1c5;
  --card: #fffdf9;
  --shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* voorkomt dat iets breder wordt dan scherm */
* {
  max-width: 100%;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-weight: 600;
}

p {
  font-weight: 400;
  margin: 0 0 1rem;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 4rem 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--dark);
  backdrop-filter: blur(10px);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;

  min-height: 74px;

  gap: 0.4rem;
}

.brand {
  display: flex;
  align-items: center;

  font-size: 1.65rem;
  font-weight: 500;

  letter-spacing: 0.02em;

  color: #ffffff;
  text-decoration: none;

  height: 100%;
}
.menu {
  display: flex;
  gap: 0.75rem;
  align-items: center;

  margin-left: auto;
}

.menu a {
  padding: .6rem .9rem;
  border-radius: 999px;
  color: rgba(255,255,255,0.85);
  background: transparent;
  transition: background .25s ease, color .25s ease;
}

.menu a:hover,
.menu a.active {
  background: var(--accent);
  color: #fff;
}

.cart-badge {
  background: var(--accent);
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.8rem;
  margin-left: 0.35rem;
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(180deg, #201a17 0%, #3d2d26 100%);
  color: #fff;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  min-height: 68vh;
  height: 68vh;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  filter: blur(6px);
  transition: opacity 1.2s ease-in-out, filter 1.2s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide.active {
  opacity: 1;
  filter: blur(0);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.35) 100%);
}

.hero-slide-1 {
  background-image: url('../images/slider/slide1.jpg');
}

.hero-slide-2 {
  background-image: url('../images/slider/slide2.jpg');
}

.hero-slide-3 {
  background-image: url('../images/slider/slide3.jpg');
}

.hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 44px;
  z-index: 3;
}

.hero-content .container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero-actions {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  padding: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: #d6b8ad;
  margin-bottom: 0.8rem;
}

.hero h1,
.page-hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(2.3rem, 6vw, 4.6rem);
  line-height: 1.05;
  margin: 0 0 1rem;
}

.lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.86);
  max-width: 58ch;
}

/* Buttons */
.button,
a.button,
button.button,
input.button,
.button:visited,
a.button:visited {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(245, 92, 54, 0.18);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button:hover,
a.button:hover,
button.button:hover,
input.button:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(245, 92, 54, 0.24);
}

.button-secondary,
a.button-secondary,
button.button-secondary,
.button-secondary:visited,
a.button-secondary:visited {
  background: #fff;
  color: var(--text);
  border-color: #d7ccc3;
  box-shadow: none;
}

.button-secondary:hover,
a.button-secondary:hover,
button.button-secondary:hover {
  background: #f5efe9;
  color: var(--text);
  border-color: #cdbfb4;
  box-shadow: none;
}

.button-small,
a.button-small,
button.button-small {
  min-height: 42px;
  padding: 0.72rem 1rem;
  font-size: 0.95rem;
}

.hero .button,
.hero .button-secondary {
  min-width: 180px;
}

.hero .button-secondary,
.hero a.button-secondary {
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.96);
}

.hero .button-secondary:hover,
.hero a.button-secondary:hover {
  background: #fff;
  color: var(--text);
  border-color: #fff;
}

/* General cards */
.summary-box,
.product-card,
.success-box,
.bank-box,
.empty-box,
.alert {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
	
}

/* Intro homepage */
.intro {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 2rem;
  margin-top: -2rem;
  position: relative;
  z-index: 2;
  align-items: start;
}

.intro-text {
  padding: 1.2rem 0;
}

.intro-text h2 {
  font-size: 2rem;
  line-height: 1.3;
  margin: 0 0 1.2rem;
}

.intro-text h2 span {
  display: block;
  font-weight: 600;
}

.intro-text .lead {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.intro-text .highlight {
  font-weight: 700;
  margin: 1.2rem 0;
  line-height: 1.6;
  color: var(--text);
}

.intro-text p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.75;
}

/* Rechter info-blok homepage smaller en eleganter */

.info-box {
  max-width: 360px;
  width: 100%;
  margin-left: auto;

  background: var(--home-info-bg);
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 24px;

  padding: 36px 34px;

  box-shadow: 0 18px 35px rgba(0,0,0,0.08);

  color: #1e1a16;
}
.info-box h3 {
  margin: 0 0 1.8rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.3;
}

.info-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-box li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 1.45rem;
  line-height: 1.6;
}

.info-box li:last-child {
  margin-bottom: 0;
}

.info-box li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.section-heading h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 2rem;
}

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.product-card {
  overflow: hidden;
}

.product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(135deg, #2b211d, #8a5a4e);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0;
  font-family: Georgia, serif;
  font-size: 1.6rem;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.04);
}

.product-body {
  padding: 1.2rem;
}

.badge {
  display: inline-block;
  background: var(--badge-bg);
  color: var(--badge-text);

  padding: 0.45rem 0.9rem;
  border-radius: 999px;

  font-size: 0.82rem;
  font-weight: 600;

  margin-bottom: 1rem;

  border: 1px solid rgba(0,0,0,.10);
}

.product-body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
}

.product-body .description {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0.8rem 0;
}

.price-large {
  font-size: 1.8rem;
}

.price-info,
.shipping-info {
  font-size: 0.9rem;
  color: #6f665d;
  margin-top: 5px;
  font-weight: 400;
  display: block;
}

.card-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* Hero pages */
.page-hero {
  padding: 4rem 0 3rem;
}

.page-hero-dark {
    background: var(--dark);
}

/* Product detail */
.product-detail {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 4rem;
  align-items: start;
}

.product-detail-image .product-image,
.fallback {
  min-height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
}

.product-meta {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0;
}

.product-meta li {
  margin-bottom: 0.45rem;
}

.buy-box {
  display: flex;
  gap: 1rem;
  align-items: end;
  flex-wrap: wrap;
}

.buy-box input,
.checkout-form input,
.cart-table input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
}

.buy-box label {
  max-width: 120px;
}

/* Cart / checkout */
.cart-layout,
.checkout-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
}

.table-wrap {
  overflow-x: auto;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
}

.cart-table th,
.cart-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.cart-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.summary-box {
  padding: 1.3rem;
  position: sticky;
  top: 96px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
}

.summary-line.total {
  font-size: 1.15rem;
}

.checkout-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.checkout-form label,
fieldset {
  display: block;
  margin-bottom: 1rem;
}

.checkout-form .full {
  grid-column: 1 / -1;
}

fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

fieldset legend {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 1rem;
  text-transform: uppercase;
  color: #1e1a16;
}

.radio {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.radio input {
  width: auto;
}

.success-box,
.bank-box,
.empty-box {
  padding: 1.5rem;
}

.bank-box {
  margin: 1.2rem 0;
}

.alert {
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
  border-color: #e7b3a5;
  background: #fff6f2;
}

.muted {
  color: var(--muted);
}

/* Order management */
.orders-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
}

.orders-table th,
.orders-table td {
  padding: 16px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #ddd6cf;
}

.orders-table th:last-child,
.orders-table td:last-child {
  width: 220px;
}

.order-action-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 190px;
  max-width: 190px;
}

.order-action-form input[type="text"] {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid #d7ccc3;
  border-radius: 8px;
  background: #fff;
  color: var(--text);
}

.order-action-form .button {
  width: 100%;
  min-height: 44px;
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  white-space: normal;
  text-align: center;
}

.status-pill {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

.status-paid {
  background: #e5f3e7;
  color: #256c38;
}

.status-pending {
  background: #fff1df;
  color: #9a5a00;
}

/* Footer */
.site-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    margin-top: 25px;
    padding: 30px 0 20px;
}
.site-footer a {
    color: var(--footer-text);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.footer-copy {
  margin-top: 0.5rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--footer-text);
}

.footer-copy a {
  color: var(--footer-text);
  text-decoration: none;
  transition: color .25s ease;
}

.footer-copy a:hover {
  color: var(--accent);
}
.site-footer .footer-cancel {
    color: var(--accent) !important;
    font-weight: 700;
    text-decoration: none;
}

.site-footer .footer-cancel:hover {
    color: #291e1e !important;
    text-decoration: underline;
}
.footer-socials{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:14px;
    margin:30px 0 20px;
}

.footer-socials a{
    width:42px;
    height:42px;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:var(--accent);

    color:#ffffff !important;
    font-size:18px;

    text-decoration:none;
    transition:all .25s ease;
}

.footer-socials a:hover{
    background:var(--accent-dark);
    color:#ffffff !important;
    transform:translateY(-2px);
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.text-column {
  padding: 1.5rem;
}

.image-column img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.product-slider {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.product-slide {
  display: none;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.product-slide.active {
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 10px 24px rgba(245, 92, 54, 0.28);
}

.slider-btn::before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
}

.slider-prev::before {
  transform: translate(-40%, -50%) rotate(-45deg);
}

.slider-next::before {
  transform: translate(-60%, -50%) rotate(135deg);
}

.slider-prev {
  left: 16px;
}

.slider-next {
  right: 16px;
}

.slider-btn:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 14px 28px rgba(245, 92, 54, 0.35);
}
/* Productkaarten gelijke hoogte */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem;
}

/* Tekstblok groeit mee */
.product-body p {
  flex-grow: 1;
}

/* Knoppen altijd onderaan */
.card-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
  align-items: center;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 0.8rem 1.3rem;
  margin-bottom: 2rem;

  background: #151515;
  color: #ffffff;

  border-radius: 999px;

  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;

  box-shadow: 0 10px 24px rgba(0,0,0,0.12);

  transition:
    background .25s ease,
    transform .25s ease,
    box-shadow .25s ease;
}

.back-link:hover {
  background: var(--accent);
  transform: translateY(-2px);

  box-shadow: 0 16px 30px rgba(0,0,0,0.18);
}
.menu-toggle {
  display: none;
}

.contact-box {
  max-width: 900px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.contact-box h2 {
  margin-top: 0;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}

.contact-form label span {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: inherit;
  font-size: 1rem;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.hidden-field {
  display: none !important;
}
.site-footer a {
  color: #1A1A1A;
  text-decoration: none;

  transition: color .25s ease;
}

.site-footer a:hover {
  color: var(--accent);
}
.checkout-form textarea {
    width: 100%;
    min-height: 120px;
    padding: 0.9rem 1rem;

    border: 1px solid var(--line);
    border-radius: 12px;

    font: inherit;
    resize: vertical;
}
.product-actions {
    min-width: 140px;
}

.product-actions .button {
    display: block;
    width: 100%;
    margin-bottom: 0.4rem;
    text-align: center;
}

.button-delete {
    background: #555;
    color: #fff;
}

.button-delete:hover {
    background: #333;
}
.digital-check {
  display: block;
}

.digital-check label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.digital-check input {
  width: auto;
  margin: 0;
}
.admin-nav {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
}

.admin-nav a {
    text-decoration: none;
    color: #1A1A1A;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-nav a:hover {
    color: var(--accent);
}
select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d8c7bc;
    border-radius: 12px;
    background: #fff;
    font-size: 16px;
    color: #1A1A1A;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23555' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5L8 12l6.5-6.5' stroke='%23555' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}
input[type="file"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #d8c7bc;
    border-radius: 12px;
    background: #fff;
    font-size: 15px;
    color: #555;
}

input[type="file"]::file-selector-button {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    margin-right: 12px;
    cursor: pointer;
    font-weight: 600;
}

input[type="file"]::file-selector-button:hover {
    background: var(--accent-dark);
}
input[type="color"] {
    width: 100%;
    height: 52px;
    padding: 6px;
    border: 1px solid #d8c7bc;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
}

input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 0;
}

input[type="color"]::-webkit-color-swatch {
    border: none;
    border-radius: 8px;
}
.page-hero-dark,
.page-hero-dark h1,
.page-hero-dark p,
.page-hero-dark .lead,
.page-hero-dark .eyebrow {
    color: #fff !important;
}
.home-intro-text {
    padding: 1.4rem;
    border-radius: 16px;
    line-height: 1.7;
    margin-top: 1.5rem;
}
.intro-extra {
    line-height: 1.8;
    margin-top: 20px;
}
.info-box ul {
    margin: 15px 0 0 20px;
    line-height: 1.9;
}

.info-box li {
    margin-bottom: 8px;
}
.contact-details {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 50px !important;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.contact-column p {
    line-height: 1.8;
    margin: 0;
}
.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.social-links a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-size: 20px;
}

.social-links a:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.brand-logo img {
    max-height: 120px;
    width: auto;
    display: block;
}
.site-header {
    background: var(--menu-bg);
}

.site-header .nav {
    background: var(--menu-bg);
}

.site-header .menu {
    background: var(--menu-bg);
}
.content-block {
    margin-bottom: 50px;
}

.content-block:last-child {
    margin-bottom: 0;
}
.terms-check {
    margin: 20px 0;
}

.terms-check label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    max-width: 100%;
}

.terms-check input {
    margin-top: 5px;
    width: auto;
}

.terms-check span {
    line-height: 1.6;
}
.product-short {
    margin: 10px 0 15px;
    color: #666;
    font-size: 0.92rem;
    line-height: 1.5;
    min-height: 90px;
}

/* Responsive */
@media (max-width: 900px) {
  .product-grid,
  .product-detail,
  .cart-layout,
  .checkout-grid,
  .intro,
  .footer-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .intro {
    margin-top: 0;
  }

  .info-box {
    margin-top: 0;
  }

  .checkout-form .form-grid {
    grid-template-columns: 1fr;
  }

  .summary-box {
    position: static;
  }

  .hero .button,
  .hero .button-secondary {
    min-width: 160px;
  }

  .cart-table {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .cart-table th,
  .cart-table td,
  .orders-table th,
  .orders-table td {
    word-wrap: break-word;
    white-space: normal;
  }

  .cart-buttons {
    flex-wrap: wrap;
  }
	.menu-toggle {
  display: none;
} 
	.footer-copy {
    text-align: center;
    padding: 0 1rem;
  } .contact-box {
    padding: 1.4rem;
  }

  .menu {
    gap: 0.45rem;
  }

  .menu a {
    padding: 0.55rem 0.75rem;
    font-size: 1rem;
    white-space: nowrap;
}
    .admin-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px 25px;
    }

    .admin-nav a {
        display: flex;
        align-items: center;
        text-align: left;
        font-size: 0.95rem;
    }
	
	@media (max-width: 768px) {
    .contact-details {
        grid-template-columns: 1fr !important;
    }
}
 
@media (max-width: 640px) {

  html, body {
    overflow-x: hidden;
  }

  .container {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
  }

  .section {
    padding: 2.5rem 0;
  }

  /* NAV */
  .nav {
    flex-direction: column;
    gap: 0.6rem;
    padding: 0.8rem 0;
  }

  .menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }

  /* HERO */
  .hero-slider {
    min-height: 52vh;
    height: 52vh;
  }

  .hero-content {
    bottom: 20px;
  }

  .hero-actions {
    gap: 0.6rem;
  }

  .hero .button,
  .hero .button-secondary {
    min-width: 140px;
    font-size: 0.9rem;
  }

  /* INTRO */
  .intro {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
  }

  .intro-text {
    padding: 0;
  }

  .intro-text h2 {
    font-size: 1.5rem;
    line-height: 1.25;
    margin-bottom: 1rem;
  }

  .intro-text p,
  .intro-text .lead {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* INFO BOX */
  .info-box {
    padding: 1.6rem 1.4rem;
    border-radius: 18px;
    margin-top: 0;
  }

  .info-box h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .info-box li {
    font-size: 0.95rem;
    margin-bottom: 0.9rem;
  }

  /* TITELS */
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    margin-bottom: 1rem;
  }

  .section-heading h2 {
    font-size: 1.5rem;
  }

  .section-heading a {
    font-size: 0.95rem;
  }

  /* PRODUCT GRID */
  .product-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  /* CHECKOUT */
  .checkout-form .form-grid {
    grid-template-columns: 1fr;
  }

  .summary-box {
    position: static;
    margin-top: 1.5rem;
  }

  /* WINKELWAGEN FIX */
  .cart-table {
    width: 100%;
  }

  .cart-table th,
  .cart-table td {
    white-space: normal;
    word-break: break-word;
  }

  .cart-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cart-buttons .button {
    width: 100%;
  }  
	.cart-table,
  .cart-table thead,
  .cart-table tbody,
  .cart-table tr,
  .cart-table th,
  .cart-table td {
    display: block;
    width: 100%;
  }

  .cart-table thead {
    display: none;
  }

  .cart-table {
    border-radius: 18px;
    overflow: hidden;
  }

  .cart-table tr {
    background: var(--card);
    border-bottom: 1px solid var(--line);
    padding: 1rem 0;
  }

  .cart-table td {
    border: 0;
    padding: 0.45rem 1rem;
    text-align: left;
  }

  .cart-table td::before {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 0.2rem;
  }

  .cart-table td:nth-child(1)::before {
    content: "Product";
  }

  .cart-table td:nth-child(2)::before {
    content: "Prijs";
  }

  .cart-table td:nth-child(3)::before {
    content: "Aantal";
  }

  .cart-table td:nth-child(4)::before {
    content: "Totaal";
  }

  .cart-table input[type="number"],
  .cart-table input[type="text"] {
    max-width: 140px;
  }

  .cart-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .cart-buttons .button,
  .cart-buttons .button-secondary {
    width: 100%;
  }
	.orders-table,
  .orders-table thead,
  .orders-table tbody,
  .orders-table tr,
  .orders-table th,
  .orders-table td {
    display: block;
    width: 100%;
  }

  .orders-table thead {
    display: none;
  }

  .orders-table tr {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .orders-table td {
    border: none;
    padding: 0.4rem 0;
    word-break: break-word;
  }

  /* Labels voor duidelijkheid */
  .orders-table td::before {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 2px;
  }

  .orders-table td:nth-child(1)::before {
    content: "Order";
  }

  .orders-table td:nth-child(2)::before {
    content: "Klant";
  }

  .orders-table td:nth-child(3)::before {
    content: "Items";
  }

  .orders-table td:nth-child(4)::before {
    content: "Status";
  }

  .orders-table td:nth-child(5)::before {
    content: "Acties";
  }

  /* Actie formulier netjes onder elkaar */
  .order-action-form {
    width: 100%;
    max-width: 100%;
  }

  .order-action-form input {
    width: 100%;
  }

  .order-action-form .button {
    width: 100%;
  }
	.orders-table {
    width: 100%;
    overflow: hidden;
  }

  .orders-table tr {
    width: 100%;
    box-sizing: border-box;
  }

  .orders-table td {
    width: 100%;
    box-sizing: border-box;
  }

  /* voorkomt dat lange tekst de layout breekt */
  .orders-table td,
  .orders-table td * {
    overflow-wrap: break-word;
    word-break: break-word;
  }
	.page-hero h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .page-hero .lead {
    font-size: 0.95rem;
  }
.slider-btn {
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
  }

  .slider-prev {
    left: 10px;
  }

  .slider-next {
    right: 10px;
  }
	.nav {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
  }

  .menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem 1.2rem;
  }

  .menu a {
    font-size: 1rem;
    padding: 0.45rem 0.8rem;
  }
	.site-header .nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-height: 72px;
    padding: 0.8rem 0;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 999px;
    background: var(--accent);
    cursor: pointer;
    padding: 0;
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    margin: 0 auto;
    border-radius: 999px;
  }

  .site-header .menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #2c2c2c;
    padding: 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 35px rgba(0,0,0,0.2);
    z-index: 50;
  }

  .site-header .menu.is-open {
    display: grid;
    gap: 0.6rem;
  }

  .site-header .menu a {
    display: block;
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    text-align: center;
  }

  .site-header .menu a:hover,
  .site-header .menu a.active {
    background: var(--accent);
    color: #fff;
  }
	@media (max-width: 768px) {
  .contact-details {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 25px !important;
  }
}
}