/* =====================================================
   Het Zit Goed / Snel Een Springkussen - Homepage
===================================================== */

.hzg-home {
    overflow: hidden;
    background: #ffffff;
}

/* =====================================================
   Buttons
===================================================== */

.hzg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 26px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    border: 0;
    cursor: pointer;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.hzg-btn:hover {
    transform: translateY(-2px);
}

.hzg-btn-blue {
    color: #fff;
    background: linear-gradient(135deg, #1268f3, #1597ff);
    box-shadow: 0 16px 32px rgba(18, 104, 243, .24);
}

.hzg-btn-pink {
    color: #fff;
    background: linear-gradient(135deg, #d72aa8, #b91e8f);
    box-shadow: 0 16px 32px rgba(215, 42, 168, .28);
}
.hzg-btn-white {
    color: var(--hzg-dark);
    background: #fff;
    border: 1px solid var(--hzg-border);
    box-shadow: 0 14px 34px rgba(16, 24, 47, .08);
}

/* =====================================================
   Hero
===================================================== */

.hzg-hero {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    background:
        radial-gradient(circle at 8% 18%, rgba(255, 63, 134, .12), transparent 26%),
        radial-gradient(circle at 92% 12%, rgba(18, 104, 243, .14), transparent 30%),
        linear-gradient(180deg, #f1fbff 0%, #ffffff 100%);
}

.hzg-hero-bg-shape {
    position: absolute;
    left: -190px;
    top: 80px;
    width: 840px;
    height: 620px;
    border-radius: 0 0 55% 0;
    background: rgba(255,255,255,.82);
    filter: blur(.2px);
    z-index: 1;
}

.hzg-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
    gap: 20px;
    min-height: 720px;
    padding: 54px 0 44px;
}

.hzg-hero-content {
    position: relative;
    z-index: 3;
    max-width: 680px;
}

.hzg-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin-bottom: 24px;
    padding: 11px 18px;
    border-radius: 999px;
    color: #3b8a23;
    background: rgba(95, 189, 63, .12);
    border: 1px solid rgba(95, 189, 63, .18);
    font-size: 15px;
    font-weight: 900;
}

.hzg-hero-badge span {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: #fff;
    color: #5fbd3f;
    box-shadow: 0 6px 14px rgba(95, 189, 63, .18);
}

.hzg-hero h1 {
    margin: 0 0 22px;
    max-width: 720px;
    color: var(--hzg-dark);
    font-size: clamp(44px, 6vw, 78px);
    line-height: .98;
    letter-spacing: -.065em;
    font-weight: 950;
}

.hzg-hero h1 span {
    color: var(--hzg-pink);
}

.hzg-hero-content > p {
    max-width: 610px;
    margin: 0;
    color: var(--hzg-text);
    font-size: 19px;
    line-height: 1.72;
    font-weight: 500;
}

.hzg-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

.hzg-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 26px;
    margin-top: 30px;
}

.hzg-hero-points div {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--hzg-dark);
    font-size: 15px;
    font-weight: 800;
}

.hzg-hero-points span {
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    color: #5fbd3f;
    background: rgba(95, 189, 63, .12);
    font-weight: 950;
}

.hzg-hero-image-wrap {
    position: relative;
    height: 610px;
    border-radius: 0 0 0 120px;
    overflow: hidden;
    box-shadow: 0 26px 80px rgba(16, 24, 47, .12);
    margin-right: 0;
    border-radius: 42px;
}

.hzg-hero-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(241,251,255,.82) 0%, rgba(241,251,255,.22) 24%, rgba(241,251,255,0) 48%);
    pointer-events: none;
}

.hzg-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

/* =====================================================
   Category cards
===================================================== */

.hzg-category-section {
    position: relative;
    z-index: 4;
    margin-top: -42px;
    padding: 0 0 72px;
}

.hzg-category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.hzg-category-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 210px;
    padding: 22px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid rgba(16,24,47,.07);
    box-shadow: 0 20px 50px rgba(16, 24, 47, .09);
    transition: transform .22s ease, box-shadow .22s ease;
}

.hzg-category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(16, 24, 47, .14);
}

.hzg-category-card::after {
    content: "";
    position: absolute;
    right: -46px;
    top: -46px;
    width: 130px;
    height: 130px;
    border-radius: 999px;
    opacity: .12;
    background: currentColor;
}

