/* ═══════════════════════════════════════════════
   Holzkirchen Widgets – Base Styles
   All visual overrides happen in Elementor panel.
   ═══════════════════════════════════════════════ */

/* ── RESET ────────────────────────────────────── */
.hk-hero *, .hk-infocard *, .hk-pgrid *, .hk-offers *,
.hk-hours *, .hk-testi *, .hk-team *, .hk-cta *,
.hk-stats *, .hk-feat *, .hk-nl *, .hk-footer *,
.hk-4cards *, .hk-nav * {
    box-sizing: border-box;
}

/* Prevent horizontal overflow from any widget */
.hk-hero, .hk-infocard, .hk-pgrid, .hk-offers,
.hk-hours, .hk-testi, .hk-team, .hk-cta,
.hk-stats, .hk-feat, .hk-nl, .hk-footer,
.hk-nav {
    max-width: 100%;
    overflow-x: hidden;
}

/* 4cards: no overflow clipping – shadows must be visible */
.hk-4cards {
    max-width: 100%;
}

.hk-4cards__grid {
    max-width: 100%;
    overflow: visible;
}

.hk-4cards__card {
    min-width: 0;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Kill all list bullets inside our widgets – Safari + Chrome + FF */
.hk-nav ul, .hk-nav ol, .hk-nav li,
.hk-4cards ul, .hk-4cards ol, .hk-4cards li {
    list-style: none !important;
    list-style-type: none !important;
    -webkit-padding-start: 0 !important;
    padding-inline-start: 0 !important;
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
}

.hk-nav li::before, .hk-nav li::marker,
.hk-4cards li::before, .hk-4cards li::marker {
    content: none !important;
    display: none !important;
    font-size: 0 !important;
}

/* ═══════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════ */

.hk-hero {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hk-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    pointer-events: none;
}

.hk-hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    min-height: inherit;
    padding: 60px 40px;
    width: 100%;
}

