
:root {
    --hzg-pink: #ff007b;
	--hzg-pink-dark: #b91e8f;
    --hzg-blue: #1268f3;
    --hzg-yellow: #ffd447;
    --hzg-green: #5fbd3f;
    --hzg-dark: #10182f;
    --hzg-text: #566176;
    --hzg-soft: #f4faff;
    --hzg-white: #ffffff;
    --hzg-border: rgba(16, 24, 47, 0.08);
    --hzg-shadow: 0 18px 50px rgba(16, 24, 47, 0.10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--hzg-dark);
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.hzg-container {
    width: 100%;
    max-width: 1520px;
    margin: 0 auto;
    padding-left: 28px;
    padding-right: 28px;
}

@media (min-width: 1400px) {
    .hzg-container {
        padding-left: 36px;
        padding-right: 36px;
    }
}

@media (max-width: 640px) {
    .hzg-container {
        padding-left: 16px;
        padding-right: 16px;
    }
}


/* =====================================================
   Header
===================================================== */

.hzg-site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 14px 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(16, 24, 47, 0.06);
    box-shadow: 0 10px 34px rgba(16, 24, 47, 0.06);
}

.hzg-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}




.hzg-main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex: 1;
}

.hzg-main-nav a {
    position: relative;
    color: var(--hzg-dark);
    font-size: 15px;
    font-weight: 900;
    white-space: nowrap;
    transition: color .2s ease;
}

.hzg-main-nav a:hover,
.hzg-main-nav a.is-active {
    color: var(--hzg-blue);
}

.hzg-main-nav a.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -12px;
    height: 3px;
    border-radius: 999px;
    background: var(--hzg-blue);
}

.hzg-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hzg-cart-btn {
    position: relative;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--hzg-blue), #1597ff);
    box-shadow: 0 14px 28px rgba(18, 104, 243, .22);
    font-size: 19px;
}

.hzg-cart-btn em {
    position: absolute;
    right: -6px;
    top: -7px;
    display: grid;
    place-items: center;
    min-width: 21px;
    height: 21px;
    padding: 0 6px;
    border-radius: 999px;
    color: #fff;
    background: var(--hzg-pink);
    font-size: 11px;
    font-style: normal;
    font-weight: 950;
    border: 2px solid #fff;
}

.hzg-reserve-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, #d72aa8, #9b1f83);
    box-shadow: 0 14px 30px rgba(155, 31, 131, .28);
    font-size: 15px;
    font-weight: 950;
    white-space: nowrap;
    transition: transform .2s ease, box-shadow .2s ease;
}

.hzg-reserve-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(155, 31, 131, .34);
}

.hzg-mobile-toggle {
    display: none;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 18px;
    background: var(--hzg-pink);
    cursor: pointer;
    padding: 14px;
}

.hzg-mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    border-radius: 999px;
    background: #fff;
}

/* =====================================================
   Mobile menu
===================================================== */

.hzg-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    background: rgba(16, 24, 47, .62);
    backdrop-filter: blur(12px);
    transition: opacity .25s ease, visibility .25s ease;
}

.hzg-mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.hzg-mobile-menu-inner {
    position: absolute;
    right: 14px;
    top: 14px;
    bottom: 14px;
    width: min(420px, calc(100% - 28px));
    padding: 22px;
    background:
        radial-gradient(circle at 90% 10%, rgba(255, 63, 134, .18), transparent 30%),
        linear-gradient(180deg, #ffffff, #f4faff);
    box-shadow: 0 28px 90px rgba(0,0,0,.25);
    transform: translateX(20px);
    transition: transform .25s ease;
    overflow-y: auto;
}

.hzg-mobile-menu.is-open .hzg-mobile-menu-inner {
    transform: translateX(0);
}

.hzg-mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 26px;
}

.hzg-mobile-close {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 16px;
    color: #fff;
    background: var(--hzg-pink);
    font-size: 31px;
    line-height: 1;
    cursor: pointer;
}

.hzg-mobile-links {
    display: grid;
    gap: 10px;
}

.hzg-mobile-links a {
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 0 18px;
    border-radius: 18px;
    color: var(--hzg-dark);
    background: #fff;
    border: 1px solid rgba(16,24,47,.07);
    font-size: 17px;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(16,24,47,.05);
}