/* =====================================================
   Service strip
===================================================== */

.hzg-service-strip {
    padding: 0 0 76px;
    background: #fff;
}

.hzg-service-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.hzg-service-strip-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(16,24,47,.07);
    box-shadow: 0 16px 42px rgba(16,24,47,.07);
}

.hzg-service-strip-item span {
    display: grid;
    place-items: center;
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    border-radius: 20px;
    background: linear-gradient(135deg, #eefaff, #fff0c8);
    font-size: 27px;
}

.hzg-service-strip-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--hzg-dark);
    font-size: 16px;
    font-weight: 950;
}

.hzg-service-strip-item p {
    margin: 0;
    color: var(--hzg-text);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 600;
}

@media (max-width: 980px) {
    .hzg-service-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .hzg-service-strip {
        padding-bottom: 54px;
    }

    .hzg-service-strip-grid {
        grid-template-columns: 1fr;
    }
}

.hzg-category-icon {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    margin-bottom: 18px;
    border-radius: 22px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 12px 26px rgba(16,24,47,.08);
    font-size: 31px;
}

.hzg-category-content {
    position: relative;
    z-index: 2;
}

.hzg-category-content h2 {
    margin: 0 0 9px;
    color: var(--hzg-dark);
    font-size: 18px;
    line-height: 1.16;
    letter-spacing: -.025em;
    font-weight: 950;
}

.hzg-category-content p {
    margin: 0;
    color: var(--hzg-text);
    font-size: 14px;
    line-height: 1.55;
}

.hzg-category-arrow {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    color: #fff;
    background: currentColor;
    font-size: 21px;
    font-weight: 900;
}

.hzg-card-pink { color: var(--hzg-pink); }
.hzg-card-blue { color: var(--hzg-blue); }
.hzg-card-yellow { color: #f0b400; }
.hzg-card-purple { color: #8f5cff; }
.hzg-card-green { color: var(--hzg-green); }
.hzg-card-orange { color: #ff9d2e; }

/* =====================================================
   Intro
===================================================== */

.hzg-intro-section {
    padding: 86px 0;
    background: #fff;
}

.hzg-intro-grid {
    display: grid;
    grid-template-columns: 1fr .78fr;
    gap: 54px;
    align-items: center;
}

.hzg-section-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 9px 15px;
    border-radius: 999px;
    color: var(--hzg-pink);
    background: rgba(255, 63, 134, .10);
    font-size: 14px;
    font-weight: 900;
}

.hzg-intro-text h2,
.hzg-section-heading h2,
.hzg-location-text h2,
.hzg-final-box h2 {
    margin: 17px 0 18px;
    color: var(--hzg-dark);
    font-size: clamp(34px, 4.2vw, 56px);
    line-height: 1.04;
    letter-spacing: -.05em;
    font-weight: 950;
}

.hzg-intro-text p {
    margin: 0;
    color: var(--hzg-text);
    font-size: 17px;
    line-height: 1.78;
}

.hzg-intro-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hzg-intro-panel {
    display: grid;
    gap: 16px;
    padding: 24px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 80% 12%, rgba(255, 63, 134, .14), transparent 34%),
        linear-gradient(145deg, #eefaff, #fff4fb);
    box-shadow: 0 26px 70px rgba(16,24,47,.10);
}

.hzg-panel-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 16px;
    align-items: start;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(255,255,255,.72);
}

.hzg-panel-item strong {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--hzg-blue), #22b4ff);
    font-size: 22px;
    font-weight: 950;
}

.hzg-panel-item h3 {
    margin: 0 0 6px;
    color: var(--hzg-dark);
    font-size: 19px;
    font-weight: 950;
}

.hzg-panel-item p {
    margin: 0;
    color: var(--hzg-text);
    font-size: 14px;
    line-height: 1.55;
}

/* =====================================================
   Products
===================================================== */

.hzg-products-section {
    padding: 88px 0;
    background: var(--hzg-soft);
}

.hzg-section-heading {
    max-width: 720px;
    margin: 0 auto 38px;
    text-align: center;
}

.hzg-section-heading p {
    margin: 0;
    color: var(--hzg-text);
    font-size: 17px;
    line-height: 1.72;
}

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