.hk-hero__content {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.hk-hero__heading { margin: 0 0 16px; }
.hk-hero__sub { margin: 0 0 24px; }

.hk-hero__btn {
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-align-self: flex-start;
    align-self: flex-start;
    gap: 8px;
    padding: 14px 32px;
    width: auto;
    max-width: -webkit-fit-content;
    max-width: fit-content;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    background: #e87a00;
    color: #fff;
    border: none;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.hk-hero__btn-icon { display: inline-flex; align-items: center; }

/* ═══════════════════════════════════════════════
   INFO CARD
   ═══════════════════════════════════════════════ */

.hk-infocard {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hk-infocard__heading { margin: 0 0 16px; }
.hk-infocard__desc { margin: 0 0 20px; flex: 1; }
.hk-infocard__desc p { margin: 0 0 10px; }

.hk-infocard__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-weight: 600;
}

.hk-infocard__link:hover { text-decoration: underline; }

.hk-infocard__image { margin-bottom: 16px; }
.hk-infocard__icon { margin-bottom: 16px; line-height: 1; }

/* ═══════════════════════════════════════════════
   PRODUCT GRID
   ═══════════════════════════════════════════════ */

.hk-pgrid__heading { margin: 0 0 24px; }

.hk-pgrid__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.hk-pgrid__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.hk-pgrid__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    line-height: 1;
}

.hk-pgrid__icon img {
    object-fit: contain;
}

.hk-pgrid__label {
    display: block;
    font-weight: 500;
}

/* ═══════════════════════════════════════════════
   OFFERS CARD
   ═══════════════════════════════════════════════ */

.hk-offers__heading { margin: 0 0 16px; }

.hk-offers__content {
    display: flex;
    gap: 20px;
}

.hk-offers__list { flex: 1; }

.hk-offers__item {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.hk-offers__item:last-child { border-bottom: none; }

.hk-offers__name { font-weight: 600; }
.hk-offers__date, .hk-offers__price { font-size: 0.9em; opacity: 0.8; }

.hk-offers__sidebar {
    flex-shrink: 0;
    width: 120px;
}

.hk-offers__sidebar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.hk-offers__btn {
    display: inline-block;
    margin-top: 16px;
    text-decoration: none;
    font-weight: 600;
    color: #e87a00;
}

.hk-offers__btn:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════
   OPENING HOURS
   ═══════════════════════════════════════════════ */

.hk-hours__heading { margin: 0 0 16px; }

.hk-hours__wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hk-hours--side .hk-hours__wrap {
    flex-direction: row;
}

.hk-hours--side .hk-hours__times { flex: 1; }
.hk-hours--side .hk-hours__map { flex: 1; }

.hk-hours__sub {
    font-weight: 700;
    margin: 0 0 10px;
}

.hk-hours__row {
    display: flex;
    gap: 8px;
    margin-bottom: 6px;
}

.hk-hours__day { font-weight: 500; }

.hk-hours__map {
    overflow: hidden;
    border-radius: 8px;
}

.hk-hours__map iframe,
.hk-hours__map img {
    display: block;
    width: 100%;
    height: 200px;
}

/* ═══════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════ */

.hk-testi__heading { margin: 0 0 24px; }

.hk-testi__list--grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.hk-testi__list--slider {
    position: relative;
    overflow: hidden;
}

.hk-testi__list--slider .hk-testi__item {
    display: none;
    animation: hkFadeIn 0.5s ease;
}

.hk-testi__list--slider .hk-testi__item--active {
    display: block;
}

@keyframes hkFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hk-testi__item {
    display: flex;
    flex-direction: column;
}

.hk-testi__mark {
    display: block;
    font-size: 48px;
    line-height: 1;
    color: #e87a00;
    margin-bottom: 8px;
}

.hk-testi__quote {
    margin: 0 0 16px;
    font-style: italic;
}

.hk-testi__stars { margin-bottom: 12px; }
.hk-testi__star { display: inline; }
.hk-testi__star--active { color: #f5a623; }
.hk-testi__star--empty { color: #d0d0d0; }

.hk-testi__footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.hk-testi__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.hk-testi__name { display: block; font-weight: 600; }
.hk-testi__role { display: block; font-size: 0.85em; opacity: 0.7; }

.hk-testi__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.hk-testi__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease;
}

.hk-testi__dot--active { background: #e87a00; }

/* ═══════════════════════════════════════════════
   TEAM GRID
   ═══════════════════════════════════════════════ */

.hk-team__heading { margin: 0 0 10px; }
.hk-team__desc { margin: 0 0 30px; }

.hk-team__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hk-team__card {
    overflow: hidden;
}

.hk-team__photo {
    position: relative;
    overflow: hidden;
}

.hk-team__photo::before {
    content: '';
    display: block;
    padding-top: 100%;
}

.hk-team__photo-inner {
    position: absolute;
    inset: 0;
}

.hk-team__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hk-team__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hk-team__card:hover .hk-team__overlay { opacity: 1; }

.hk-team__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.hk-team__social:hover { transform: scale(1.1); }

.hk-team__info { padding: 20px; }
.hk-team__name { margin: 0 0 4px; }
.hk-team__role { margin: 0 0 8px; font-size: 0.9em; opacity: 0.7; }
.hk-team__bio { margin: 0; font-size: 0.9em; }

/* ═══════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════ */

.hk-cta {
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hk-cta__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    pointer-events: none;
}

.hk-cta__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: inherit;
    padding: 60px 40px;
}

.hk-cta__heading { margin: 0 0 16px; }
.hk-cta__desc { margin: 0 0 24px; }

.hk-cta__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hk-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

.hk-cta__btn--1 { background: #e87a00; color: #fff; }
.hk-cta__btn--2 { background: transparent; color: #fff; border: 2px solid #fff; }

/* ═══════════════════════════════════════════════
   STATS COUNTER
   ═══════════════════════════════════════════════ */

.hk-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.hk-stats__item { text-align: center; }

.hk-stats__icon {
    margin-bottom: 12px;
    line-height: 1;
}

.hk-stats__number {
    font-size: 2.5em;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 6px;
}

.hk-stats__label {
    font-size: 0.95em;
    opacity: 0.8;
}

/* ═══════════════════════════════════════════════
   ICON FEATURES
   ═══════════════════════════════════════════════ */

.hk-feat__heading { margin: 0 0 10px; }
.hk-feat__intro { margin: 0 0 30px; }

.hk-feat__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hk-feat__item {
    display: flex;
    text-decoration: none;
    color: inherit;
}

.hk-feat__item--top {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hk-feat__item--left {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
}

.hk-feat__item--right {
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 16px;
    text-align: right;
}

.hk-feat__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.hk-feat__icon img { object-fit: contain; }

.hk-feat__title { margin: 0 0 8px; }
.hk-feat__desc { margin: 0; }

/* ═══════════════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════════════ */

.hk-nl__heading { margin: 0 0 10px; }
.hk-nl__desc { margin: 0 0 24px; }

.hk-nl__form--inline {
    display: flex;
    gap: 0;
}

.hk-nl__form--inline .hk-nl__input {
    flex: 1;
    border-right: none;
    border-radius: 4px 0 0 4px;
}

.hk-nl__form--inline .hk-nl__btn {
    border-radius: 0 4px 4px 0;
}

.hk-nl__form--stacked {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hk-nl__input {
    padding: 12px 16px;
    border: 1px solid #ccc;
    font-size: 1em;
    outline: none;
    width: 100%;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hk-nl__btn {
    padding: 12px 28px;
    background: #e87a00;
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 1em;
    white-space: nowrap;
}

.hk-nl__privacy {
    margin: 12px 0 0;
    font-size: 0.8em;
    opacity: 0.7;
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */

.hk-footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.hk-footer__heading {
    margin: 0 0 16px;
    font-weight: 700;
}

.hk-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hk-footer__item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.hk-footer__item a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.hk-footer__item a:hover { text-decoration: underline; }
.hk-footer__item-icon { flex-shrink: 0; line-height: 1; }

.hk-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hk-footer__social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.hk-footer__bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.hk-footer__copyright {
    margin: 0;
    font-size: 0.85em;
    opacity: 0.7;
}

/* ═══════════════════════════════════════════════
   4-KARTEN SECTION
   Grid, Karten-Look, Out-of-the-box perfekt
   ═══════════════════════════════════════════════ */

/* Force the grid */
.hk-4cards {
    width: 100%;
    padding: 6px; /* small room for card box-shadows to not get clipped */
}

.hk-4cards__grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px;
    width: 100%;
}

.hk-4cards__grid--stretch {
    align-items: stretch;
}

/* ── KARTEN BASE: Shadow + Border + Radius von Haus aus ── */

.hk-4cards__card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    overflow: hidden;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.hk-4cards__card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

/* ── ÜBERSCHRIFTEN – parallel ausgerichtet ──── */

.hk-4cards__heading {
    margin: 0 0 16px;
    padding: 0;
    font-weight: 700;
    font-size: clamp(0.85em, 1.5vw, 1.1em);
    line-height: 1.3;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #2a2a2a;
    word-wrap: break-word;
    overflow-wrap: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}

/* ── BODY – füllt die restliche Kartenhöhe ──── */

.hk-4cards__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* ── KARTE 1: PHILOSOPHIE ─────────────────── */

.hk-4cards__card--1 .hk-4cards__text {
    flex: 1;
    font-size: clamp(0.78em, 1.2vw, 0.92em);
    line-height: 1.65;
    color: #555;
    min-width: 0;
}

.hk-4cards__text p { margin: 0 0 12px; }
.hk-4cards__text p:last-child { margin-bottom: 0; }

.hk-4cards__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88em;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #e87a00;
    transition: color 0.3s ease;
}

.hk-4cards__link:hover {
    color: #c96800;
    text-decoration: underline;
}

.hk-4cards__link-icon { display: inline-flex; }

/* ── KARTE 2: PRODUKTE ───────────────────── */

.hk-4cards__products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.hk-4cards__product {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    text-decoration: none;
    color: inherit;
    cursor: default;
    padding: 6px 4px;
    border-radius: 6px;
    transition: background 0.2s ease;
}

a.hk-4cards__product { cursor: pointer; }
.hk-4cards__product:hover { background: rgba(232, 122, 0, 0.06); }

.hk-4cards__product-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 6px;
    line-height: 1;
    color: #e87a00;
    transition: transform 0.3s ease, color 0.3s ease;
}

.hk-4cards__product:hover .hk-4cards__product-icon {
    transform: scale(1.1);
}

.hk-4cards__product-icon svg {
    width: 50px;
    height: 50px;
    display: block;
    margin: 0 auto;
    stroke: currentColor;
}

.hk-4cards__product-icon svg [fill="currentColor"] {
    fill: currentColor;
}

.hk-4cards__product-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.hk-4cards__product-label {
    display: block;
    width: 100%;
    font-size: 0.82em;
    font-weight: 500;
    color: #555;
    text-align: center;
}

/* ── KARTE 3: ANGEBOTE ───────────────────── */

.hk-4cards__offers-wrap {
    display: flex;
    gap: 14px;
    flex: 1;
}

.hk-4cards__offers-list {
    flex: 1;
    min-width: 0;
}

.hk-4cards__offer {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
    border-bottom: 1px solid #ebebeb;
}

.hk-4cards__offer:first-child { padding-top: 0; }
.hk-4cards__offer:last-child { border-bottom: none; padding-bottom: 0; }

.hk-4cards__offer-name {
    font-weight: 600;
    font-size: 0.92em;
    color: #2a2a2a;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hk-4cards__offer-meta {
    font-size: 0.82em;
    color: #888;
    margin-top: 2px;
    word-wrap: break-word;
}

.hk-4cards__offer-date {}
.hk-4cards__offer-price { margin-left: 4px; }
.hk-4cards__offer-desc { font-size: 0.82em; color: #888; margin-top: 2px; }

.hk-4cards__offers-sidebar {
    flex-shrink: 0;
    width: 100px;
    align-self: stretch;
}

.hk-4cards__offers-sidebar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* ── KARTE 4: ÖFFNUNGSZEITEN ─────────────── */

.hk-4cards__card--4 .hk-4cards__heading {
    text-transform: none;
    font-size: clamp(0.85em, 1.5vw, 1.05em);
}

.hk-4cards__hours-sub {
    font-weight: 700;
    margin: 0 0 8px;
    font-size: clamp(0.75em, 1.1vw, 0.85em);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #2a2a2a;
}

.hk-4cards__hours-row {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 5px;
    font-size: clamp(0.78em, 1.2vw, 0.88em);
    line-height: 1.5;
    color: #555;
}

.hk-4cards__hours-row--hl .hk-4cards__hours-time {
    color: #e87a00;
    font-weight: 600;
}

.hk-4cards__hours-day {
    font-weight: 500;
}

.hk-4cards__map {
    margin-top: 14px;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid #e8e8e8;
}

.hk-4cards__map iframe,
.hk-4cards__map img {
    display: block;
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.hk-4cards__map a { display: block; }

/* ═══════════════════════════════════════════════
   NAVIGATION – Aggressive specificity to beat themes
   ═══════════════════════════════════════════════ */

.hk-nav {
    position: relative;
    z-index: 1000;
    background: #fff;
    width: 100%;
}

/* CSS-only sticky fallback */
.hk-nav--can-stick {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 9999;
}

/* JS-triggered fixed mode (overrides sticky when scrolled) */
.hk-nav--sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.hk-nav .hk-nav__inner {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 12px 30px;
}

.hk-nav .hk-nav__logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.hk-nav .hk-nav__logo img {
    display: block;
    width: 120px;
    height: auto;
    object-fit: contain;
}

.hk-nav .hk-nav__desktop {
    display: flex !important;
    align-items: center;
    gap: 16px;
}

/* WP Menu reset – aggressive selectors to beat any theme CSS */
.hk-nav .hk-nav__menu,
.hk-nav ul.hk-nav__menu,
.hk-nav nav ul,
.hk-nav div > ul {
    display: flex !important;
    align-items: center !important;
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-direction: row !important;
}

.hk-nav .hk-nav__menu li,
.hk-nav ul.hk-nav__menu > li,
.hk-nav div > ul > li {
    position: relative;
    margin: 0 14px !important;
    padding: 0 !important;
    list-style: none !important;
    list-style-type: none !important;
}

.hk-nav .hk-nav__menu li::before,
.hk-nav ul li::before,
.hk-nav .hk-nav__menu li::marker {
    content: none !important;
    display: none !important;
}

.hk-nav .hk-nav__menu a,
.hk-nav ul.hk-nav__menu a {
    display: block;
    text-decoration: none !important;
    white-space: nowrap;
    color: #333;
    font-weight: 500;
    font-size: 0.95em;
    padding: 8px 0;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hk-nav .hk-nav__menu a:hover {
    color: #e87a00;
}

.hk-nav .hk-nav__menu .current-menu-item > a,
.hk-nav .hk-nav__menu .current-menu-ancestor > a {
    color: #e87a00;
    font-weight: 700;
}

/* Dropdown – sub menus */
.hk-nav .hk-nav__menu .sub-menu,
.hk-nav .hk-nav__menu ul.sub-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    z-index: 100;
    display: none !important;
    flex-direction: column !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 8px 0 !important;
    min-width: 200px;
    background: #fff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-radius: 6px;
}

.hk-nav .hk-nav__menu li:hover > .sub-menu,
.hk-nav .hk-nav__menu li:hover > ul.sub-menu {
    display: flex !important;
}

.hk-nav .hk-nav__menu .sub-menu .sub-menu {
    top: 0 !important;
    left: 100% !important;
}

.hk-nav .hk-nav__menu .sub-menu li {
    margin: 0 !important;
    width: 100%;
}

.hk-nav .hk-nav__menu .sub-menu a {
    padding: 8px 20px !important;
    white-space: normal;
    text-transform: none;
    font-size: 0.9em;
}

.hk-nav .hk-nav__menu .sub-menu a:hover {
    background: #f8f8f8;
}

/* CTA Button in nav */
.hk-nav .hk-nav__cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    text-decoration: none !important;
    font-weight: 600;
    background: #e87a00;
    color: #fff !important;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.hk-nav .hk-nav__cta:hover {
    background: #c96800;
}

/* Hamburger */
.hk-nav .hk-nav__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 10;
}

.hk-nav .hk-nav__burger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hk-nav .hk-nav__burger--active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hk-nav .hk-nav__burger--active span:nth-child(2) {
    opacity: 0;
}
.hk-nav .hk-nav__burger--active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Panel */
.hk-nav .hk-nav__mobile {
    display: none;
    padding: 20px;
    background: #fff;
    border-top: 1px solid #eee;
}

.hk-nav .hk-nav__mobile--open {
    display: block !important;
}

.hk-nav .hk-nav__mobile-menu,
.hk-nav .hk-nav__mobile ul {
    display: flex !important;
    flex-direction: column !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.hk-nav .hk-nav__mobile-menu li::before,
.hk-nav .hk-nav__mobile ul li::before,
.hk-nav .hk-nav__mobile li::marker {
    content: none !important;
    display: none !important;
}

.hk-nav .hk-nav__mobile-menu > li {
    display: block !important;
    width: 100% !important;
    padding: 12px 0 !important;
    margin: 0 !important;
    border-bottom: 1px solid #eee;
}

.hk-nav .hk-nav__mobile-menu > li:last-child {
    border-bottom: none;
}

.hk-nav .hk-nav__mobile-menu a,
.hk-nav .hk-nav__mobile ul a {
    display: block;
    text-decoration: none !important;
    color: #333;
    font-weight: 500;
    font-size: 1em;
    padding: 4px 0;
}

.hk-nav .hk-nav__mobile-menu a:hover {
    color: #e87a00;
}

.hk-nav .hk-nav__mobile-menu .sub-menu,
.hk-nav .hk-nav__mobile ul.sub-menu {
    position: static !important;
    display: flex !important;
    flex-direction: column !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 4px 0 0 20px !important;
    min-width: auto !important;
}

.hk-nav .hk-nav__mobile-menu .sub-menu li {
    display: block !important;
    width: 100% !important;
    padding: 6px 0 !important;
    margin: 0 !important;
    border-bottom: none !important;
}

.hk-nav .hk-nav__mobile-menu .sub-menu a {
    font-weight: 400;
    font-size: 0.9em;
    opacity: 0.8;
}

.hk-nav .hk-nav__cta--mobile {
    display: block;
    text-align: center;
    margin-top: 16px;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE DEFAULTS – 6 Breakpoints
   ═══════════════════════════════════════════════ */

/* ── 1280px: Karten etwas kompakter ──────────── */
@media (max-width: 1280px) {
    .hk-4cards__card { padding: 22px; }
    .hk-4cards__heading { font-size: 0.95em; }
    .hk-4cards__card--1 .hk-4cards__text { font-size: 0.85em; }
    .hk-4cards__product-icon svg,
    .hk-4cards__product-icon img { width: 40px; height: 40px; }
    .hk-4cards__product-label { font-size: 0.75em; }
    .hk-4cards__hours-row { font-size: 0.82em; }
    .hk-4cards__offer-name { font-size: 0.85em; }
}

/* ── 1024px: Tablet – 2×2 Raster ────────────── */
@media (max-width: 1024px) {
    .hk-pgrid__list { grid-template-columns: repeat(3, 1fr); }
    .hk-testi__list--grid { grid-template-columns: repeat(2, 1fr); }
    .hk-team__grid { grid-template-columns: repeat(2, 1fr); }
    .hk-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .hk-feat__grid { grid-template-columns: repeat(2, 1fr); }
    .hk-footer__grid { grid-template-columns: repeat(2, 1fr); }

    /* 4-Karten: 2×2 */
    .hk-4cards__grid { grid-template-columns: repeat(2, 1fr) !important; }
    .hk-4cards__card { padding: 24px; }
    .hk-4cards__heading { font-size: 1em; }
    .hk-4cards__card--1 .hk-4cards__text { font-size: 0.9em; }
    .hk-4cards__products { grid-template-columns: repeat(3, 1fr) !important; }
    .hk-4cards__product-icon svg,
    .hk-4cards__product-icon img { width: 45px; height: 45px; }
    .hk-4cards__product-label { font-size: 0.8em; }
    .hk-4cards__hours-row { font-size: 0.88em; }
    .hk-4cards__offer-name { font-size: 0.9em; }

    .hk-nav__burger { display: flex; }
}

/* ── 900px: Tablet Hochformat ────────────────── */
@media (max-width: 900px) {
    .hk-4cards__card { padding: 20px; }
    .hk-4cards__heading { font-size: 0.92em; }
    .hk-4cards__card--1 .hk-4cards__text { font-size: 0.84em; }
    .hk-4cards__offers-sidebar { width: 80px; }
    .hk-4cards__hours-row { font-size: 0.82em; }
    .hk-4cards__hours-sub { font-size: 0.78em; }
}

/* ── 767px: Groß-Mobil – 1 Spalte ───────────── */
@media (max-width: 767px) {
    .hk-hero__inner { padding: 40px 20px; }
    .hk-hero__btn { width: 100% !important; max-width: 100% !important; justify-content: center; align-self: stretch; }

    .hk-pgrid__list { grid-template-columns: repeat(2, 1fr); }
    .hk-offers__content { flex-direction: column; }
    .hk-offers__sidebar { width: 100%; height: 180px; }
    .hk-hours--side .hk-hours__wrap { flex-direction: column; }
    .hk-testi__list--grid { grid-template-columns: 1fr; }
    .hk-team__grid { grid-template-columns: 1fr; }
    .hk-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .hk-feat__grid { grid-template-columns: 1fr; }
    .hk-footer__grid { grid-template-columns: 1fr; }

    .hk-cta__inner { padding: 40px 20px; }
    .hk-cta__buttons { flex-direction: column; }
    .hk-cta__btn { width: 100%; justify-content: center; text-align: center; }

    .hk-nl__form--inline { flex-direction: column; }
    .hk-nl__form--inline .hk-nl__input { border-right: 1px solid #ccc; border-radius: 4px; }
    .hk-nl__form--inline .hk-nl__btn { border-radius: 4px; }

    /* 4-Karten: 1 Spalte */
    .hk-4cards__grid { grid-template-columns: 1fr !important; }
    .hk-4cards { padding: 4px; }
    .hk-4cards__card { padding: 24px; }
    .hk-4cards__heading { font-size: 1.05em; }
    .hk-4cards__card--1 .hk-4cards__text { font-size: 0.92em; }
    .hk-4cards__products { grid-template-columns: repeat(3, 1fr) !important; }
    .hk-4cards__product-icon svg,
    .hk-4cards__product-icon img { width: 50px; height: 50px; }
    .hk-4cards__product-label { font-size: 0.82em; }
    .hk-4cards__offers-wrap { flex-direction: row; }
    .hk-4cards__offers-sidebar { width: 120px; }
    .hk-4cards__hours-row { flex-direction: row; flex-wrap: wrap; font-size: 0.9em; }
    .hk-4cards__offer-name { font-size: 0.95em; }
}

/* ── 480px: Klein-Mobil ──────────────────────── */
@media (max-width: 480px) {
    .hk-pgrid__list { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .hk-stats__grid { grid-template-columns: 1fr; }
    .hk-stats__number { font-size: 2em; }

    .hk-4cards__card { padding: 20px; }
    .hk-4cards__heading { font-size: 0.95em; }
    .hk-4cards__products { grid-template-columns: repeat(3, 1fr) !important; gap: 10px; }
    .hk-4cards__product-icon svg,
    .hk-4cards__product-icon img { width: 40px; height: 40px; }
    .hk-4cards__product-label { font-size: 0.75em; }
    .hk-4cards__offers-wrap { flex-direction: column; }
    .hk-4cards__offers-sidebar { width: 100%; height: 140px; }
    .hk-4cards__hours-row { flex-direction: column; gap: 0; }
}

/* ── 360px: Sehr kleiner Screen ──────────────── */
@media (max-width: 360px) {
    .hk-4cards__card { padding: 16px; }
    .hk-4cards__heading { font-size: 0.88em; }
    .hk-4cards__products { grid-template-columns: repeat(2, 1fr) !important; }
    .hk-4cards__card--1 .hk-4cards__text { font-size: 0.82em; }
    .hk-hero__inner { padding: 30px 16px; }
}
