/* =============================================================
   MD Springkussens - hoofdstylesheet
   Mobile-first, responsive, Open Sans, zalmrood-oranje huisstijl
   ============================================================= */

/* Reset & basis */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    min-height: 100vh;
    font-family: var(--font-body);
    font-size: var(--fs-base);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input, button, textarea, select {
    font: inherit;
    color: inherit;
}

button {
    background: none;
    border: none;
    cursor: pointer;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover,
a:focus-visible {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

ul, ol {
    list-style: none;
}

:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Design tokens */
:root {
    /* Kleuren uit CLAUDE.md */
    --color-primary: #fc6e51;
    --color-primary-dark: #fb441f;
    --color-primary-light: #fc836a;
    --color-secondary: #b12103;
    --color-bg: #ffffff;
    --color-bg-tint: #f2f2f2;
    --color-bg-soft: #fff4f1;
    --color-text: #404040;
    --color-muted: #737373;
    --color-line: #d1d1d1;
    --color-card: #ffffff;
    --color-danger: #c8322c;
    --color-dark: #1a1a1a;

    /* Typografie */
    --font-body: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-heading: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --fs-base: 1rem;
    --fs-sm: 0.875rem;
    --fs-lg: 1.125rem;
    --fs-h1: clamp(2rem, 6vw, 3.5rem);
    --fs-h2: clamp(1.6rem, 4vw, 2.5rem);
    --fs-h3: clamp(1.25rem, 2.5vw, 1.5rem);

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;

    /* Layout */
    --container: 1180px;
    --container-narrow: 820px;
    --container-padding: 1.25rem;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-pill: 999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(20, 20, 20, 0.06);
    --shadow-md: 0 8px 24px rgba(252, 110, 81, 0.18);
    --shadow-lg: 0 20px 40px rgba(20, 20, 20, 0.12);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s ease;
}

/* Typografie */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-dark);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p {
    color: var(--color-muted);
}

p + p {
    margin-top: 1em;
}

strong {
    color: var(--color-dark);
    font-weight: 700;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--container-padding);
}

.container--narrow {
    max-width: var(--container-narrow);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary);
    color: #fff;
    padding: 8px 16px;
    z-index: 1000;
    transition: top var(--transition-base);
}

.skip-link:focus {
    top: 0;
    color: #fff;
}

/* Knoppen */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    padding: 0.85rem 1.6rem;
    font-weight: 700;
    font-size: var(--fs-base);
    line-height: 1;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: background var(--transition-base), transform var(--transition-fast), box-shadow var(--transition-base), color var(--transition-base), border-color var(--transition-base);
    text-align: center;
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-primary);
    color: #fff;
    box-shadow: var(--shadow-md);
}

.btn--primary:hover,
.btn--primary:focus-visible {
    background: var(--color-primary-dark);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

.btn--secondary {
    background: #fff;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
    background: var(--color-primary);
    color: #fff;
    text-decoration: none;
}

.btn--ghost {
    background: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-line);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
    border-color: var(--color-primary);
    color: var(--color-primary);
    text-decoration: none;
}

.btn--lg {
    padding: 1rem 2rem;
    font-size: var(--fs-lg);
}

.btn--full {
    width: 100%;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: saturate(1.4) blur(10px);
    border-bottom: 1px solid var(--color-line);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding-block: 0.75rem;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-logo img {
    width: auto;
    height: 56px;
}

.site-logo__text {
    display: none;
}

/* Desktop nav */
.site-nav {
    display: none;
}

.site-nav__list {
    display: flex;
    gap: 1.75rem;
    align-items: center;
}

.site-nav__link {
    color: var(--color-dark);
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
}

.site-nav__link:hover,
.site-nav__link:focus-visible,
.site-nav__link.is-active {
    color: var(--color-primary);
    text-decoration: none;
}

.site-nav__link.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: var(--color-primary);
    border-radius: 3px;
}

.site-header__cta {
    display: none;
}

/* Hamburger */
.nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
}

.nav-toggle__bar {
    position: relative;
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: transform var(--transition-base), opacity var(--transition-fast);
}

.nav-toggle__bar::before,
.nav-toggle__bar::after {
    content: "";
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: transform var(--transition-base);
}

.nav-toggle__bar::before { top: -7px; }
.nav-toggle__bar::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .nav-toggle__bar {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobiel menu overlay */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: #fff;
    padding: 6rem 1.5rem 2rem;
    transform: translateX(100%);
    transition: transform var(--transition-base);
    z-index: 40;
    overflow-y: auto;
}

.mobile-nav[data-open="true"] {
    transform: translateX(0);
}