.hzg-product-card {
    overflow: hidden;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 18px 52px rgba(16,24,47,.09);
    transition: transform .22s ease, box-shadow .22s ease;
}

.hzg-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 76px rgba(16,24,47,.14);
}

.hzg-product-image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1 / .76;
    background: linear-gradient(135deg, #dff6ff, #fff0c8);
}

.hzg-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.hzg-product-card:hover .hzg-product-image img {
    transform: scale(1.055);
}

.hzg-product-image span {
    position: absolute;
    left: 14px;
    top: 14px;
    padding: 8px 13px;
    border-radius: 999px;
    color: #fff;
    background: var(--hzg-pink);
    font-size: 12px;
    font-weight: 950;
}

.hzg-product-content {
    padding: 21px;
}

.hzg-product-content h3 {
    margin: 0 0 9px;
    color: var(--hzg-dark);
    font-size: 20px;
    line-height: 1.18;
    letter-spacing: -.025em;
    font-weight: 950;
}

.hzg-product-content p {
    margin: 0 0 20px;
    color: var(--hzg-text);
    font-size: 14px;
    line-height: 1.58;
}

.hzg-product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.hzg-product-price small {
    display: block;
    margin-bottom: 3px;
    color: var(--hzg-text);
    font-size: 12px;
    font-weight: 800;
}

.hzg-product-price strong,
.hzg-product-price .woocommerce-Price-amount {
    color: var(--hzg-dark);
    font-size: 20px;
    font-weight: 950;
}

.hzg-small-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 17px;
    border-radius: 999px;
    color: #fff;
    background: var(--hzg-blue);
    font-size: 14px;
    font-weight: 950;
}

.hzg-product-placeholder {
    display: grid;
    place-items: center;
    min-height: 210px;
}