.hzg-mobile-cta {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

body.hzg-menu-open {
    overflow: hidden;
}

/* =====================================================
   Header responsive
===================================================== */

@media (max-width: 1120px) {
    .hzg-main-nav {
        gap: 20px;
    }

    .hzg-logo-text strong {
        font-size: 23px;
    }

    .hzg-logo {
        min-width: 220px;
    }
}

@media (max-width: 980px) {
    .hzg-main-nav,
    .hzg-reserve-btn {
        display: none;
    }

    .hzg-mobile-toggle {
        display: block;
    }

    .hzg-header-inner {
        gap: 14px;
    }

    .hzg-logo {
        min-width: 0;
    }
}

@media (max-width: 560px) {
    .hzg-site-header {
        padding: 10px 0;
    }

    .hzg-logo-icon {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        font-size: 27px;
    }

    .hzg-logo-text strong {
        font-size: 20px;
    }

    .hzg-logo-text small {
        font-size: 11px;
    }

    .hzg-cart-btn,
    .hzg-mobile-toggle {
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }
}

@media (max-width: 420px) {
    .hzg-logo-text small {
        display: none;
    }

    .hzg-logo-text strong {
        font-size: 21px;
    }

    .hzg-logo {
        gap: 9px;
    }

    .hzg-header-actions {
        gap: 8px;
    }
}


.hzg-logo {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    min-width: 300px;
}

.hzg-logo-icon {
    display: grid;
    place-items: center;
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, #e8f7ff, #fff0c8);
    font-size: 31px;
    box-shadow: 0 10px 24px rgba(16, 24, 47, 0.08);
}

.hzg-logo-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hzg-wordmark {
    display: flex;
    align-items: baseline;
    gap: 10px;
    line-height: 0.95;
    letter-spacing: -0.045em;
    font-weight: 950;
    font-size: 38px;
    white-space: nowrap;
}

.hzg-word-pink {
    color: #ec3ea8;
}

.hzg-word-dark {
    color: #404040;
}

.hzg-logo-text small {
    color: #404040;
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1;
}

@media (max-width: 1120px) {
    .hzg-logo {
        min-width: 260px;
    }

    .hzg-wordmark {
        font-size: 31px;
        gap: 8px;
    }

    .hzg-logo-text small {
        font-size: 12px;
    }
}

@media (max-width: 560px) {
    .hzg-logo {
        gap: 10px;
        min-width: 0;
    }

    .hzg-logo-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        border-radius: 16px;
        font-size: 27px;
    }

    .hzg-wordmark {
        font-size: 25px;
        gap: 7px;
    }

    .hzg-logo-text small {
        font-size: 10px;
        letter-spacing: 0.05em;
    }
}

@media (max-width: 420px) {
    .hzg-logo-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        font-size: 23px;
    }

    .hzg-wordmark {
        font-size: 21px;
        gap: 5px;
    }

    .hzg-logo-text small {
        display: none;
    }
}

/* =====================================================
   Footer
===================================================== */

.hzg-site-footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 0%, rgba(255, 63, 134, .18), transparent 32%),
        radial-gradient(circle at 92% 10%, rgba(18, 104, 243, .18), transparent 34%),
        linear-gradient(180deg, #10182f 0%, #071020 100%);
    color: #fff;
}

.hzg-footer-top {
    padding: 76px 0 52px;
}

.hzg-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr .8fr .8fr 1fr;
    gap: 42px;
    align-items: start;
}

.hzg-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}



.hzg-footer-logo strong {
    color: #fff;
    font-size: 31px;
    line-height: 1;
    letter-spacing: -.05em;
    font-weight: 950;
}

.hzg-footer-logo strong em {
    color: var(--hzg-pink);
    font-style: normal;
}

.hzg-footer-brand p {
    max-width: 390px;
    margin: 0 0 22px;
    color: rgba(255,255,255,.72);
    font-size: 15px;
    line-height: 1.75;
}

.hzg-footer-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    color: #fff;
    background: #25d366;
    font-size: 14px;
    font-weight: 950;
    box-shadow: 0 14px 28px rgba(37, 211, 102, .24);
}

.hzg-footer-col {
    display: grid;
    gap: 11px;
}

.hzg-footer-col h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 18px;
    font-weight: 950;
    letter-spacing: -.025em;
}

.hzg-footer-col a {
    color: rgba(255,255,255,.68);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    transition: color .2s ease, transform .2s ease;
}

.hzg-footer-col a:hover {
    color: #fff;
    transform: translateX(3px);
}

.hzg-footer-middle {
    padding: 0 0 38px;
}

.hzg-footer-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.hzg-footer-trust div {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.08);
}

.hzg-footer-trust strong {
    display: block;
    margin-bottom: 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 950;
}