.mobile-nav__list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-nav__link {
    display: block;
    padding: 1rem 0.5rem;
    color: var(--color-dark);
    font-size: 1.25rem;
    font-weight: 700;
    border-bottom: 1px solid var(--color-line);
}

.mobile-nav__link:hover,
.mobile-nav__link.is-active {
    color: var(--color-primary);
    text-decoration: none;
}

.mobile-nav__cta {
    margin-top: 1.5rem;
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fff4f1 0%, #ffe4dc 100%);
    padding: var(--space-xl) 0 var(--space-2xl);
}

.hero__inner {
    display: grid;
    gap: var(--space-lg);
    align-items: center;
}

.hero__title {
    font-size: var(--fs-h1);
    line-height: 1.1;
}

.hero__title span {
    color: var(--color-primary);
    display: inline-block;
}

.hero__subtitle {
    margin-top: 1rem;
    font-size: var(--fs-lg);
    color: var(--color-muted);
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.hero__usp {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 2rem;
    font-size: var(--fs-sm);
    color: var(--color-dark);
}

.hero__usp li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
}

.hero__usp li::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background: var(--color-primary);
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M9 16.17 4.83 12l-1.41 1.41L9 19 21 7l-1.41-1.41z'/></svg>") no-repeat center / contain;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M9 16.17 4.83 12l-1.41 1.41L9 19 21 7l-1.41-1.41z'/></svg>") no-repeat center / contain;
}

.hero__media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3;
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-primary);
    color: #fff;
    font-weight: 700;
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius-pill);
    font-size: var(--fs-sm);
    box-shadow: var(--shadow-md);
}

/* Secties */
.section {
    padding: var(--space-xl) 0;
}

.section--tint {
    background: var(--color-bg-tint);
}

.section--soft {
    background: var(--color-bg-soft);
}

.section__heading {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.section__eyebrow {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: var(--fs-sm);
    margin-bottom: 0.5rem;
}

.section__title {
    max-width: 720px;
    margin-inline: auto;
}

.section__lead {
    max-width: 640px;
    margin: 1rem auto 0;
    font-size: var(--fs-lg);
}

/* USP grid */
.usps {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: 1fr;
    margin-top: var(--space-lg);
}

.usp-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: var(--space-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-line);
}

.usp-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--color-bg-soft);
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.usp-card__icon svg {
    width: 28px;
    height: 28px;
}

.usp-card h3 {
    margin-bottom: 0.4rem;
}

/* Product grid */
.product-grid {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: 1fr;
    margin-top: var(--space-lg);
}

.product-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-line);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-card__media {
    aspect-ratio: 4 / 3;
    background: var(--color-bg-tint);
    overflow: hidden;
}

.product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card__media img {
    transform: scale(1.05);
}

.product-card__body {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.75rem;
}

.product-card__title {
    font-size: 1.25rem;
}

.product-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: var(--fs-sm);
    color: var(--color-muted);
}

.product-card__meta span {
    background: var(--color-bg-tint);
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-pill);
}

.product-card__desc {
    flex: 1;
    font-size: var(--fs-sm);
}

.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.5rem;
}

.product-card__price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.product-card__price small {
    display: block;
    font-size: var(--fs-sm);
    color: var(--color-muted);
    font-weight: 400;
}

/* Reviews */
.reviews {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: 1fr;
    margin-top: var(--space-lg);
}

.review-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: var(--space-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-line);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.review-card__stars {
    color: var(--color-primary);
    font-size: 1.15rem;
    letter-spacing: 2px;
}

.review-card__body {
    font-style: italic;
    color: var(--color-text);
}

.review-card__author {
    font-weight: 700;
    color: var(--color-dark);
    margin-top: auto;
}

.review-card__author small {
    display: block;
    font-weight: 400;
    color: var(--color-muted);
}

.reviews-summary {
    text-align: center;
    margin-bottom: var(--space-md);
}

.reviews-summary__score {
    display: inline-flex;
    align-items: baseline;
    gap: 0.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.reviews-summary__score small {
    font-size: 1rem;
    color: var(--color-muted);
    font-weight: 400;
}

.reviews-summary__stars {
    color: var(--color-primary);
    letter-spacing: 3px;
    font-size: 1.5rem;
    margin-block: 0.25rem;
}

/* FAQ */
.faq {
    max-width: 780px;
    margin-inline: auto;
}

.faq__item {
    border-bottom: 1px solid var(--color-line);
}

.faq__question {
    width: 100%;
    padding: 1.25rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    font-weight: 700;
    color: var(--color-dark);
    font-size: var(--fs-lg);
}

.faq__question:hover {
    color: var(--color-primary);
}

.faq__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform var(--transition-base);
}