.hzg-products-more {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

/* =====================================================
   Trust
===================================================== */

.hzg-trust-section {
    padding: 78px 0;
    background: #fff;
}

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

.hzg-trust-card {
    padding: 30px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid var(--hzg-border);
    box-shadow: 0 18px 48px rgba(16,24,47,.07);
}

.hzg-trust-card-main {
    background:
        radial-gradient(circle at 85% 10%, rgba(255,255,255,.82), transparent 28%),
        linear-gradient(135deg, #fff0c8, #ffe3f1);
}

.hzg-trust-icon {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    margin-bottom: 20px;
    border-radius: 22px;
    background: rgba(18, 104, 243, .10);
    font-size: 30px;
}

.hzg-trust-card h3 {
    margin: 0 0 10px;
    color: var(--hzg-dark);
    font-size: 23px;
    line-height: 1.15;
    letter-spacing: -.03em;
    font-weight: 950;
}

.hzg-trust-card p {
    margin: 0;
    color: var(--hzg-text);
    font-size: 15px;
    line-height: 1.7;
}

/* =====================================================
   Locations
===================================================== */

.hzg-location-section {
    padding: 78px 0;
    background: var(--hzg-soft);
}

.hzg-location-box {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 40px;
    align-items: center;
    padding: 44px;
    border-radius: 40px;
    background:
        radial-gradient(circle at 92% 12%, rgba(255, 63, 134, .45), transparent 28%),
        linear-gradient(135deg, #10182f, #16264d);
    color: #fff;
    box-shadow: 0 28px 80px rgba(16,24,47,.18);
}

.hzg-location-text {
    position: relative;
    z-index: 2;
}

.hzg-location-text .hzg-section-label {
    background: rgba(255,255,255,.12);
    color: #fff;
}

.hzg-location-text h2 {
    color: #fff;
}

.hzg-location-text p {
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 17px;
    line-height: 1.75;
}

.hzg-location-tags {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.hzg-location-tags a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 17px;
    border-radius: 999px;
    color: var(--hzg-dark);
    background: #fff;
    font-size: 14px;
    font-weight: 950;
    box-shadow: 0 12px 26px rgba(0,0,0,.12);
    transition: transform .2s ease;
}

.hzg-location-tags a:hover {
    transform: translateY(-2px);
}

/* =====================================================
   Final CTA
===================================================== */

.hzg-final-cta {
    padding: 90px 0;
    background: #fff;
}

.hzg-final-box {
    position: relative;
    overflow: hidden;
    padding: 58px 34px;
    border-radius: 42px;
    text-align: center;
    background:
        radial-gradient(circle at 12% 12%, rgba(255,255,255,.86), transparent 25%),
        linear-gradient(135deg, #dff6ff, #ffe3f1 48%, #fff1bd);
    box-shadow: 0 26px 80px rgba(16,24,47,.12);
}

.hzg-final-box > span {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 9px 15px;
    border-radius: 999px;
    color: var(--hzg-pink);
    background: rgba(255,255,255,.74);
    font-size: 14px;
    font-weight: 950;
}

.hzg-final-box h2 {
    max-width: 790px;
    margin-left: auto;
    margin-right: auto;
}

.hzg-final-box p {
    max-width: 660px;
    margin: 0 auto;
    color: var(--hzg-text);
    font-size: 17px;
    line-height: 1.75;
}

.hzg-final-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 30px;
}

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

@media (max-width: 1180px) {
    .hzg-category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 1020px) {
    .hzg-hero {
        min-height: auto;
    }

    .hzg-hero-bg-shape {
        width: 100%;
        height: 58%;
        left: 0;
        top: 0;
        border-radius: 0 0 45px 45px;
    }

    .hzg-hero-inner {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 36px;
        padding: 56px 0 46px;
    }

    .hzg-hero-content {
        max-width: 760px;
        text-align: center;
        margin: 0 auto;
    }

    .hzg-hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hzg-hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hzg-hero-buttons,
    .hzg-hero-points {
        justify-content: center;
    }

    .hzg-hero-image-wrap {
        height: 470px;
        border-radius: 36px;
    }

    .hzg-hero-image-wrap::after {
        background: linear-gradient(180deg, rgba(241,251,255,.1), rgba(241,251,255,0));
    }

    .hzg-intro-grid,
    .hzg-location-box {
        grid-template-columns: 1fr;
    }

    .hzg-location-tags {
        justify-content: flex-start;
    }
}

@media (max-width: 820px) {
    .hzg-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hzg-intro-section,
    .hzg-products-section,
    .hzg-trust-section,
    .hzg-location-section,
    .hzg-final-cta {
        padding: 62px 0;
    }
}

@media (max-width: 640px) {
    .hzg-hero-inner {
        padding: 40px 0 34px;
    }

    .hzg-hero h1 {
        font-size: clamp(40px, 13vw, 58px);
        letter-spacing: -.055em;
    }

    .hzg-hero-content > p {
        font-size: 16px;
        line-height: 1.65;
    }

    .hzg-hero-buttons,
    .hzg-final-buttons,
    .hzg-intro-buttons {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .hzg-btn {
     width: 83%;
    min-height: 54px;
    margin: 0 auto;
	}

    .hzg-hero-points {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        text-align: left;
    }

    .hzg-hero-image-wrap {
        height: 320px;
        border-radius: 28px;
    }

    .hzg-hero-image {
        object-position: center right;
    }

    .hzg-category-section {
        margin-top: 0;
        padding: 34px 0 54px;
    }

    .hzg-category-grid,
    .hzg-product-grid {
        grid-template-columns: 1fr;
    }

    .hzg-category-card {
        min-height: 178px;
        padding: 20px;
    }

    .hzg-intro-panel {
        padding: 16px;
        border-radius: 28px;
    }

    .hzg-panel-item {
        grid-template-columns: 48px 1fr;
        padding: 16px;
    }

    .hzg-panel-item strong {
        width: 48px;
        height: 48px;
    }

    .hzg-location-box {
        padding: 28px;
        border-radius: 30px;
    }

    .hzg-location-tags {
        gap: 9px;
    }

    .hzg-location-tags a {
        min-height: 40px;
        padding: 0 13px;
        font-size: 13px;
    }

    .hzg-final-box {
        padding: 42px 20px;
        border-radius: 30px;
    }
}

@media (max-width: 420px) {
    .hzg-hero-points {
        grid-template-columns: 1fr;
    }

    .hzg-hero-image-wrap {
        height: 270px;
    }

    .hzg-intro-text h2,
    .hzg-section-heading h2,
    .hzg-location-text h2,
    .hzg-final-box h2 {
        font-size: 32px;
    }
}

/* Mobile hero image + trust overlay */
.hzg-hero-mobile-trust {
    display: none;
}

@media (max-width: 640px) {
    .hzg-hero-points {
        display: none;
    }

    .hzg-hero-image-wrap {
        position: relative;
        width: calc(100% - 22px);
        height: 270px;
        margin: 20px auto 0;
        border-radius: 26px;
        overflow: hidden;
        box-shadow: 0 18px 46px rgba(16, 24, 47, .12);
    }

    .hzg-hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center right;
    }

    .hzg-hero-mobile-trust {
        position: absolute;
        left: 12px;
        top: 12px;
        z-index: 4;
        display: grid;
        gap: 7px;
        width: min(210px, calc(100% - 24px));
        padding: 12px;
        border-radius: 18px;
        background: rgba(255, 255, 255, .88);
        backdrop-filter: blur(10px);
        box-shadow: 0 12px 30px rgba(16, 24, 47, .14);
    }

    .hzg-hero-mobile-trust div {
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--hzg-dark);
        font-size: 13px;
        font-weight: 900;
        line-height: 1.2;
    }

    .hzg-hero-mobile-trust span {
        display: grid;
        place-items: center;
        flex: 0 0 20px;
        width: 20px;
        height: 20px;
        border-radius: 999px;
        color: #5fbd3f;
        background: rgba(95, 189, 63, .14);
        font-size: 13px;
        font-weight: 950;
    }
}

@media (max-width: 420px) {
    .hzg-hero-image-wrap {
        width: calc(100% - 18px);
        height: 245px;
    }

    .hzg-hero-mobile-trust {
        width: 190px;
        padding: 10px;
    }

    .hzg-hero-mobile-trust div {
        font-size: 12px;
    }
}

/* =====================================================
   LAPTOP HOMEPAGE HERO FIX
   1024px - 1440px
===================================================== */

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

    .hzg-hero,
    .home-hero {
        overflow: hidden;
    }

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

    .hzg-hero-grid,
    .home-hero-grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr) !important;
        gap: 44px !important;
        align-items: center;
    }

    .hzg-hero-content,
    .home-hero-content {
        min-width: 0;
    }

    .hzg-hero h1,
    .home-hero h1 {
        font-size: clamp(58px, 5.4vw, 86px) !important;
        line-height: .95 !important;
        letter-spacing: -.06em !important;
        max-width: 620px !important;
    }

    .hzg-hero p,
    .home-hero p {
        font-size: 19px !important;
        line-height: 1.65 !important;
        max-width: 560px !important;
    }

    .hzg-hero-image,
    .home-hero-image {
        min-width: 0;
    }

    .hzg-hero-image img,
    .home-hero-image img {
        width: 100% !important;
        max-width: 680px !important;
        height: auto !important;
        object-fit: cover !important;
    }

    .hzg-hero-badges,
    .home-hero-badges {
        gap: 16px !important;
        flex-wrap: wrap;
    }

    .hzg-hero-badges span,
    .home-hero-badges span {
        font-size: 14px !important;
        white-space: nowrap;
    }
}