.hzg-footer-trust span {
    color: rgba(255,255,255,.62);
    font-size: 13px;
    line-height: 1.45;
}

.hzg-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 22px 0;
}

.hzg-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.hzg-footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,.52);
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 980px) {
    .hzg-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hzg-footer-trust {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .hzg-footer-top {
        padding: 56px 0 36px;
    }

    .hzg-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hzg-footer-trust {
        grid-template-columns: 1fr;
    }

    .hzg-footer-bottom-inner {
        display: grid;
        text-align: center;
        justify-content: center;
    }

    .hzg-footer-logo strong {
        font-size: 23px;
    }
}
.hzg-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.hzg-footer-logo-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, #e8f7ff, #fff0c8);
    font-size: 31px;
    flex: 0 0 54px;
}

.hzg-footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hzg-footer-wordmark {
    display: block;
    color: #ffffff;
    font-size: 27px;
    line-height: 0.95;
    letter-spacing: -0.04em;
    font-weight: 950;
    white-space: nowrap;
}

.hzg-footer-wordmark em {
    color: var(--hzg-pink);
    font-style: normal;
}

.hzg-footer-logo-text small {
    color: rgba(255,255,255,.72);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
    line-height: 1;
}

.hzg-wordmark {
    display: flex;
    align-items: baseline;
    gap: 0;
    line-height: 0.95;
    letter-spacing: -0.045em;
    font-weight: 950;
    font-size: 36px;
    white-space: nowrap;
}

.hzg-word-pink {
    color: var(--hzg-pink);
}

.hzg-word-dark {
    color: #000;
}

.hzg-logo-text small {
    color: #404040;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1;
}

#sidebar {display:none!important;}

@media (max-width: 1340px) {
    .hzg-category-content h2 {
        font-size: 16px; /* Iets compacter voor laptopschermen */
    }
}

/* =====================================================
   LAPTOP HEADER FIX
   1024px - 1440px
===================================================== */

@media (min-width: 1025px) and (max-width: 1440px) {

    .hzg-header .hzg-container,
    .site-header .hzg-container,
    header .hzg-container {
        max-width: 1180px !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .hzg-logo img,
    .site-logo img,
    header .custom-logo {
        max-height: 54px !important;
        width: auto !important;
    }

    .hzg-nav,
    .main-navigation,
    header nav {
        gap: 22px !important;
    }

    .hzg-nav a,
    .main-navigation a,
    header nav a {
        font-size: 15px !important;
        white-space: nowrap;
    }

    .hzg-header-actions {
        gap: 12px !important;
        flex-shrink: 0;
    }

    .hzg-header-cart {
        width: 58px !important;
        height: 58px !important;
        min-width: 58px !important;
    }

    .hzg-header-reserve,
    .hzg-btn-reserve,
    .hzg-direct-reserve {
        height: 58px !important;
        padding: 0 24px !important;
        font-size: 15px !important;
        white-space: nowrap;
    }
}

/* =====================================================
   HEADER FIX - DESKTOP / LAPTOP
===================================================== */

.hzg-site-header,
.hzg-site-header * {
    box-sizing: border-box;
}

.hzg-site-header {
    width: 100%;
    background: #fff;
    overflow: hidden;
    z-index: 1000;
}

.hzg-site-header .hzg-header-inner {
    width: min(100% - 48px, 1480px);
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 !important;
    min-height: 112px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.hzg-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    min-width: 0;
}

.hzg-logo-icon {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
}

.hzg-logo-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.hzg-logo-text {
    display: grid;
    gap: 2px;
}

.hzg-wordmark {
    display: block;
    font-size: 36px;
    line-height: .9;
    letter-spacing: -.04em;
    white-space: nowrap;
}

.hzg-logo-text small {
    display: block;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #444;
    white-space: nowrap;
}

.hzg-main-nav {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.hzg-main-nav a {
    white-space: nowrap;
    font-size: 17px;
    font-weight: 900;
    text-decoration: none;
}

.hzg-header-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 14px;
}

.hzg-cart-btn,
.hzg-mobile-toggle {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 20px;
}

.hzg-reserve-btn {
    height: 64px;
    padding: 0 34px;
    border-radius: 20px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 950;
}


/* Laptop: alles iets compacter zodat rechts niets afkapt */
@media (min-width: 1025px) and (max-width: 1450px) {

    .hzg-site-header .hzg-header-inner {
        width: min(100% - 36px, 1200px);
        min-height: 92px;
        gap: 20px;
    }

    .hzg-logo-icon {
        flex-basis: 50px;
        width: 50px;
        height: 50px;
    }

    .hzg-wordmark {
        font-size: 29px;
    }

    .hzg-logo-text small {
        font-size: 10px;
        letter-spacing: .13em;
    }

    .hzg-main-nav {
        gap: 22px;
    }

    .hzg-main-nav a {
        font-size: 15px;
    }

    .hzg-cart-btn {
        width: 56px;
        height: 56px;
        min-width: 56px;
        border-radius: 18px;
    }

    .hzg-reserve-btn {
        height: 56px;
        padding: 0 24px;
        border-radius: 18px;
        font-size: 15px;
    }
}


/* Smalle laptop: reserveknop compacter */
@media (min-width: 1025px) and (max-width: 1180px) {

    .hzg-site-header .hzg-header-inner {
        width: min(100% - 28px, 1060px);
        gap: 16px;
    }

    .hzg-main-nav {
        gap: 16px;
    }

    .hzg-main-nav a {
        font-size: 14px;
    }

    .hzg-reserve-btn {
        width: 56px;
        min-width: 56px;
        padding: 0;
        font-size: 0;
    }

    .hzg-reserve-btn span {
        font-size: 18px;
    }
}


/* =====================================================
   MOBILE HEADER + MENU
===================================================== */

.hzg-mobile-toggle {
    display: none;
    border: 0;
    cursor: pointer;
    background: linear-gradient(135deg, #d72aa8, #9b1f83);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
}

.hzg-mobile-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    border-radius: 99px;
    background: #fff;
}

.hzg-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(8, 12, 26, .48);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

.hzg-mobile-menu-inner {
    position: absolute;
    top: 0;
    right: 0;
    width: min(88vw, 390px);
    height: 100%;
    background: #fff;
    padding: 24px;
    transform: translateX(100%);
    transition: transform .28s ease;
    box-shadow: -24px 0 80px rgba(0,0,0,.18);
    overflow-y: auto;
}

.hzg-mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
}