.faq__icon::before,
.faq__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--color-primary);
    transform: translate(-50%, -50%);
}

.faq__icon::before {
    width: 16px;
    height: 2px;
}

.faq__icon::after {
    width: 2px;
    height: 16px;
    transition: transform var(--transition-base);
}

.faq__item[data-open="true"] .faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq__answer-inner {
    padding: 0 0 1.25rem;
    color: var(--color-muted);
}

.faq__item[data-open="true"] .faq__answer {
    max-height: 500px;
}

/* Over ons */
.about-grid {
    display: grid;
    gap: var(--space-lg);
    grid-template-columns: 1fr;
    align-items: center;
}

.about-grid__media {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4 / 3;
}

.about-grid__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-grid__body h2 {
    margin-bottom: 1rem;
}

/* Team */
.team {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    margin-top: var(--space-lg);
}

.team-card {
    text-align: center;
}

.team-card__photo {
    width: 160px;
    height: 160px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--color-primary);
}

.team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card__name {
    font-weight: 700;
    color: var(--color-dark);
}

.team-card__role {
    font-size: var(--fs-sm);
    color: var(--color-muted);
}

/* Contact */
.contact-grid {
    display: grid;
    gap: var(--space-lg);
    grid-template-columns: 1fr;
}

.contact-info {
    background: #fff;
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-line);
    box-shadow: var(--shadow-sm);
}

.contact-info ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-info li svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--color-primary);
    margin-top: 3px;
}

.contact-info strong {
    display: block;
    color: var(--color-dark);
}

.contact-info a {
    color: var(--color-primary);
    font-weight: 600;
}

.contact-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.contact-socials a {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    transition: background var(--transition-base);
}

.contact-socials a:hover {
    background: var(--color-primary-dark);
    color: #fff;
    text-decoration: none;
}

.contact-socials svg {
    width: 20px;
    height: 20px;
}

/* Formulier */
.form {
    background: #fff;
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-line);
    box-shadow: var(--shadow-sm);
    display: grid;
    gap: 1rem;
}

.form h2, .form h3 {
    margin-bottom: 0.25rem;
}

.form__row {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

.form__field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form__field--full {
    grid-column: 1 / -1;
}

.form__label {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--color-dark);
}

.form__label .required {
    color: var(--color-danger);
}

.form__input,
.form__select,
.form__textarea {
    padding: 0.75rem 1rem;
    border: 2px solid var(--color-line);
    border-radius: var(--radius-sm);
    background: #fff;
    width: 100%;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(252, 110, 81, 0.15);
}

.form__textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

.form__help {
    font-size: var(--fs-sm);
    color: var(--color-muted);
}

.form__check {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: var(--fs-sm);
}

.form__check input {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: var(--color-primary);
}

.form__status {
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    font-size: var(--fs-sm);
    display: none;
}

.form__status--success {
    background: #e9f7ef;
    color: #1e6b3b;
    border: 1px solid #b5e0c4;
}

.form__status--error {
    background: #fdecea;
    color: var(--color-danger);
    border: 1px solid #f5b7b1;
}

.form__status.is-visible {
    display: block;
}

/* Map */
.map {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-line);
    box-shadow: var(--shadow-sm);
    margin-top: var(--space-md);
}

.map iframe {
    display: block;
    width: 100%;
    height: 320px;
    border: 0;
}

/* Footer */
.site-footer {
    background: var(--color-dark);
    color: #d9d9d9;
    padding: var(--space-xl) 0 var(--space-md);
    margin-top: var(--space-xl);
}

.site-footer a {
    color: #f5f5f5;
}

.site-footer a:hover {
    color: var(--color-primary);
}

.site-footer__grid {
    display: grid;
    gap: var(--space-lg);
    grid-template-columns: 1fr;
}

.site-footer__brand img {
    width: auto;
    height: 64px;
    background: #fff;
    padding: 8px;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.site-footer__brand p {
    color: #bdbdbd;
    max-width: 320px;
}

.site-footer__title {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.site-footer__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.site-footer__socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.site-footer__socials a {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: background var(--transition-base);
}

.site-footer__socials a:hover {
    background: var(--color-primary);
}

.site-footer__socials svg {
    width: 18px;
    height: 18px;
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: var(--space-md);
    margin-top: var(--space-lg);
    text-align: center;
    font-size: var(--fs-sm);
    color: #999;
}

/* Mobiele sticky bar */
.mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    z-index: 30;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
}

.mobile-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.9rem 0.5rem;
    color: #fff;
    font-size: var(--fs-sm);
    font-weight: 700;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-bar a:last-child { border-right: 0; }

.mobile-bar a:hover {
    background: var(--color-primary-dark);
    color: #fff;
    text-decoration: none;
}

.mobile-bar svg {
    width: 18px;
    height: 18px;
}

/* Kalender */
.calendar {
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-line);
    box-shadow: var(--shadow-sm);
    padding: var(--space-md);
}