/* =====================================================
   CLEAN HEADER ICONS + MOBILE MENU FIX
===================================================== */

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

.hzg-cart-btn {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1976f3, #0f57c8);
    color: #fff;
}

.hzg-cart-icon,
.hzg-calendar-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    display: block;
}

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

.hzg-reserve-btn {
    background: linear-gradient(135deg, #d72aa8, #9b1f83);
    color: #fff;
}

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

.hzg-mobile-toggle .hzg-burger-line {
    display: block !important;
    width: 28px !important;
    height: 3px !important;
    min-height: 3px !important;
    border-radius: 99px !important;
    background: #fff !important;
    opacity: 1 !important;
    transform: none;
}

/* Menu open animatie */
.hzg-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(7, 13, 31, .55);
    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,.2);
    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;
}

/* 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-icon,
    .hzg-calendar-icon {
        width: 22px;
        height: 22px;
    }

    .hzg-mobile-toggle .hzg-burger-line {
        width: 25px !important;
    }
}

/* =====================================================
   HERO GOOGLE REVIEWS TRUST BAR
===================================================== */

.hzg-hero-reviews {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    padding: 13px 18px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(16,24,47,.08);
    box-shadow: 0 14px 34px rgba(16,24,47,.08);
    color: #07132d;
    font-size: 15px;
    font-weight: 900;
}