.hzg-mobile-menu.is-open .hzg-mobile-menu-inner {
    transform: translateX(0);
}

body.hzg-menu-open {
    overflow: hidden;
}

.hzg-mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 28px;
}

.hzg-mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #111827;
    text-decoration: none;
    font-weight: 950;
}

.hzg-mobile-close {
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 16px;
    background: #f5f8fc;
    color: #111827;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}

.hzg-mobile-links {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.hzg-mobile-links a {
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 0 18px;
    border-radius: 18px;
    background: #f8fcff;
    border: 1px solid rgba(16,24,47,.06);
    color: #111827;
    text-decoration: none;
    font-size: 17px;
    font-weight: 950;
}

.hzg-mobile-cta {
    display: grid;
    gap: 12px;
}

.hzg-mobile-cta .hzg-btn {
    width: 100%;
    min-height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 950;
}


/* Mobiel/tablet header */
@media (max-width: 1024px) {

    .hzg-site-header .hzg-header-inner {
        width: 100%;
        min-height: 86px;
        padding: 0 18px !important;
        gap: 14px;
    }

    .hzg-main-nav {
        display: none;
    }

    .hzg-logo {
        gap: 10px;
        flex: 1 1 auto;
    }

    .hzg-logo-icon {
        flex: 0 0 48px;
        width: 48px;
        height: 48px;
    }

    .hzg-wordmark {
        font-size: 25px;
    }

    .hzg-logo-text small {
        font-size: 9px;
        letter-spacing: .11em;
    }

    .hzg-header-actions {
        gap: 10px;
    }

    .hzg-reserve-btn {
        display: none;
    }

    .hzg-cart-btn,
    .hzg-mobile-toggle {
        display: flex;
        width: 58px;
        height: 58px;
        min-width: 58px;
        border-radius: 18px;
    }
}


@media (max-width: 420px) {

    .hzg-site-header .hzg-header-inner {
        padding: 0 14px !important;
    }

    .hzg-logo-icon {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
    }

    .hzg-wordmark {
        font-size: 22px;
    }

    .hzg-logo-text small {
        font-size: 8px;
    }

    .hzg-cart-btn,
    .hzg-mobile-toggle {
        width: 54px;
        height: 54px;
        min-width: 54px;
    }
}

/* =====================================================
   MOBILE MENU REVIEW BOX
===================================================== */

.hzg-mobile-review-box {
    margin: 18px 0 22px;
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(215,42,168,.08), rgba(25,118,243,.08));
    border: 1px solid rgba(16,24,47,.07);
    box-shadow: 0 14px 36px rgba(16,24,47,.07);
}

.hzg-mobile-review-stars {
    color: #ffb703;
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 8px;
}

.hzg-mobile-review-box strong {
    display: block;
    color: #07132d;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 950;
    margin-bottom: 6px;
}

.hzg-mobile-review-box span {
    display: block;
    color: #5b6472;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 700;
}

/* =====================================================
   HEADER FONT AWESOME ICONS FIX
===================================================== */

.hzg-cart-btn,
.hzg-reserve-btn,
.hzg-mobile-toggle,
.hzg-mobile-close {
    border: 0 !important;
    text-decoration: none !important;
}

.hzg-cart-btn,
.hzg-mobile-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.hzg-cart-btn {
    position: relative;
    background: linear-gradient(135deg, #1976f3, #0f57c8) !important;
    color: #fff !important;
}

.hzg-mobile-toggle {
    background: linear-gradient(135deg, #ff007b, #ff3998) !important;
    color: #fff !important;
    cursor: pointer;
}

.hzg-cart-btn i,
.hzg-mobile-toggle i,
.hzg-reserve-btn i,
.hzg-mobile-close i {
    display: block !important;
    font-size: 22px !important;
    line-height: 1 !important;
    color: currentColor !important;
}

.hzg-reserve-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    background: linear-gradient(135deg, #ff007b, #ff3998) !important;
    color: #fff !important;
    white-space: nowrap;
}

.hzg-cart-btn em {
    position: absolute;
    right: -7px;
    top: -7px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--hzg-pink);
    color: #fff;
    font-size: 12px;
    line-height: 22px;
    font-style: normal;
    font-weight: 950;
    text-align: center;
}

/* Oude hamburger span-regels uitschakelen */
.hzg-mobile-toggle span,
.hzg-mobile-toggle .hzg-burger-line {
    display: none !important;
}

/* Mobiel */
@media (max-width: 1024px) {
    .hzg-main-nav,
    .hzg-reserve-btn {
        display: none !important;
    }

    .hzg-mobile-toggle {
        display: inline-flex !important;
    }

    .hzg-cart-btn,
    .hzg-mobile-toggle {
        width: 58px !important;
        height: 58px !important;
        min-width: 58px !important;
        border-radius: 18px !important;
    }
}

@media (max-width: 420px) {
    .hzg-cart-btn,
    .hzg-mobile-toggle {
        width: 54px !important;
        height: 54px !important;
        min-width: 54px !important;
        border-radius: 17px !important;
    }

    .hzg-cart-btn i,
    .hzg-mobile-toggle i {
        font-size: 21px !important;
    }
}

/* =====================================================
   FINAL HEADER WIDTH FIX
   Desktop/laptop strak houden
===================================================== */

/* Desktop: hamburger NOOIT tonen */
@media (min-width: 1025px) {
    .hzg-mobile-toggle {
        display: none !important;
    }
}

/* Header compacter algemeen */
.hzg-site-header .hzg-header-inner {
    gap: 22px !important;
}

/* Logo iets compacter op laptop */
@media (min-width: 1025px) and (max-width: 1450px) {
    .hzg-logo-icon {
        width: 50px !important;
        height: 50px !important;
        flex-basis: 50px !important;
    }

    .hzg-wordmark {
        font-size: 28px !important;
    }

    .hzg-logo-text small {
        font-size: 10px !important;
        letter-spacing: .12em !important;
    }

    .hzg-main-nav {
        gap: 20px !important;
    }

    .hzg-main-nav a {
        font-size: 15px !important;
    }

    .hzg-cart-btn {
        width: 56px !important;
        height: 56px !important;
        min-width: 56px !important;
        border-radius: 18px !important;
    }

    .hzg-reserve-btn {
        height: 56px !important;
        padding: 0 24px !important;
        border-radius: 18px !important;
        font-size: 15px !important;
    }
}

/* Small laptop: reserveknop icon-only maken */
@media (min-width: 1025px) and (max-width: 1250px) {
    .hzg-site-header .hzg-header-inner {
        width: min(100% - 28px, 1160px) !important;
        gap: 16px !important;
    }

    .hzg-main-nav {
        gap: 16px !important;
    }

    .hzg-main-nav a {
        font-size: 14px !important;
    }

    .hzg-reserve-btn {
        width: 56px !important;
        min-width: 56px !important;
        padding: 0 !important;
        font-size: 0 !important;
    }

    .hzg-reserve-btn i {
        font-size: 21px !important;
    }
}

/* Tablet/mobiel: nav weg, hamburger aan */
@media (max-width: 1024px) {
    .hzg-main-nav,
    .hzg-reserve-btn {
        display: none !important;
    }

    .hzg-mobile-toggle {
        display: inline-flex !important;
    }
}

/* =====================================================
   STANDARD PAGE TEMPLATE
===================================================== */

.hzg-page-main {
    padding: 80px 0;
    background: #f5faff;
}

.hzg-page-container {
    max-width: 1180px;
}

.hzg-page-content {
    background: #fff;
    border-radius: 32px;
    padding: 42px;
    box-shadow: 0 22px 70px rgba(16,24,47,.08);
    border: 1px solid rgba(16,24,47,.06);
}

.hzg-page-header h1 {
    margin: 0 0 28px;
    color: #07132d;
    font-size: clamp(38px, 5vw, 64px);
    line-height: .95;
    letter-spacing: -.05em;
    font-weight: 950;
}

.hzg-page-body {
    color: #5b6472;
    font-size: 17px;
    line-height: 1.75;
}

body.woocommerce-cart .hzg-page-content,
body.woocommerce-checkout .hzg-page-content,
body.woocommerce-account .hzg-page-content {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

@media (max-width: 767px) {
    .hzg-page-main {
        padding: 34px 0;
    }

    .hzg-page-content {
        padding: 24px 18px;
        border-radius: 24px;
    }
}

/* =====================================================
   DESKTOP NAV DROPDOWN
===================================================== */

.hzg-main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.hzg-main-nav a,
.hzg-nav-dropdown-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #10182f;
    font-size: 16px;
    line-height: 1;
    font-weight: 950;
    text-decoration: none;
    white-space: nowrap;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.hzg-main-nav a:hover,
.hzg-nav-dropdown-toggle:hover {
    color: #1976f3;
}

.hzg-main-nav a.is-active,
.hzg-nav-dropdown.is-active > .hzg-nav-dropdown-toggle {
    color: #1976f3;
}

.hzg-main-nav a.is-active::after,
.hzg-nav-dropdown.is-active > .hzg-nav-dropdown-toggle::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -16px;
    height: 4px;
    border-radius: 999px;
    background: #1976f3;
}

.hzg-nav-dropdown {
    position: relative;
}

.hzg-nav-dropdown-toggle i {
    font-size: 11px;
    transition: transform .2s ease;
}

.hzg-nav-dropdown:hover .hzg-nav-dropdown-toggle i,
.hzg-nav-dropdown:focus-within .hzg-nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.hzg-nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 22px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 220px;
    padding: 12px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(16,24,47,.07);
    box-shadow: 0 24px 70px rgba(16,24,47,.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    z-index: 9999;
}

.hzg-nav-dropdown:hover .hzg-nav-dropdown-menu,
.hzg-nav-dropdown:focus-within .hzg-nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.hzg-nav-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    width: 18px;
    height: 18px;
    background: #fff;
    border-left: 1px solid rgba(16,24,47,.07);
    border-top: 1px solid rgba(16,24,47,.07);
    transform: translateX(-50%) rotate(45deg);
}

.hzg-nav-dropdown-menu a {
    display: flex;
    width: 100%;
    padding: 14px 16px;
    border-radius: 15px;
    color: #10182f;
    font-size: 15px;
    font-weight: 950;
}

.hzg-nav-dropdown-menu a:hover {
    background: #f5faff;
    color: var(--hzg-pink);
}

/* Laptop iets compacter */
@media (min-width: 1025px) and (max-width: 1350px) {
    .hzg-main-nav {
        gap: 18px;
    }

    .hzg-main-nav a,
    .hzg-nav-dropdown-toggle {
        font-size: 15px;
    }
}

/* Mobiel gebruikt gewoon je bestaande mobiele menu */
@media (max-width: 1024px) {
    .hzg-main-nav {
        display: none !important;
    }
}

/* =====================================================
   HEADER DROPDOWN Z-INDEX FIX
===================================================== */

.hzg-site-header {
    position: relative !important;
    z-index: 99999 !important;
    overflow: visible !important;
}

.hzg-header-inner,
.hzg-main-nav,
.hzg-nav-dropdown {
    overflow: visible !important;
}

.hzg-nav-dropdown-menu {
    z-index: 100000 !important;
    top: calc(100% + 18px) !important;
}

/* Zorg dat hero/content niet over de dropdown heen komt */
.hzg-main,
.hzg-home-hero,
.hzg-hero,
.hzg-page-main,
.hzg-woocommerce {
    position: relative;
    z-index: 1;
}

/* =====================================================
   DROPDOWN HOVER GAP FIX
===================================================== */

.hzg-nav-dropdown {
    position: relative;
    padding-bottom: 28px;
    margin-bottom: -28px;
}

/* Onzichtbare brug tussen menu-item en dropdown */
.hzg-nav-dropdown::after {
    content: "";
    position: absolute;
    left: -30px;
    right: -30px;
    top: 100%;
    height: 34px;
    background: transparent;
    z-index: 99998;
}

.hzg-nav-dropdown-menu {
    top: calc(100% + 6px) !important;
}

/* Dropdown open houden bij hover over knop én menu */
.hzg-nav-dropdown:hover .hzg-nav-dropdown-menu,
.hzg-nav-dropdown:focus-within .hzg-nav-dropdown-menu,
.hzg-nav-dropdown-menu:hover {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) !important;
}

