/* ========= Design tokens ========= */
:root{
    --brand-yellow: #ffd100;       /* herkenbare U-OV-achtige geeltoon */
    --brand-black:  #111111;
    --text:         #111111;
    --text-inv:     #111111;
    --link:         #111111;
    --bg:           #ffffff;
    --shadow:       0 1px 0 rgba(0,0,0,.06), 0 4px 12px rgba(0,0,0,.08);
    --radius:       12px;
    --maxw:         1200px;
    --gap:          0px;
    --hit:          50px;          /* minimale touch target */
    --bp:           992px;         /* desktop breakpoint */
}

/* ========= Basic reset ========= */

a{ color:var(--link); text-decoration:none }
a:hover{ text-decoration:underline }
img{ max-width:100%; height:auto; display:block }

/* ========= Header shell ========= */
.site-header{
    position: static; top:0; z-index: 1000;
    background: var(--bg);
    height: 110px;
    padding-top: 5px;
}
.header-inner{
    max-width: var(--maxw);
    margin-inline: auto;
    padding: 20px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: var(--gap);
}
/* Logo */
.brand{
    display:flex;align-items:center;gap:10px;
}
.brand__logo{
    width:150px;height:auto;
    display:block;
}
.brand__name{
    font-weight:800;font-size:20px;
    text-transform:uppercase;
    letter-spacing:.5px;
    color:var(--brand-black);
}

/* ========= Desktop nav ========= */
nav{
    align-self: stretch;
}
.main-nav{
    height: 100%;
    display:flex; align-items:center; justify-content:flex-start;
    padding-top:5px;
    gap: 8px;
}
ul.main-nav  {
    margin-left: 10px;
}
.nav__item{
    position: relative;
    margin-left: 0;
    list-style: none;
}
.nav__link{
    /*display:flex; align-items:center; gap:8px;*/
    /*padding: 10px 14px;*/
    /*!*border-radius: 999px;*!*/
    /*color: var(--brand-black);*/
    /*font-weight: 700;*/
    /*text-decoration: none;*/
    /*line-height: 1;*/
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    color: var(--brand-black);
    font-weight: 700;
    font-size: 18px;
    border-bottom: 4px solid transparent; /* ← ruimte reserveren */
    transition: border-color 0.2s ease;   /* optioneel: nette overgang */
}
.nav__link:hover,
.nav__link:focus-visible{
    border-bottom: 4px solid #675c53;
    outline: none;
    text-decoration: none;
    background-color:transparent!important;
}
.main-nav > li > a:hover, .main-nav > li > a:focus {
    text-decoration: none;
    background-color: #eeeeee;
}
.nav__caret{
    inline-size: 10px; block-size: 10px;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 2px;
}

/* ========= Dropdown (desktop) ========= */
.dropdown{
    position: absolute; left:0; top: calc(100% + 8px);
    background: #fff;
    color: #111;
    min-width: 260px;
    padding: 8px;
    opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s step-end;
}
.nav__item:focus-within .dropdown,
.nav__item:hover .dropdown{
    opacity: 1; visibility: visible; transform: translateY(0);
    transition: opacity .18s ease, transform .18s ease, visibility 0s;
}
.dropdown a{
    display:flex; align-items:center; gap:10px;
    padding: 10px 12px;
    color:#111; text-decoration:none; font-weight:600;
}
.dropdown a:hover,
.dropdown a:focus-visible{
    background: rgba(0,0,0,.06);
    outline: none;
    text-decoration: none;
}
.dropdown .caption{
    display:block; font-size:12px; opacity:.65; font-weight:500;
}