.hzg-hero-stars {
    color: #f6b800;
    letter-spacing: 1px;
    font-size: 15px;
    line-height: 1;
}

.hzg-hero-reviews strong {
    color: #07132d;
    font-weight: 950;
}

.hzg-hero-reviews a {
    color: #d72aa8;
    font-weight: 950;
    text-decoration: none;
}

.hzg-hero-reviews a:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .hzg-hero-reviews {
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        border-radius: 22px;
        font-size: 14px;
    }
}

/* =====================================================
   HERO POINTS - 2x2 NETTE GRID
===================================================== */

.hzg-hero-points {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px 22px !important;
    margin-top: 24px !important;
    max-width: 620px !important;
	margin-bottom: 14px;
}

.hzg-hero-points div {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: #07132d !important;
    font-size: 17px !important;
    font-weight: 950 !important;
    white-space: nowrap !important;
}

.hzg-hero-points span {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    border-radius: 999px !important;
    background: #eaf9e7 !important;
    color: #37a431 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    font-weight: 950 !important;
}

/* Laptop iets compacter */
@media (min-width: 768px) and (max-width: 1250px) {
    .hzg-hero-points {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        max-width: 560px !important;
        gap: 12px 18px !important;
    }

    .hzg-hero-points div {
        font-size: 15px !important;
    }
}

/* Mobiel onder elkaar of 2x2 als er ruimte is */
@media (max-width: 767px) {
    .hzg-hero-points {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
        max-width: 100% !important;
        margin-top: 20px !important;
    }

    .hzg-hero-points div {
        font-size: 14px !important;
        white-space: normal !important;
    }

    .hzg-hero-points span {
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        font-size: 15px !important;
    }
}

/* Heel kleine mobiel: netjes onder elkaar */
@media (max-width: 420px) {
    .hzg-hero-points {
        grid-template-columns: 1fr !important;
    }
}


/* =====================================================
   NIEUWE ICONEN — SVG (categorieën) + Font Awesome
===================================================== */

/* --- Categorie-iconen (inline SVG) --- */
/* .hzg-category-icon heeft al font-size:31px; de SVG pakt dat via 1em.
   We zetten alleen de kleur + zorgen dat de SVG netjes centreert. */
.hzg-category-icon svg {
    width: 1em;
    height: 1em;
    display: block;
}

/* SVG erft de card-kleur (currentColor staat op de <a>, niet op het icoon),
   dus we forceren de kleur expliciet per card op het icoon zelf: */
.hzg-card-pink   .hzg-category-icon { color: var(--hzg-pink); }
.hzg-card-blue   .hzg-category-icon { color: var(--hzg-blue); }
.hzg-card-orange .hzg-category-icon { color: #ff9d2e; }
.hzg-card-yellow .hzg-category-icon { color: #f0b400; }
.hzg-card-purple .hzg-category-icon { color: #8f5cff; }
.hzg-card-green  .hzg-category-icon { color: var(--hzg-green); }

/* --- Button-icoon (springkussen-SVG in 'Bekijk springkussens') --- */
.hzg-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.15em;
    height: 1.15em;
}
.hzg-btn-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* --- Hero-badge & hero-points: FA i.p.v. emoji-span --- */
/* Je had <span> met emoji; nu staat er een <i> FA-icoon. Even centreren: */
.hzg-hero-badge i,
.hzg-hero-points i,
.hzg-hero-mobile-trust i {
    color: #5fbd3f;
}

/* --- Service strip & trust: FA-iconen krijgen kleur --- */
.hzg-service-strip-item span i {
    background: linear-gradient(135deg, var(--hzg-blue), #22b4ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hzg-trust-icon i {
    color: var(--hzg-blue);
}
.hzg-trust-card-main .hzg-trust-icon i {
    color: var(--hzg-pink);
}

/* --- Categorie-pijl FA-icoon (was tekst →) --- */
.hzg-category-arrow i {
    font-size: .8em;
    line-height: 1;
}

/* --- Hero reviews: FA-sterren i.p.v. ★ tekst --- */
.hzg-hero-stars i {
    color: #f6b800;
    margin-right: 1px;
}