/* =====================================================
   FLOATING WHATSAPP BUTTON
===================================================== */

.hzg-floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 99999;
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: linear-gradient(135deg, #25d366, #12b956);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 18px 42px rgba(18, 185, 86, .35);
    transition: transform .2s ease, box-shadow .2s ease;
}

.hzg-floating-whatsapp i {
    font-size: 31px;
    line-height: 1;
}

.hzg-floating-whatsapp span {
    position: absolute;
    right: 76px;
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    padding: 11px 15px;
    border-radius: 999px;
    background: #fff;
    color: #07132d;
    font-size: 14px;
    font-weight: 950;
    white-space: nowrap;
    box-shadow: 0 12px 34px rgba(16,24,47,.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.hzg-floating-whatsapp:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 22px 52px rgba(18, 185, 86, .45);
    color: #fff;
}

.hzg-floating-whatsapp:hover span {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* Mobiel iets kleiner en hoger */
@media (max-width: 767px) {
    .hzg-floating-whatsapp {
        right: 16px;
        bottom: 18px;
        width: 58px;
        height: 58px;
    }

    .hzg-floating-whatsapp i {
        font-size: 28px;
    }

    .hzg-floating-whatsapp span {
        display: none;
    }
}


/* ================================
   MOBILE CLEANUP - korter & sneller
   ================================ */
@media (max-width: 768px) {

    /* Verberg overbodige lange homepage-secties op mobiel */
    .hzg-smart-advice,
    .hzg-intro-section,
    .hzg-products-section,
    .hzg-location-section {
        display: none !important;
    }

    /* Mobiel alleen de kern laten zien:
       hero + finder + trust + categorieën + FAQ + sticky knoppen */

    .hzg-offset-padding {
        padding: 36px 0 !important;
    }

    /* Hero compacter */
    .hzg-hero-content h1 {
        font-size: 32px !important;
        line-height: 1.08 !important;
        margin-bottom: 12px !important;
    }

    .hzg-hero-lead {
        font-size: 15px !important;
        line-height: 1.5 !important;
        margin-bottom: 16px !important;
    }

    .hzg-hero-badge-v3 {
        font-size: 12px !important;
        padding: 7px 12px !important;
        margin-bottom: 12px !important;
    }

    .hzg-party-finder {
        margin: 18px 0 !important;
        padding: 15px !important;
    }

    .hzg-party-finder h3 {
        font-size: 16px !important;
        margin-bottom: 12px !important;
    }

    .hzg-finder-row {
        gap: 8px !important;
    }

    .hzg-finder-row .hzg-select,
    .hzg-btn-submit-finder {
        min-width: 100% !important;
        width: 100% !important;
    }

    /* Hero image iets minder hoog op mobiel */
    .hzg-hero-image {
        max-height: 260px !important;
        object-fit: cover !important;
    }

    .hzg-floating-review-badge {
        transform: scale(0.88);
        transform-origin: top left;
    }

    .hzg-floating-trust {
        font-size: 12px !important;
        padding: 9px 14px !important;
        bottom: -10px !important;
        margin-bottom: 18px !important;
    }

    /* Trust strip compacter */
    .hzg-trust-strip {
        padding: 24px 0 !important;
    }

    .hzg-trust-grid-4 {
        grid-template-columns: 1fr 1fr !important;
        gap: 14px !important;
    }

    .usp-item {
        align-items: flex-start !important;
    }

    .usp-item i {
        font-size: 18px !important;
    }

    .usp-text {
        margin-left: 8px !important;
    }

    .usp-text strong {
        font-size: 12px !important;
        line-height: 1.25 !important;
    }

    .usp-text span {
        font-size: 10px !important;
        line-height: 1.25 !important;
    }

    /* Categorieën compact als 2 kolommen */
    .hzg-category-section {
        padding: 34px 0 !important;
    }

    .hzg-category-section .hzg-section-heading {
        margin-bottom: 20px !important;
    }

    .hzg-category-section h2 {
        font-size: 24px !important;
        line-height: 1.2 !important;
    }

    .hzg-category-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }

    .hzg-category-card {
        padding: 15px 12px !important;
        border-radius: 16px !important;
        min-height: auto !important;
    }

    .hzg-category-thumb,
    .hzg-category-icon {
        width: 54px !important;
        height: 54px !important;
        margin-bottom: 10px !important;
        border-radius: 15px !important;
    }

    .hzg-category-content h3 {
        font-size: 14px !important;
        line-height: 1.25 !important;
        margin: 0 !important;
    }

    .hzg-category-content p {
        display: none !important;
    }

    .hzg-card-badge-v3 {
        font-size: 10px !important;
        padding: 4px 8px !important;
        top: -7px !important;
        right: -5px !important;
    }

    /* FAQ korter */
    .hzg-faq-section {
        padding: 34px 0 42px !important;
    }

    .hzg-faq-section .hzg-section-heading {
        margin-bottom: 18px !important;
    }

    .hzg-faq-section h2 {
        font-size: 23px !important;
        line-height: 1.2 !important;
    }

    .hzg-faq-section .hzg-section-heading p {
        font-size: 13px !important;
    }

    .hzg-faq-grid-v3 {
        gap: 12px !important;
    }

    .hzg-faq-item-v3 {
        padding: 17px !important;
        border-radius: 12px !important;
    }

    .hzg-faq-item-v3 h4 {
        font-size: 14px !important;
        line-height: 1.35 !important;
    }

    .hzg-faq-item-v3 p {
        font-size: 13px !important;
        line-height: 1.5 !important;
    }
}

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

    /* Footer trustbalk weg, want bovenaan staat al trust */
    .hzg-footer-trust-strip {
        display: none !important;
    }

    .hzg-footer-main {
        padding: 32px 0 !important;
    }

    .hzg-footer-main-grid {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }

    /* Op mobiel alleen branding + aanbod tonen */
    .hzg-footer-main-grid .hzg-footer-col:nth-child(3),
    .hzg-footer-main-grid .hzg-footer-col:nth-child(4) {
        display: none !important;
    }

    .hzg-footer-brand-col p {
        font-size: 13px !important;
        line-height: 1.5 !important;
        margin: 14px 0 !important;
    }

    .hzg-footer-col h3 {
        font-size: 16px !important;
        margin-bottom: 14px !important;
    }

    .hzg-footer-col ul li {
        margin-bottom: 7px !important;
    }

    .hzg-footer-col ul li a {
        font-size: 13px !important;
    }

    .hzg-footer-bottom-v4 {
        padding: 15px 0 85px !important;
    }

    .hzg-footer-bottom-flex {
        text-align: center !important;
        justify-content: center !important;
    }

    .hzg-footer-bottom-flex p {
        font-size: 12px !important;
    }
}