/* ========= Mobile toggle ========= */
.nav-toggle{
    display:inline-grid; place-items:center;
    width: var(--hit); height: var(--hit);
    background: transparent; color: #e98300;
    border: none;
    cursor: pointer;
}
.nav-toggle:focus-visible{ outline: 3px solid #000; outline-offset: 2px }
.nav-toggle__bars, .nav-toggle__bars::before, .nav-toggle__bars::after{
    content:""; display:block; width:22px; height:2px; background: currentColor;;
    transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle__bars::before{ transform: translateY(-6px) }
.nav-toggle__bars::after { transform: translateY(4px) }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars{ opacity:0 }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before{ transform: translateY(0) rotate(45deg) }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { transform: translateY(-2px) rotate(-45deg) }

/* ========= Mobile drawer ========= */
.drawer{
    position: fixed; inset: 0 0 0 auto; width: 86vw; max-width: 380px;
    background: #fff; color:#111;
    transform: translateX(100%);
    transition: transform .25s ease;
    box-shadow: var(--shadow);
    display:flex; flex-direction: column;
    z-index: 1000;
}
.drawer--open{ transform: translateX(0) }
.drawer__header{
    display:flex; align-items:center; justify-content:space-between;
    padding: 14px 16px; border-bottom: 1px solid rgba(0,0,0,.08);
    background: transparent;
}
.drawer__title{ font-weight:800; }
.drawer__nav{
    padding: 8px;
    overflow:auto;
}
.drawer a{
    display:flex; align-items:center; justify-content:space-between;
    padding: 14px 12px; border-radius: 10px;
    color:#111; text-decoration:none; font-weight:700;
}
.drawer a + a{ margin-top: 6px }
.drawer a:hover, .drawer a:focus-visible{
    background: rgba(0,0,0,.06); outline:none; text-decoration:none;border-radius: 0;
}
.drawer details{
    border-radius: 12px; background: rgba(0,0,0,.035); padding: 6px 6px;
    margin: 8px 0;
}
.drawer summary{
    list-style: none; cursor: pointer; padding: 10px 8px; border-radius: 0px; font-weight:800;
}
.drawer summary::-webkit-details-marker{ display:none }
.drawer .submenu a{ padding-left: 18px; font-weight: 600;border-radius: 0 }
.drawer .main-nav{ display:block; align-items:flex-start; justify-content:flex-start;width: auto }
.drawer .brand img{ width:100px }

/* ========= Layout behavior ========= */
.header-actions{
    display: flex;
    align-items: center;
    justify-content: flex-end; /* 👈 duwt de items naar rechts */
    gap: 10px;
    font-size: 18px;
}


.header-actions .icon-cart {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 25px;
    content: '';
    top: -7px;
    background-color: transparent;
    background-image: url("../../img/cart-icon-uov.png");
    background-size: 40px 32px;
    background-position: -6px -2px;
    margin-right: 6px;
}

.header-actions .en {
    background-image: url("../../img/uk-flag.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    display: inline-block;
    vertical-align: text-top;
}

.header-actions .nl {
    background-image: url("../../img/nl-flag.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    display: inline-block;
    vertical-align: text-top;
}

.cta{
    display:inline-flex; align-items:center; justify-content:center;
    height: var(--hit); padding: 0 14px; border-radius: 0;
    background: var(--bg); color: var(--brand-black);
    font-weight: 800; border: 0;
}
.cta:hover{ filter: brightness(.95); text-decoration:none }

/* ========= Responsive ========= */
@media (max-width: calc(992px - 1px)){
    .header-inner{ grid-template-columns: auto 1fr auto }
    nav:not(.product-overview){ display:none }
    .nav-toggle{ display:inline-grid }
}
@media (min-width: 992px){
    .nav-toggle{ display:none }
    nav{ display:block }
    .drawer{ display:none } /* desktop: geen mobiele drawer */
}

/* ========= Reduced motion ========= */
@media (prefers-reduced-motion: reduce){
    .dropdown, .drawer, .nav-toggle__bars, .nav-toggle__bars::before, .nav-toggle__bars::after{
        transition: none !important;
    }
}

.site-footer {
    background: transparent; /* donkere footer */
    color: #000;
    font-size: 15px;
    /*position: absolute;*/
    /*bottom: 0;*/
    width: 100%;
    height: 40px;
    padding: 20px 0;
    margin-top: 50px;
    line-height: 20px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.footer-col p {
    margin: 0;
}

.footer-left {
    text-align: left;
}

.footer-center {
    text-align: center;
    font-size: 14px;
    color: #000;
}

.footer-center a {
    color: #000;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-center a:hover {
    color: rgba(0, 0, 0, 0.85); /* subtiele accentkleur */
}

.footer-right {
    text-align: right;
}

.footer-right img {
    float:right;
}

.footer-logo {
    height: auto;
    width: 90px;
    opacity: 0.9;
    transition: opacity 0.2s ease;
    text-align: right;
    align-items: flex-end;
    align-content: flex-end;
}
.footer-logo:hover {
    opacity: 1;
}

/* 📱 Responsive gedrag */
@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;      /* 2 kolommen */
        grid-template-areas:
      "left right"
      "center center";                   /* tweede rij over de volle breedte */
        gap: 8px;
        text-align: center;
    }

    .footer-left   { grid-area: left;  text-align: left;  }
    .footer-center { grid-area: center; text-align: center; }
    .footer-right  { grid-area: right; text-align: right; }

    .footer-logo { margin: 0 auto }
    .footer-center p { margin: 15px; }
}