.calendar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.calendar__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    text-transform: capitalize;
}

.calendar__nav {
    display: flex;
    gap: 0.5rem;
}

.calendar__nav button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-bg-tint);
    color: var(--color-dark);
    display: grid;
    place-items: center;
    transition: background var(--transition-base);
}

.calendar__nav button:hover:not(:disabled) {
    background: var(--color-primary);
    color: #fff;
}

.calendar__nav button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.calendar__weekdays,
.calendar__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar__weekdays {
    margin-bottom: 4px;
    font-size: var(--fs-sm);
    color: var(--color-muted);
    font-weight: 600;
    text-align: center;
}

.calendar__day {
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    border-radius: var(--radius-sm);
    font-size: var(--fs-sm);
    font-weight: 600;
    background: var(--color-bg-tint);
    color: var(--color-dark);
    cursor: pointer;
    border: 2px solid transparent;
    transition: background var(--transition-fast), transform var(--transition-fast);
    position: relative;
}

.calendar__day--empty {
    background: transparent;
    cursor: default;
}

.calendar__day--past {
    background: transparent;
    color: #bbb;
    cursor: not-allowed;
}

.calendar__day--available {
    background: #e9f7ef;
    color: #1e6b3b;
}

.calendar__day--available:hover {
    background: #c8ebd5;
    transform: scale(1.05);
}

.calendar__day--booked {
    background: #fdecea;
    color: var(--color-danger);
    cursor: not-allowed;
    text-decoration: line-through;
}

.calendar__day--selected {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary-dark);
}

.calendar__legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    font-size: var(--fs-sm);
    color: var(--color-muted);
}

.calendar__legend span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.calendar__legend span::before {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 4px;
}

.calendar__legend .is-available::before { background: #e9f7ef; }
.calendar__legend .is-booked::before { background: #fdecea; }
.calendar__legend .is-selected::before { background: var(--color-primary); }

/* CTA band */
.cta-band {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff;
    padding: var(--space-xl) 0;
    text-align: center;
}

.cta-band h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-band p {
    color: #fff;
    opacity: 0.95;
    margin-bottom: 1.5rem;
    font-size: var(--fs-lg);
}

.cta-band .btn--primary {
    background: #fff;
    color: var(--color-primary);
}

.cta-band .btn--primary:hover {
    background: var(--color-dark);
    color: #fff;
}

/* Breadcrumb / page header */
.page-header {
    background: linear-gradient(135deg, #fff4f1 0%, #ffe4dc 100%);
    padding: var(--space-xl) 0 var(--space-lg);
    text-align: center;
}

.page-header h1 {
    margin-bottom: 0.5rem;
}

.breadcrumb {
    font-size: var(--fs-sm);
    color: var(--color-muted);
    margin-top: 0.5rem;
}

.breadcrumb a {
    color: var(--color-primary);
}

/* Utility */
.text-center { text-align: center; }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }

/* =============================================================
   Responsive breakpoints
   ============================================================= */

/* Tablet en breder */
@media (min-width: 640px) {
    .usps {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews {
        grid-template-columns: repeat(2, 1fr);
    }

    .form__row {
        grid-template-columns: 1fr 1fr;
    }

    .site-logo__text {
        display: inline-block;
        font-weight: 700;
        color: var(--color-dark);
    }
}

/* Desktop */
@media (min-width: 900px) {
    .hero {
        padding: var(--space-2xl) 0;
    }

    .hero__inner {
        grid-template-columns: 1.1fr 1fr;
    }

    .site-nav {
        display: block;
    }

    .site-header__cta {
        display: inline-flex;
    }

    .nav-toggle {
        display: none;
    }

    .mobile-bar {
        display: none;
    }

    body {
        padding-bottom: 0 !important;
    }

    .usps {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .reviews {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr 1.1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
    }

    .site-footer__grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

/* Voorkom dat sticky bar content verbergt op mobiel */
@media (max-width: 899px) {
    body {
        padding-bottom: 56px;
    }
}

/* Print */
@media print {
    .site-header,
    .site-footer,
    .mobile-bar,
    .nav-toggle,
    .btn {
        display: none !important;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