.hzg-footer-col-regio {
    max-width: 360px;
}

.hzg-footer-region-note {
    margin: 0 0 16px;
    max-width: 310px;
    color: rgba(255,255,255,0.66);
    font-size: 0.9rem;
    line-height: 1.55;
}

.hzg-footer-region-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hzg-footer-region-list li {
    margin: 0;
}

.hzg-footer-region-list a {
    font-size: 0.92rem;
    line-height: 1.35;
    white-space: nowrap;
}

.hzg-footer-region-more {
    margin: 18px 0 0;
    max-width: 310px;
    color: rgba(255,255,255,0.62);
    font-size: 0.9rem;
    line-height: 1.55;
}

.hzg-footer-region-more a {
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
}

.hzg-footer-region-more a:hover {
    color: #ff1684;
}


/* Winkelwagen: waardebon en update winkelwagen verbergen */
.woocommerce-cart .woocommerce-cart-form .actions {
    display: none !important;
} 

/* Checkout rommel verbergen fallback */
.woocommerce-checkout #billing_country_field,
.woocommerce-checkout #billing_address_2_field,
.woocommerce-checkout #billing_state_field,
.woocommerce-checkout .woocommerce-form-coupon-toggle,
.woocommerce-checkout form.checkout_coupon {
    display: none !important;
}

/* Winkelwagen waardebon/update rij weg */
.woocommerce-cart .woocommerce-cart-form .actions {
    display: none !important;
}